Skip to content

Commit 42a10e5

Browse files
authored
Merge pull request #9 from Stride-Labs/srph/lsm-upgrade
LSM Upgrades
2 parents efceb07 + 2a0c29f commit 42a10e5

File tree

287 files changed

+123040
-11309
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

287 files changed

+123040
-11309
lines changed

.gitmodules

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
11
[submodule "stride"]
22
path = stride
33
url = [email protected]:Stride-Labs/stride.git
4+
branch = lsm
5+
6+
[submodule "cosmos"]
7+
path = cosmos
8+
url = [email protected]:cosmos/cosmos-sdk.git
9+
branch = v0.45.16-ics-lsm-rc0

cosmos

Submodule cosmos added at 201528c

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "stridejs",
3-
"version": "0.7.0-alpha.1",
3+
"version": "0.8.0-alpha.5",
44
"description": "stridejs",
55
"author": "Dan Lynch <[email protected]>",
66
"homepage": "https://github.com/Stride-Labs/stridejs#readme",

scripts/codegen.js

+5-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@ import { join } from 'path';
22
import telescope from '@osmonauts/telescope';
33
import { sync as rimraf } from 'rimraf';
44

5-
const protoDirs = [join(__dirname, '../stride/build')];
5+
// const protoDirs = [join(__dirname, '../stride/build')];
6+
const protoDirs = [join(__dirname, '../stride-build'), join(__dirname, '../cosmos/proto'), join(__dirname, '../cosmos/third_party/proto')];
67
const outPath = join(__dirname, '../src/codegen');
78

89
rimraf(outPath);
@@ -28,6 +29,9 @@ telescope({
2829
'/stride.stakeibc.MsgLiquidStake': {
2930
aminoType: 'stakeibc/LiquidStake'
3031
},
32+
'/stride.stakeibc.MsgLSMLiquidStake': {
33+
aminoType: 'stakeibc/LSMLiquidStake'
34+
},
3135
'/stride.stakeibc.MsgRedeemStake': {
3236
aminoType: 'stakeibc/RedeemStake'
3337
},

0 commit comments

Comments
 (0)