Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

LSM Upgrades #9

Merged
merged 8 commits into from
Sep 20, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
[submodule "stride"]
path = stride
url = [email protected]:Stride-Labs/stride.git
branch = lsm

[submodule "cosmos"]
path = cosmos
url = [email protected]:cosmos/cosmos-sdk.git
branch = v0.45.16-ics-lsm-rc0
1 change: 1 addition & 0 deletions cosmos
Submodule cosmos added at 201528
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "stridejs",
"version": "0.7.0-alpha.1",
"version": "0.8.0-alpha.5",
"description": "stridejs",
"author": "Dan Lynch <[email protected]>",
"homepage": "https://github.com/Stride-Labs/stridejs#readme",
Expand Down
6 changes: 5 additions & 1 deletion scripts/codegen.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ import { join } from 'path';
import telescope from '@osmonauts/telescope';
import { sync as rimraf } from 'rimraf';

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

rimraf(outPath);
Expand All @@ -28,6 +29,9 @@ telescope({
'/stride.stakeibc.MsgLiquidStake': {
aminoType: 'stakeibc/LiquidStake'
},
'/stride.stakeibc.MsgLSMLiquidStake': {
aminoType: 'stakeibc/LSMLiquidStake'
},
'/stride.stakeibc.MsgRedeemStake': {
aminoType: 'stakeibc/RedeemStake'
},
Expand Down
Loading