-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: regenerate src and type for aurad, cosmos-sdk, wasmd, ibc-go-v3
- Loading branch information
1 parent
8054e4f
commit 3b1e7eb
Showing
486 changed files
with
50,664 additions
and
100,587 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
src/codegen/aura/aura/query.rpc.Query.ts → src/codegen/aura/query.rpc.Query.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,22 @@ | ||
import * as _0 from "../aura/aura/aura"; | ||
import * as _1 from "../aura/aura/genesis"; | ||
import * as _2 from "../aura/aura/query"; | ||
import * as _3 from "../aura/aura/tx"; | ||
import * as _131 from "../aura/aura"; | ||
import * as _132 from "../aura/genesis"; | ||
import * as _133 from "../aura/query"; | ||
import * as _134 from "../aura/tx"; | ||
import * as _224 from "../aura/query.rpc.Query"; | ||
import * as _234 from "./lcd"; | ||
import * as _235 from "./rpc.query"; | ||
import * as _236 from "./rpc.tx"; | ||
export namespace auranw { | ||
export namespace aura { | ||
export const aura = { ..._0, | ||
..._1, | ||
..._2, | ||
..._3 | ||
export const aura = { ..._131, | ||
..._132, | ||
..._133, | ||
..._134, | ||
..._224 | ||
}; | ||
} | ||
export const ClientFactory = { ..._234, | ||
..._235, | ||
..._236 | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,91 @@ | ||
import { LCDClient } from "@osmonauts/lcd"; | ||
export const createLCDClient = async ({ | ||
restEndpoint | ||
}: { | ||
restEndpoint: string; | ||
}) => { | ||
const requestClient = new LCDClient({ | ||
restEndpoint | ||
}); | ||
return { | ||
cosmos: { | ||
auth: { | ||
v1beta1: new (await import("../cosmos/auth/v1beta1/query.lcd")).LCDQueryClient({ | ||
requestClient | ||
}) | ||
}, | ||
authz: { | ||
v1beta1: new (await import("../cosmos/authz/v1beta1/query.lcd")).LCDQueryClient({ | ||
requestClient | ||
}) | ||
}, | ||
bank: { | ||
v1beta1: new (await import("../cosmos/bank/v1beta1/query.lcd")).LCDQueryClient({ | ||
requestClient | ||
}) | ||
}, | ||
base: { | ||
node: { | ||
v1beta1: new (await import("../cosmos/base/node/v1beta1/query.lcd")).LCDQueryClient({ | ||
requestClient | ||
}) | ||
}, | ||
tendermint: { | ||
v1beta1: new (await import("../cosmos/base/tendermint/v1beta1/query.lcd")).LCDQueryClient({ | ||
requestClient | ||
}) | ||
} | ||
}, | ||
distribution: { | ||
v1beta1: new (await import("../cosmos/distribution/v1beta1/query.lcd")).LCDQueryClient({ | ||
requestClient | ||
}) | ||
}, | ||
evidence: { | ||
v1beta1: new (await import("../cosmos/evidence/v1beta1/query.lcd")).LCDQueryClient({ | ||
requestClient | ||
}) | ||
}, | ||
feegrant: { | ||
v1beta1: new (await import("../cosmos/feegrant/v1beta1/query.lcd")).LCDQueryClient({ | ||
requestClient | ||
}) | ||
}, | ||
gov: { | ||
v1beta1: new (await import("../cosmos/gov/v1beta1/query.lcd")).LCDQueryClient({ | ||
requestClient | ||
}) | ||
}, | ||
mint: { | ||
v1beta1: new (await import("../cosmos/mint/v1beta1/query.lcd")).LCDQueryClient({ | ||
requestClient | ||
}) | ||
}, | ||
params: { | ||
v1beta1: new (await import("../cosmos/params/v1beta1/query.lcd")).LCDQueryClient({ | ||
requestClient | ||
}) | ||
}, | ||
slashing: { | ||
v1beta1: new (await import("../cosmos/slashing/v1beta1/query.lcd")).LCDQueryClient({ | ||
requestClient | ||
}) | ||
}, | ||
staking: { | ||
v1beta1: new (await import("../cosmos/staking/v1beta1/query.lcd")).LCDQueryClient({ | ||
requestClient | ||
}) | ||
}, | ||
tx: { | ||
v1beta1: new (await import("../cosmos/tx/v1beta1/service.lcd")).LCDQueryClient({ | ||
requestClient | ||
}) | ||
}, | ||
upgrade: { | ||
v1beta1: new (await import("../cosmos/upgrade/v1beta1/query.lcd")).LCDQueryClient({ | ||
requestClient | ||
}) | ||
} | ||
} | ||
}; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.