carbon-js-sdk 0.4.21 → 0.4.23
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/clients/CarbonQueryClient.js +2 -2
- package/lib/clients/ETHClient.js +15 -15
- package/lib/clients/EvmIbcClient.d.ts +86 -0
- package/lib/clients/EvmIbcClient.js +90 -0
- package/lib/clients/HydrogenClient.js +1 -1
- package/lib/clients/NEOClient.js +7 -7
- package/lib/clients/TokenClient.js +4 -4
- package/lib/clients/ZILClient.js +17 -17
- package/lib/codec/alliance/alliance.d.ts +65 -0
- package/lib/codec/alliance/alliance.js +354 -0
- package/lib/codec/alliance/delegations.d.ts +86 -0
- package/lib/codec/alliance/delegations.js +489 -0
- package/lib/codec/alliance/events.d.ts +61 -0
- package/lib/codec/alliance/events.js +403 -0
- package/lib/codec/alliance/genesis.d.ts +74 -0
- package/lib/codec/alliance/genesis.js +469 -0
- package/lib/codec/alliance/gov.d.ts +78 -0
- package/lib/codec/alliance/gov.js +380 -0
- package/lib/codec/{perpsliquidity → alliance}/params.d.ts +18 -8
- package/lib/codec/alliance/params.js +182 -0
- package/lib/codec/alliance/query.d.ts +312 -0
- package/lib/codec/alliance/query.js +1497 -0
- package/lib/codec/alliance/tx.d.ts +111 -0
- package/lib/codec/alliance/tx.js +495 -0
- package/lib/codec/broker/incoming_pool_swap.d.ts +23 -0
- package/lib/codec/broker/incoming_pool_swap.js +136 -0
- package/lib/codec/cosmos/gov/v1/query.js +2 -2
- package/lib/codec/cosmos/gov/v1/tx.js +2 -2
- package/lib/codec/cosmos/gov/v1beta1/query.js +2 -2
- package/lib/codec/cosmos/gov/v1beta1/tx.js +2 -2
- package/lib/codec/cosmos/group/v1/events.js +2 -2
- package/lib/codec/cosmos/group/v1/tx.js +4 -4
- package/lib/codec/cosmos/tx/v1beta1/tx.js +4 -4
- package/lib/codec/google/protobuf/any.d.ts +4 -1
- package/lib/codec/google/protobuf/timestamp.d.ts +0 -2
- package/lib/codec/index.d.ts +58 -35
- package/lib/codec/index.js +788 -697
- package/lib/constant/generic.js +1 -1
- package/lib/modules/cdp.js +43 -43
- package/lib/modules/cosmwasm.js +1 -1
- package/lib/modules/gov.js +12 -12
- package/lib/modules/liquiditypool.js +1 -1
- package/lib/provider/account/EthLedgerAccount/EthLedgerAccount.js +1 -1
- package/lib/provider/account/NeoLedgerAccount/N3Ledger/ErrorCode.js +1 -1
- package/lib/provider/account/NeoLedgerAccount/N3Ledger/main.js +8 -8
- package/lib/provider/account/NeoLedgerAccount/NeoLedgerAccount.js +3 -3
- package/lib/provider/account/NeoLedgerAccount/NeonLedger.js +1 -1
- package/lib/provider/amino/types/admin.js +27 -27
- package/lib/provider/amino/types/bank.js +1 -1
- package/lib/provider/amino/types/broker.js +1 -1
- package/lib/provider/amino/types/cdp.js +25 -25
- package/lib/provider/amino/types/coin.js +4 -4
- package/lib/provider/amino/types/gov.js +4 -4
- package/lib/provider/amino/types/ibc.js +1 -1
- package/lib/provider/amino/types/leverage.js +1 -1
- package/lib/provider/amino/types/liquidityPool.js +7 -7
- package/lib/provider/amino/types/market.js +2 -2
- package/lib/provider/amino/types/oracle.js +1 -1
- package/lib/provider/amino/types/order.js +4 -4
- package/lib/provider/amino/types/position.js +1 -1
- package/lib/provider/amino/types/profile.js +1 -1
- package/lib/provider/amino/types/staking.js +4 -4
- package/lib/provider/amino/types/subaccount.js +3 -3
- package/lib/provider/amino/utils.js +11 -11
- package/lib/provider/ledger/ledger.js +2 -2
- package/lib/provider/metamask/MetaMask.js +1 -1
- package/lib/provider/o3/O3Wallet.js +2 -2
- package/lib/util/address.js +13 -13
- package/lib/util/api.js +4 -4
- package/lib/util/ethermint/evm-ibc.d.ts +97 -0
- package/lib/util/ethermint/evm-ibc.js +134 -0
- package/lib/util/ethermint/index.d.ts +3 -0
- package/lib/util/ethermint/index.js +12 -0
- package/lib/util/ethermint/keys.d.ts +39 -0
- package/lib/util/ethermint/keys.js +138 -0
- package/lib/util/ethermint/web3.d.ts +36 -0
- package/lib/util/ethermint/web3.js +124 -0
- package/lib/util/fetch.js +1 -1
- package/lib/util/generic.js +3 -3
- package/lib/util/number.js +5 -5
- package/lib/util/tx.d.ts +51 -34
- package/lib/wallet/CarbonSigner.js +2 -2
- package/lib/wallet/CarbonSigningClient.js +8 -8
- package/lib/wallet/CarbonWallet.js +6 -6
- package/lib/websocket/connector.js +3 -3
- package/package.json +1 -1
- package/lib/codec/ethermint/crypto/v1/ethsecp256k1/export.d.ts +0 -1
- package/lib/codec/ethermint/crypto/v1/ethsecp256k1/export.js +0 -6
- package/lib/codec/ethermint/evm/v1/export.d.ts +0 -5
- package/lib/codec/ethermint/evm/v1/export.js +0 -53
- package/lib/codec/ethermint/feemarket/v1/export.d.ts +0 -4
- package/lib/codec/ethermint/feemarket/v1/export.js +0 -18
- package/lib/codec/ethermint/types/v1/export.d.ts +0 -4
- package/lib/codec/ethermint/types/v1/export.js +0 -11
- package/lib/codec/ethermint-models.d.ts +0 -4
- package/lib/codec/ethermint-models.js +0 -26
- package/lib/codec/market/fee.d.ts +0 -123
- package/lib/codec/market/fee.js +0 -334
- package/lib/codec/perpsliquidity/event.d.ts +0 -102
- package/lib/codec/perpsliquidity/event.js +0 -581
- package/lib/codec/perpsliquidity/genesis.d.ts +0 -35
- package/lib/codec/perpsliquidity/genesis.js +0 -162
- package/lib/codec/perpsliquidity/params.js +0 -103
- package/lib/codec/perpsliquidity/pool.d.ts +0 -137
- package/lib/codec/perpsliquidity/pool.js +0 -747
- package/lib/codec/perpsliquidity/query.d.ts +0 -167
- package/lib/codec/perpsliquidity/query.js +0 -719
- package/lib/codec/perpsliquidity/tx.d.ts +0 -199
- package/lib/codec/perpsliquidity/tx.js +0 -940
- package/lib/constant/eip712.d.ts +0 -46
- package/lib/constant/eip712.js +0 -106
- package/lib/modules/evm.d.ts +0 -46
- package/lib/modules/evm.js +0 -127
- package/lib/modules/evmmerge.d.ts +0 -12
- package/lib/modules/evmmerge.js +0 -35
- package/lib/modules/feemarket.d.ts +0 -20
- package/lib/modules/feemarket.js +0 -45
- package/lib/modules/vault.d.ts +0 -44
- package/lib/modules/vault.js +0 -95
- package/lib/provider/amino/types/evm.d.ts +0 -4
- package/lib/provider/amino/types/evm.js +0 -40
- package/lib/provider/amino/types/evmmerge.d.ts +0 -4
- package/lib/provider/amino/types/evmmerge.js +0 -34
- package/lib/provider/amino/types/feemarket.d.ts +0 -4
- package/lib/provider/amino/types/feemarket.js +0 -34
- package/lib/provider/metamask/legacy-accounts.d.ts +0 -6
- package/lib/provider/metamask/legacy-accounts.js +0 -44
- package/lib/util/eip712.d.ts +0 -10
- package/lib/util/eip712.js +0 -195
- package/lib/util/ethermint.d.ts +0 -8
- package/lib/util/ethermint.js +0 -68
- package/lib/util/legacyEIP712.d.ts +0 -20
- package/lib/util/legacyEIP712.js +0 -98
package/lib/codec/index.js
CHANGED
|
@@ -29,14 +29,15 @@ exports.NewEModeCategoryEvent = exports.UpdateAssetParamsEvent = exports.NewAsse
|
|
|
29
29
|
exports.MsgInitiateLiquidation = exports.LiquidatorPosition = exports.CompressedNonExistenceProof = exports.CompressedExistenceProof = exports.CompressedBatchEntry = exports.CompressedBatchProof = exports.BatchEntry = exports.BatchProof = exports.InnerSpec = exports.ProofSpec = exports.InnerOp = exports.LeafOp = exports.CommitmentProof = exports.NonExistenceProof = exports.ExistenceProof = exports.lengthOpToJSON = exports.lengthOpFromJSON = exports.LengthOp = exports.hashOpToJSON = exports.hashOpFromJSON = exports.HashOp = exports.CdpParams = exports.RefundReserveEvent = exports.AddReserveEvent = exports.RewardSchemeEvent = exports.RewardDebtEvent = exports.ClaimRewardEvent = exports.LiquidateCollateralWithStablecoinEvent = exports.LiquidateCollateralEvent = exports.ReturnStablecoinEvent = exports.MintStablecoinEvent = exports.UpdateStablecoinDebtInfoEvent = exports.UpdateDebtInfoEvent = exports.UnlockCollateralEvent = exports.LockCollateralEvent = exports.RepayAssetEvent = exports.BorrowAssetEvent = exports.WithdrawAssetEvent = exports.SupplyAssetEvent = exports.SetCdpPausedEvent = exports.SetStalePriceGracePeriodEvent = exports.SetSmallLiquidationSizeEvent = exports.SetMinimumCloseFactorEvent = exports.SetCompleteLiquidationThresholdEvent = exports.SetStablecoinMintCapEvent = exports.SetStablecoinInterestRateEvent = exports.SetLiquidationFeeEvent = exports.SetInterestFeeEvent = exports.UpdateAccountEModeCategoryNameEvent = exports.UpdateEModeCategoryEvent = void 0;
|
|
30
30
|
exports.QuoteChanges = exports.LiquidationParams = exports.CoinSent = exports.CoinReceived = exports.CoinSpent = exports.QueryInternalTransfersResponse = exports.QueryInternalTransfersRequest = exports.InternalTransfer = exports.MergeAccountEvent = exports.QueryMappedAddressResponse = exports.QueryMappedAddressRequest = exports.MsgMergeAccountResponse = exports.MsgMergeAccount = exports.MsgSignData = exports.FeeDeductionEvent = exports.QueryAllMinGasPriceResponse = exports.QueryAllMinGasPriceRequest = exports.QueryGetMinGasPriceResponse = exports.QueryGetMinGasPriceRequest = exports.QueryAllMsgGasCostResponse = exports.QueryAllMsgGasCostRequest = exports.QueryGetMsgGasCostResponse = exports.QueryGetMsgGasCostRequest = exports.RemoveMinGasPriceProposal = exports.RemoveMsgGasCostProposal = exports.SetMinGasPriceProposal = exports.SetMsgGasCostProposal = exports.MinGasPrice = exports.MsgGasCost = exports.MsgFee = exports.MsgRemoveMinGasPriceResponse = exports.MsgRemoveMinGasPrice = exports.MsgRemoveGasCostResponse = exports.MsgRemoveGasCost = exports.MsgSetMinGasPriceResponse = exports.MsgSetMinGasPrice = exports.MsgSetGasCostResponse = exports.MsgSetGasCost = exports.TradeEvent = exports.QueryTradesForPositionResponse = exports.QueryTradesForPositionRequest = exports.QueryTradesResponse = exports.QueryTradesRequest = exports.QueryCandlesticksResponse = exports.QueryCandlesticksRequest = exports.Amm = exports.Candlestick = exports.MinMaxBoundary = exports.IncomingLiquidations = exports.MsgInitiateLiquidationResponse = void 0;
|
|
31
31
|
exports.SlashCounter = exports.OracleVotesWindow = exports.Mark = exports.Result = exports.Vote = exports.Oracle = exports.OracleParams = exports.MsgSetOracleSlashEnabledResponse = exports.MsgSetOracleSlashEnabled = exports.MsgRemoveOracleResponse = exports.MsgRemoveOracle = exports.MsgUpdateOracleResponse = exports.UpdateOracleParams = exports.MsgUpdateOracle = exports.MsgCreateVoteResponse = exports.MsgCreateVote = exports.MsgCreateOracleResponse = exports.CreateOracleParams = exports.MsgCreateOracle = exports.PositionEvent = exports.QueryPositionAllocatedMarginResponse = exports.QueryPositionAllocatedMarginRequest = exports.QueryAllPositionResponse = exports.QueryAllPositionRequest = exports.QueryGetPositionResponse = exports.QueryGetPositionRequest = exports.PositionAllocatedMargin = exports.APIPosition = exports.Positions = exports.Position = exports.MsgSetMarginResponse = exports.MsgSetMargin = exports.Duration = exports.BytesValue = exports.StringValue = exports.BoolValue = exports.UInt32Value = exports.Int32Value = exports.UInt64Value = exports.Int64Value = exports.FloatValue = exports.DoubleValue = exports.Timestamp = exports.Any = exports.QueryLiquidationParamsResponse = exports.QueryLiquidationParamsRequest = exports.QueryAllLiquidationResponse = exports.QueryAllLiquidationRequest = exports.OutstandingPositions = exports.OutstandingPosition = void 0;
|
|
32
|
-
exports.
|
|
33
|
-
exports.
|
|
34
|
-
exports.
|
|
35
|
-
exports.
|
|
36
|
-
exports.
|
|
37
|
-
exports.
|
|
38
|
-
exports.
|
|
39
|
-
exports.
|
|
32
|
+
exports.QueryAlliancesRequest = exports.QueryAllianceParamsResponse = exports.QueryAllianceParamsRequest = exports.ClaimAllianceRewardsEvent = exports.RedelegateAllianceEvent = exports.UndelegateAllianceEvent = exports.DelegateAllianceEvent = exports.AllianceValidatorInfo = exports.QueuedUndelegation = exports.Undelegation = exports.QueuedRedelegation = exports.Redelegation = exports.Delegation = exports.MsgClaimDelegationRewardsResponse = exports.MsgClaimDelegationRewards = exports.MsgRedelegateResponse = exports.MsgRedelegate = exports.MsgUndelegateResponse = exports.MsgUndelegate = exports.MsgDelegateResponse = exports.MsgDelegate = exports.MsgDeleteAllianceProposal = exports.MsgUpdateAllianceProposal = exports.MsgCreateAllianceProposal = exports.RewardWeightChangeSnapshot = exports.AllianceAsset = exports.RewardWeightRange = exports.OracleSlashEvent = exports.ResultEvent = exports.QueryOracleParamsResponse = exports.QueryOracleParamsRequest = exports.QueryOracleVotesWindowResponse = exports.QueryOracleVotesWindowRequest = exports.QueryAllOracleVotesWindowResponse = exports.QueryAllOracleVotesWindowRequest = exports.QuerySlashCounterResponse = exports.QuerySlashCounterRequest = exports.QueryAllSlashCounterResponse = exports.QueryAllSlashCounterRequest = exports.QueryVoterPowerResponse = exports.QueryVoterPowerRequest = exports.QueryAllVoteResponse = exports.QueryAllVoteRequest = exports.QueryAllResultResponse = exports.QueryAllResultRequest = exports.QueryAllOracleResponse = exports.QueryAllOracleRequest = exports.QueryOracleResponse = exports.QueryOracleRequest = exports.CreateOracleProposal = void 0;
|
|
33
|
+
exports.MsgEditBridgeNameResponse = exports.MsgEditBridgeName = exports.MsgDeauthorizeBridgeResponse = exports.MsgDeauthorizeBridge = exports.MsgAuthorizeBridgeResponse = exports.MsgAuthorizeBridge = exports.MsgWithdrawResponse = exports.MsgWithdraw = exports.MsgLinkTokenResponse = exports.MsgLinkToken = exports.MsgUnbindTokenResponse = exports.MsgUnbindToken = exports.MsgBindTokenResponse = exports.MsgBindToken = exports.MsgMintTokenResponse = exports.MsgMintToken = exports.MsgSyncTokenResponse = exports.MsgSyncToken = exports.MsgCreateTokenResponse = exports.CreateTokenParams = exports.MsgCreateToken = exports.QueryAccountBalanceResponse = exports.QueryAccountBalanceRequest = exports.MarketStats = exports.MarketstatsParams = exports.QueryMarketStatsResponse = exports.QueryMarketStatsRequest = exports.QueryMarketstatsParamsResponse = exports.QueryMarketstatsParamsRequest = exports.AllianceRewardHistory = exports.AllianceParams = exports.QueryAllianceValidatorsResponse = exports.QueryAllianceValidatorResponse = exports.QueryAllianceDelegationRewardsResponse = exports.QueryIBCAllianceDelegationRewardsRequest = exports.QueryAllianceDelegationRewardsRequest = exports.QueryAllianceDelegationResponse = exports.QueryIBCAllianceDelegationRequest = exports.QueryAllianceDelegationRequest = exports.QueryAlliancesDelegationsResponse = exports.DelegationResponse = exports.QueryAlliancesDelegationByValidatorRequest = exports.QueryAlliancesDelegationsRequest = exports.QueryAllAlliancesDelegationsRequest = exports.QueryAllAllianceValidatorsRequest = exports.QueryAllianceValidatorRequest = exports.QueryIBCAllianceRequest = exports.QueryAllianceResponse = exports.QueryAllianceRequest = exports.QueryAlliancesResponse = void 0;
|
|
34
|
+
exports.QueryAllTokenGroupsRequest = exports.QueryGetTokenGroupResponse = exports.QueryGetTokenGroupRequest = exports.QueryAllBridgeResponse = exports.QueryAllBridgeRequest = exports.QueryGetBridgeResponse = exports.QueryGetBridgeRequest = exports.QueryTotalBalancesResponse = exports.QueryTotalBalancesRequest = exports.QueryGetBalancesResponse = exports.QueryGetBalancesRequest = exports.QueryAllWrapperMappingsResponse_WrapperMappingsEntry = exports.QueryAllWrapperMappingsResponse = exports.QueryAllWrapperMappingsRequest = exports.QueryGetLockedCoinsResponse = exports.QueryGetLockedCoinsRequest = exports.QueryAllTokenResponse = exports.QueryAllTokenRequest = exports.QueryGetTokenResponse = exports.QueryGetTokenRequest = exports.Bridge = exports.CreateTokenProposal = exports.GroupedTokenConfig = exports.TokenGroupDetails = exports.TokenGroup = exports.MsgUpdateGroupedTokenConfigResponse = exports.UpdateGroupedTokenConfigParams = exports.MsgUpdateGroupedTokenConfig = exports.MsgWithdrawFromGroupResponse = exports.MsgWithdrawFromGroup = exports.MsgDepositToGroupResponse = exports.MsgDepositToGroup = exports.MsgDeregisterFromGroupResponse = exports.MsgDeregisterFromGroup = exports.MsgRegisterToGroupResponse = exports.MsgRegisterToGroup = exports.MsgUpdateGroupResponse = exports.UpdateGroupParams = exports.MsgUpdateGroup = exports.MsgCreateGroupResponse = exports.MsgCreateGroup = exports.MsgRemoveBridgeAddressResponse = exports.MsgRemoveBridgeAddress = exports.MsgAddBridgeAddressResponse = exports.MsgAddBridgeAddress = exports.MsgUpdateTokenResponse = exports.UpdateTokenParams = exports.MsgUpdateToken = exports.MsgRemoveBridgeResponse = exports.MsgRemoveBridge = void 0;
|
|
35
|
+
exports.QueryAllSubAccountResponse = exports.QueryAllSubAccountRequest = exports.QueryGetSubAccountResponse = exports.QueryGetSubAccountRequest = exports.MsgRemoveSubAccountResponse = exports.MsgRemoveSubAccount = exports.MsgActivateSubAccountResponse = exports.MsgActivateSubAccount = exports.MsgCreateSubAccountResponse = exports.MsgCreateSubAccount = exports.UpdateProfileEvent = exports.QueryAllProfileResponse = exports.QueryAllProfileRequest = exports.QueryGetProfileResponse = exports.QueryGetProfileRequest = exports.Profile = exports.MsgUpdateProfileResponse = exports.MsgUpdateProfile = exports.LeverageEvent = exports.QueryAllLeverageResponse = exports.QueryAllLeverageRequest = exports.QueryGetLeverageResponse = exports.QueryGetLeverageRequest = exports.MsgSetLeverageResponse = exports.MsgSetLeverage = exports.MarketLeverageRecord = exports.MarketLeverage = exports.WithdrawFromGroupEvent = exports.DepositToGroupEvent = exports.SetGroupedTokenConfigEvent = exports.DeregisterFromGroupEvent = exports.RegisterToGroupEvent = exports.UpdateGroupEvent = exports.NewGroupEvent = exports.LinkTokenEvent = exports.UnbindTokenEvent = exports.BindTokenEvent = exports.SyncTokenEvent = exports.NewTokenEvent = exports.TokenBalance = exports.PositionPool = exports.LockedCoinsRecord = exports.LockedCoins = exports.Metadata = exports.BalanceChange = exports.Token = exports.QueryTokenGroupMappingsResponse_TokenGroupMappingsEntry = exports.QueryTokenGroupMappingsResponse = exports.QueryTokenGroupMappingsRequest = exports.QueryAllTokenGroupsResponse = void 0;
|
|
36
|
+
exports.MsgCreatePoolResponse = exports.MsgCreatePool = exports.QuerySequenceAllResponse = exports.QuerySequenceAllRequest = exports.QuerySequenceResponse = exports.QuerySequenceRequest = exports.MsgSetSequenceResponse = exports.MsgSetSequence = exports.QueryMintDataResponse = exports.QueryMintDataRequest = exports.MintData = exports.MarketEvent = exports.QueryMarketParamsResponse = exports.QueryMarketParamsRequest = exports.QueryAllMarketResponse = exports.QueryAllMarketRequest = exports.QueryGetMarketResponse = exports.QueryGetMarketRequest = exports.IncomingDisableSpotMarketNames = exports.MarketParams = exports.Market = exports.ControlledParams = exports.MarketDefaultsParams = exports.UpdatePerpetualsFundingIntervalProposal = exports.UpdateMarketProposal = exports.CreateMarketProposal = exports.MsgUpdatePerpetualsFundingIntervalResponse = exports.MsgUpdatePerpetualsFundingInterval = exports.MsgUpdateMarketResponse = exports.MsgUpdateMarket = exports.MsgCreateMarketResponse = exports.MsgCreateMarket = exports.MsgDisableSpotMarketResponse = exports.MsgDisableSpotMarket = exports.OrderBookEvent = exports.QueryAllBookResponse = exports.QueryAllBookRequest = exports.QueryGetBookResponse = exports.QueryGetBookRequest = exports.QueryImpactPriceResponse = exports.QueryImpactPriceRequest = exports.StopBook = exports.OrderBook = exports.OrderBookLevel = exports.GenesisSubAccount = exports.SubAccount = exports.QuerySubAccountPowerResponse = exports.QuerySubAccountPowerRequest = exports.QuerySubAccountStatusResponse = exports.QuerySubAccountStatusRequest = void 0;
|
|
37
|
+
exports.LastClaimRecord = exports.CommitmentExpiriesRecord = exports.CommitmentExpiries = exports.CommitmentExpiry = exports.RewardHistoryRecord = exports.RewardHistory = exports.CommitmentResponse = exports.TotalCommitmentRecord = exports.TotalCommitment = exports.CommitmentRecord = exports.Commitment = exports.RewardWeights = exports.RewardWeight = exports.CommitmentCurve = exports.RewardCurve = exports.UpdatePoolRouteParams = exports.MsgUpdatePoolRouteResponse = exports.MsgUpdatePoolRoute = exports.RemovePoolRouteParams = exports.MsgRemovePoolRouteResponse = exports.MsgRemovePoolRoute = exports.CreatePoolRouteParams = exports.MsgCreatePoolRouteResponse = exports.MsgCreatePoolRoute = exports.MsgUpdatePoolResponse = exports.UpdatePoolParams = exports.MsgUpdatePool = exports.MsgSetCommitmentCurveResponse = exports.SetCommitmentCurveParams = exports.MsgSetCommitmentCurve = exports.MsgSetRewardCurveResponse = exports.SetRewardCurveParams = exports.MsgSetRewardCurve = exports.MsgClaimPoolRewardsResponse = exports.MsgClaimPoolRewards = exports.MsgUnstakePoolTokenResponse = exports.MsgUnstakePoolToken = exports.MsgStakePoolTokenResponse = exports.MsgStakePoolToken = exports.MsgSetRewardsWeightsResponse = exports.SetRewardsWeightsParams = exports.MsgSetRewardsWeights = exports.UnlinkPoolParams = exports.LinkPoolParams = exports.MsgRemoveLiquidityResponse = exports.MsgRemoveLiquidity = exports.MsgAddLiquidityResponse = exports.MsgAddLiquidity = exports.MsgCreatePoolWithLiquidityResponse = exports.MsgCreatePoolWithLiquidity = void 0;
|
|
38
|
+
exports.QueryAllPoolRouteResponse = exports.QueryAllPoolRouteRequest = exports.QueryLiquiditypoolParamsResponse = exports.QueryLiquiditypoolParamsRequest = exports.QueryClaimableRewardsResponse = exports.QueryClaimableRewardsRequest = exports.QueryAllTotalCommitmentResponse = exports.QueryAllTotalCommitmentRequest = exports.QueryTotalCommitmentResponse = exports.QueryTotalCommitmentRequest = exports.QueryRewardCurveResponse = exports.QueryRewardCurveRequest = exports.QueryCommitmentCurveResponse = exports.QueryCommitmentCurveRequest = exports.QueryLastClaimResponse = exports.QueryLastClaimRequest = exports.QueryAllCommitmentResponse = exports.QueryAllCommitmentRequest = exports.QueryCommitmentResponse = exports.QueryCommitmentRequest = exports.QueryRewardHistoryResponse = exports.ExtendedPool = exports.QueryRewardHistoryRequest = exports.QueryAllPoolAddressResponse_AddressesEntry = exports.QueryAllPoolAddressResponse = exports.QueryAllPoolAddressRequest = exports.QueryAllPoolResponse = exports.QueryAllPoolRequest = exports.QueryGetPoolResponse = exports.QueryGetPoolRequest = exports.UpdatePoolRouteProposal = exports.RemovePoolRouteProposal = exports.CreatePoolRouteProposal = exports.UpdatePoolProposal = exports.SetRewardsWeightsProposal = exports.SetCommitmentCurveProposal = exports.SetRewardCurveProposal = exports.UnlinkPoolProposal = exports.LinkPoolProposal = exports.PoolReserve = exports.RemovePoolRoutes = exports.RemoveLiquidities = exports.RemoveLiquidity = exports.AddLiquidities = exports.AddLiquidity = exports.PoolRoute = exports.Pools = exports.Pool = exports.LiquiditypoolParams = exports.AllocatedRewards = void 0;
|
|
39
|
+
exports.SetBackfillTimeIntervalEvent = exports.SetStaleIndexAllowanceEvent = exports.SetSmoothenBandEvent = exports.SetImpactBandEvent = exports.TokenPriceUpdateEvent = exports.PriceUpdateEvent = exports.ParamsV2130 = exports.QueryTokenPriceAllResponse = exports.QueryTokenPriceAllRequest = exports.QueryTokenPriceResponse = exports.QueryTokenPriceRequest = exports.QueryPricingParamsResponse = exports.QueryPricingParamsRequest = exports.QueryRateResponse = exports.QueryRateRequest = exports.QueryAllPriceSetResponse = exports.QueryAllPriceSetRequest = exports.QueryPriceSetResponse = exports.QueryPriceSetRequest = exports.QueryPriceTokenResponse = exports.QueryPriceTokenRequest = exports.SettlementPriceParams = exports.SettlementPriceProposal = exports.TokenPrice = exports.PriceSet = exports.PricingParams = exports.MsgUpdateTokenPriceOracleResponse = exports.MsgUpdateTokenPriceOracle = exports.MsgSetStaleIndexAllowanceResponse = exports.MsgSetStaleIndexAllowance = exports.MsgSetImpactBandResponse = exports.MsgSetImpactBand = exports.MsgSetSmoothenBandResponse = exports.MsgSetSmoothenBand = exports.MsgSetBackfillTimeIntervalResponse = exports.MsgSetBackfillTimeInterval = exports.Fund = exports.FundByMarket = exports.EventDataInsuranceFundTransfer = exports.QueryCoinBalancesResponse = exports.QueryCoinBalancesRequest = exports.SwapEvent = exports.CommitmentEvent = exports.CommitmentCurveEvent = exports.RewardsWeightChangeEvent = exports.TotalCommitmentChangeEvent = exports.PoolEvent = exports.QueryAllPoolRouteAddressResponse_AddressesEntry = exports.QueryAllPoolRouteAddressResponse = exports.QueryAllPoolRouteAddressRequest = void 0;
|
|
40
|
+
exports.MsgExecuteContract = void 0;
|
|
40
41
|
// GENERATED by scripts/generate-registry.sh
|
|
41
42
|
const proto_signing_1 = require("@cosmjs/proto-signing");
|
|
42
43
|
const tx_1 = require("cosmjs-types/cosmwasm/wasm/v1/tx");
|
|
@@ -49,45 +50,47 @@ const tx_6 = require("./evmmerge/tx");
|
|
|
49
50
|
const tx_7 = require("./position/tx");
|
|
50
51
|
const tx_8 = require("./oracle/tx");
|
|
51
52
|
const proposal_2 = require("./oracle/proposal");
|
|
52
|
-
const tx_9 = require("./
|
|
53
|
+
const tx_9 = require("./alliance/tx");
|
|
54
|
+
const tx_10 = require("./cosmos/upgrade/v1beta1/tx");
|
|
53
55
|
const upgrade_1 = require("./cosmos/upgrade/v1beta1/upgrade");
|
|
54
|
-
const
|
|
55
|
-
const
|
|
56
|
-
const
|
|
57
|
-
const
|
|
58
|
-
const
|
|
59
|
-
const
|
|
56
|
+
const tx_11 = require("./cosmos/feegrant/v1beta1/tx");
|
|
57
|
+
const tx_12 = require("./cosmos/evidence/v1beta1/tx");
|
|
58
|
+
const tx_13 = require("./cosmos/nft/v1beta1/tx");
|
|
59
|
+
const tx_14 = require("./cosmos/group/v1/tx");
|
|
60
|
+
const tx_15 = require("./cosmos/bank/v1beta1/tx");
|
|
61
|
+
const tx_16 = require("./cosmos/distribution/v1beta1/tx");
|
|
60
62
|
const distribution_1 = require("./cosmos/distribution/v1beta1/distribution");
|
|
61
|
-
const
|
|
62
|
-
const
|
|
63
|
-
const
|
|
63
|
+
const tx_17 = require("./cosmos/crisis/v1beta1/tx");
|
|
64
|
+
const tx_18 = require("./cosmos/vesting/v1beta1/tx");
|
|
65
|
+
const tx_19 = require("./cosmos/staking/v1beta1/tx");
|
|
64
66
|
const params_1 = require("./cosmos/params/v1beta1/params");
|
|
65
|
-
const
|
|
66
|
-
const
|
|
67
|
-
const
|
|
68
|
-
const
|
|
69
|
-
const
|
|
70
|
-
const
|
|
67
|
+
const tx_20 = require("./cosmos/authz/v1beta1/tx");
|
|
68
|
+
const tx_21 = require("./cosmos/slashing/v1beta1/tx");
|
|
69
|
+
const tx_22 = require("./cosmos/gov/v1/tx");
|
|
70
|
+
const tx_23 = require("./cosmos/gov/v1beta1/tx");
|
|
71
|
+
const tx_24 = require("./ibc/core/connection/v1/tx");
|
|
72
|
+
const tx_25 = require("./ibc/core/channel/v1/tx");
|
|
73
|
+
const tx_26 = require("./ibc/core/client/v1/tx");
|
|
71
74
|
const tendermint_1 = require("./ibc/lightclients/tendermint/v1/tendermint");
|
|
72
|
-
const
|
|
73
|
-
const
|
|
74
|
-
const
|
|
75
|
-
const
|
|
75
|
+
const tx_27 = require("./ibc/applications/fee/v1/tx");
|
|
76
|
+
const tx_28 = require("./ibc/applications/transfer/v1/tx");
|
|
77
|
+
const tx_29 = require("./ibc/applications/interchain_accounts/controller/v1/tx");
|
|
78
|
+
const tx_30 = require("./coin/tx");
|
|
76
79
|
const proposal_3 = require("./coin/proposal");
|
|
77
|
-
const
|
|
78
|
-
const
|
|
79
|
-
const
|
|
80
|
-
const
|
|
81
|
-
const
|
|
82
|
-
const
|
|
80
|
+
const tx_31 = require("./leverage/tx");
|
|
81
|
+
const tx_32 = require("./profile/tx");
|
|
82
|
+
const tx_33 = require("./ethermint/feemarket/v1/tx");
|
|
83
|
+
const tx_34 = require("./ethermint/evm/v1/tx");
|
|
84
|
+
const tx_35 = require("./subaccount/tx");
|
|
85
|
+
const tx_36 = require("./market/tx");
|
|
83
86
|
const proposal_4 = require("./market/proposal");
|
|
84
|
-
const
|
|
85
|
-
const
|
|
87
|
+
const tx_37 = require("./sequence/tx");
|
|
88
|
+
const tx_38 = require("./liquiditypool/tx");
|
|
86
89
|
const proposal_5 = require("./liquiditypool/proposal");
|
|
87
|
-
const
|
|
90
|
+
const tx_39 = require("./pricing/tx");
|
|
88
91
|
const proposal_6 = require("./pricing/proposal");
|
|
89
|
-
const client_1 = require("./ibc/core/client/v1/client");
|
|
90
92
|
const gov_1 = require("./cosmos/gov/v1beta1/gov");
|
|
93
|
+
const client_1 = require("./ibc/core/client/v1/client");
|
|
91
94
|
__exportStar(require("./cosmos-models"), exports);
|
|
92
95
|
exports.IBC = __importStar(require("./ibc-models"));
|
|
93
96
|
const PolyNetwork = __importStar(require("./polynetwork-models"));
|
|
@@ -224,258 +227,277 @@ exports.registry.register("/Switcheo.carbon.oracle.MsgRemoveOracleResponse", tx_
|
|
|
224
227
|
exports.registry.register("/Switcheo.carbon.oracle.MsgSetOracleSlashEnabled", tx_8.MsgSetOracleSlashEnabled);
|
|
225
228
|
exports.registry.register("/Switcheo.carbon.oracle.MsgSetOracleSlashEnabledResponse", tx_8.MsgSetOracleSlashEnabledResponse);
|
|
226
229
|
exports.registry.register("/Switcheo.carbon.oracle.CreateOracleProposal", proposal_2.CreateOracleProposal);
|
|
227
|
-
exports.registry.register("/
|
|
228
|
-
exports.registry.register("/
|
|
229
|
-
exports.registry.register("/
|
|
230
|
-
exports.registry.register("/
|
|
230
|
+
exports.registry.register("/alliance.alliance.MsgDelegate", tx_9.MsgDelegate);
|
|
231
|
+
exports.registry.register("/alliance.alliance.MsgDelegateResponse", tx_9.MsgDelegateResponse);
|
|
232
|
+
exports.registry.register("/alliance.alliance.MsgUndelegate", tx_9.MsgUndelegate);
|
|
233
|
+
exports.registry.register("/alliance.alliance.MsgUndelegateResponse", tx_9.MsgUndelegateResponse);
|
|
234
|
+
exports.registry.register("/alliance.alliance.MsgRedelegate", tx_9.MsgRedelegate);
|
|
235
|
+
exports.registry.register("/alliance.alliance.MsgRedelegateResponse", tx_9.MsgRedelegateResponse);
|
|
236
|
+
exports.registry.register("/alliance.alliance.MsgClaimDelegationRewards", tx_9.MsgClaimDelegationRewards);
|
|
237
|
+
exports.registry.register("/alliance.alliance.MsgClaimDelegationRewardsResponse", tx_9.MsgClaimDelegationRewardsResponse);
|
|
238
|
+
exports.registry.register("/cosmos.upgrade.v1beta1.MsgSoftwareUpgrade", tx_10.MsgSoftwareUpgrade);
|
|
239
|
+
exports.registry.register("/cosmos.upgrade.v1beta1.MsgSoftwareUpgradeResponse", tx_10.MsgSoftwareUpgradeResponse);
|
|
240
|
+
exports.registry.register("/cosmos.upgrade.v1beta1.MsgCancelUpgrade", tx_10.MsgCancelUpgrade);
|
|
241
|
+
exports.registry.register("/cosmos.upgrade.v1beta1.MsgCancelUpgradeResponse", tx_10.MsgCancelUpgradeResponse);
|
|
231
242
|
exports.registry.register("/cosmos.upgrade.v1beta1.SoftwareUpgradeProposal", upgrade_1.SoftwareUpgradeProposal);
|
|
232
243
|
exports.registry.register("/cosmos.upgrade.v1beta1.CancelSoftwareUpgradeProposal", upgrade_1.CancelSoftwareUpgradeProposal);
|
|
233
|
-
exports.registry.register("/cosmos.feegrant.v1beta1.MsgGrantAllowance",
|
|
234
|
-
exports.registry.register("/cosmos.feegrant.v1beta1.MsgGrantAllowanceResponse",
|
|
235
|
-
exports.registry.register("/cosmos.feegrant.v1beta1.MsgRevokeAllowance",
|
|
236
|
-
exports.registry.register("/cosmos.feegrant.v1beta1.MsgRevokeAllowanceResponse",
|
|
237
|
-
exports.registry.register("/cosmos.evidence.v1beta1.MsgSubmitEvidence",
|
|
238
|
-
exports.registry.register("/cosmos.evidence.v1beta1.MsgSubmitEvidenceResponse",
|
|
239
|
-
exports.registry.register("/cosmos.nft.v1beta1.MsgSend",
|
|
240
|
-
exports.registry.register("/cosmos.nft.v1beta1.MsgSendResponse",
|
|
241
|
-
exports.registry.register("/cosmos.group.v1.MsgCreateGroup",
|
|
242
|
-
exports.registry.register("/cosmos.group.v1.MsgCreateGroupResponse",
|
|
243
|
-
exports.registry.register("/cosmos.group.v1.MsgUpdateGroupMembers",
|
|
244
|
-
exports.registry.register("/cosmos.group.v1.MsgUpdateGroupMembersResponse",
|
|
245
|
-
exports.registry.register("/cosmos.group.v1.MsgUpdateGroupAdmin",
|
|
246
|
-
exports.registry.register("/cosmos.group.v1.MsgUpdateGroupAdminResponse",
|
|
247
|
-
exports.registry.register("/cosmos.group.v1.MsgUpdateGroupMetadata",
|
|
248
|
-
exports.registry.register("/cosmos.group.v1.MsgUpdateGroupMetadataResponse",
|
|
249
|
-
exports.registry.register("/cosmos.group.v1.MsgCreateGroupPolicy",
|
|
250
|
-
exports.registry.register("/cosmos.group.v1.MsgCreateGroupPolicyResponse",
|
|
251
|
-
exports.registry.register("/cosmos.group.v1.MsgUpdateGroupPolicyAdmin",
|
|
252
|
-
exports.registry.register("/cosmos.group.v1.MsgCreateGroupWithPolicy",
|
|
253
|
-
exports.registry.register("/cosmos.group.v1.MsgCreateGroupWithPolicyResponse",
|
|
254
|
-
exports.registry.register("/cosmos.group.v1.MsgUpdateGroupPolicyAdminResponse",
|
|
255
|
-
exports.registry.register("/cosmos.group.v1.MsgUpdateGroupPolicyDecisionPolicy",
|
|
256
|
-
exports.registry.register("/cosmos.group.v1.MsgUpdateGroupPolicyDecisionPolicyResponse",
|
|
257
|
-
exports.registry.register("/cosmos.group.v1.MsgUpdateGroupPolicyMetadata",
|
|
258
|
-
exports.registry.register("/cosmos.group.v1.MsgUpdateGroupPolicyMetadataResponse",
|
|
259
|
-
exports.registry.register("/cosmos.group.v1.
|
|
260
|
-
exports.registry.register("/cosmos.group.v1.
|
|
261
|
-
exports.registry.register("/cosmos.group.v1.MsgWithdrawProposal",
|
|
262
|
-
exports.registry.register("/cosmos.group.v1.MsgWithdrawProposalResponse",
|
|
263
|
-
exports.registry.register("/cosmos.group.v1.
|
|
264
|
-
exports.registry.register("/cosmos.group.v1.
|
|
265
|
-
exports.registry.register("/cosmos.group.v1.MsgExec",
|
|
266
|
-
exports.registry.register("/cosmos.group.v1.MsgExecResponse",
|
|
267
|
-
exports.registry.register("/cosmos.group.v1.MsgLeaveGroup",
|
|
268
|
-
exports.registry.register("/cosmos.group.v1.MsgLeaveGroupResponse",
|
|
269
|
-
exports.registry.register("/cosmos.bank.v1beta1.MsgSend",
|
|
270
|
-
exports.registry.register("/cosmos.bank.v1beta1.MsgSendResponse",
|
|
271
|
-
exports.registry.register("/cosmos.bank.v1beta1.MsgMultiSend",
|
|
272
|
-
exports.registry.register("/cosmos.bank.v1beta1.MsgMultiSendResponse",
|
|
273
|
-
exports.registry.register("/cosmos.distribution.v1beta1.MsgSetWithdrawAddress",
|
|
274
|
-
exports.registry.register("/cosmos.distribution.v1beta1.MsgSetWithdrawAddressResponse",
|
|
275
|
-
exports.registry.register("/cosmos.distribution.v1beta1.MsgWithdrawDelegatorReward",
|
|
276
|
-
exports.registry.register("/cosmos.distribution.v1beta1.MsgWithdrawDelegatorRewardResponse",
|
|
277
|
-
exports.registry.register("/cosmos.distribution.v1beta1.MsgWithdrawValidatorCommission",
|
|
278
|
-
exports.registry.register("/cosmos.distribution.v1beta1.MsgWithdrawValidatorCommissionResponse",
|
|
279
|
-
exports.registry.register("/cosmos.distribution.v1beta1.MsgFundCommunityPool",
|
|
280
|
-
exports.registry.register("/cosmos.distribution.v1beta1.MsgFundCommunityPoolResponse",
|
|
244
|
+
exports.registry.register("/cosmos.feegrant.v1beta1.MsgGrantAllowance", tx_11.MsgGrantAllowance);
|
|
245
|
+
exports.registry.register("/cosmos.feegrant.v1beta1.MsgGrantAllowanceResponse", tx_11.MsgGrantAllowanceResponse);
|
|
246
|
+
exports.registry.register("/cosmos.feegrant.v1beta1.MsgRevokeAllowance", tx_11.MsgRevokeAllowance);
|
|
247
|
+
exports.registry.register("/cosmos.feegrant.v1beta1.MsgRevokeAllowanceResponse", tx_11.MsgRevokeAllowanceResponse);
|
|
248
|
+
exports.registry.register("/cosmos.evidence.v1beta1.MsgSubmitEvidence", tx_12.MsgSubmitEvidence);
|
|
249
|
+
exports.registry.register("/cosmos.evidence.v1beta1.MsgSubmitEvidenceResponse", tx_12.MsgSubmitEvidenceResponse);
|
|
250
|
+
exports.registry.register("/cosmos.nft.v1beta1.MsgSend", tx_13.MsgSend);
|
|
251
|
+
exports.registry.register("/cosmos.nft.v1beta1.MsgSendResponse", tx_13.MsgSendResponse);
|
|
252
|
+
exports.registry.register("/cosmos.group.v1.MsgCreateGroup", tx_14.MsgCreateGroup);
|
|
253
|
+
exports.registry.register("/cosmos.group.v1.MsgCreateGroupResponse", tx_14.MsgCreateGroupResponse);
|
|
254
|
+
exports.registry.register("/cosmos.group.v1.MsgUpdateGroupMembers", tx_14.MsgUpdateGroupMembers);
|
|
255
|
+
exports.registry.register("/cosmos.group.v1.MsgUpdateGroupMembersResponse", tx_14.MsgUpdateGroupMembersResponse);
|
|
256
|
+
exports.registry.register("/cosmos.group.v1.MsgUpdateGroupAdmin", tx_14.MsgUpdateGroupAdmin);
|
|
257
|
+
exports.registry.register("/cosmos.group.v1.MsgUpdateGroupAdminResponse", tx_14.MsgUpdateGroupAdminResponse);
|
|
258
|
+
exports.registry.register("/cosmos.group.v1.MsgUpdateGroupMetadata", tx_14.MsgUpdateGroupMetadata);
|
|
259
|
+
exports.registry.register("/cosmos.group.v1.MsgUpdateGroupMetadataResponse", tx_14.MsgUpdateGroupMetadataResponse);
|
|
260
|
+
exports.registry.register("/cosmos.group.v1.MsgCreateGroupPolicy", tx_14.MsgCreateGroupPolicy);
|
|
261
|
+
exports.registry.register("/cosmos.group.v1.MsgCreateGroupPolicyResponse", tx_14.MsgCreateGroupPolicyResponse);
|
|
262
|
+
exports.registry.register("/cosmos.group.v1.MsgUpdateGroupPolicyAdmin", tx_14.MsgUpdateGroupPolicyAdmin);
|
|
263
|
+
exports.registry.register("/cosmos.group.v1.MsgCreateGroupWithPolicy", tx_14.MsgCreateGroupWithPolicy);
|
|
264
|
+
exports.registry.register("/cosmos.group.v1.MsgCreateGroupWithPolicyResponse", tx_14.MsgCreateGroupWithPolicyResponse);
|
|
265
|
+
exports.registry.register("/cosmos.group.v1.MsgUpdateGroupPolicyAdminResponse", tx_14.MsgUpdateGroupPolicyAdminResponse);
|
|
266
|
+
exports.registry.register("/cosmos.group.v1.MsgUpdateGroupPolicyDecisionPolicy", tx_14.MsgUpdateGroupPolicyDecisionPolicy);
|
|
267
|
+
exports.registry.register("/cosmos.group.v1.MsgUpdateGroupPolicyDecisionPolicyResponse", tx_14.MsgUpdateGroupPolicyDecisionPolicyResponse);
|
|
268
|
+
exports.registry.register("/cosmos.group.v1.MsgUpdateGroupPolicyMetadata", tx_14.MsgUpdateGroupPolicyMetadata);
|
|
269
|
+
exports.registry.register("/cosmos.group.v1.MsgUpdateGroupPolicyMetadataResponse", tx_14.MsgUpdateGroupPolicyMetadataResponse);
|
|
270
|
+
exports.registry.register("/cosmos.group.v1.MsgSubmitProposal", tx_14.MsgSubmitProposal);
|
|
271
|
+
exports.registry.register("/cosmos.group.v1.MsgSubmitProposalResponse", tx_14.MsgSubmitProposalResponse);
|
|
272
|
+
exports.registry.register("/cosmos.group.v1.MsgWithdrawProposal", tx_14.MsgWithdrawProposal);
|
|
273
|
+
exports.registry.register("/cosmos.group.v1.MsgWithdrawProposalResponse", tx_14.MsgWithdrawProposalResponse);
|
|
274
|
+
exports.registry.register("/cosmos.group.v1.MsgVote", tx_14.MsgVote);
|
|
275
|
+
exports.registry.register("/cosmos.group.v1.MsgVoteResponse", tx_14.MsgVoteResponse);
|
|
276
|
+
exports.registry.register("/cosmos.group.v1.MsgExec", tx_14.MsgExec);
|
|
277
|
+
exports.registry.register("/cosmos.group.v1.MsgExecResponse", tx_14.MsgExecResponse);
|
|
278
|
+
exports.registry.register("/cosmos.group.v1.MsgLeaveGroup", tx_14.MsgLeaveGroup);
|
|
279
|
+
exports.registry.register("/cosmos.group.v1.MsgLeaveGroupResponse", tx_14.MsgLeaveGroupResponse);
|
|
280
|
+
exports.registry.register("/cosmos.bank.v1beta1.MsgSend", tx_15.MsgSend);
|
|
281
|
+
exports.registry.register("/cosmos.bank.v1beta1.MsgSendResponse", tx_15.MsgSendResponse);
|
|
282
|
+
exports.registry.register("/cosmos.bank.v1beta1.MsgMultiSend", tx_15.MsgMultiSend);
|
|
283
|
+
exports.registry.register("/cosmos.bank.v1beta1.MsgMultiSendResponse", tx_15.MsgMultiSendResponse);
|
|
284
|
+
exports.registry.register("/cosmos.distribution.v1beta1.MsgSetWithdrawAddress", tx_16.MsgSetWithdrawAddress);
|
|
285
|
+
exports.registry.register("/cosmos.distribution.v1beta1.MsgSetWithdrawAddressResponse", tx_16.MsgSetWithdrawAddressResponse);
|
|
286
|
+
exports.registry.register("/cosmos.distribution.v1beta1.MsgWithdrawDelegatorReward", tx_16.MsgWithdrawDelegatorReward);
|
|
287
|
+
exports.registry.register("/cosmos.distribution.v1beta1.MsgWithdrawDelegatorRewardResponse", tx_16.MsgWithdrawDelegatorRewardResponse);
|
|
288
|
+
exports.registry.register("/cosmos.distribution.v1beta1.MsgWithdrawValidatorCommission", tx_16.MsgWithdrawValidatorCommission);
|
|
289
|
+
exports.registry.register("/cosmos.distribution.v1beta1.MsgWithdrawValidatorCommissionResponse", tx_16.MsgWithdrawValidatorCommissionResponse);
|
|
290
|
+
exports.registry.register("/cosmos.distribution.v1beta1.MsgFundCommunityPool", tx_16.MsgFundCommunityPool);
|
|
291
|
+
exports.registry.register("/cosmos.distribution.v1beta1.MsgFundCommunityPoolResponse", tx_16.MsgFundCommunityPoolResponse);
|
|
281
292
|
exports.registry.register("/cosmos.distribution.v1beta1.CommunityPoolSpendProposal", distribution_1.CommunityPoolSpendProposal);
|
|
282
|
-
exports.registry.register("/cosmos.crisis.v1beta1.MsgVerifyInvariant",
|
|
283
|
-
exports.registry.register("/cosmos.crisis.v1beta1.MsgVerifyInvariantResponse",
|
|
284
|
-
exports.registry.register("/cosmos.vesting.v1beta1.MsgCreateVestingAccount",
|
|
285
|
-
exports.registry.register("/cosmos.vesting.v1beta1.MsgCreateVestingAccountResponse",
|
|
286
|
-
exports.registry.register("/cosmos.vesting.v1beta1.MsgCreatePermanentLockedAccount",
|
|
287
|
-
exports.registry.register("/cosmos.vesting.v1beta1.MsgCreatePermanentLockedAccountResponse",
|
|
288
|
-
exports.registry.register("/cosmos.vesting.v1beta1.MsgCreatePeriodicVestingAccount",
|
|
289
|
-
exports.registry.register("/cosmos.vesting.v1beta1.MsgCreatePeriodicVestingAccountResponse",
|
|
290
|
-
exports.registry.register("/cosmos.staking.v1beta1.MsgCreateValidator",
|
|
291
|
-
exports.registry.register("/cosmos.staking.v1beta1.MsgCreateValidatorResponse",
|
|
292
|
-
exports.registry.register("/cosmos.staking.v1beta1.MsgEditValidator",
|
|
293
|
-
exports.registry.register("/cosmos.staking.v1beta1.MsgEditValidatorResponse",
|
|
294
|
-
exports.registry.register("/cosmos.staking.v1beta1.MsgDelegate",
|
|
295
|
-
exports.registry.register("/cosmos.staking.v1beta1.MsgDelegateResponse",
|
|
296
|
-
exports.registry.register("/cosmos.staking.v1beta1.MsgBeginRedelegate",
|
|
297
|
-
exports.registry.register("/cosmos.staking.v1beta1.MsgBeginRedelegateResponse",
|
|
298
|
-
exports.registry.register("/cosmos.staking.v1beta1.MsgUndelegate",
|
|
299
|
-
exports.registry.register("/cosmos.staking.v1beta1.MsgUndelegateResponse",
|
|
300
|
-
exports.registry.register("/cosmos.staking.v1beta1.MsgCancelUnbondingDelegation",
|
|
301
|
-
exports.registry.register("/cosmos.staking.v1beta1.MsgCancelUnbondingDelegationResponse",
|
|
293
|
+
exports.registry.register("/cosmos.crisis.v1beta1.MsgVerifyInvariant", tx_17.MsgVerifyInvariant);
|
|
294
|
+
exports.registry.register("/cosmos.crisis.v1beta1.MsgVerifyInvariantResponse", tx_17.MsgVerifyInvariantResponse);
|
|
295
|
+
exports.registry.register("/cosmos.vesting.v1beta1.MsgCreateVestingAccount", tx_18.MsgCreateVestingAccount);
|
|
296
|
+
exports.registry.register("/cosmos.vesting.v1beta1.MsgCreateVestingAccountResponse", tx_18.MsgCreateVestingAccountResponse);
|
|
297
|
+
exports.registry.register("/cosmos.vesting.v1beta1.MsgCreatePermanentLockedAccount", tx_18.MsgCreatePermanentLockedAccount);
|
|
298
|
+
exports.registry.register("/cosmos.vesting.v1beta1.MsgCreatePermanentLockedAccountResponse", tx_18.MsgCreatePermanentLockedAccountResponse);
|
|
299
|
+
exports.registry.register("/cosmos.vesting.v1beta1.MsgCreatePeriodicVestingAccount", tx_18.MsgCreatePeriodicVestingAccount);
|
|
300
|
+
exports.registry.register("/cosmos.vesting.v1beta1.MsgCreatePeriodicVestingAccountResponse", tx_18.MsgCreatePeriodicVestingAccountResponse);
|
|
301
|
+
exports.registry.register("/cosmos.staking.v1beta1.MsgCreateValidator", tx_19.MsgCreateValidator);
|
|
302
|
+
exports.registry.register("/cosmos.staking.v1beta1.MsgCreateValidatorResponse", tx_19.MsgCreateValidatorResponse);
|
|
303
|
+
exports.registry.register("/cosmos.staking.v1beta1.MsgEditValidator", tx_19.MsgEditValidator);
|
|
304
|
+
exports.registry.register("/cosmos.staking.v1beta1.MsgEditValidatorResponse", tx_19.MsgEditValidatorResponse);
|
|
305
|
+
exports.registry.register("/cosmos.staking.v1beta1.MsgDelegate", tx_19.MsgDelegate);
|
|
306
|
+
exports.registry.register("/cosmos.staking.v1beta1.MsgDelegateResponse", tx_19.MsgDelegateResponse);
|
|
307
|
+
exports.registry.register("/cosmos.staking.v1beta1.MsgBeginRedelegate", tx_19.MsgBeginRedelegate);
|
|
308
|
+
exports.registry.register("/cosmos.staking.v1beta1.MsgBeginRedelegateResponse", tx_19.MsgBeginRedelegateResponse);
|
|
309
|
+
exports.registry.register("/cosmos.staking.v1beta1.MsgUndelegate", tx_19.MsgUndelegate);
|
|
310
|
+
exports.registry.register("/cosmos.staking.v1beta1.MsgUndelegateResponse", tx_19.MsgUndelegateResponse);
|
|
311
|
+
exports.registry.register("/cosmos.staking.v1beta1.MsgCancelUnbondingDelegation", tx_19.MsgCancelUnbondingDelegation);
|
|
312
|
+
exports.registry.register("/cosmos.staking.v1beta1.MsgCancelUnbondingDelegationResponse", tx_19.MsgCancelUnbondingDelegationResponse);
|
|
302
313
|
exports.registry.register("/cosmos.params.v1beta1.ParameterChangeProposal", params_1.ParameterChangeProposal);
|
|
303
|
-
exports.registry.register("/cosmos.authz.v1beta1.MsgGrant",
|
|
304
|
-
exports.registry.register("/cosmos.authz.v1beta1.MsgExecResponse",
|
|
305
|
-
exports.registry.register("/cosmos.authz.v1beta1.MsgExec",
|
|
306
|
-
exports.registry.register("/cosmos.authz.v1beta1.MsgGrantResponse",
|
|
307
|
-
exports.registry.register("/cosmos.authz.v1beta1.MsgRevoke",
|
|
308
|
-
exports.registry.register("/cosmos.authz.v1beta1.MsgRevokeResponse",
|
|
309
|
-
exports.registry.register("/cosmos.slashing.v1beta1.MsgUnjail",
|
|
310
|
-
exports.registry.register("/cosmos.slashing.v1beta1.MsgUnjailResponse",
|
|
311
|
-
exports.registry.register("/cosmos.gov.
|
|
312
|
-
exports.registry.register("/cosmos.gov.
|
|
313
|
-
exports.registry.register("/cosmos.gov.
|
|
314
|
-
exports.registry.register("/cosmos.gov.
|
|
315
|
-
exports.registry.register("/cosmos.gov.
|
|
316
|
-
exports.registry.register("/cosmos.gov.
|
|
317
|
-
exports.registry.register("/cosmos.gov.
|
|
318
|
-
exports.registry.register("/cosmos.gov.
|
|
314
|
+
exports.registry.register("/cosmos.authz.v1beta1.MsgGrant", tx_20.MsgGrant);
|
|
315
|
+
exports.registry.register("/cosmos.authz.v1beta1.MsgExecResponse", tx_20.MsgExecResponse);
|
|
316
|
+
exports.registry.register("/cosmos.authz.v1beta1.MsgExec", tx_20.MsgExec);
|
|
317
|
+
exports.registry.register("/cosmos.authz.v1beta1.MsgGrantResponse", tx_20.MsgGrantResponse);
|
|
318
|
+
exports.registry.register("/cosmos.authz.v1beta1.MsgRevoke", tx_20.MsgRevoke);
|
|
319
|
+
exports.registry.register("/cosmos.authz.v1beta1.MsgRevokeResponse", tx_20.MsgRevokeResponse);
|
|
320
|
+
exports.registry.register("/cosmos.slashing.v1beta1.MsgUnjail", tx_21.MsgUnjail);
|
|
321
|
+
exports.registry.register("/cosmos.slashing.v1beta1.MsgUnjailResponse", tx_21.MsgUnjailResponse);
|
|
322
|
+
exports.registry.register("/cosmos.gov.v1.MsgSubmitProposal", tx_22.MsgSubmitProposal);
|
|
323
|
+
exports.registry.register("/cosmos.gov.v1.MsgSubmitProposalResponse", tx_22.MsgSubmitProposalResponse);
|
|
324
|
+
exports.registry.register("/cosmos.gov.v1.MsgExecLegacyContent", tx_22.MsgExecLegacyContent);
|
|
325
|
+
exports.registry.register("/cosmos.gov.v1.MsgExecLegacyContentResponse", tx_22.MsgExecLegacyContentResponse);
|
|
326
|
+
exports.registry.register("/cosmos.gov.v1.MsgVote", tx_22.MsgVote);
|
|
327
|
+
exports.registry.register("/cosmos.gov.v1.MsgVoteResponse", tx_22.MsgVoteResponse);
|
|
328
|
+
exports.registry.register("/cosmos.gov.v1.MsgVoteWeighted", tx_22.MsgVoteWeighted);
|
|
329
|
+
exports.registry.register("/cosmos.gov.v1.MsgVoteWeightedResponse", tx_22.MsgVoteWeightedResponse);
|
|
330
|
+
exports.registry.register("/cosmos.gov.v1.MsgDeposit", tx_22.MsgDeposit);
|
|
331
|
+
exports.registry.register("/cosmos.gov.v1.MsgDepositResponse", tx_22.MsgDepositResponse);
|
|
332
|
+
exports.registry.register("/cosmos.gov.v1beta1.MsgSubmitProposal", tx_23.MsgSubmitProposal);
|
|
333
|
+
exports.registry.register("/cosmos.gov.v1beta1.MsgSubmitProposalResponse", tx_23.MsgSubmitProposalResponse);
|
|
334
|
+
exports.registry.register("/cosmos.gov.v1beta1.MsgVote", tx_23.MsgVote);
|
|
335
|
+
exports.registry.register("/cosmos.gov.v1beta1.MsgVoteResponse", tx_23.MsgVoteResponse);
|
|
336
|
+
exports.registry.register("/cosmos.gov.v1beta1.MsgVoteWeighted", tx_23.MsgVoteWeighted);
|
|
337
|
+
exports.registry.register("/cosmos.gov.v1beta1.MsgVoteWeightedResponse", tx_23.MsgVoteWeightedResponse);
|
|
338
|
+
exports.registry.register("/cosmos.gov.v1beta1.MsgDeposit", tx_23.MsgDeposit);
|
|
339
|
+
exports.registry.register("/cosmos.gov.v1beta1.MsgDepositResponse", tx_23.MsgDepositResponse);
|
|
319
340
|
exports.registry.register("/cosmos.gov.v1beta1.TextProposal", gov_1.TextProposal);
|
|
341
|
+
exports.registry.register("/cosmos.gov.v1beta1.Proposal", gov_1.Proposal);
|
|
320
342
|
exports.registry.register("/Switcheo.carbon.ccm.MsgProcessCrossChainTx", PolyNetwork.Ccm.MsgProcessCrossChainTx);
|
|
321
343
|
exports.registry.register("/Switcheo.carbon.ccm.MsgProcessZionCrossChainTx", PolyNetwork.Ccm.MsgProcessZionCrossChainTx);
|
|
322
344
|
exports.registry.register("/Switcheo.carbon.ccm.MsgProcessCrossChainTxResponse", PolyNetwork.Ccm.MsgProcessCrossChainTxResponse);
|
|
323
345
|
exports.registry.register("/Switcheo.carbon.ccm.MsgProcessZionCrossChainTxResponse", PolyNetwork.Ccm.MsgProcessZionCrossChainTxResponse);
|
|
324
346
|
exports.registry.register("/Switcheo.carbon.ccm.MsgCreateEmitEvent", PolyNetwork.Ccm.MsgCreateEmitEvent);
|
|
325
347
|
exports.registry.register("/Switcheo.carbon.ccm.MsgToggleEmitZionEvents", PolyNetwork.Ccm.MsgToggleEmitZionEvents);
|
|
326
|
-
exports.registry.register("/ibc.core.connection.v1.MsgConnectionOpenInit",
|
|
327
|
-
exports.registry.register("/ibc.core.connection.v1.MsgConnectionOpenInitResponse",
|
|
328
|
-
exports.registry.register("/ibc.core.connection.v1.MsgConnectionOpenTry",
|
|
329
|
-
exports.registry.register("/ibc.core.connection.v1.MsgConnectionOpenTryResponse",
|
|
330
|
-
exports.registry.register("/ibc.core.connection.v1.MsgConnectionOpenAck",
|
|
331
|
-
exports.registry.register("/ibc.core.connection.v1.MsgConnectionOpenAckResponse",
|
|
332
|
-
exports.registry.register("/ibc.core.connection.v1.MsgConnectionOpenConfirm",
|
|
333
|
-
exports.registry.register("/ibc.core.connection.v1.MsgConnectionOpenConfirmResponse",
|
|
334
|
-
exports.registry.register("/ibc.core.channel.v1.MsgChannelOpenInit",
|
|
335
|
-
exports.registry.register("/ibc.core.channel.v1.MsgChannelOpenInitResponse",
|
|
336
|
-
exports.registry.register("/ibc.core.channel.v1.MsgChannelOpenTry",
|
|
337
|
-
exports.registry.register("/ibc.core.channel.v1.MsgChannelOpenTryResponse",
|
|
338
|
-
exports.registry.register("/ibc.core.channel.v1.MsgChannelOpenAck",
|
|
339
|
-
exports.registry.register("/ibc.core.channel.v1.MsgChannelOpenAckResponse",
|
|
340
|
-
exports.registry.register("/ibc.core.channel.v1.MsgChannelOpenConfirm",
|
|
341
|
-
exports.registry.register("/ibc.core.channel.v1.MsgChannelOpenConfirmResponse",
|
|
342
|
-
exports.registry.register("/ibc.core.channel.v1.MsgChannelCloseInit",
|
|
343
|
-
exports.registry.register("/ibc.core.channel.v1.MsgChannelCloseInitResponse",
|
|
344
|
-
exports.registry.register("/ibc.core.channel.v1.MsgChannelCloseConfirm",
|
|
345
|
-
exports.registry.register("/ibc.core.channel.v1.MsgChannelCloseConfirmResponse",
|
|
346
|
-
exports.registry.register("/ibc.core.channel.v1.MsgRecvPacket",
|
|
347
|
-
exports.registry.register("/ibc.core.channel.v1.MsgRecvPacketResponse",
|
|
348
|
-
exports.registry.register("/ibc.core.channel.v1.MsgTimeout",
|
|
349
|
-
exports.registry.register("/ibc.core.channel.v1.MsgTimeoutResponse",
|
|
350
|
-
exports.registry.register("/ibc.core.channel.v1.MsgTimeoutOnClose",
|
|
351
|
-
exports.registry.register("/ibc.core.channel.v1.MsgTimeoutOnCloseResponse",
|
|
352
|
-
exports.registry.register("/ibc.core.channel.v1.MsgAcknowledgement",
|
|
353
|
-
exports.registry.register("/ibc.core.channel.v1.MsgAcknowledgementResponse",
|
|
354
|
-
exports.registry.register("/ibc.core.client.v1.MsgCreateClient",
|
|
355
|
-
exports.registry.register("/ibc.core.client.v1.MsgCreateClientResponse",
|
|
356
|
-
exports.registry.register("/ibc.core.client.v1.MsgUpdateClient",
|
|
357
|
-
exports.registry.register("/ibc.core.client.v1.MsgUpdateClientResponse",
|
|
358
|
-
exports.registry.register("/ibc.core.client.v1.MsgUpgradeClient",
|
|
359
|
-
exports.registry.register("/ibc.core.client.v1.MsgUpgradeClientResponse",
|
|
360
|
-
exports.registry.register("/ibc.core.client.v1.MsgSubmitMisbehaviour",
|
|
361
|
-
exports.registry.register("/ibc.core.client.v1.MsgSubmitMisbehaviourResponse",
|
|
348
|
+
exports.registry.register("/ibc.core.connection.v1.MsgConnectionOpenInit", tx_24.MsgConnectionOpenInit);
|
|
349
|
+
exports.registry.register("/ibc.core.connection.v1.MsgConnectionOpenInitResponse", tx_24.MsgConnectionOpenInitResponse);
|
|
350
|
+
exports.registry.register("/ibc.core.connection.v1.MsgConnectionOpenTry", tx_24.MsgConnectionOpenTry);
|
|
351
|
+
exports.registry.register("/ibc.core.connection.v1.MsgConnectionOpenTryResponse", tx_24.MsgConnectionOpenTryResponse);
|
|
352
|
+
exports.registry.register("/ibc.core.connection.v1.MsgConnectionOpenAck", tx_24.MsgConnectionOpenAck);
|
|
353
|
+
exports.registry.register("/ibc.core.connection.v1.MsgConnectionOpenAckResponse", tx_24.MsgConnectionOpenAckResponse);
|
|
354
|
+
exports.registry.register("/ibc.core.connection.v1.MsgConnectionOpenConfirm", tx_24.MsgConnectionOpenConfirm);
|
|
355
|
+
exports.registry.register("/ibc.core.connection.v1.MsgConnectionOpenConfirmResponse", tx_24.MsgConnectionOpenConfirmResponse);
|
|
356
|
+
exports.registry.register("/ibc.core.channel.v1.MsgChannelOpenInit", tx_25.MsgChannelOpenInit);
|
|
357
|
+
exports.registry.register("/ibc.core.channel.v1.MsgChannelOpenInitResponse", tx_25.MsgChannelOpenInitResponse);
|
|
358
|
+
exports.registry.register("/ibc.core.channel.v1.MsgChannelOpenTry", tx_25.MsgChannelOpenTry);
|
|
359
|
+
exports.registry.register("/ibc.core.channel.v1.MsgChannelOpenTryResponse", tx_25.MsgChannelOpenTryResponse);
|
|
360
|
+
exports.registry.register("/ibc.core.channel.v1.MsgChannelOpenAck", tx_25.MsgChannelOpenAck);
|
|
361
|
+
exports.registry.register("/ibc.core.channel.v1.MsgChannelOpenAckResponse", tx_25.MsgChannelOpenAckResponse);
|
|
362
|
+
exports.registry.register("/ibc.core.channel.v1.MsgChannelOpenConfirm", tx_25.MsgChannelOpenConfirm);
|
|
363
|
+
exports.registry.register("/ibc.core.channel.v1.MsgChannelOpenConfirmResponse", tx_25.MsgChannelOpenConfirmResponse);
|
|
364
|
+
exports.registry.register("/ibc.core.channel.v1.MsgChannelCloseInit", tx_25.MsgChannelCloseInit);
|
|
365
|
+
exports.registry.register("/ibc.core.channel.v1.MsgChannelCloseInitResponse", tx_25.MsgChannelCloseInitResponse);
|
|
366
|
+
exports.registry.register("/ibc.core.channel.v1.MsgChannelCloseConfirm", tx_25.MsgChannelCloseConfirm);
|
|
367
|
+
exports.registry.register("/ibc.core.channel.v1.MsgChannelCloseConfirmResponse", tx_25.MsgChannelCloseConfirmResponse);
|
|
368
|
+
exports.registry.register("/ibc.core.channel.v1.MsgRecvPacket", tx_25.MsgRecvPacket);
|
|
369
|
+
exports.registry.register("/ibc.core.channel.v1.MsgRecvPacketResponse", tx_25.MsgRecvPacketResponse);
|
|
370
|
+
exports.registry.register("/ibc.core.channel.v1.MsgTimeout", tx_25.MsgTimeout);
|
|
371
|
+
exports.registry.register("/ibc.core.channel.v1.MsgTimeoutResponse", tx_25.MsgTimeoutResponse);
|
|
372
|
+
exports.registry.register("/ibc.core.channel.v1.MsgTimeoutOnClose", tx_25.MsgTimeoutOnClose);
|
|
373
|
+
exports.registry.register("/ibc.core.channel.v1.MsgTimeoutOnCloseResponse", tx_25.MsgTimeoutOnCloseResponse);
|
|
374
|
+
exports.registry.register("/ibc.core.channel.v1.MsgAcknowledgement", tx_25.MsgAcknowledgement);
|
|
375
|
+
exports.registry.register("/ibc.core.channel.v1.MsgAcknowledgementResponse", tx_25.MsgAcknowledgementResponse);
|
|
376
|
+
exports.registry.register("/ibc.core.client.v1.MsgCreateClient", tx_26.MsgCreateClient);
|
|
377
|
+
exports.registry.register("/ibc.core.client.v1.MsgCreateClientResponse", tx_26.MsgCreateClientResponse);
|
|
378
|
+
exports.registry.register("/ibc.core.client.v1.MsgUpdateClient", tx_26.MsgUpdateClient);
|
|
379
|
+
exports.registry.register("/ibc.core.client.v1.MsgUpdateClientResponse", tx_26.MsgUpdateClientResponse);
|
|
380
|
+
exports.registry.register("/ibc.core.client.v1.MsgUpgradeClient", tx_26.MsgUpgradeClient);
|
|
381
|
+
exports.registry.register("/ibc.core.client.v1.MsgUpgradeClientResponse", tx_26.MsgUpgradeClientResponse);
|
|
382
|
+
exports.registry.register("/ibc.core.client.v1.MsgSubmitMisbehaviour", tx_26.MsgSubmitMisbehaviour);
|
|
383
|
+
exports.registry.register("/ibc.core.client.v1.MsgSubmitMisbehaviourResponse", tx_26.MsgSubmitMisbehaviourResponse);
|
|
362
384
|
exports.registry.register("/ibc.core.client.v1.ClientUpdateProposal", client_1.ClientUpdateProposal);
|
|
363
385
|
exports.registry.register("/ibc.core.client.v1.UpgradeProposal", client_1.UpgradeProposal);
|
|
364
386
|
exports.registry.register("/ibc.lightclients.tendermint.v1.Header", tendermint_1.Header);
|
|
365
|
-
exports.registry.register("/ibc.applications.fee.v1.MsgRegisterPayee",
|
|
366
|
-
exports.registry.register("/ibc.applications.fee.v1.MsgRegisterPayeeResponse",
|
|
367
|
-
exports.registry.register("/ibc.applications.fee.v1.MsgRegisterCounterpartyPayee",
|
|
368
|
-
exports.registry.register("/ibc.applications.fee.v1.MsgRegisterCounterpartyPayeeResponse",
|
|
369
|
-
exports.registry.register("/ibc.applications.fee.v1.MsgPayPacketFee",
|
|
370
|
-
exports.registry.register("/ibc.applications.fee.v1.MsgPayPacketFeeResponse",
|
|
371
|
-
exports.registry.register("/ibc.applications.fee.v1.MsgPayPacketFeeAsync",
|
|
372
|
-
exports.registry.register("/ibc.applications.fee.v1.MsgPayPacketFeeAsyncResponse",
|
|
373
|
-
exports.registry.register("/ibc.applications.transfer.v1.MsgTransfer",
|
|
374
|
-
exports.registry.register("/ibc.applications.transfer.v1.MsgTransferResponse",
|
|
375
|
-
exports.registry.register("/ibc.applications.interchain_accounts.controller.v1.MsgRegisterInterchainAccount",
|
|
376
|
-
exports.registry.register("/ibc.applications.interchain_accounts.controller.v1.MsgRegisterInterchainAccountResponse",
|
|
377
|
-
exports.registry.register("/ibc.applications.interchain_accounts.controller.v1.MsgSendTx",
|
|
378
|
-
exports.registry.register("/ibc.applications.interchain_accounts.controller.v1.MsgSendTxResponse",
|
|
379
|
-
exports.registry.register("/Switcheo.carbon.coin.MsgCreateToken",
|
|
380
|
-
exports.registry.register("/Switcheo.carbon.coin.MsgCreateTokenResponse",
|
|
381
|
-
exports.registry.register("/Switcheo.carbon.coin.MsgSyncToken",
|
|
382
|
-
exports.registry.register("/Switcheo.carbon.coin.MsgSyncTokenResponse",
|
|
383
|
-
exports.registry.register("/Switcheo.carbon.coin.MsgMintToken",
|
|
384
|
-
exports.registry.register("/Switcheo.carbon.coin.MsgMintTokenResponse",
|
|
385
|
-
exports.registry.register("/Switcheo.carbon.coin.MsgBindToken",
|
|
386
|
-
exports.registry.register("/Switcheo.carbon.coin.MsgBindTokenResponse",
|
|
387
|
-
exports.registry.register("/Switcheo.carbon.coin.MsgUnbindToken",
|
|
388
|
-
exports.registry.register("/Switcheo.carbon.coin.MsgUnbindTokenResponse",
|
|
389
|
-
exports.registry.register("/Switcheo.carbon.coin.MsgLinkToken",
|
|
390
|
-
exports.registry.register("/Switcheo.carbon.coin.MsgLinkTokenResponse",
|
|
391
|
-
exports.registry.register("/Switcheo.carbon.coin.MsgWithdraw",
|
|
392
|
-
exports.registry.register("/Switcheo.carbon.coin.MsgWithdrawResponse",
|
|
393
|
-
exports.registry.register("/Switcheo.carbon.coin.MsgAuthorizeBridge",
|
|
394
|
-
exports.registry.register("/Switcheo.carbon.coin.MsgAuthorizeBridgeResponse",
|
|
395
|
-
exports.registry.register("/Switcheo.carbon.coin.MsgDeauthorizeBridge",
|
|
396
|
-
exports.registry.register("/Switcheo.carbon.coin.MsgDeauthorizeBridgeResponse",
|
|
397
|
-
exports.registry.register("/Switcheo.carbon.coin.MsgEditBridgeName",
|
|
398
|
-
exports.registry.register("/Switcheo.carbon.coin.MsgEditBridgeNameResponse",
|
|
399
|
-
exports.registry.register("/Switcheo.carbon.coin.MsgRemoveBridge",
|
|
400
|
-
exports.registry.register("/Switcheo.carbon.coin.MsgRemoveBridgeResponse",
|
|
401
|
-
exports.registry.register("/Switcheo.carbon.coin.MsgUpdateToken",
|
|
402
|
-
exports.registry.register("/Switcheo.carbon.coin.MsgUpdateTokenResponse",
|
|
403
|
-
exports.registry.register("/Switcheo.carbon.coin.MsgAddBridgeAddress",
|
|
404
|
-
exports.registry.register("/Switcheo.carbon.coin.MsgAddBridgeAddressResponse",
|
|
405
|
-
exports.registry.register("/Switcheo.carbon.coin.MsgRemoveBridgeAddress",
|
|
406
|
-
exports.registry.register("/Switcheo.carbon.coin.MsgRemoveBridgeAddressResponse",
|
|
407
|
-
exports.registry.register("/Switcheo.carbon.coin.MsgCreateGroup",
|
|
408
|
-
exports.registry.register("/Switcheo.carbon.coin.MsgCreateGroupResponse",
|
|
409
|
-
exports.registry.register("/Switcheo.carbon.coin.MsgUpdateGroup",
|
|
410
|
-
exports.registry.register("/Switcheo.carbon.coin.MsgUpdateGroupResponse",
|
|
411
|
-
exports.registry.register("/Switcheo.carbon.coin.MsgRegisterToGroup",
|
|
412
|
-
exports.registry.register("/Switcheo.carbon.coin.MsgRegisterToGroupResponse",
|
|
413
|
-
exports.registry.register("/Switcheo.carbon.coin.MsgDeregisterFromGroup",
|
|
414
|
-
exports.registry.register("/Switcheo.carbon.coin.MsgDeregisterFromGroupResponse",
|
|
415
|
-
exports.registry.register("/Switcheo.carbon.coin.MsgDepositToGroup",
|
|
416
|
-
exports.registry.register("/Switcheo.carbon.coin.MsgDepositToGroupResponse",
|
|
417
|
-
exports.registry.register("/Switcheo.carbon.coin.MsgWithdrawFromGroup",
|
|
418
|
-
exports.registry.register("/Switcheo.carbon.coin.MsgWithdrawFromGroupResponse",
|
|
419
|
-
exports.registry.register("/Switcheo.carbon.coin.MsgUpdateGroupedTokenConfig",
|
|
420
|
-
exports.registry.register("/Switcheo.carbon.coin.MsgUpdateGroupedTokenConfigResponse",
|
|
387
|
+
exports.registry.register("/ibc.applications.fee.v1.MsgRegisterPayee", tx_27.MsgRegisterPayee);
|
|
388
|
+
exports.registry.register("/ibc.applications.fee.v1.MsgRegisterPayeeResponse", tx_27.MsgRegisterPayeeResponse);
|
|
389
|
+
exports.registry.register("/ibc.applications.fee.v1.MsgRegisterCounterpartyPayee", tx_27.MsgRegisterCounterpartyPayee);
|
|
390
|
+
exports.registry.register("/ibc.applications.fee.v1.MsgRegisterCounterpartyPayeeResponse", tx_27.MsgRegisterCounterpartyPayeeResponse);
|
|
391
|
+
exports.registry.register("/ibc.applications.fee.v1.MsgPayPacketFee", tx_27.MsgPayPacketFee);
|
|
392
|
+
exports.registry.register("/ibc.applications.fee.v1.MsgPayPacketFeeResponse", tx_27.MsgPayPacketFeeResponse);
|
|
393
|
+
exports.registry.register("/ibc.applications.fee.v1.MsgPayPacketFeeAsync", tx_27.MsgPayPacketFeeAsync);
|
|
394
|
+
exports.registry.register("/ibc.applications.fee.v1.MsgPayPacketFeeAsyncResponse", tx_27.MsgPayPacketFeeAsyncResponse);
|
|
395
|
+
exports.registry.register("/ibc.applications.transfer.v1.MsgTransfer", tx_28.MsgTransfer);
|
|
396
|
+
exports.registry.register("/ibc.applications.transfer.v1.MsgTransferResponse", tx_28.MsgTransferResponse);
|
|
397
|
+
exports.registry.register("/ibc.applications.interchain_accounts.controller.v1.MsgRegisterInterchainAccount", tx_29.MsgRegisterInterchainAccount);
|
|
398
|
+
exports.registry.register("/ibc.applications.interchain_accounts.controller.v1.MsgRegisterInterchainAccountResponse", tx_29.MsgRegisterInterchainAccountResponse);
|
|
399
|
+
exports.registry.register("/ibc.applications.interchain_accounts.controller.v1.MsgSendTx", tx_29.MsgSendTx);
|
|
400
|
+
exports.registry.register("/ibc.applications.interchain_accounts.controller.v1.MsgSendTxResponse", tx_29.MsgSendTxResponse);
|
|
401
|
+
exports.registry.register("/Switcheo.carbon.coin.MsgCreateToken", tx_30.MsgCreateToken);
|
|
402
|
+
exports.registry.register("/Switcheo.carbon.coin.MsgCreateTokenResponse", tx_30.MsgCreateTokenResponse);
|
|
403
|
+
exports.registry.register("/Switcheo.carbon.coin.MsgSyncToken", tx_30.MsgSyncToken);
|
|
404
|
+
exports.registry.register("/Switcheo.carbon.coin.MsgSyncTokenResponse", tx_30.MsgSyncTokenResponse);
|
|
405
|
+
exports.registry.register("/Switcheo.carbon.coin.MsgMintToken", tx_30.MsgMintToken);
|
|
406
|
+
exports.registry.register("/Switcheo.carbon.coin.MsgMintTokenResponse", tx_30.MsgMintTokenResponse);
|
|
407
|
+
exports.registry.register("/Switcheo.carbon.coin.MsgBindToken", tx_30.MsgBindToken);
|
|
408
|
+
exports.registry.register("/Switcheo.carbon.coin.MsgBindTokenResponse", tx_30.MsgBindTokenResponse);
|
|
409
|
+
exports.registry.register("/Switcheo.carbon.coin.MsgUnbindToken", tx_30.MsgUnbindToken);
|
|
410
|
+
exports.registry.register("/Switcheo.carbon.coin.MsgUnbindTokenResponse", tx_30.MsgUnbindTokenResponse);
|
|
411
|
+
exports.registry.register("/Switcheo.carbon.coin.MsgLinkToken", tx_30.MsgLinkToken);
|
|
412
|
+
exports.registry.register("/Switcheo.carbon.coin.MsgLinkTokenResponse", tx_30.MsgLinkTokenResponse);
|
|
413
|
+
exports.registry.register("/Switcheo.carbon.coin.MsgWithdraw", tx_30.MsgWithdraw);
|
|
414
|
+
exports.registry.register("/Switcheo.carbon.coin.MsgWithdrawResponse", tx_30.MsgWithdrawResponse);
|
|
415
|
+
exports.registry.register("/Switcheo.carbon.coin.MsgAuthorizeBridge", tx_30.MsgAuthorizeBridge);
|
|
416
|
+
exports.registry.register("/Switcheo.carbon.coin.MsgAuthorizeBridgeResponse", tx_30.MsgAuthorizeBridgeResponse);
|
|
417
|
+
exports.registry.register("/Switcheo.carbon.coin.MsgDeauthorizeBridge", tx_30.MsgDeauthorizeBridge);
|
|
418
|
+
exports.registry.register("/Switcheo.carbon.coin.MsgDeauthorizeBridgeResponse", tx_30.MsgDeauthorizeBridgeResponse);
|
|
419
|
+
exports.registry.register("/Switcheo.carbon.coin.MsgEditBridgeName", tx_30.MsgEditBridgeName);
|
|
420
|
+
exports.registry.register("/Switcheo.carbon.coin.MsgEditBridgeNameResponse", tx_30.MsgEditBridgeNameResponse);
|
|
421
|
+
exports.registry.register("/Switcheo.carbon.coin.MsgRemoveBridge", tx_30.MsgRemoveBridge);
|
|
422
|
+
exports.registry.register("/Switcheo.carbon.coin.MsgRemoveBridgeResponse", tx_30.MsgRemoveBridgeResponse);
|
|
423
|
+
exports.registry.register("/Switcheo.carbon.coin.MsgUpdateToken", tx_30.MsgUpdateToken);
|
|
424
|
+
exports.registry.register("/Switcheo.carbon.coin.MsgUpdateTokenResponse", tx_30.MsgUpdateTokenResponse);
|
|
425
|
+
exports.registry.register("/Switcheo.carbon.coin.MsgAddBridgeAddress", tx_30.MsgAddBridgeAddress);
|
|
426
|
+
exports.registry.register("/Switcheo.carbon.coin.MsgAddBridgeAddressResponse", tx_30.MsgAddBridgeAddressResponse);
|
|
427
|
+
exports.registry.register("/Switcheo.carbon.coin.MsgRemoveBridgeAddress", tx_30.MsgRemoveBridgeAddress);
|
|
428
|
+
exports.registry.register("/Switcheo.carbon.coin.MsgRemoveBridgeAddressResponse", tx_30.MsgRemoveBridgeAddressResponse);
|
|
429
|
+
exports.registry.register("/Switcheo.carbon.coin.MsgCreateGroup", tx_30.MsgCreateGroup);
|
|
430
|
+
exports.registry.register("/Switcheo.carbon.coin.MsgCreateGroupResponse", tx_30.MsgCreateGroupResponse);
|
|
431
|
+
exports.registry.register("/Switcheo.carbon.coin.MsgUpdateGroup", tx_30.MsgUpdateGroup);
|
|
432
|
+
exports.registry.register("/Switcheo.carbon.coin.MsgUpdateGroupResponse", tx_30.MsgUpdateGroupResponse);
|
|
433
|
+
exports.registry.register("/Switcheo.carbon.coin.MsgRegisterToGroup", tx_30.MsgRegisterToGroup);
|
|
434
|
+
exports.registry.register("/Switcheo.carbon.coin.MsgRegisterToGroupResponse", tx_30.MsgRegisterToGroupResponse);
|
|
435
|
+
exports.registry.register("/Switcheo.carbon.coin.MsgDeregisterFromGroup", tx_30.MsgDeregisterFromGroup);
|
|
436
|
+
exports.registry.register("/Switcheo.carbon.coin.MsgDeregisterFromGroupResponse", tx_30.MsgDeregisterFromGroupResponse);
|
|
437
|
+
exports.registry.register("/Switcheo.carbon.coin.MsgDepositToGroup", tx_30.MsgDepositToGroup);
|
|
438
|
+
exports.registry.register("/Switcheo.carbon.coin.MsgDepositToGroupResponse", tx_30.MsgDepositToGroupResponse);
|
|
439
|
+
exports.registry.register("/Switcheo.carbon.coin.MsgWithdrawFromGroup", tx_30.MsgWithdrawFromGroup);
|
|
440
|
+
exports.registry.register("/Switcheo.carbon.coin.MsgWithdrawFromGroupResponse", tx_30.MsgWithdrawFromGroupResponse);
|
|
441
|
+
exports.registry.register("/Switcheo.carbon.coin.MsgUpdateGroupedTokenConfig", tx_30.MsgUpdateGroupedTokenConfig);
|
|
442
|
+
exports.registry.register("/Switcheo.carbon.coin.MsgUpdateGroupedTokenConfigResponse", tx_30.MsgUpdateGroupedTokenConfigResponse);
|
|
421
443
|
exports.registry.register("/Switcheo.carbon.coin.CreateTokenProposal", proposal_3.CreateTokenProposal);
|
|
422
|
-
exports.registry.register("/Switcheo.carbon.leverage.MsgSetLeverage",
|
|
423
|
-
exports.registry.register("/Switcheo.carbon.leverage.MsgSetLeverageResponse",
|
|
424
|
-
exports.registry.register("/Switcheo.carbon.profile.MsgUpdateProfile",
|
|
425
|
-
exports.registry.register("/Switcheo.carbon.profile.MsgUpdateProfileResponse",
|
|
426
|
-
exports.registry.register("/ethermint.feemarket.v1.MsgUpdateParams",
|
|
427
|
-
exports.registry.register("/ethermint.feemarket.v1.MsgUpdateParamsResponse",
|
|
428
|
-
exports.registry.register("/ethermint.evm.v1.MsgEthereumTx",
|
|
429
|
-
exports.registry.register("/ethermint.evm.v1.MsgEthereumTxResponse",
|
|
430
|
-
exports.registry.register("/ethermint.evm.v1.MsgUpdateParams",
|
|
431
|
-
exports.registry.register("/ethermint.evm.v1.MsgUpdateParamsResponse",
|
|
432
|
-
exports.registry.register("/Switcheo.carbon.subaccount.MsgCreateSubAccount",
|
|
433
|
-
exports.registry.register("/Switcheo.carbon.subaccount.MsgCreateSubAccountResponse",
|
|
434
|
-
exports.registry.register("/Switcheo.carbon.subaccount.MsgActivateSubAccount",
|
|
435
|
-
exports.registry.register("/Switcheo.carbon.subaccount.MsgActivateSubAccountResponse",
|
|
436
|
-
exports.registry.register("/Switcheo.carbon.subaccount.MsgRemoveSubAccount",
|
|
437
|
-
exports.registry.register("/Switcheo.carbon.subaccount.MsgRemoveSubAccountResponse",
|
|
438
|
-
exports.registry.register("/Switcheo.carbon.market.MsgDisableSpotMarket",
|
|
439
|
-
exports.registry.register("/Switcheo.carbon.market.MsgDisableSpotMarketResponse",
|
|
440
|
-
exports.registry.register("/Switcheo.carbon.market.MsgCreateMarket",
|
|
441
|
-
exports.registry.register("/Switcheo.carbon.market.MsgCreateMarketResponse",
|
|
442
|
-
exports.registry.register("/Switcheo.carbon.market.MsgUpdateMarket",
|
|
443
|
-
exports.registry.register("/Switcheo.carbon.market.MsgUpdateMarketResponse",
|
|
444
|
-
exports.registry.register("/Switcheo.carbon.market.MsgUpdatePerpetualsFundingInterval",
|
|
445
|
-
exports.registry.register("/Switcheo.carbon.market.MsgUpdatePerpetualsFundingIntervalResponse",
|
|
444
|
+
exports.registry.register("/Switcheo.carbon.leverage.MsgSetLeverage", tx_31.MsgSetLeverage);
|
|
445
|
+
exports.registry.register("/Switcheo.carbon.leverage.MsgSetLeverageResponse", tx_31.MsgSetLeverageResponse);
|
|
446
|
+
exports.registry.register("/Switcheo.carbon.profile.MsgUpdateProfile", tx_32.MsgUpdateProfile);
|
|
447
|
+
exports.registry.register("/Switcheo.carbon.profile.MsgUpdateProfileResponse", tx_32.MsgUpdateProfileResponse);
|
|
448
|
+
exports.registry.register("/ethermint.feemarket.v1.MsgUpdateParams", tx_33.MsgUpdateParams);
|
|
449
|
+
exports.registry.register("/ethermint.feemarket.v1.MsgUpdateParamsResponse", tx_33.MsgUpdateParamsResponse);
|
|
450
|
+
exports.registry.register("/ethermint.evm.v1.MsgEthereumTx", tx_34.MsgEthereumTx);
|
|
451
|
+
exports.registry.register("/ethermint.evm.v1.MsgEthereumTxResponse", tx_34.MsgEthereumTxResponse);
|
|
452
|
+
exports.registry.register("/ethermint.evm.v1.MsgUpdateParams", tx_34.MsgUpdateParams);
|
|
453
|
+
exports.registry.register("/ethermint.evm.v1.MsgUpdateParamsResponse", tx_34.MsgUpdateParamsResponse);
|
|
454
|
+
exports.registry.register("/Switcheo.carbon.subaccount.MsgCreateSubAccount", tx_35.MsgCreateSubAccount);
|
|
455
|
+
exports.registry.register("/Switcheo.carbon.subaccount.MsgCreateSubAccountResponse", tx_35.MsgCreateSubAccountResponse);
|
|
456
|
+
exports.registry.register("/Switcheo.carbon.subaccount.MsgActivateSubAccount", tx_35.MsgActivateSubAccount);
|
|
457
|
+
exports.registry.register("/Switcheo.carbon.subaccount.MsgActivateSubAccountResponse", tx_35.MsgActivateSubAccountResponse);
|
|
458
|
+
exports.registry.register("/Switcheo.carbon.subaccount.MsgRemoveSubAccount", tx_35.MsgRemoveSubAccount);
|
|
459
|
+
exports.registry.register("/Switcheo.carbon.subaccount.MsgRemoveSubAccountResponse", tx_35.MsgRemoveSubAccountResponse);
|
|
460
|
+
exports.registry.register("/Switcheo.carbon.market.MsgDisableSpotMarket", tx_36.MsgDisableSpotMarket);
|
|
461
|
+
exports.registry.register("/Switcheo.carbon.market.MsgDisableSpotMarketResponse", tx_36.MsgDisableSpotMarketResponse);
|
|
462
|
+
exports.registry.register("/Switcheo.carbon.market.MsgCreateMarket", tx_36.MsgCreateMarket);
|
|
463
|
+
exports.registry.register("/Switcheo.carbon.market.MsgCreateMarketResponse", tx_36.MsgCreateMarketResponse);
|
|
464
|
+
exports.registry.register("/Switcheo.carbon.market.MsgUpdateMarket", tx_36.MsgUpdateMarket);
|
|
465
|
+
exports.registry.register("/Switcheo.carbon.market.MsgUpdateMarketResponse", tx_36.MsgUpdateMarketResponse);
|
|
466
|
+
exports.registry.register("/Switcheo.carbon.market.MsgUpdatePerpetualsFundingInterval", tx_36.MsgUpdatePerpetualsFundingInterval);
|
|
467
|
+
exports.registry.register("/Switcheo.carbon.market.MsgUpdatePerpetualsFundingIntervalResponse", tx_36.MsgUpdatePerpetualsFundingIntervalResponse);
|
|
446
468
|
exports.registry.register("/Switcheo.carbon.market.CreateMarketProposal", proposal_4.CreateMarketProposal);
|
|
447
469
|
exports.registry.register("/Switcheo.carbon.market.UpdateMarketProposal", proposal_4.UpdateMarketProposal);
|
|
448
470
|
exports.registry.register("/Switcheo.carbon.market.UpdatePerpetualsFundingIntervalProposal", proposal_4.UpdatePerpetualsFundingIntervalProposal);
|
|
449
|
-
exports.registry.register("/Switcheo.carbon.sequence.MsgSetSequence",
|
|
450
|
-
exports.registry.register("/Switcheo.carbon.sequence.MsgSetSequenceResponse",
|
|
451
|
-
exports.registry.register("/Switcheo.carbon.liquiditypool.MsgCreatePool",
|
|
452
|
-
exports.registry.register("/Switcheo.carbon.liquiditypool.MsgCreatePoolResponse",
|
|
453
|
-
exports.registry.register("/Switcheo.carbon.liquiditypool.MsgCreatePoolWithLiquidity",
|
|
454
|
-
exports.registry.register("/Switcheo.carbon.liquiditypool.MsgCreatePoolWithLiquidityResponse",
|
|
455
|
-
exports.registry.register("/Switcheo.carbon.liquiditypool.MsgAddLiquidity",
|
|
456
|
-
exports.registry.register("/Switcheo.carbon.liquiditypool.MsgAddLiquidityResponse",
|
|
457
|
-
exports.registry.register("/Switcheo.carbon.liquiditypool.MsgRemoveLiquidity",
|
|
458
|
-
exports.registry.register("/Switcheo.carbon.liquiditypool.MsgRemoveLiquidityResponse",
|
|
459
|
-
exports.registry.register("/Switcheo.carbon.liquiditypool.MsgSetRewardsWeights",
|
|
460
|
-
exports.registry.register("/Switcheo.carbon.liquiditypool.MsgSetRewardsWeightsResponse",
|
|
461
|
-
exports.registry.register("/Switcheo.carbon.liquiditypool.MsgStakePoolToken",
|
|
462
|
-
exports.registry.register("/Switcheo.carbon.liquiditypool.MsgStakePoolTokenResponse",
|
|
463
|
-
exports.registry.register("/Switcheo.carbon.liquiditypool.MsgUnstakePoolToken",
|
|
464
|
-
exports.registry.register("/Switcheo.carbon.liquiditypool.MsgUnstakePoolTokenResponse",
|
|
465
|
-
exports.registry.register("/Switcheo.carbon.liquiditypool.MsgClaimPoolRewards",
|
|
466
|
-
exports.registry.register("/Switcheo.carbon.liquiditypool.MsgClaimPoolRewardsResponse",
|
|
467
|
-
exports.registry.register("/Switcheo.carbon.liquiditypool.MsgSetRewardCurve",
|
|
468
|
-
exports.registry.register("/Switcheo.carbon.liquiditypool.MsgSetRewardCurveResponse",
|
|
469
|
-
exports.registry.register("/Switcheo.carbon.liquiditypool.MsgSetCommitmentCurve",
|
|
470
|
-
exports.registry.register("/Switcheo.carbon.liquiditypool.MsgSetCommitmentCurveResponse",
|
|
471
|
-
exports.registry.register("/Switcheo.carbon.liquiditypool.MsgUpdatePool",
|
|
472
|
-
exports.registry.register("/Switcheo.carbon.liquiditypool.MsgUpdatePoolResponse",
|
|
473
|
-
exports.registry.register("/Switcheo.carbon.liquiditypool.MsgCreatePoolRoute",
|
|
474
|
-
exports.registry.register("/Switcheo.carbon.liquiditypool.MsgCreatePoolRouteResponse",
|
|
475
|
-
exports.registry.register("/Switcheo.carbon.liquiditypool.MsgRemovePoolRoute",
|
|
476
|
-
exports.registry.register("/Switcheo.carbon.liquiditypool.MsgRemovePoolRouteResponse",
|
|
477
|
-
exports.registry.register("/Switcheo.carbon.liquiditypool.MsgUpdatePoolRoute",
|
|
478
|
-
exports.registry.register("/Switcheo.carbon.liquiditypool.MsgUpdatePoolRouteResponse",
|
|
471
|
+
exports.registry.register("/Switcheo.carbon.sequence.MsgSetSequence", tx_37.MsgSetSequence);
|
|
472
|
+
exports.registry.register("/Switcheo.carbon.sequence.MsgSetSequenceResponse", tx_37.MsgSetSequenceResponse);
|
|
473
|
+
exports.registry.register("/Switcheo.carbon.liquiditypool.MsgCreatePool", tx_38.MsgCreatePool);
|
|
474
|
+
exports.registry.register("/Switcheo.carbon.liquiditypool.MsgCreatePoolResponse", tx_38.MsgCreatePoolResponse);
|
|
475
|
+
exports.registry.register("/Switcheo.carbon.liquiditypool.MsgCreatePoolWithLiquidity", tx_38.MsgCreatePoolWithLiquidity);
|
|
476
|
+
exports.registry.register("/Switcheo.carbon.liquiditypool.MsgCreatePoolWithLiquidityResponse", tx_38.MsgCreatePoolWithLiquidityResponse);
|
|
477
|
+
exports.registry.register("/Switcheo.carbon.liquiditypool.MsgAddLiquidity", tx_38.MsgAddLiquidity);
|
|
478
|
+
exports.registry.register("/Switcheo.carbon.liquiditypool.MsgAddLiquidityResponse", tx_38.MsgAddLiquidityResponse);
|
|
479
|
+
exports.registry.register("/Switcheo.carbon.liquiditypool.MsgRemoveLiquidity", tx_38.MsgRemoveLiquidity);
|
|
480
|
+
exports.registry.register("/Switcheo.carbon.liquiditypool.MsgRemoveLiquidityResponse", tx_38.MsgRemoveLiquidityResponse);
|
|
481
|
+
exports.registry.register("/Switcheo.carbon.liquiditypool.MsgSetRewardsWeights", tx_38.MsgSetRewardsWeights);
|
|
482
|
+
exports.registry.register("/Switcheo.carbon.liquiditypool.MsgSetRewardsWeightsResponse", tx_38.MsgSetRewardsWeightsResponse);
|
|
483
|
+
exports.registry.register("/Switcheo.carbon.liquiditypool.MsgStakePoolToken", tx_38.MsgStakePoolToken);
|
|
484
|
+
exports.registry.register("/Switcheo.carbon.liquiditypool.MsgStakePoolTokenResponse", tx_38.MsgStakePoolTokenResponse);
|
|
485
|
+
exports.registry.register("/Switcheo.carbon.liquiditypool.MsgUnstakePoolToken", tx_38.MsgUnstakePoolToken);
|
|
486
|
+
exports.registry.register("/Switcheo.carbon.liquiditypool.MsgUnstakePoolTokenResponse", tx_38.MsgUnstakePoolTokenResponse);
|
|
487
|
+
exports.registry.register("/Switcheo.carbon.liquiditypool.MsgClaimPoolRewards", tx_38.MsgClaimPoolRewards);
|
|
488
|
+
exports.registry.register("/Switcheo.carbon.liquiditypool.MsgClaimPoolRewardsResponse", tx_38.MsgClaimPoolRewardsResponse);
|
|
489
|
+
exports.registry.register("/Switcheo.carbon.liquiditypool.MsgSetRewardCurve", tx_38.MsgSetRewardCurve);
|
|
490
|
+
exports.registry.register("/Switcheo.carbon.liquiditypool.MsgSetRewardCurveResponse", tx_38.MsgSetRewardCurveResponse);
|
|
491
|
+
exports.registry.register("/Switcheo.carbon.liquiditypool.MsgSetCommitmentCurve", tx_38.MsgSetCommitmentCurve);
|
|
492
|
+
exports.registry.register("/Switcheo.carbon.liquiditypool.MsgSetCommitmentCurveResponse", tx_38.MsgSetCommitmentCurveResponse);
|
|
493
|
+
exports.registry.register("/Switcheo.carbon.liquiditypool.MsgUpdatePool", tx_38.MsgUpdatePool);
|
|
494
|
+
exports.registry.register("/Switcheo.carbon.liquiditypool.MsgUpdatePoolResponse", tx_38.MsgUpdatePoolResponse);
|
|
495
|
+
exports.registry.register("/Switcheo.carbon.liquiditypool.MsgCreatePoolRoute", tx_38.MsgCreatePoolRoute);
|
|
496
|
+
exports.registry.register("/Switcheo.carbon.liquiditypool.MsgCreatePoolRouteResponse", tx_38.MsgCreatePoolRouteResponse);
|
|
497
|
+
exports.registry.register("/Switcheo.carbon.liquiditypool.MsgRemovePoolRoute", tx_38.MsgRemovePoolRoute);
|
|
498
|
+
exports.registry.register("/Switcheo.carbon.liquiditypool.MsgRemovePoolRouteResponse", tx_38.MsgRemovePoolRouteResponse);
|
|
499
|
+
exports.registry.register("/Switcheo.carbon.liquiditypool.MsgUpdatePoolRoute", tx_38.MsgUpdatePoolRoute);
|
|
500
|
+
exports.registry.register("/Switcheo.carbon.liquiditypool.MsgUpdatePoolRouteResponse", tx_38.MsgUpdatePoolRouteResponse);
|
|
479
501
|
exports.registry.register("/Switcheo.carbon.liquiditypool.LinkPoolProposal", proposal_5.LinkPoolProposal);
|
|
480
502
|
exports.registry.register("/Switcheo.carbon.liquiditypool.UnlinkPoolProposal", proposal_5.UnlinkPoolProposal);
|
|
481
503
|
exports.registry.register("/Switcheo.carbon.liquiditypool.SetRewardCurveProposal", proposal_5.SetRewardCurveProposal);
|
|
@@ -485,16 +507,16 @@ exports.registry.register("/Switcheo.carbon.liquiditypool.UpdatePoolProposal", p
|
|
|
485
507
|
exports.registry.register("/Switcheo.carbon.liquiditypool.CreatePoolRouteProposal", proposal_5.CreatePoolRouteProposal);
|
|
486
508
|
exports.registry.register("/Switcheo.carbon.liquiditypool.RemovePoolRouteProposal", proposal_5.RemovePoolRouteProposal);
|
|
487
509
|
exports.registry.register("/Switcheo.carbon.liquiditypool.UpdatePoolRouteProposal", proposal_5.UpdatePoolRouteProposal);
|
|
488
|
-
exports.registry.register("/Switcheo.carbon.pricing.MsgSetBackfillTimeInterval",
|
|
489
|
-
exports.registry.register("/Switcheo.carbon.pricing.MsgSetBackfillTimeIntervalResponse",
|
|
490
|
-
exports.registry.register("/Switcheo.carbon.pricing.MsgSetSmoothenBand",
|
|
491
|
-
exports.registry.register("/Switcheo.carbon.pricing.MsgSetSmoothenBandResponse",
|
|
492
|
-
exports.registry.register("/Switcheo.carbon.pricing.MsgSetImpactBand",
|
|
493
|
-
exports.registry.register("/Switcheo.carbon.pricing.MsgSetImpactBandResponse",
|
|
494
|
-
exports.registry.register("/Switcheo.carbon.pricing.MsgSetStaleIndexAllowance",
|
|
495
|
-
exports.registry.register("/Switcheo.carbon.pricing.MsgSetStaleIndexAllowanceResponse",
|
|
496
|
-
exports.registry.register("/Switcheo.carbon.pricing.MsgUpdateTokenPriceOracle",
|
|
497
|
-
exports.registry.register("/Switcheo.carbon.pricing.MsgUpdateTokenPriceOracleResponse",
|
|
510
|
+
exports.registry.register("/Switcheo.carbon.pricing.MsgSetBackfillTimeInterval", tx_39.MsgSetBackfillTimeInterval);
|
|
511
|
+
exports.registry.register("/Switcheo.carbon.pricing.MsgSetBackfillTimeIntervalResponse", tx_39.MsgSetBackfillTimeIntervalResponse);
|
|
512
|
+
exports.registry.register("/Switcheo.carbon.pricing.MsgSetSmoothenBand", tx_39.MsgSetSmoothenBand);
|
|
513
|
+
exports.registry.register("/Switcheo.carbon.pricing.MsgSetSmoothenBandResponse", tx_39.MsgSetSmoothenBandResponse);
|
|
514
|
+
exports.registry.register("/Switcheo.carbon.pricing.MsgSetImpactBand", tx_39.MsgSetImpactBand);
|
|
515
|
+
exports.registry.register("/Switcheo.carbon.pricing.MsgSetImpactBandResponse", tx_39.MsgSetImpactBandResponse);
|
|
516
|
+
exports.registry.register("/Switcheo.carbon.pricing.MsgSetStaleIndexAllowance", tx_39.MsgSetStaleIndexAllowance);
|
|
517
|
+
exports.registry.register("/Switcheo.carbon.pricing.MsgSetStaleIndexAllowanceResponse", tx_39.MsgSetStaleIndexAllowanceResponse);
|
|
518
|
+
exports.registry.register("/Switcheo.carbon.pricing.MsgUpdateTokenPriceOracle", tx_39.MsgUpdateTokenPriceOracle);
|
|
519
|
+
exports.registry.register("/Switcheo.carbon.pricing.MsgUpdateTokenPriceOracleResponse", tx_39.MsgUpdateTokenPriceOracleResponse);
|
|
498
520
|
exports.registry.register("/Switcheo.carbon.pricing.SettlementPriceProposal", proposal_6.SettlementPriceProposal);
|
|
499
521
|
exports.registry.register("/Switcheo.carbon.lockproxy.MsgCreate", PolyNetwork.Lockproxy.MsgCreate);
|
|
500
522
|
exports.registry.register("/Switcheo.carbon.lockproxy.MsgCreateResponse", PolyNetwork.Lockproxy.MsgCreateResponse);
|
|
@@ -639,6 +661,14 @@ exports.TxTypes = {
|
|
|
639
661
|
"MsgSetOracleSlashEnabled": "/Switcheo.carbon.oracle.MsgSetOracleSlashEnabled",
|
|
640
662
|
"MsgSetOracleSlashEnabledResponse": "/Switcheo.carbon.oracle.MsgSetOracleSlashEnabledResponse",
|
|
641
663
|
"CreateOracleProposal": "/Switcheo.carbon.oracle.CreateOracleProposal",
|
|
664
|
+
"MsgAllianceDelegate": "/alliance.alliance.MsgDelegate",
|
|
665
|
+
"MsgAllianceDelegateResponse": "/alliance.alliance.MsgDelegateResponse",
|
|
666
|
+
"MsgAllianceUndelegate": "/alliance.alliance.MsgUndelegate",
|
|
667
|
+
"MsgAllianceUndelegateResponse": "/alliance.alliance.MsgUndelegateResponse",
|
|
668
|
+
"MsgAllianceRedelegate": "/alliance.alliance.MsgRedelegate",
|
|
669
|
+
"MsgAllianceRedelegateResponse": "/alliance.alliance.MsgRedelegateResponse",
|
|
670
|
+
"MsgAllianceClaimDelegationRewards": "/alliance.alliance.MsgClaimDelegationRewards",
|
|
671
|
+
"MsgAllianceClaimDelegationRewardsResponse": "/alliance.alliance.MsgClaimDelegationRewardsResponse",
|
|
642
672
|
"MsgSoftwareUpgrade": "/cosmos.upgrade.v1beta1.MsgSoftwareUpgrade",
|
|
643
673
|
"MsgSoftwareUpgradeResponse": "/cosmos.upgrade.v1beta1.MsgSoftwareUpgradeResponse",
|
|
644
674
|
"MsgCancelUpgrade": "/cosmos.upgrade.v1beta1.MsgCancelUpgrade",
|
|
@@ -653,34 +683,34 @@ exports.TxTypes = {
|
|
|
653
683
|
"MsgSubmitEvidenceResponse": "/cosmos.evidence.v1beta1.MsgSubmitEvidenceResponse",
|
|
654
684
|
"MsgNftSend": "/cosmos.nft.v1beta1.MsgSend",
|
|
655
685
|
"MsgNftSendResponse": "/cosmos.nft.v1beta1.MsgSendResponse",
|
|
656
|
-
"
|
|
657
|
-
"
|
|
658
|
-
"
|
|
659
|
-
"
|
|
660
|
-
"
|
|
661
|
-
"
|
|
662
|
-
"
|
|
663
|
-
"
|
|
664
|
-
"
|
|
665
|
-
"
|
|
666
|
-
"
|
|
667
|
-
"
|
|
668
|
-
"
|
|
669
|
-
"
|
|
670
|
-
"
|
|
671
|
-
"
|
|
672
|
-
"
|
|
673
|
-
"
|
|
686
|
+
"MsgGroupCreateGroup": "/cosmos.group.v1.MsgCreateGroup",
|
|
687
|
+
"MsgGroupCreateGroupResponse": "/cosmos.group.v1.MsgCreateGroupResponse",
|
|
688
|
+
"MsgGroupUpdateGroupMembers": "/cosmos.group.v1.MsgUpdateGroupMembers",
|
|
689
|
+
"MsgGroupUpdateGroupMembersResponse": "/cosmos.group.v1.MsgUpdateGroupMembersResponse",
|
|
690
|
+
"MsgGroupUpdateGroupAdmin": "/cosmos.group.v1.MsgUpdateGroupAdmin",
|
|
691
|
+
"MsgGroupUpdateGroupAdminResponse": "/cosmos.group.v1.MsgUpdateGroupAdminResponse",
|
|
692
|
+
"MsgGroupUpdateGroupMetadata": "/cosmos.group.v1.MsgUpdateGroupMetadata",
|
|
693
|
+
"MsgGroupUpdateGroupMetadataResponse": "/cosmos.group.v1.MsgUpdateGroupMetadataResponse",
|
|
694
|
+
"MsgGroupCreateGroupPolicy": "/cosmos.group.v1.MsgCreateGroupPolicy",
|
|
695
|
+
"MsgGroupCreateGroupPolicyResponse": "/cosmos.group.v1.MsgCreateGroupPolicyResponse",
|
|
696
|
+
"MsgGroupUpdateGroupPolicyAdmin": "/cosmos.group.v1.MsgUpdateGroupPolicyAdmin",
|
|
697
|
+
"MsgGroupCreateGroupWithPolicy": "/cosmos.group.v1.MsgCreateGroupWithPolicy",
|
|
698
|
+
"MsgGroupCreateGroupWithPolicyResponse": "/cosmos.group.v1.MsgCreateGroupWithPolicyResponse",
|
|
699
|
+
"MsgGroupUpdateGroupPolicyAdminResponse": "/cosmos.group.v1.MsgUpdateGroupPolicyAdminResponse",
|
|
700
|
+
"MsgGroupUpdateGroupPolicyDecisionPolicy": "/cosmos.group.v1.MsgUpdateGroupPolicyDecisionPolicy",
|
|
701
|
+
"MsgGroupUpdateGroupPolicyDecisionPolicyResponse": "/cosmos.group.v1.MsgUpdateGroupPolicyDecisionPolicyResponse",
|
|
702
|
+
"MsgGroupUpdateGroupPolicyMetadata": "/cosmos.group.v1.MsgUpdateGroupPolicyMetadata",
|
|
703
|
+
"MsgGroupUpdateGroupPolicyMetadataResponse": "/cosmos.group.v1.MsgUpdateGroupPolicyMetadataResponse",
|
|
674
704
|
"MsgGroupSubmitProposal": "/cosmos.group.v1.MsgSubmitProposal",
|
|
675
705
|
"MsgGroupSubmitProposalResponse": "/cosmos.group.v1.MsgSubmitProposalResponse",
|
|
676
|
-
"
|
|
677
|
-
"
|
|
706
|
+
"MsgGroupWithdrawProposal": "/cosmos.group.v1.MsgWithdrawProposal",
|
|
707
|
+
"MsgGroupWithdrawProposalResponse": "/cosmos.group.v1.MsgWithdrawProposalResponse",
|
|
678
708
|
"MsgGroupVote": "/cosmos.group.v1.MsgVote",
|
|
679
709
|
"MsgGroupVoteResponse": "/cosmos.group.v1.MsgVoteResponse",
|
|
680
|
-
"
|
|
681
|
-
"
|
|
682
|
-
"
|
|
683
|
-
"
|
|
710
|
+
"MsgGroupExec": "/cosmos.group.v1.MsgExec",
|
|
711
|
+
"MsgGroupExecResponse": "/cosmos.group.v1.MsgExecResponse",
|
|
712
|
+
"MsgGroupLeaveGroup": "/cosmos.group.v1.MsgLeaveGroup",
|
|
713
|
+
"MsgGroupLeaveGroupResponse": "/cosmos.group.v1.MsgLeaveGroupResponse",
|
|
684
714
|
"MsgSend": "/cosmos.bank.v1beta1.MsgSend",
|
|
685
715
|
"MsgSendResponse": "/cosmos.bank.v1beta1.MsgSendResponse",
|
|
686
716
|
"MsgMultiSend": "/cosmos.bank.v1beta1.MsgMultiSend",
|
|
@@ -716,17 +746,25 @@ exports.TxTypes = {
|
|
|
716
746
|
"MsgCancelUnbondingDelegationResponse": "/cosmos.staking.v1beta1.MsgCancelUnbondingDelegationResponse",
|
|
717
747
|
"ParameterChangeProposal": "/cosmos.params.v1beta1.ParameterChangeProposal",
|
|
718
748
|
"MsgGrant": "/cosmos.authz.v1beta1.MsgGrant",
|
|
719
|
-
"
|
|
720
|
-
"
|
|
749
|
+
"MsgExecResponse": "/cosmos.authz.v1beta1.MsgExecResponse",
|
|
750
|
+
"MsgExec": "/cosmos.authz.v1beta1.MsgExec",
|
|
721
751
|
"MsgGrantResponse": "/cosmos.authz.v1beta1.MsgGrantResponse",
|
|
722
752
|
"MsgRevoke": "/cosmos.authz.v1beta1.MsgRevoke",
|
|
723
753
|
"MsgRevokeResponse": "/cosmos.authz.v1beta1.MsgRevokeResponse",
|
|
724
754
|
"MsgUnjail": "/cosmos.slashing.v1beta1.MsgUnjail",
|
|
725
755
|
"MsgUnjailResponse": "/cosmos.slashing.v1beta1.MsgUnjailResponse",
|
|
756
|
+
"MsgGovSubmitProposal": "/cosmos.gov.v1.MsgSubmitProposal",
|
|
757
|
+
"MsgGovSubmitProposalResponse": "/cosmos.gov.v1.MsgSubmitProposalResponse",
|
|
758
|
+
"MsgGovExecLegacyContent": "/cosmos.gov.v1.MsgExecLegacyContent",
|
|
759
|
+
"MsgGovExecLegacyContentResponse": "/cosmos.gov.v1.MsgExecLegacyContentResponse",
|
|
760
|
+
"MsgGovVote": "/cosmos.gov.v1.MsgVote",
|
|
761
|
+
"MsgGovVoteResponse": "/cosmos.gov.v1.MsgVoteResponse",
|
|
762
|
+
"MsgGovVoteWeighted": "/cosmos.gov.v1.MsgVoteWeighted",
|
|
763
|
+
"MsgGovVoteWeightedResponse": "/cosmos.gov.v1.MsgVoteWeightedResponse",
|
|
764
|
+
"MsgGovDeposit": "/cosmos.gov.v1.MsgDeposit",
|
|
765
|
+
"MsgGovDepositResponse": "/cosmos.gov.v1.MsgDepositResponse",
|
|
726
766
|
"MsgSubmitProposal": "/cosmos.gov.v1beta1.MsgSubmitProposal",
|
|
727
767
|
"MsgSubmitProposalResponse": "/cosmos.gov.v1beta1.MsgSubmitProposalResponse",
|
|
728
|
-
"MsgExecLegacyContent": "/cosmos.gov.v1beta1.MsgExecLegacyContent",
|
|
729
|
-
"MsgExecLegacyContentResponse": "/cosmos.gov.v1beta1.MsgExecLegacyContentResponse",
|
|
730
768
|
"MsgVote": "/cosmos.gov.v1beta1.MsgVote",
|
|
731
769
|
"MsgVoteResponse": "/cosmos.gov.v1beta1.MsgVoteResponse",
|
|
732
770
|
"MsgVoteWeighted": "/cosmos.gov.v1beta1.MsgVoteWeighted",
|
|
@@ -734,6 +772,7 @@ exports.TxTypes = {
|
|
|
734
772
|
"MsgDeposit": "/cosmos.gov.v1beta1.MsgDeposit",
|
|
735
773
|
"MsgDepositResponse": "/cosmos.gov.v1beta1.MsgDepositResponse",
|
|
736
774
|
"TextProposal": "/cosmos.gov.v1beta1.TextProposal",
|
|
775
|
+
"Proposal": "/cosmos.gov.v1beta1.Proposal",
|
|
737
776
|
"MsgProcessCrossChainTx": "/Switcheo.carbon.ccm.MsgProcessCrossChainTx",
|
|
738
777
|
"MsgProcessZionCrossChainTx": "/Switcheo.carbon.ccm.MsgProcessZionCrossChainTx",
|
|
739
778
|
"MsgProcessCrossChainTxResponse": "/Switcheo.carbon.ccm.MsgProcessCrossChainTxResponse",
|
|
@@ -821,8 +860,8 @@ exports.TxTypes = {
|
|
|
821
860
|
"MsgAddBridgeAddressResponse": "/Switcheo.carbon.coin.MsgAddBridgeAddressResponse",
|
|
822
861
|
"MsgRemoveBridgeAddress": "/Switcheo.carbon.coin.MsgRemoveBridgeAddress",
|
|
823
862
|
"MsgRemoveBridgeAddressResponse": "/Switcheo.carbon.coin.MsgRemoveBridgeAddressResponse",
|
|
824
|
-
"
|
|
825
|
-
"
|
|
863
|
+
"MsgCreateGroup": "/Switcheo.carbon.coin.MsgCreateGroup",
|
|
864
|
+
"MsgCreateGroupResponse": "/Switcheo.carbon.coin.MsgCreateGroupResponse",
|
|
826
865
|
"MsgUpdateGroup": "/Switcheo.carbon.coin.MsgUpdateGroup",
|
|
827
866
|
"MsgUpdateGroupResponse": "/Switcheo.carbon.coin.MsgUpdateGroupResponse",
|
|
828
867
|
"MsgRegisterToGroup": "/Switcheo.carbon.coin.MsgRegisterToGroup",
|
|
@@ -840,10 +879,10 @@ exports.TxTypes = {
|
|
|
840
879
|
"MsgSetLeverageResponse": "/Switcheo.carbon.leverage.MsgSetLeverageResponse",
|
|
841
880
|
"MsgUpdateProfile": "/Switcheo.carbon.profile.MsgUpdateProfile",
|
|
842
881
|
"MsgUpdateProfileResponse": "/Switcheo.carbon.profile.MsgUpdateProfileResponse",
|
|
843
|
-
"
|
|
844
|
-
"
|
|
845
|
-
"
|
|
846
|
-
"
|
|
882
|
+
"MsgFeemarketUpdateParams": "/ethermint.feemarket.v1.MsgUpdateParams",
|
|
883
|
+
"MsgFeemarketUpdateParamsResponse": "/ethermint.feemarket.v1.MsgUpdateParamsResponse",
|
|
884
|
+
"MsgEvmEthereumTx": "/ethermint.evm.v1.MsgEthereumTx",
|
|
885
|
+
"MsgEvmEthereumTxResponse": "/ethermint.evm.v1.MsgEthereumTxResponse",
|
|
847
886
|
"MsgEvmUpdateParams": "/ethermint.evm.v1.MsgUpdateParams",
|
|
848
887
|
"MsgEvmUpdateParamsResponse": "/ethermint.evm.v1.MsgUpdateParamsResponse",
|
|
849
888
|
"MsgCreateSubAccount": "/Switcheo.carbon.subaccount.MsgCreateSubAccount",
|
|
@@ -946,17 +985,17 @@ Object.defineProperty(exports, "QueryAllModuleAddressResponse_AddressesEntry", {
|
|
|
946
985
|
Object.defineProperty(exports, "QueryModuleAddressRequest", { enumerable: true, get: function () { return query_1.QueryModuleAddressRequest; } });
|
|
947
986
|
Object.defineProperty(exports, "QueryModuleAddressResponse", { enumerable: true, get: function () { return query_1.QueryModuleAddressResponse; } });
|
|
948
987
|
Object.defineProperty(exports, "Address", { enumerable: true, get: function () { return query_1.Address; } });
|
|
949
|
-
var
|
|
950
|
-
Object.defineProperty(exports, "MsgSetTradingFlag", { enumerable: true, get: function () { return
|
|
951
|
-
Object.defineProperty(exports, "MsgSetTradingFlagResponse", { enumerable: true, get: function () { return
|
|
952
|
-
Object.defineProperty(exports, "MsgCreateOrder", { enumerable: true, get: function () { return
|
|
953
|
-
Object.defineProperty(exports, "MsgCreateOrderResponse", { enumerable: true, get: function () { return
|
|
954
|
-
Object.defineProperty(exports, "MsgEditOrder", { enumerable: true, get: function () { return
|
|
955
|
-
Object.defineProperty(exports, "MsgEditOrderResponse", { enumerable: true, get: function () { return
|
|
956
|
-
Object.defineProperty(exports, "MsgCancelOrder", { enumerable: true, get: function () { return
|
|
957
|
-
Object.defineProperty(exports, "MsgCancelOrderResponse", { enumerable: true, get: function () { return
|
|
958
|
-
Object.defineProperty(exports, "MsgCancelAll", { enumerable: true, get: function () { return
|
|
959
|
-
Object.defineProperty(exports, "MsgCancelAllResponse", { enumerable: true, get: function () { return
|
|
988
|
+
var tx_40 = require("./order/tx");
|
|
989
|
+
Object.defineProperty(exports, "MsgSetTradingFlag", { enumerable: true, get: function () { return tx_40.MsgSetTradingFlag; } });
|
|
990
|
+
Object.defineProperty(exports, "MsgSetTradingFlagResponse", { enumerable: true, get: function () { return tx_40.MsgSetTradingFlagResponse; } });
|
|
991
|
+
Object.defineProperty(exports, "MsgCreateOrder", { enumerable: true, get: function () { return tx_40.MsgCreateOrder; } });
|
|
992
|
+
Object.defineProperty(exports, "MsgCreateOrderResponse", { enumerable: true, get: function () { return tx_40.MsgCreateOrderResponse; } });
|
|
993
|
+
Object.defineProperty(exports, "MsgEditOrder", { enumerable: true, get: function () { return tx_40.MsgEditOrder; } });
|
|
994
|
+
Object.defineProperty(exports, "MsgEditOrderResponse", { enumerable: true, get: function () { return tx_40.MsgEditOrderResponse; } });
|
|
995
|
+
Object.defineProperty(exports, "MsgCancelOrder", { enumerable: true, get: function () { return tx_40.MsgCancelOrder; } });
|
|
996
|
+
Object.defineProperty(exports, "MsgCancelOrderResponse", { enumerable: true, get: function () { return tx_40.MsgCancelOrderResponse; } });
|
|
997
|
+
Object.defineProperty(exports, "MsgCancelAll", { enumerable: true, get: function () { return tx_40.MsgCancelAll; } });
|
|
998
|
+
Object.defineProperty(exports, "MsgCancelAllResponse", { enumerable: true, get: function () { return tx_40.MsgCancelAllResponse; } });
|
|
960
999
|
var order_1 = require("./order/order");
|
|
961
1000
|
Object.defineProperty(exports, "OrderParams", { enumerable: true, get: function () { return order_1.Params; } });
|
|
962
1001
|
Object.defineProperty(exports, "Order", { enumerable: true, get: function () { return order_1.Order; } });
|
|
@@ -982,90 +1021,90 @@ var stablecoin_interest_info_1 = require("./cdp/stablecoin_interest_info");
|
|
|
982
1021
|
Object.defineProperty(exports, "StablecoinInterestInfo", { enumerable: true, get: function () { return stablecoin_interest_info_1.StablecoinInterestInfo; } });
|
|
983
1022
|
var debt_info_1 = require("./cdp/debt_info");
|
|
984
1023
|
Object.defineProperty(exports, "DebtInfo", { enumerable: true, get: function () { return debt_info_1.DebtInfo; } });
|
|
985
|
-
var
|
|
986
|
-
Object.defineProperty(exports, "MsgAddRateStrategy", { enumerable: true, get: function () { return
|
|
987
|
-
Object.defineProperty(exports, "MsgAddRateStrategyResponse", { enumerable: true, get: function () { return
|
|
988
|
-
Object.defineProperty(exports, "MsgUpdateRateStrategy", { enumerable: true, get: function () { return
|
|
989
|
-
Object.defineProperty(exports, "MsgUpdateRateStrategyResponse", { enumerable: true, get: function () { return
|
|
990
|
-
Object.defineProperty(exports, "MsgRemoveRateStrategy", { enumerable: true, get: function () { return
|
|
991
|
-
Object.defineProperty(exports, "MsgRemoveRateStrategyResponse", { enumerable: true, get: function () { return
|
|
992
|
-
Object.defineProperty(exports, "MsgAddAsset", { enumerable: true, get: function () { return
|
|
993
|
-
Object.defineProperty(exports, "MsgAddAssetResponse", { enumerable: true, get: function () { return
|
|
994
|
-
Object.defineProperty(exports, "MsgUpdateAsset", { enumerable: true, get: function () { return
|
|
995
|
-
Object.defineProperty(exports, "MsgUpdateAssetResponse", { enumerable: true, get: function () { return
|
|
996
|
-
Object.defineProperty(exports, "MsgSupplyAsset", { enumerable: true, get: function () { return
|
|
997
|
-
Object.defineProperty(exports, "MsgSupplyAssetResponse", { enumerable: true, get: function () { return
|
|
998
|
-
Object.defineProperty(exports, "MsgWithdrawAsset", { enumerable: true, get: function () { return
|
|
999
|
-
Object.defineProperty(exports, "MsgWithdrawAssetResponse", { enumerable: true, get: function () { return
|
|
1000
|
-
Object.defineProperty(exports, "MsgLockCollateral", { enumerable: true, get: function () { return
|
|
1001
|
-
Object.defineProperty(exports, "MsgLockCollateralResponse", { enumerable: true, get: function () { return
|
|
1002
|
-
Object.defineProperty(exports, "MsgUnlockCollateral", { enumerable: true, get: function () { return
|
|
1003
|
-
Object.defineProperty(exports, "MsgUnlockCollateralResponse", { enumerable: true, get: function () { return
|
|
1004
|
-
Object.defineProperty(exports, "MsgBorrowAsset", { enumerable: true, get: function () { return
|
|
1005
|
-
Object.defineProperty(exports, "MsgBorrowAssetResponse", { enumerable: true, get: function () { return
|
|
1006
|
-
Object.defineProperty(exports, "MsgRepayAsset", { enumerable: true, get: function () { return
|
|
1007
|
-
Object.defineProperty(exports, "MsgRepayAssetResponse", { enumerable: true, get: function () { return
|
|
1008
|
-
Object.defineProperty(exports, "MsgSupplyAssetAndLockCollateral", { enumerable: true, get: function () { return
|
|
1009
|
-
Object.defineProperty(exports, "MsgSupplyAssetAndLockCollateralResponse", { enumerable: true, get: function () { return
|
|
1010
|
-
Object.defineProperty(exports, "MsgUnlockCollateralAndWithdrawAsset", { enumerable: true, get: function () { return
|
|
1011
|
-
Object.defineProperty(exports, "MsgUnlockCollateralAndWithdrawAssetResponse", { enumerable: true, get: function () { return
|
|
1012
|
-
Object.defineProperty(exports, "MsgLiquidateCollateral", { enumerable: true, get: function () { return
|
|
1013
|
-
Object.defineProperty(exports, "MsgLiquidateCollateralResponse", { enumerable: true, get: function () { return
|
|
1014
|
-
Object.defineProperty(exports, "MsgSetLiquidationFee", { enumerable: true, get: function () { return
|
|
1015
|
-
Object.defineProperty(exports, "MsgSetLiquidationFeeResponse", { enumerable: true, get: function () { return
|
|
1016
|
-
Object.defineProperty(exports, "MsgSetInterestFee", { enumerable: true, get: function () { return
|
|
1017
|
-
Object.defineProperty(exports, "MsgSetInterestFeeResponse", { enumerable: true, get: function () { return
|
|
1018
|
-
Object.defineProperty(exports, "MsgRepayAssetWithCdpTokens", { enumerable: true, get: function () { return
|
|
1019
|
-
Object.defineProperty(exports, "MsgRepayAssetWithCdpTokensResponse", { enumerable: true, get: function () { return
|
|
1020
|
-
Object.defineProperty(exports, "MsgRepayAssetWithCollateral", { enumerable: true, get: function () { return
|
|
1021
|
-
Object.defineProperty(exports, "MsgRepayAssetWithCollateralResponse", { enumerable: true, get: function () { return
|
|
1022
|
-
Object.defineProperty(exports, "MsgSetStablecoinMintCap", { enumerable: true, get: function () { return
|
|
1023
|
-
Object.defineProperty(exports, "MsgSetStablecoinMintCapResponse", { enumerable: true, get: function () { return
|
|
1024
|
-
Object.defineProperty(exports, "MsgSetStablecoinInterestRate", { enumerable: true, get: function () { return
|
|
1025
|
-
Object.defineProperty(exports, "MsgSetStablecoinInterestRateResponse", { enumerable: true, get: function () { return
|
|
1026
|
-
Object.defineProperty(exports, "MsgMintStablecoin", { enumerable: true, get: function () { return
|
|
1027
|
-
Object.defineProperty(exports, "MsgMintStablecoinResponse", { enumerable: true, get: function () { return
|
|
1028
|
-
Object.defineProperty(exports, "MsgReturnStablecoin", { enumerable: true, get: function () { return
|
|
1029
|
-
Object.defineProperty(exports, "MsgReturnStablecoinResponse", { enumerable: true, get: function () { return
|
|
1030
|
-
Object.defineProperty(exports, "MsgSetCompleteLiquidationThreshold", { enumerable: true, get: function () { return
|
|
1031
|
-
Object.defineProperty(exports, "MsgSetCompleteLiquidationThresholdResponse", { enumerable: true, get: function () { return
|
|
1032
|
-
Object.defineProperty(exports, "MsgSetMinimumCloseFactor", { enumerable: true, get: function () { return
|
|
1033
|
-
Object.defineProperty(exports, "MsgSetMinimumCloseFactorResponse", { enumerable: true, get: function () { return
|
|
1034
|
-
Object.defineProperty(exports, "MsgSetSmallLiquidationSize", { enumerable: true, get: function () { return
|
|
1035
|
-
Object.defineProperty(exports, "MsgSetSmallLiquidationSizeResponse", { enumerable: true, get: function () { return
|
|
1036
|
-
Object.defineProperty(exports, "MsgLiquidateCollateralWithCdpTokens", { enumerable: true, get: function () { return
|
|
1037
|
-
Object.defineProperty(exports, "MsgLiquidateCollateralWithCdpTokensResponse", { enumerable: true, get: function () { return
|
|
1038
|
-
Object.defineProperty(exports, "MsgLiquidateCollateralWithCollateral", { enumerable: true, get: function () { return
|
|
1039
|
-
Object.defineProperty(exports, "MsgLiquidateCollateralWithCollateralResponse", { enumerable: true, get: function () { return
|
|
1040
|
-
Object.defineProperty(exports, "MsgLiquidateCollateralWithStablecoin", { enumerable: true, get: function () { return
|
|
1041
|
-
Object.defineProperty(exports, "MsgLiquidateCollateralWithStablecoinResponse", { enumerable: true, get: function () { return
|
|
1042
|
-
Object.defineProperty(exports, "MsgCreateRewardScheme", { enumerable: true, get: function () { return
|
|
1043
|
-
Object.defineProperty(exports, "MsgCreateRewardSchemeResponse", { enumerable: true, get: function () { return
|
|
1044
|
-
Object.defineProperty(exports, "MsgUpdateRewardScheme", { enumerable: true, get: function () { return
|
|
1045
|
-
Object.defineProperty(exports, "MsgUpdateRewardSchemeResponse", { enumerable: true, get: function () { return
|
|
1046
|
-
Object.defineProperty(exports, "MsgClaimRewards", { enumerable: true, get: function () { return
|
|
1047
|
-
Object.defineProperty(exports, "MsgClaimRewardsResponse", { enumerable: true, get: function () { return
|
|
1048
|
-
Object.defineProperty(exports, "MsgSetStalePriceGracePeriod", { enumerable: true, get: function () { return
|
|
1049
|
-
Object.defineProperty(exports, "MsgSetStalePriceGracePeriodResponse", { enumerable: true, get: function () { return
|
|
1050
|
-
Object.defineProperty(exports, "MsgSetCdpPaused", { enumerable: true, get: function () { return
|
|
1051
|
-
Object.defineProperty(exports, "MsgSetCdpPausedResponse", { enumerable: true, get: function () { return
|
|
1052
|
-
Object.defineProperty(exports, "MsgReturnStablecoinWithInterestInCollateral", { enumerable: true, get: function () { return
|
|
1053
|
-
Object.defineProperty(exports, "MsgReturnStablecoinWithInterestInCollateralResponse", { enumerable: true, get: function () { return
|
|
1054
|
-
Object.defineProperty(exports, "MsgReturnStablecoinWithInterestInCdpTokens", { enumerable: true, get: function () { return
|
|
1055
|
-
Object.defineProperty(exports, "MsgReturnStablecoinWithInterestInCdpTokensResponse", { enumerable: true, get: function () { return
|
|
1056
|
-
Object.defineProperty(exports, "MsgLiquidateCollateralWithStablecoinAndInterestInCdpTokens", { enumerable: true, get: function () { return
|
|
1057
|
-
Object.defineProperty(exports, "MsgLiquidateCollateralWithStablecoinAndInterestInCdpTokensResponse", { enumerable: true, get: function () { return
|
|
1058
|
-
Object.defineProperty(exports, "MsgLiquidateCollateralWithStablecoinAndInterestInCollateral", { enumerable: true, get: function () { return
|
|
1059
|
-
Object.defineProperty(exports, "MsgLiquidateCollateralWithStablecoinAndInterestInCollateralResponse", { enumerable: true, get: function () { return
|
|
1060
|
-
Object.defineProperty(exports, "MsgConvertTokenInCdpToGroupTokens", { enumerable: true, get: function () { return
|
|
1061
|
-
Object.defineProperty(exports, "MsgConvertTokenInCdpToGroupTokensResponse", { enumerable: true, get: function () { return
|
|
1062
|
-
Object.defineProperty(exports, "MsgAddEModeCategory", { enumerable: true, get: function () { return
|
|
1063
|
-
Object.defineProperty(exports, "MsgAddEModeCategoryResponse", { enumerable: true, get: function () { return
|
|
1064
|
-
Object.defineProperty(exports, "MsgUpdateEModeCategory", { enumerable: true, get: function () { return
|
|
1065
|
-
Object.defineProperty(exports, "UpdateEModeCategoryParams", { enumerable: true, get: function () { return
|
|
1066
|
-
Object.defineProperty(exports, "MsgUpdateEModeCategoryResponse", { enumerable: true, get: function () { return
|
|
1067
|
-
Object.defineProperty(exports, "MsgChangeAccountEMode", { enumerable: true, get: function () { return
|
|
1068
|
-
Object.defineProperty(exports, "MsgChangeAccountEModeResponse", { enumerable: true, get: function () { return
|
|
1024
|
+
var tx_41 = require("./cdp/tx");
|
|
1025
|
+
Object.defineProperty(exports, "MsgAddRateStrategy", { enumerable: true, get: function () { return tx_41.MsgAddRateStrategy; } });
|
|
1026
|
+
Object.defineProperty(exports, "MsgAddRateStrategyResponse", { enumerable: true, get: function () { return tx_41.MsgAddRateStrategyResponse; } });
|
|
1027
|
+
Object.defineProperty(exports, "MsgUpdateRateStrategy", { enumerable: true, get: function () { return tx_41.MsgUpdateRateStrategy; } });
|
|
1028
|
+
Object.defineProperty(exports, "MsgUpdateRateStrategyResponse", { enumerable: true, get: function () { return tx_41.MsgUpdateRateStrategyResponse; } });
|
|
1029
|
+
Object.defineProperty(exports, "MsgRemoveRateStrategy", { enumerable: true, get: function () { return tx_41.MsgRemoveRateStrategy; } });
|
|
1030
|
+
Object.defineProperty(exports, "MsgRemoveRateStrategyResponse", { enumerable: true, get: function () { return tx_41.MsgRemoveRateStrategyResponse; } });
|
|
1031
|
+
Object.defineProperty(exports, "MsgAddAsset", { enumerable: true, get: function () { return tx_41.MsgAddAsset; } });
|
|
1032
|
+
Object.defineProperty(exports, "MsgAddAssetResponse", { enumerable: true, get: function () { return tx_41.MsgAddAssetResponse; } });
|
|
1033
|
+
Object.defineProperty(exports, "MsgUpdateAsset", { enumerable: true, get: function () { return tx_41.MsgUpdateAsset; } });
|
|
1034
|
+
Object.defineProperty(exports, "MsgUpdateAssetResponse", { enumerable: true, get: function () { return tx_41.MsgUpdateAssetResponse; } });
|
|
1035
|
+
Object.defineProperty(exports, "MsgSupplyAsset", { enumerable: true, get: function () { return tx_41.MsgSupplyAsset; } });
|
|
1036
|
+
Object.defineProperty(exports, "MsgSupplyAssetResponse", { enumerable: true, get: function () { return tx_41.MsgSupplyAssetResponse; } });
|
|
1037
|
+
Object.defineProperty(exports, "MsgWithdrawAsset", { enumerable: true, get: function () { return tx_41.MsgWithdrawAsset; } });
|
|
1038
|
+
Object.defineProperty(exports, "MsgWithdrawAssetResponse", { enumerable: true, get: function () { return tx_41.MsgWithdrawAssetResponse; } });
|
|
1039
|
+
Object.defineProperty(exports, "MsgLockCollateral", { enumerable: true, get: function () { return tx_41.MsgLockCollateral; } });
|
|
1040
|
+
Object.defineProperty(exports, "MsgLockCollateralResponse", { enumerable: true, get: function () { return tx_41.MsgLockCollateralResponse; } });
|
|
1041
|
+
Object.defineProperty(exports, "MsgUnlockCollateral", { enumerable: true, get: function () { return tx_41.MsgUnlockCollateral; } });
|
|
1042
|
+
Object.defineProperty(exports, "MsgUnlockCollateralResponse", { enumerable: true, get: function () { return tx_41.MsgUnlockCollateralResponse; } });
|
|
1043
|
+
Object.defineProperty(exports, "MsgBorrowAsset", { enumerable: true, get: function () { return tx_41.MsgBorrowAsset; } });
|
|
1044
|
+
Object.defineProperty(exports, "MsgBorrowAssetResponse", { enumerable: true, get: function () { return tx_41.MsgBorrowAssetResponse; } });
|
|
1045
|
+
Object.defineProperty(exports, "MsgRepayAsset", { enumerable: true, get: function () { return tx_41.MsgRepayAsset; } });
|
|
1046
|
+
Object.defineProperty(exports, "MsgRepayAssetResponse", { enumerable: true, get: function () { return tx_41.MsgRepayAssetResponse; } });
|
|
1047
|
+
Object.defineProperty(exports, "MsgSupplyAssetAndLockCollateral", { enumerable: true, get: function () { return tx_41.MsgSupplyAssetAndLockCollateral; } });
|
|
1048
|
+
Object.defineProperty(exports, "MsgSupplyAssetAndLockCollateralResponse", { enumerable: true, get: function () { return tx_41.MsgSupplyAssetAndLockCollateralResponse; } });
|
|
1049
|
+
Object.defineProperty(exports, "MsgUnlockCollateralAndWithdrawAsset", { enumerable: true, get: function () { return tx_41.MsgUnlockCollateralAndWithdrawAsset; } });
|
|
1050
|
+
Object.defineProperty(exports, "MsgUnlockCollateralAndWithdrawAssetResponse", { enumerable: true, get: function () { return tx_41.MsgUnlockCollateralAndWithdrawAssetResponse; } });
|
|
1051
|
+
Object.defineProperty(exports, "MsgLiquidateCollateral", { enumerable: true, get: function () { return tx_41.MsgLiquidateCollateral; } });
|
|
1052
|
+
Object.defineProperty(exports, "MsgLiquidateCollateralResponse", { enumerable: true, get: function () { return tx_41.MsgLiquidateCollateralResponse; } });
|
|
1053
|
+
Object.defineProperty(exports, "MsgSetLiquidationFee", { enumerable: true, get: function () { return tx_41.MsgSetLiquidationFee; } });
|
|
1054
|
+
Object.defineProperty(exports, "MsgSetLiquidationFeeResponse", { enumerable: true, get: function () { return tx_41.MsgSetLiquidationFeeResponse; } });
|
|
1055
|
+
Object.defineProperty(exports, "MsgSetInterestFee", { enumerable: true, get: function () { return tx_41.MsgSetInterestFee; } });
|
|
1056
|
+
Object.defineProperty(exports, "MsgSetInterestFeeResponse", { enumerable: true, get: function () { return tx_41.MsgSetInterestFeeResponse; } });
|
|
1057
|
+
Object.defineProperty(exports, "MsgRepayAssetWithCdpTokens", { enumerable: true, get: function () { return tx_41.MsgRepayAssetWithCdpTokens; } });
|
|
1058
|
+
Object.defineProperty(exports, "MsgRepayAssetWithCdpTokensResponse", { enumerable: true, get: function () { return tx_41.MsgRepayAssetWithCdpTokensResponse; } });
|
|
1059
|
+
Object.defineProperty(exports, "MsgRepayAssetWithCollateral", { enumerable: true, get: function () { return tx_41.MsgRepayAssetWithCollateral; } });
|
|
1060
|
+
Object.defineProperty(exports, "MsgRepayAssetWithCollateralResponse", { enumerable: true, get: function () { return tx_41.MsgRepayAssetWithCollateralResponse; } });
|
|
1061
|
+
Object.defineProperty(exports, "MsgSetStablecoinMintCap", { enumerable: true, get: function () { return tx_41.MsgSetStablecoinMintCap; } });
|
|
1062
|
+
Object.defineProperty(exports, "MsgSetStablecoinMintCapResponse", { enumerable: true, get: function () { return tx_41.MsgSetStablecoinMintCapResponse; } });
|
|
1063
|
+
Object.defineProperty(exports, "MsgSetStablecoinInterestRate", { enumerable: true, get: function () { return tx_41.MsgSetStablecoinInterestRate; } });
|
|
1064
|
+
Object.defineProperty(exports, "MsgSetStablecoinInterestRateResponse", { enumerable: true, get: function () { return tx_41.MsgSetStablecoinInterestRateResponse; } });
|
|
1065
|
+
Object.defineProperty(exports, "MsgMintStablecoin", { enumerable: true, get: function () { return tx_41.MsgMintStablecoin; } });
|
|
1066
|
+
Object.defineProperty(exports, "MsgMintStablecoinResponse", { enumerable: true, get: function () { return tx_41.MsgMintStablecoinResponse; } });
|
|
1067
|
+
Object.defineProperty(exports, "MsgReturnStablecoin", { enumerable: true, get: function () { return tx_41.MsgReturnStablecoin; } });
|
|
1068
|
+
Object.defineProperty(exports, "MsgReturnStablecoinResponse", { enumerable: true, get: function () { return tx_41.MsgReturnStablecoinResponse; } });
|
|
1069
|
+
Object.defineProperty(exports, "MsgSetCompleteLiquidationThreshold", { enumerable: true, get: function () { return tx_41.MsgSetCompleteLiquidationThreshold; } });
|
|
1070
|
+
Object.defineProperty(exports, "MsgSetCompleteLiquidationThresholdResponse", { enumerable: true, get: function () { return tx_41.MsgSetCompleteLiquidationThresholdResponse; } });
|
|
1071
|
+
Object.defineProperty(exports, "MsgSetMinimumCloseFactor", { enumerable: true, get: function () { return tx_41.MsgSetMinimumCloseFactor; } });
|
|
1072
|
+
Object.defineProperty(exports, "MsgSetMinimumCloseFactorResponse", { enumerable: true, get: function () { return tx_41.MsgSetMinimumCloseFactorResponse; } });
|
|
1073
|
+
Object.defineProperty(exports, "MsgSetSmallLiquidationSize", { enumerable: true, get: function () { return tx_41.MsgSetSmallLiquidationSize; } });
|
|
1074
|
+
Object.defineProperty(exports, "MsgSetSmallLiquidationSizeResponse", { enumerable: true, get: function () { return tx_41.MsgSetSmallLiquidationSizeResponse; } });
|
|
1075
|
+
Object.defineProperty(exports, "MsgLiquidateCollateralWithCdpTokens", { enumerable: true, get: function () { return tx_41.MsgLiquidateCollateralWithCdpTokens; } });
|
|
1076
|
+
Object.defineProperty(exports, "MsgLiquidateCollateralWithCdpTokensResponse", { enumerable: true, get: function () { return tx_41.MsgLiquidateCollateralWithCdpTokensResponse; } });
|
|
1077
|
+
Object.defineProperty(exports, "MsgLiquidateCollateralWithCollateral", { enumerable: true, get: function () { return tx_41.MsgLiquidateCollateralWithCollateral; } });
|
|
1078
|
+
Object.defineProperty(exports, "MsgLiquidateCollateralWithCollateralResponse", { enumerable: true, get: function () { return tx_41.MsgLiquidateCollateralWithCollateralResponse; } });
|
|
1079
|
+
Object.defineProperty(exports, "MsgLiquidateCollateralWithStablecoin", { enumerable: true, get: function () { return tx_41.MsgLiquidateCollateralWithStablecoin; } });
|
|
1080
|
+
Object.defineProperty(exports, "MsgLiquidateCollateralWithStablecoinResponse", { enumerable: true, get: function () { return tx_41.MsgLiquidateCollateralWithStablecoinResponse; } });
|
|
1081
|
+
Object.defineProperty(exports, "MsgCreateRewardScheme", { enumerable: true, get: function () { return tx_41.MsgCreateRewardScheme; } });
|
|
1082
|
+
Object.defineProperty(exports, "MsgCreateRewardSchemeResponse", { enumerable: true, get: function () { return tx_41.MsgCreateRewardSchemeResponse; } });
|
|
1083
|
+
Object.defineProperty(exports, "MsgUpdateRewardScheme", { enumerable: true, get: function () { return tx_41.MsgUpdateRewardScheme; } });
|
|
1084
|
+
Object.defineProperty(exports, "MsgUpdateRewardSchemeResponse", { enumerable: true, get: function () { return tx_41.MsgUpdateRewardSchemeResponse; } });
|
|
1085
|
+
Object.defineProperty(exports, "MsgClaimRewards", { enumerable: true, get: function () { return tx_41.MsgClaimRewards; } });
|
|
1086
|
+
Object.defineProperty(exports, "MsgClaimRewardsResponse", { enumerable: true, get: function () { return tx_41.MsgClaimRewardsResponse; } });
|
|
1087
|
+
Object.defineProperty(exports, "MsgSetStalePriceGracePeriod", { enumerable: true, get: function () { return tx_41.MsgSetStalePriceGracePeriod; } });
|
|
1088
|
+
Object.defineProperty(exports, "MsgSetStalePriceGracePeriodResponse", { enumerable: true, get: function () { return tx_41.MsgSetStalePriceGracePeriodResponse; } });
|
|
1089
|
+
Object.defineProperty(exports, "MsgSetCdpPaused", { enumerable: true, get: function () { return tx_41.MsgSetCdpPaused; } });
|
|
1090
|
+
Object.defineProperty(exports, "MsgSetCdpPausedResponse", { enumerable: true, get: function () { return tx_41.MsgSetCdpPausedResponse; } });
|
|
1091
|
+
Object.defineProperty(exports, "MsgReturnStablecoinWithInterestInCollateral", { enumerable: true, get: function () { return tx_41.MsgReturnStablecoinWithInterestInCollateral; } });
|
|
1092
|
+
Object.defineProperty(exports, "MsgReturnStablecoinWithInterestInCollateralResponse", { enumerable: true, get: function () { return tx_41.MsgReturnStablecoinWithInterestInCollateralResponse; } });
|
|
1093
|
+
Object.defineProperty(exports, "MsgReturnStablecoinWithInterestInCdpTokens", { enumerable: true, get: function () { return tx_41.MsgReturnStablecoinWithInterestInCdpTokens; } });
|
|
1094
|
+
Object.defineProperty(exports, "MsgReturnStablecoinWithInterestInCdpTokensResponse", { enumerable: true, get: function () { return tx_41.MsgReturnStablecoinWithInterestInCdpTokensResponse; } });
|
|
1095
|
+
Object.defineProperty(exports, "MsgLiquidateCollateralWithStablecoinAndInterestInCdpTokens", { enumerable: true, get: function () { return tx_41.MsgLiquidateCollateralWithStablecoinAndInterestInCdpTokens; } });
|
|
1096
|
+
Object.defineProperty(exports, "MsgLiquidateCollateralWithStablecoinAndInterestInCdpTokensResponse", { enumerable: true, get: function () { return tx_41.MsgLiquidateCollateralWithStablecoinAndInterestInCdpTokensResponse; } });
|
|
1097
|
+
Object.defineProperty(exports, "MsgLiquidateCollateralWithStablecoinAndInterestInCollateral", { enumerable: true, get: function () { return tx_41.MsgLiquidateCollateralWithStablecoinAndInterestInCollateral; } });
|
|
1098
|
+
Object.defineProperty(exports, "MsgLiquidateCollateralWithStablecoinAndInterestInCollateralResponse", { enumerable: true, get: function () { return tx_41.MsgLiquidateCollateralWithStablecoinAndInterestInCollateralResponse; } });
|
|
1099
|
+
Object.defineProperty(exports, "MsgConvertTokenInCdpToGroupTokens", { enumerable: true, get: function () { return tx_41.MsgConvertTokenInCdpToGroupTokens; } });
|
|
1100
|
+
Object.defineProperty(exports, "MsgConvertTokenInCdpToGroupTokensResponse", { enumerable: true, get: function () { return tx_41.MsgConvertTokenInCdpToGroupTokensResponse; } });
|
|
1101
|
+
Object.defineProperty(exports, "MsgAddEModeCategory", { enumerable: true, get: function () { return tx_41.MsgAddEModeCategory; } });
|
|
1102
|
+
Object.defineProperty(exports, "MsgAddEModeCategoryResponse", { enumerable: true, get: function () { return tx_41.MsgAddEModeCategoryResponse; } });
|
|
1103
|
+
Object.defineProperty(exports, "MsgUpdateEModeCategory", { enumerable: true, get: function () { return tx_41.MsgUpdateEModeCategory; } });
|
|
1104
|
+
Object.defineProperty(exports, "UpdateEModeCategoryParams", { enumerable: true, get: function () { return tx_41.UpdateEModeCategoryParams; } });
|
|
1105
|
+
Object.defineProperty(exports, "MsgUpdateEModeCategoryResponse", { enumerable: true, get: function () { return tx_41.MsgUpdateEModeCategoryResponse; } });
|
|
1106
|
+
Object.defineProperty(exports, "MsgChangeAccountEMode", { enumerable: true, get: function () { return tx_41.MsgChangeAccountEMode; } });
|
|
1107
|
+
Object.defineProperty(exports, "MsgChangeAccountEModeResponse", { enumerable: true, get: function () { return tx_41.MsgChangeAccountEModeResponse; } });
|
|
1069
1108
|
var asset_params_1 = require("./cdp/asset_params");
|
|
1070
1109
|
Object.defineProperty(exports, "AssetParams", { enumerable: true, get: function () { return asset_params_1.AssetParams; } });
|
|
1071
1110
|
Object.defineProperty(exports, "AssetUtilization", { enumerable: true, get: function () { return asset_params_1.AssetUtilization; } });
|
|
@@ -1186,10 +1225,10 @@ Object.defineProperty(exports, "CompressedBatchProof", { enumerable: true, get:
|
|
|
1186
1225
|
Object.defineProperty(exports, "CompressedBatchEntry", { enumerable: true, get: function () { return proofs_1.CompressedBatchEntry; } });
|
|
1187
1226
|
Object.defineProperty(exports, "CompressedExistenceProof", { enumerable: true, get: function () { return proofs_1.CompressedExistenceProof; } });
|
|
1188
1227
|
Object.defineProperty(exports, "CompressedNonExistenceProof", { enumerable: true, get: function () { return proofs_1.CompressedNonExistenceProof; } });
|
|
1189
|
-
var
|
|
1190
|
-
Object.defineProperty(exports, "LiquidatorPosition", { enumerable: true, get: function () { return
|
|
1191
|
-
Object.defineProperty(exports, "MsgInitiateLiquidation", { enumerable: true, get: function () { return
|
|
1192
|
-
Object.defineProperty(exports, "MsgInitiateLiquidationResponse", { enumerable: true, get: function () { return
|
|
1228
|
+
var tx_42 = require("./broker/tx");
|
|
1229
|
+
Object.defineProperty(exports, "LiquidatorPosition", { enumerable: true, get: function () { return tx_42.LiquidatorPosition; } });
|
|
1230
|
+
Object.defineProperty(exports, "MsgInitiateLiquidation", { enumerable: true, get: function () { return tx_42.MsgInitiateLiquidation; } });
|
|
1231
|
+
Object.defineProperty(exports, "MsgInitiateLiquidationResponse", { enumerable: true, get: function () { return tx_42.MsgInitiateLiquidationResponse; } });
|
|
1193
1232
|
var incoming_liquidations_1 = require("./broker/incoming_liquidations");
|
|
1194
1233
|
Object.defineProperty(exports, "IncomingLiquidations", { enumerable: true, get: function () { return incoming_liquidations_1.IncomingLiquidations; } });
|
|
1195
1234
|
var pagination_1 = require("./broker/pagination");
|
|
@@ -1207,15 +1246,15 @@ Object.defineProperty(exports, "QueryTradesForPositionRequest", { enumerable: tr
|
|
|
1207
1246
|
Object.defineProperty(exports, "QueryTradesForPositionResponse", { enumerable: true, get: function () { return query_4.QueryTradesForPositionResponse; } });
|
|
1208
1247
|
var event_3 = require("./broker/event");
|
|
1209
1248
|
Object.defineProperty(exports, "TradeEvent", { enumerable: true, get: function () { return event_3.TradeEvent; } });
|
|
1210
|
-
var
|
|
1211
|
-
Object.defineProperty(exports, "MsgSetGasCost", { enumerable: true, get: function () { return
|
|
1212
|
-
Object.defineProperty(exports, "MsgSetGasCostResponse", { enumerable: true, get: function () { return
|
|
1213
|
-
Object.defineProperty(exports, "MsgSetMinGasPrice", { enumerable: true, get: function () { return
|
|
1214
|
-
Object.defineProperty(exports, "MsgSetMinGasPriceResponse", { enumerable: true, get: function () { return
|
|
1215
|
-
Object.defineProperty(exports, "MsgRemoveGasCost", { enumerable: true, get: function () { return
|
|
1216
|
-
Object.defineProperty(exports, "MsgRemoveGasCostResponse", { enumerable: true, get: function () { return
|
|
1217
|
-
Object.defineProperty(exports, "MsgRemoveMinGasPrice", { enumerable: true, get: function () { return
|
|
1218
|
-
Object.defineProperty(exports, "MsgRemoveMinGasPriceResponse", { enumerable: true, get: function () { return
|
|
1249
|
+
var tx_43 = require("./fee/tx");
|
|
1250
|
+
Object.defineProperty(exports, "MsgSetGasCost", { enumerable: true, get: function () { return tx_43.MsgSetGasCost; } });
|
|
1251
|
+
Object.defineProperty(exports, "MsgSetGasCostResponse", { enumerable: true, get: function () { return tx_43.MsgSetGasCostResponse; } });
|
|
1252
|
+
Object.defineProperty(exports, "MsgSetMinGasPrice", { enumerable: true, get: function () { return tx_43.MsgSetMinGasPrice; } });
|
|
1253
|
+
Object.defineProperty(exports, "MsgSetMinGasPriceResponse", { enumerable: true, get: function () { return tx_43.MsgSetMinGasPriceResponse; } });
|
|
1254
|
+
Object.defineProperty(exports, "MsgRemoveGasCost", { enumerable: true, get: function () { return tx_43.MsgRemoveGasCost; } });
|
|
1255
|
+
Object.defineProperty(exports, "MsgRemoveGasCostResponse", { enumerable: true, get: function () { return tx_43.MsgRemoveGasCostResponse; } });
|
|
1256
|
+
Object.defineProperty(exports, "MsgRemoveMinGasPrice", { enumerable: true, get: function () { return tx_43.MsgRemoveMinGasPrice; } });
|
|
1257
|
+
Object.defineProperty(exports, "MsgRemoveMinGasPriceResponse", { enumerable: true, get: function () { return tx_43.MsgRemoveMinGasPriceResponse; } });
|
|
1219
1258
|
var fee_1 = require("./fee/fee");
|
|
1220
1259
|
Object.defineProperty(exports, "MsgFee", { enumerable: true, get: function () { return fee_1.MsgFee; } });
|
|
1221
1260
|
Object.defineProperty(exports, "MsgGasCost", { enumerable: true, get: function () { return fee_1.MsgGasCost; } });
|
|
@@ -1238,9 +1277,9 @@ var event_4 = require("./fee/event");
|
|
|
1238
1277
|
Object.defineProperty(exports, "FeeDeductionEvent", { enumerable: true, get: function () { return event_4.FeeDeductionEvent; } });
|
|
1239
1278
|
var offchain_1 = require("./evmmerge/offchain");
|
|
1240
1279
|
Object.defineProperty(exports, "MsgSignData", { enumerable: true, get: function () { return offchain_1.MsgSignData; } });
|
|
1241
|
-
var
|
|
1242
|
-
Object.defineProperty(exports, "MsgMergeAccount", { enumerable: true, get: function () { return
|
|
1243
|
-
Object.defineProperty(exports, "MsgMergeAccountResponse", { enumerable: true, get: function () { return
|
|
1280
|
+
var tx_44 = require("./evmmerge/tx");
|
|
1281
|
+
Object.defineProperty(exports, "MsgMergeAccount", { enumerable: true, get: function () { return tx_44.MsgMergeAccount; } });
|
|
1282
|
+
Object.defineProperty(exports, "MsgMergeAccountResponse", { enumerable: true, get: function () { return tx_44.MsgMergeAccountResponse; } });
|
|
1244
1283
|
var query_6 = require("./evmmerge/query");
|
|
1245
1284
|
Object.defineProperty(exports, "QueryMappedAddressRequest", { enumerable: true, get: function () { return query_6.QueryMappedAddressRequest; } });
|
|
1246
1285
|
Object.defineProperty(exports, "QueryMappedAddressResponse", { enumerable: true, get: function () { return query_6.QueryMappedAddressResponse; } });
|
|
@@ -1282,9 +1321,9 @@ Object.defineProperty(exports, "StringValue", { enumerable: true, get: function
|
|
|
1282
1321
|
Object.defineProperty(exports, "BytesValue", { enumerable: true, get: function () { return wrappers_1.BytesValue; } });
|
|
1283
1322
|
var duration_1 = require("./google/protobuf/duration");
|
|
1284
1323
|
Object.defineProperty(exports, "Duration", { enumerable: true, get: function () { return duration_1.Duration; } });
|
|
1285
|
-
var
|
|
1286
|
-
Object.defineProperty(exports, "MsgSetMargin", { enumerable: true, get: function () { return
|
|
1287
|
-
Object.defineProperty(exports, "MsgSetMarginResponse", { enumerable: true, get: function () { return
|
|
1324
|
+
var tx_45 = require("./position/tx");
|
|
1325
|
+
Object.defineProperty(exports, "MsgSetMargin", { enumerable: true, get: function () { return tx_45.MsgSetMargin; } });
|
|
1326
|
+
Object.defineProperty(exports, "MsgSetMarginResponse", { enumerable: true, get: function () { return tx_45.MsgSetMarginResponse; } });
|
|
1288
1327
|
var position_1 = require("./position/position");
|
|
1289
1328
|
Object.defineProperty(exports, "Position", { enumerable: true, get: function () { return position_1.Position; } });
|
|
1290
1329
|
Object.defineProperty(exports, "Positions", { enumerable: true, get: function () { return position_1.Positions; } });
|
|
@@ -1299,19 +1338,19 @@ Object.defineProperty(exports, "QueryPositionAllocatedMarginRequest", { enumerab
|
|
|
1299
1338
|
Object.defineProperty(exports, "QueryPositionAllocatedMarginResponse", { enumerable: true, get: function () { return query_9.QueryPositionAllocatedMarginResponse; } });
|
|
1300
1339
|
var event_7 = require("./position/event");
|
|
1301
1340
|
Object.defineProperty(exports, "PositionEvent", { enumerable: true, get: function () { return event_7.PositionEvent; } });
|
|
1302
|
-
var
|
|
1303
|
-
Object.defineProperty(exports, "MsgCreateOracle", { enumerable: true, get: function () { return
|
|
1304
|
-
Object.defineProperty(exports, "CreateOracleParams", { enumerable: true, get: function () { return
|
|
1305
|
-
Object.defineProperty(exports, "MsgCreateOracleResponse", { enumerable: true, get: function () { return
|
|
1306
|
-
Object.defineProperty(exports, "MsgCreateVote", { enumerable: true, get: function () { return
|
|
1307
|
-
Object.defineProperty(exports, "MsgCreateVoteResponse", { enumerable: true, get: function () { return
|
|
1308
|
-
Object.defineProperty(exports, "MsgUpdateOracle", { enumerable: true, get: function () { return
|
|
1309
|
-
Object.defineProperty(exports, "UpdateOracleParams", { enumerable: true, get: function () { return
|
|
1310
|
-
Object.defineProperty(exports, "MsgUpdateOracleResponse", { enumerable: true, get: function () { return
|
|
1311
|
-
Object.defineProperty(exports, "MsgRemoveOracle", { enumerable: true, get: function () { return
|
|
1312
|
-
Object.defineProperty(exports, "MsgRemoveOracleResponse", { enumerable: true, get: function () { return
|
|
1313
|
-
Object.defineProperty(exports, "MsgSetOracleSlashEnabled", { enumerable: true, get: function () { return
|
|
1314
|
-
Object.defineProperty(exports, "MsgSetOracleSlashEnabledResponse", { enumerable: true, get: function () { return
|
|
1341
|
+
var tx_46 = require("./oracle/tx");
|
|
1342
|
+
Object.defineProperty(exports, "MsgCreateOracle", { enumerable: true, get: function () { return tx_46.MsgCreateOracle; } });
|
|
1343
|
+
Object.defineProperty(exports, "CreateOracleParams", { enumerable: true, get: function () { return tx_46.CreateOracleParams; } });
|
|
1344
|
+
Object.defineProperty(exports, "MsgCreateOracleResponse", { enumerable: true, get: function () { return tx_46.MsgCreateOracleResponse; } });
|
|
1345
|
+
Object.defineProperty(exports, "MsgCreateVote", { enumerable: true, get: function () { return tx_46.MsgCreateVote; } });
|
|
1346
|
+
Object.defineProperty(exports, "MsgCreateVoteResponse", { enumerable: true, get: function () { return tx_46.MsgCreateVoteResponse; } });
|
|
1347
|
+
Object.defineProperty(exports, "MsgUpdateOracle", { enumerable: true, get: function () { return tx_46.MsgUpdateOracle; } });
|
|
1348
|
+
Object.defineProperty(exports, "UpdateOracleParams", { enumerable: true, get: function () { return tx_46.UpdateOracleParams; } });
|
|
1349
|
+
Object.defineProperty(exports, "MsgUpdateOracleResponse", { enumerable: true, get: function () { return tx_46.MsgUpdateOracleResponse; } });
|
|
1350
|
+
Object.defineProperty(exports, "MsgRemoveOracle", { enumerable: true, get: function () { return tx_46.MsgRemoveOracle; } });
|
|
1351
|
+
Object.defineProperty(exports, "MsgRemoveOracleResponse", { enumerable: true, get: function () { return tx_46.MsgRemoveOracleResponse; } });
|
|
1352
|
+
Object.defineProperty(exports, "MsgSetOracleSlashEnabled", { enumerable: true, get: function () { return tx_46.MsgSetOracleSlashEnabled; } });
|
|
1353
|
+
Object.defineProperty(exports, "MsgSetOracleSlashEnabledResponse", { enumerable: true, get: function () { return tx_46.MsgSetOracleSlashEnabledResponse; } });
|
|
1315
1354
|
var oracle_1 = require("./oracle/oracle");
|
|
1316
1355
|
Object.defineProperty(exports, "OracleParams", { enumerable: true, get: function () { return oracle_1.Params; } });
|
|
1317
1356
|
Object.defineProperty(exports, "Oracle", { enumerable: true, get: function () { return oracle_1.Oracle; } });
|
|
@@ -1347,65 +1386,120 @@ Object.defineProperty(exports, "QueryOracleParamsResponse", { enumerable: true,
|
|
|
1347
1386
|
var event_8 = require("./oracle/event");
|
|
1348
1387
|
Object.defineProperty(exports, "ResultEvent", { enumerable: true, get: function () { return event_8.ResultEvent; } });
|
|
1349
1388
|
Object.defineProperty(exports, "OracleSlashEvent", { enumerable: true, get: function () { return event_8.OracleSlashEvent; } });
|
|
1350
|
-
var
|
|
1351
|
-
Object.defineProperty(exports, "
|
|
1352
|
-
Object.defineProperty(exports, "
|
|
1353
|
-
Object.defineProperty(exports, "
|
|
1354
|
-
|
|
1355
|
-
|
|
1356
|
-
Object.defineProperty(exports, "
|
|
1389
|
+
var alliance_1 = require("./alliance/alliance");
|
|
1390
|
+
Object.defineProperty(exports, "RewardWeightRange", { enumerable: true, get: function () { return alliance_1.RewardWeightRange; } });
|
|
1391
|
+
Object.defineProperty(exports, "AllianceAsset", { enumerable: true, get: function () { return alliance_1.AllianceAsset; } });
|
|
1392
|
+
Object.defineProperty(exports, "RewardWeightChangeSnapshot", { enumerable: true, get: function () { return alliance_1.RewardWeightChangeSnapshot; } });
|
|
1393
|
+
var gov_2 = require("./alliance/gov");
|
|
1394
|
+
Object.defineProperty(exports, "MsgCreateAllianceProposal", { enumerable: true, get: function () { return gov_2.MsgCreateAllianceProposal; } });
|
|
1395
|
+
Object.defineProperty(exports, "MsgUpdateAllianceProposal", { enumerable: true, get: function () { return gov_2.MsgUpdateAllianceProposal; } });
|
|
1396
|
+
Object.defineProperty(exports, "MsgDeleteAllianceProposal", { enumerable: true, get: function () { return gov_2.MsgDeleteAllianceProposal; } });
|
|
1397
|
+
var tx_47 = require("./alliance/tx");
|
|
1398
|
+
Object.defineProperty(exports, "MsgDelegate", { enumerable: true, get: function () { return tx_47.MsgDelegate; } });
|
|
1399
|
+
Object.defineProperty(exports, "MsgDelegateResponse", { enumerable: true, get: function () { return tx_47.MsgDelegateResponse; } });
|
|
1400
|
+
Object.defineProperty(exports, "MsgUndelegate", { enumerable: true, get: function () { return tx_47.MsgUndelegate; } });
|
|
1401
|
+
Object.defineProperty(exports, "MsgUndelegateResponse", { enumerable: true, get: function () { return tx_47.MsgUndelegateResponse; } });
|
|
1402
|
+
Object.defineProperty(exports, "MsgRedelegate", { enumerable: true, get: function () { return tx_47.MsgRedelegate; } });
|
|
1403
|
+
Object.defineProperty(exports, "MsgRedelegateResponse", { enumerable: true, get: function () { return tx_47.MsgRedelegateResponse; } });
|
|
1404
|
+
Object.defineProperty(exports, "MsgClaimDelegationRewards", { enumerable: true, get: function () { return tx_47.MsgClaimDelegationRewards; } });
|
|
1405
|
+
Object.defineProperty(exports, "MsgClaimDelegationRewardsResponse", { enumerable: true, get: function () { return tx_47.MsgClaimDelegationRewardsResponse; } });
|
|
1406
|
+
var delegations_1 = require("./alliance/delegations");
|
|
1407
|
+
Object.defineProperty(exports, "Delegation", { enumerable: true, get: function () { return delegations_1.Delegation; } });
|
|
1408
|
+
Object.defineProperty(exports, "Redelegation", { enumerable: true, get: function () { return delegations_1.Redelegation; } });
|
|
1409
|
+
Object.defineProperty(exports, "QueuedRedelegation", { enumerable: true, get: function () { return delegations_1.QueuedRedelegation; } });
|
|
1410
|
+
Object.defineProperty(exports, "Undelegation", { enumerable: true, get: function () { return delegations_1.Undelegation; } });
|
|
1411
|
+
Object.defineProperty(exports, "QueuedUndelegation", { enumerable: true, get: function () { return delegations_1.QueuedUndelegation; } });
|
|
1412
|
+
Object.defineProperty(exports, "AllianceValidatorInfo", { enumerable: true, get: function () { return delegations_1.AllianceValidatorInfo; } });
|
|
1413
|
+
var events_1 = require("./alliance/events");
|
|
1414
|
+
Object.defineProperty(exports, "DelegateAllianceEvent", { enumerable: true, get: function () { return events_1.DelegateAllianceEvent; } });
|
|
1415
|
+
Object.defineProperty(exports, "UndelegateAllianceEvent", { enumerable: true, get: function () { return events_1.UndelegateAllianceEvent; } });
|
|
1416
|
+
Object.defineProperty(exports, "RedelegateAllianceEvent", { enumerable: true, get: function () { return events_1.RedelegateAllianceEvent; } });
|
|
1417
|
+
Object.defineProperty(exports, "ClaimAllianceRewardsEvent", { enumerable: true, get: function () { return events_1.ClaimAllianceRewardsEvent; } });
|
|
1418
|
+
var query_11 = require("./alliance/query");
|
|
1419
|
+
Object.defineProperty(exports, "QueryAllianceParamsRequest", { enumerable: true, get: function () { return query_11.QueryParamsRequest; } });
|
|
1420
|
+
Object.defineProperty(exports, "QueryAllianceParamsResponse", { enumerable: true, get: function () { return query_11.QueryParamsResponse; } });
|
|
1421
|
+
Object.defineProperty(exports, "QueryAlliancesRequest", { enumerable: true, get: function () { return query_11.QueryAlliancesRequest; } });
|
|
1422
|
+
Object.defineProperty(exports, "QueryAlliancesResponse", { enumerable: true, get: function () { return query_11.QueryAlliancesResponse; } });
|
|
1423
|
+
Object.defineProperty(exports, "QueryAllianceRequest", { enumerable: true, get: function () { return query_11.QueryAllianceRequest; } });
|
|
1424
|
+
Object.defineProperty(exports, "QueryAllianceResponse", { enumerable: true, get: function () { return query_11.QueryAllianceResponse; } });
|
|
1425
|
+
Object.defineProperty(exports, "QueryIBCAllianceRequest", { enumerable: true, get: function () { return query_11.QueryIBCAllianceRequest; } });
|
|
1426
|
+
Object.defineProperty(exports, "QueryAllianceValidatorRequest", { enumerable: true, get: function () { return query_11.QueryAllianceValidatorRequest; } });
|
|
1427
|
+
Object.defineProperty(exports, "QueryAllAllianceValidatorsRequest", { enumerable: true, get: function () { return query_11.QueryAllAllianceValidatorsRequest; } });
|
|
1428
|
+
Object.defineProperty(exports, "QueryAllAlliancesDelegationsRequest", { enumerable: true, get: function () { return query_11.QueryAllAlliancesDelegationsRequest; } });
|
|
1429
|
+
Object.defineProperty(exports, "QueryAlliancesDelegationsRequest", { enumerable: true, get: function () { return query_11.QueryAlliancesDelegationsRequest; } });
|
|
1430
|
+
Object.defineProperty(exports, "QueryAlliancesDelegationByValidatorRequest", { enumerable: true, get: function () { return query_11.QueryAlliancesDelegationByValidatorRequest; } });
|
|
1431
|
+
Object.defineProperty(exports, "DelegationResponse", { enumerable: true, get: function () { return query_11.DelegationResponse; } });
|
|
1432
|
+
Object.defineProperty(exports, "QueryAlliancesDelegationsResponse", { enumerable: true, get: function () { return query_11.QueryAlliancesDelegationsResponse; } });
|
|
1433
|
+
Object.defineProperty(exports, "QueryAllianceDelegationRequest", { enumerable: true, get: function () { return query_11.QueryAllianceDelegationRequest; } });
|
|
1434
|
+
Object.defineProperty(exports, "QueryIBCAllianceDelegationRequest", { enumerable: true, get: function () { return query_11.QueryIBCAllianceDelegationRequest; } });
|
|
1435
|
+
Object.defineProperty(exports, "QueryAllianceDelegationResponse", { enumerable: true, get: function () { return query_11.QueryAllianceDelegationResponse; } });
|
|
1436
|
+
Object.defineProperty(exports, "QueryAllianceDelegationRewardsRequest", { enumerable: true, get: function () { return query_11.QueryAllianceDelegationRewardsRequest; } });
|
|
1437
|
+
Object.defineProperty(exports, "QueryIBCAllianceDelegationRewardsRequest", { enumerable: true, get: function () { return query_11.QueryIBCAllianceDelegationRewardsRequest; } });
|
|
1438
|
+
Object.defineProperty(exports, "QueryAllianceDelegationRewardsResponse", { enumerable: true, get: function () { return query_11.QueryAllianceDelegationRewardsResponse; } });
|
|
1439
|
+
Object.defineProperty(exports, "QueryAllianceValidatorResponse", { enumerable: true, get: function () { return query_11.QueryAllianceValidatorResponse; } });
|
|
1440
|
+
Object.defineProperty(exports, "QueryAllianceValidatorsResponse", { enumerable: true, get: function () { return query_11.QueryAllianceValidatorsResponse; } });
|
|
1441
|
+
var params_3 = require("./alliance/params");
|
|
1442
|
+
Object.defineProperty(exports, "AllianceParams", { enumerable: true, get: function () { return params_3.Params; } });
|
|
1443
|
+
Object.defineProperty(exports, "AllianceRewardHistory", { enumerable: true, get: function () { return params_3.RewardHistory; } });
|
|
1444
|
+
var query_12 = require("./marketstats/query");
|
|
1445
|
+
Object.defineProperty(exports, "QueryMarketstatsParamsRequest", { enumerable: true, get: function () { return query_12.QueryParamsRequest; } });
|
|
1446
|
+
Object.defineProperty(exports, "QueryMarketstatsParamsResponse", { enumerable: true, get: function () { return query_12.QueryParamsResponse; } });
|
|
1447
|
+
Object.defineProperty(exports, "QueryMarketStatsRequest", { enumerable: true, get: function () { return query_12.QueryMarketStatsRequest; } });
|
|
1448
|
+
Object.defineProperty(exports, "QueryMarketStatsResponse", { enumerable: true, get: function () { return query_12.QueryMarketStatsResponse; } });
|
|
1449
|
+
var params_4 = require("./marketstats/params");
|
|
1450
|
+
Object.defineProperty(exports, "MarketstatsParams", { enumerable: true, get: function () { return params_4.Params; } });
|
|
1357
1451
|
var marketstats_1 = require("./marketstats/marketstats");
|
|
1358
1452
|
Object.defineProperty(exports, "MarketStats", { enumerable: true, get: function () { return marketstats_1.MarketStats; } });
|
|
1359
|
-
var
|
|
1360
|
-
Object.defineProperty(exports, "QueryAccountBalanceRequest", { enumerable: true, get: function () { return
|
|
1361
|
-
Object.defineProperty(exports, "QueryAccountBalanceResponse", { enumerable: true, get: function () { return
|
|
1362
|
-
var
|
|
1363
|
-
Object.defineProperty(exports, "MsgCreateToken", { enumerable: true, get: function () { return
|
|
1364
|
-
Object.defineProperty(exports, "CreateTokenParams", { enumerable: true, get: function () { return
|
|
1365
|
-
Object.defineProperty(exports, "MsgCreateTokenResponse", { enumerable: true, get: function () { return
|
|
1366
|
-
Object.defineProperty(exports, "MsgSyncToken", { enumerable: true, get: function () { return
|
|
1367
|
-
Object.defineProperty(exports, "MsgSyncTokenResponse", { enumerable: true, get: function () { return
|
|
1368
|
-
Object.defineProperty(exports, "MsgMintToken", { enumerable: true, get: function () { return
|
|
1369
|
-
Object.defineProperty(exports, "MsgMintTokenResponse", { enumerable: true, get: function () { return
|
|
1370
|
-
Object.defineProperty(exports, "MsgBindToken", { enumerable: true, get: function () { return
|
|
1371
|
-
Object.defineProperty(exports, "MsgBindTokenResponse", { enumerable: true, get: function () { return
|
|
1372
|
-
Object.defineProperty(exports, "MsgUnbindToken", { enumerable: true, get: function () { return
|
|
1373
|
-
Object.defineProperty(exports, "MsgUnbindTokenResponse", { enumerable: true, get: function () { return
|
|
1374
|
-
Object.defineProperty(exports, "MsgLinkToken", { enumerable: true, get: function () { return
|
|
1375
|
-
Object.defineProperty(exports, "MsgLinkTokenResponse", { enumerable: true, get: function () { return
|
|
1376
|
-
Object.defineProperty(exports, "MsgWithdraw", { enumerable: true, get: function () { return
|
|
1377
|
-
Object.defineProperty(exports, "MsgWithdrawResponse", { enumerable: true, get: function () { return
|
|
1378
|
-
Object.defineProperty(exports, "MsgAuthorizeBridge", { enumerable: true, get: function () { return
|
|
1379
|
-
Object.defineProperty(exports, "MsgAuthorizeBridgeResponse", { enumerable: true, get: function () { return
|
|
1380
|
-
Object.defineProperty(exports, "MsgDeauthorizeBridge", { enumerable: true, get: function () { return
|
|
1381
|
-
Object.defineProperty(exports, "MsgDeauthorizeBridgeResponse", { enumerable: true, get: function () { return
|
|
1382
|
-
Object.defineProperty(exports, "MsgEditBridgeName", { enumerable: true, get: function () { return
|
|
1383
|
-
Object.defineProperty(exports, "MsgEditBridgeNameResponse", { enumerable: true, get: function () { return
|
|
1384
|
-
Object.defineProperty(exports, "MsgRemoveBridge", { enumerable: true, get: function () { return
|
|
1385
|
-
Object.defineProperty(exports, "MsgRemoveBridgeResponse", { enumerable: true, get: function () { return
|
|
1386
|
-
Object.defineProperty(exports, "MsgUpdateToken", { enumerable: true, get: function () { return
|
|
1387
|
-
Object.defineProperty(exports, "UpdateTokenParams", { enumerable: true, get: function () { return
|
|
1388
|
-
Object.defineProperty(exports, "MsgUpdateTokenResponse", { enumerable: true, get: function () { return
|
|
1389
|
-
Object.defineProperty(exports, "MsgAddBridgeAddress", { enumerable: true, get: function () { return
|
|
1390
|
-
Object.defineProperty(exports, "MsgAddBridgeAddressResponse", { enumerable: true, get: function () { return
|
|
1391
|
-
Object.defineProperty(exports, "MsgRemoveBridgeAddress", { enumerable: true, get: function () { return
|
|
1392
|
-
Object.defineProperty(exports, "MsgRemoveBridgeAddressResponse", { enumerable: true, get: function () { return
|
|
1393
|
-
Object.defineProperty(exports, "MsgCreateGroup", { enumerable: true, get: function () { return
|
|
1394
|
-
Object.defineProperty(exports, "MsgCreateGroupResponse", { enumerable: true, get: function () { return
|
|
1395
|
-
Object.defineProperty(exports, "MsgUpdateGroup", { enumerable: true, get: function () { return
|
|
1396
|
-
Object.defineProperty(exports, "UpdateGroupParams", { enumerable: true, get: function () { return
|
|
1397
|
-
Object.defineProperty(exports, "MsgUpdateGroupResponse", { enumerable: true, get: function () { return
|
|
1398
|
-
Object.defineProperty(exports, "MsgRegisterToGroup", { enumerable: true, get: function () { return
|
|
1399
|
-
Object.defineProperty(exports, "MsgRegisterToGroupResponse", { enumerable: true, get: function () { return
|
|
1400
|
-
Object.defineProperty(exports, "MsgDeregisterFromGroup", { enumerable: true, get: function () { return
|
|
1401
|
-
Object.defineProperty(exports, "MsgDeregisterFromGroupResponse", { enumerable: true, get: function () { return
|
|
1402
|
-
Object.defineProperty(exports, "MsgDepositToGroup", { enumerable: true, get: function () { return
|
|
1403
|
-
Object.defineProperty(exports, "MsgDepositToGroupResponse", { enumerable: true, get: function () { return
|
|
1404
|
-
Object.defineProperty(exports, "MsgWithdrawFromGroup", { enumerable: true, get: function () { return
|
|
1405
|
-
Object.defineProperty(exports, "MsgWithdrawFromGroupResponse", { enumerable: true, get: function () { return
|
|
1406
|
-
Object.defineProperty(exports, "MsgUpdateGroupedTokenConfig", { enumerable: true, get: function () { return
|
|
1407
|
-
Object.defineProperty(exports, "UpdateGroupedTokenConfigParams", { enumerable: true, get: function () { return
|
|
1408
|
-
Object.defineProperty(exports, "MsgUpdateGroupedTokenConfigResponse", { enumerable: true, get: function () { return
|
|
1453
|
+
var query_13 = require("./evmbank/query");
|
|
1454
|
+
Object.defineProperty(exports, "QueryAccountBalanceRequest", { enumerable: true, get: function () { return query_13.QueryAccountBalanceRequest; } });
|
|
1455
|
+
Object.defineProperty(exports, "QueryAccountBalanceResponse", { enumerable: true, get: function () { return query_13.QueryAccountBalanceResponse; } });
|
|
1456
|
+
var tx_48 = require("./coin/tx");
|
|
1457
|
+
Object.defineProperty(exports, "MsgCreateToken", { enumerable: true, get: function () { return tx_48.MsgCreateToken; } });
|
|
1458
|
+
Object.defineProperty(exports, "CreateTokenParams", { enumerable: true, get: function () { return tx_48.CreateTokenParams; } });
|
|
1459
|
+
Object.defineProperty(exports, "MsgCreateTokenResponse", { enumerable: true, get: function () { return tx_48.MsgCreateTokenResponse; } });
|
|
1460
|
+
Object.defineProperty(exports, "MsgSyncToken", { enumerable: true, get: function () { return tx_48.MsgSyncToken; } });
|
|
1461
|
+
Object.defineProperty(exports, "MsgSyncTokenResponse", { enumerable: true, get: function () { return tx_48.MsgSyncTokenResponse; } });
|
|
1462
|
+
Object.defineProperty(exports, "MsgMintToken", { enumerable: true, get: function () { return tx_48.MsgMintToken; } });
|
|
1463
|
+
Object.defineProperty(exports, "MsgMintTokenResponse", { enumerable: true, get: function () { return tx_48.MsgMintTokenResponse; } });
|
|
1464
|
+
Object.defineProperty(exports, "MsgBindToken", { enumerable: true, get: function () { return tx_48.MsgBindToken; } });
|
|
1465
|
+
Object.defineProperty(exports, "MsgBindTokenResponse", { enumerable: true, get: function () { return tx_48.MsgBindTokenResponse; } });
|
|
1466
|
+
Object.defineProperty(exports, "MsgUnbindToken", { enumerable: true, get: function () { return tx_48.MsgUnbindToken; } });
|
|
1467
|
+
Object.defineProperty(exports, "MsgUnbindTokenResponse", { enumerable: true, get: function () { return tx_48.MsgUnbindTokenResponse; } });
|
|
1468
|
+
Object.defineProperty(exports, "MsgLinkToken", { enumerable: true, get: function () { return tx_48.MsgLinkToken; } });
|
|
1469
|
+
Object.defineProperty(exports, "MsgLinkTokenResponse", { enumerable: true, get: function () { return tx_48.MsgLinkTokenResponse; } });
|
|
1470
|
+
Object.defineProperty(exports, "MsgWithdraw", { enumerable: true, get: function () { return tx_48.MsgWithdraw; } });
|
|
1471
|
+
Object.defineProperty(exports, "MsgWithdrawResponse", { enumerable: true, get: function () { return tx_48.MsgWithdrawResponse; } });
|
|
1472
|
+
Object.defineProperty(exports, "MsgAuthorizeBridge", { enumerable: true, get: function () { return tx_48.MsgAuthorizeBridge; } });
|
|
1473
|
+
Object.defineProperty(exports, "MsgAuthorizeBridgeResponse", { enumerable: true, get: function () { return tx_48.MsgAuthorizeBridgeResponse; } });
|
|
1474
|
+
Object.defineProperty(exports, "MsgDeauthorizeBridge", { enumerable: true, get: function () { return tx_48.MsgDeauthorizeBridge; } });
|
|
1475
|
+
Object.defineProperty(exports, "MsgDeauthorizeBridgeResponse", { enumerable: true, get: function () { return tx_48.MsgDeauthorizeBridgeResponse; } });
|
|
1476
|
+
Object.defineProperty(exports, "MsgEditBridgeName", { enumerable: true, get: function () { return tx_48.MsgEditBridgeName; } });
|
|
1477
|
+
Object.defineProperty(exports, "MsgEditBridgeNameResponse", { enumerable: true, get: function () { return tx_48.MsgEditBridgeNameResponse; } });
|
|
1478
|
+
Object.defineProperty(exports, "MsgRemoveBridge", { enumerable: true, get: function () { return tx_48.MsgRemoveBridge; } });
|
|
1479
|
+
Object.defineProperty(exports, "MsgRemoveBridgeResponse", { enumerable: true, get: function () { return tx_48.MsgRemoveBridgeResponse; } });
|
|
1480
|
+
Object.defineProperty(exports, "MsgUpdateToken", { enumerable: true, get: function () { return tx_48.MsgUpdateToken; } });
|
|
1481
|
+
Object.defineProperty(exports, "UpdateTokenParams", { enumerable: true, get: function () { return tx_48.UpdateTokenParams; } });
|
|
1482
|
+
Object.defineProperty(exports, "MsgUpdateTokenResponse", { enumerable: true, get: function () { return tx_48.MsgUpdateTokenResponse; } });
|
|
1483
|
+
Object.defineProperty(exports, "MsgAddBridgeAddress", { enumerable: true, get: function () { return tx_48.MsgAddBridgeAddress; } });
|
|
1484
|
+
Object.defineProperty(exports, "MsgAddBridgeAddressResponse", { enumerable: true, get: function () { return tx_48.MsgAddBridgeAddressResponse; } });
|
|
1485
|
+
Object.defineProperty(exports, "MsgRemoveBridgeAddress", { enumerable: true, get: function () { return tx_48.MsgRemoveBridgeAddress; } });
|
|
1486
|
+
Object.defineProperty(exports, "MsgRemoveBridgeAddressResponse", { enumerable: true, get: function () { return tx_48.MsgRemoveBridgeAddressResponse; } });
|
|
1487
|
+
Object.defineProperty(exports, "MsgCreateGroup", { enumerable: true, get: function () { return tx_48.MsgCreateGroup; } });
|
|
1488
|
+
Object.defineProperty(exports, "MsgCreateGroupResponse", { enumerable: true, get: function () { return tx_48.MsgCreateGroupResponse; } });
|
|
1489
|
+
Object.defineProperty(exports, "MsgUpdateGroup", { enumerable: true, get: function () { return tx_48.MsgUpdateGroup; } });
|
|
1490
|
+
Object.defineProperty(exports, "UpdateGroupParams", { enumerable: true, get: function () { return tx_48.UpdateGroupParams; } });
|
|
1491
|
+
Object.defineProperty(exports, "MsgUpdateGroupResponse", { enumerable: true, get: function () { return tx_48.MsgUpdateGroupResponse; } });
|
|
1492
|
+
Object.defineProperty(exports, "MsgRegisterToGroup", { enumerable: true, get: function () { return tx_48.MsgRegisterToGroup; } });
|
|
1493
|
+
Object.defineProperty(exports, "MsgRegisterToGroupResponse", { enumerable: true, get: function () { return tx_48.MsgRegisterToGroupResponse; } });
|
|
1494
|
+
Object.defineProperty(exports, "MsgDeregisterFromGroup", { enumerable: true, get: function () { return tx_48.MsgDeregisterFromGroup; } });
|
|
1495
|
+
Object.defineProperty(exports, "MsgDeregisterFromGroupResponse", { enumerable: true, get: function () { return tx_48.MsgDeregisterFromGroupResponse; } });
|
|
1496
|
+
Object.defineProperty(exports, "MsgDepositToGroup", { enumerable: true, get: function () { return tx_48.MsgDepositToGroup; } });
|
|
1497
|
+
Object.defineProperty(exports, "MsgDepositToGroupResponse", { enumerable: true, get: function () { return tx_48.MsgDepositToGroupResponse; } });
|
|
1498
|
+
Object.defineProperty(exports, "MsgWithdrawFromGroup", { enumerable: true, get: function () { return tx_48.MsgWithdrawFromGroup; } });
|
|
1499
|
+
Object.defineProperty(exports, "MsgWithdrawFromGroupResponse", { enumerable: true, get: function () { return tx_48.MsgWithdrawFromGroupResponse; } });
|
|
1500
|
+
Object.defineProperty(exports, "MsgUpdateGroupedTokenConfig", { enumerable: true, get: function () { return tx_48.MsgUpdateGroupedTokenConfig; } });
|
|
1501
|
+
Object.defineProperty(exports, "UpdateGroupedTokenConfigParams", { enumerable: true, get: function () { return tx_48.UpdateGroupedTokenConfigParams; } });
|
|
1502
|
+
Object.defineProperty(exports, "MsgUpdateGroupedTokenConfigResponse", { enumerable: true, get: function () { return tx_48.MsgUpdateGroupedTokenConfigResponse; } });
|
|
1409
1503
|
var group_1 = require("./coin/group");
|
|
1410
1504
|
Object.defineProperty(exports, "TokenGroup", { enumerable: true, get: function () { return group_1.TokenGroup; } });
|
|
1411
1505
|
Object.defineProperty(exports, "TokenGroupDetails", { enumerable: true, get: function () { return group_1.TokenGroupDetails; } });
|
|
@@ -1414,31 +1508,31 @@ var proposal_9 = require("./coin/proposal");
|
|
|
1414
1508
|
Object.defineProperty(exports, "CreateTokenProposal", { enumerable: true, get: function () { return proposal_9.CreateTokenProposal; } });
|
|
1415
1509
|
var bridge_1 = require("./coin/bridge");
|
|
1416
1510
|
Object.defineProperty(exports, "Bridge", { enumerable: true, get: function () { return bridge_1.Bridge; } });
|
|
1417
|
-
var
|
|
1418
|
-
Object.defineProperty(exports, "QueryGetTokenRequest", { enumerable: true, get: function () { return
|
|
1419
|
-
Object.defineProperty(exports, "QueryGetTokenResponse", { enumerable: true, get: function () { return
|
|
1420
|
-
Object.defineProperty(exports, "QueryAllTokenRequest", { enumerable: true, get: function () { return
|
|
1421
|
-
Object.defineProperty(exports, "QueryAllTokenResponse", { enumerable: true, get: function () { return
|
|
1422
|
-
Object.defineProperty(exports, "QueryGetLockedCoinsRequest", { enumerable: true, get: function () { return
|
|
1423
|
-
Object.defineProperty(exports, "QueryGetLockedCoinsResponse", { enumerable: true, get: function () { return
|
|
1424
|
-
Object.defineProperty(exports, "QueryAllWrapperMappingsRequest", { enumerable: true, get: function () { return
|
|
1425
|
-
Object.defineProperty(exports, "QueryAllWrapperMappingsResponse", { enumerable: true, get: function () { return
|
|
1426
|
-
Object.defineProperty(exports, "QueryAllWrapperMappingsResponse_WrapperMappingsEntry", { enumerable: true, get: function () { return
|
|
1427
|
-
Object.defineProperty(exports, "QueryGetBalancesRequest", { enumerable: true, get: function () { return
|
|
1428
|
-
Object.defineProperty(exports, "QueryGetBalancesResponse", { enumerable: true, get: function () { return
|
|
1429
|
-
Object.defineProperty(exports, "QueryTotalBalancesRequest", { enumerable: true, get: function () { return
|
|
1430
|
-
Object.defineProperty(exports, "QueryTotalBalancesResponse", { enumerable: true, get: function () { return
|
|
1431
|
-
Object.defineProperty(exports, "QueryGetBridgeRequest", { enumerable: true, get: function () { return
|
|
1432
|
-
Object.defineProperty(exports, "QueryGetBridgeResponse", { enumerable: true, get: function () { return
|
|
1433
|
-
Object.defineProperty(exports, "QueryAllBridgeRequest", { enumerable: true, get: function () { return
|
|
1434
|
-
Object.defineProperty(exports, "QueryAllBridgeResponse", { enumerable: true, get: function () { return
|
|
1435
|
-
Object.defineProperty(exports, "QueryGetTokenGroupRequest", { enumerable: true, get: function () { return
|
|
1436
|
-
Object.defineProperty(exports, "QueryGetTokenGroupResponse", { enumerable: true, get: function () { return
|
|
1437
|
-
Object.defineProperty(exports, "QueryAllTokenGroupsRequest", { enumerable: true, get: function () { return
|
|
1438
|
-
Object.defineProperty(exports, "QueryAllTokenGroupsResponse", { enumerable: true, get: function () { return
|
|
1439
|
-
Object.defineProperty(exports, "QueryTokenGroupMappingsRequest", { enumerable: true, get: function () { return
|
|
1440
|
-
Object.defineProperty(exports, "QueryTokenGroupMappingsResponse", { enumerable: true, get: function () { return
|
|
1441
|
-
Object.defineProperty(exports, "QueryTokenGroupMappingsResponse_TokenGroupMappingsEntry", { enumerable: true, get: function () { return
|
|
1511
|
+
var query_14 = require("./coin/query");
|
|
1512
|
+
Object.defineProperty(exports, "QueryGetTokenRequest", { enumerable: true, get: function () { return query_14.QueryGetTokenRequest; } });
|
|
1513
|
+
Object.defineProperty(exports, "QueryGetTokenResponse", { enumerable: true, get: function () { return query_14.QueryGetTokenResponse; } });
|
|
1514
|
+
Object.defineProperty(exports, "QueryAllTokenRequest", { enumerable: true, get: function () { return query_14.QueryAllTokenRequest; } });
|
|
1515
|
+
Object.defineProperty(exports, "QueryAllTokenResponse", { enumerable: true, get: function () { return query_14.QueryAllTokenResponse; } });
|
|
1516
|
+
Object.defineProperty(exports, "QueryGetLockedCoinsRequest", { enumerable: true, get: function () { return query_14.QueryGetLockedCoinsRequest; } });
|
|
1517
|
+
Object.defineProperty(exports, "QueryGetLockedCoinsResponse", { enumerable: true, get: function () { return query_14.QueryGetLockedCoinsResponse; } });
|
|
1518
|
+
Object.defineProperty(exports, "QueryAllWrapperMappingsRequest", { enumerable: true, get: function () { return query_14.QueryAllWrapperMappingsRequest; } });
|
|
1519
|
+
Object.defineProperty(exports, "QueryAllWrapperMappingsResponse", { enumerable: true, get: function () { return query_14.QueryAllWrapperMappingsResponse; } });
|
|
1520
|
+
Object.defineProperty(exports, "QueryAllWrapperMappingsResponse_WrapperMappingsEntry", { enumerable: true, get: function () { return query_14.QueryAllWrapperMappingsResponse_WrapperMappingsEntry; } });
|
|
1521
|
+
Object.defineProperty(exports, "QueryGetBalancesRequest", { enumerable: true, get: function () { return query_14.QueryGetBalancesRequest; } });
|
|
1522
|
+
Object.defineProperty(exports, "QueryGetBalancesResponse", { enumerable: true, get: function () { return query_14.QueryGetBalancesResponse; } });
|
|
1523
|
+
Object.defineProperty(exports, "QueryTotalBalancesRequest", { enumerable: true, get: function () { return query_14.QueryTotalBalancesRequest; } });
|
|
1524
|
+
Object.defineProperty(exports, "QueryTotalBalancesResponse", { enumerable: true, get: function () { return query_14.QueryTotalBalancesResponse; } });
|
|
1525
|
+
Object.defineProperty(exports, "QueryGetBridgeRequest", { enumerable: true, get: function () { return query_14.QueryGetBridgeRequest; } });
|
|
1526
|
+
Object.defineProperty(exports, "QueryGetBridgeResponse", { enumerable: true, get: function () { return query_14.QueryGetBridgeResponse; } });
|
|
1527
|
+
Object.defineProperty(exports, "QueryAllBridgeRequest", { enumerable: true, get: function () { return query_14.QueryAllBridgeRequest; } });
|
|
1528
|
+
Object.defineProperty(exports, "QueryAllBridgeResponse", { enumerable: true, get: function () { return query_14.QueryAllBridgeResponse; } });
|
|
1529
|
+
Object.defineProperty(exports, "QueryGetTokenGroupRequest", { enumerable: true, get: function () { return query_14.QueryGetTokenGroupRequest; } });
|
|
1530
|
+
Object.defineProperty(exports, "QueryGetTokenGroupResponse", { enumerable: true, get: function () { return query_14.QueryGetTokenGroupResponse; } });
|
|
1531
|
+
Object.defineProperty(exports, "QueryAllTokenGroupsRequest", { enumerable: true, get: function () { return query_14.QueryAllTokenGroupsRequest; } });
|
|
1532
|
+
Object.defineProperty(exports, "QueryAllTokenGroupsResponse", { enumerable: true, get: function () { return query_14.QueryAllTokenGroupsResponse; } });
|
|
1533
|
+
Object.defineProperty(exports, "QueryTokenGroupMappingsRequest", { enumerable: true, get: function () { return query_14.QueryTokenGroupMappingsRequest; } });
|
|
1534
|
+
Object.defineProperty(exports, "QueryTokenGroupMappingsResponse", { enumerable: true, get: function () { return query_14.QueryTokenGroupMappingsResponse; } });
|
|
1535
|
+
Object.defineProperty(exports, "QueryTokenGroupMappingsResponse_TokenGroupMappingsEntry", { enumerable: true, get: function () { return query_14.QueryTokenGroupMappingsResponse_TokenGroupMappingsEntry; } });
|
|
1442
1536
|
var token_1 = require("./coin/token");
|
|
1443
1537
|
Object.defineProperty(exports, "Token", { enumerable: true, get: function () { return token_1.Token; } });
|
|
1444
1538
|
Object.defineProperty(exports, "BalanceChange", { enumerable: true, get: function () { return token_1.BalanceChange; } });
|
|
@@ -1463,44 +1557,44 @@ Object.defineProperty(exports, "WithdrawFromGroupEvent", { enumerable: true, get
|
|
|
1463
1557
|
var leverage_1 = require("./leverage/leverage");
|
|
1464
1558
|
Object.defineProperty(exports, "MarketLeverage", { enumerable: true, get: function () { return leverage_1.MarketLeverage; } });
|
|
1465
1559
|
Object.defineProperty(exports, "MarketLeverageRecord", { enumerable: true, get: function () { return leverage_1.MarketLeverageRecord; } });
|
|
1466
|
-
var
|
|
1467
|
-
Object.defineProperty(exports, "MsgSetLeverage", { enumerable: true, get: function () { return
|
|
1468
|
-
Object.defineProperty(exports, "MsgSetLeverageResponse", { enumerable: true, get: function () { return
|
|
1469
|
-
var
|
|
1470
|
-
Object.defineProperty(exports, "QueryGetLeverageRequest", { enumerable: true, get: function () { return
|
|
1471
|
-
Object.defineProperty(exports, "QueryGetLeverageResponse", { enumerable: true, get: function () { return
|
|
1472
|
-
Object.defineProperty(exports, "QueryAllLeverageRequest", { enumerable: true, get: function () { return
|
|
1473
|
-
Object.defineProperty(exports, "QueryAllLeverageResponse", { enumerable: true, get: function () { return
|
|
1560
|
+
var tx_49 = require("./leverage/tx");
|
|
1561
|
+
Object.defineProperty(exports, "MsgSetLeverage", { enumerable: true, get: function () { return tx_49.MsgSetLeverage; } });
|
|
1562
|
+
Object.defineProperty(exports, "MsgSetLeverageResponse", { enumerable: true, get: function () { return tx_49.MsgSetLeverageResponse; } });
|
|
1563
|
+
var query_15 = require("./leverage/query");
|
|
1564
|
+
Object.defineProperty(exports, "QueryGetLeverageRequest", { enumerable: true, get: function () { return query_15.QueryGetLeverageRequest; } });
|
|
1565
|
+
Object.defineProperty(exports, "QueryGetLeverageResponse", { enumerable: true, get: function () { return query_15.QueryGetLeverageResponse; } });
|
|
1566
|
+
Object.defineProperty(exports, "QueryAllLeverageRequest", { enumerable: true, get: function () { return query_15.QueryAllLeverageRequest; } });
|
|
1567
|
+
Object.defineProperty(exports, "QueryAllLeverageResponse", { enumerable: true, get: function () { return query_15.QueryAllLeverageResponse; } });
|
|
1474
1568
|
var event_10 = require("./leverage/event");
|
|
1475
1569
|
Object.defineProperty(exports, "LeverageEvent", { enumerable: true, get: function () { return event_10.LeverageEvent; } });
|
|
1476
|
-
var
|
|
1477
|
-
Object.defineProperty(exports, "MsgUpdateProfile", { enumerable: true, get: function () { return
|
|
1478
|
-
Object.defineProperty(exports, "MsgUpdateProfileResponse", { enumerable: true, get: function () { return
|
|
1570
|
+
var tx_50 = require("./profile/tx");
|
|
1571
|
+
Object.defineProperty(exports, "MsgUpdateProfile", { enumerable: true, get: function () { return tx_50.MsgUpdateProfile; } });
|
|
1572
|
+
Object.defineProperty(exports, "MsgUpdateProfileResponse", { enumerable: true, get: function () { return tx_50.MsgUpdateProfileResponse; } });
|
|
1479
1573
|
var profile_1 = require("./profile/profile");
|
|
1480
1574
|
Object.defineProperty(exports, "Profile", { enumerable: true, get: function () { return profile_1.Profile; } });
|
|
1481
|
-
var
|
|
1482
|
-
Object.defineProperty(exports, "QueryGetProfileRequest", { enumerable: true, get: function () { return
|
|
1483
|
-
Object.defineProperty(exports, "QueryGetProfileResponse", { enumerable: true, get: function () { return
|
|
1484
|
-
Object.defineProperty(exports, "QueryAllProfileRequest", { enumerable: true, get: function () { return
|
|
1485
|
-
Object.defineProperty(exports, "QueryAllProfileResponse", { enumerable: true, get: function () { return
|
|
1575
|
+
var query_16 = require("./profile/query");
|
|
1576
|
+
Object.defineProperty(exports, "QueryGetProfileRequest", { enumerable: true, get: function () { return query_16.QueryGetProfileRequest; } });
|
|
1577
|
+
Object.defineProperty(exports, "QueryGetProfileResponse", { enumerable: true, get: function () { return query_16.QueryGetProfileResponse; } });
|
|
1578
|
+
Object.defineProperty(exports, "QueryAllProfileRequest", { enumerable: true, get: function () { return query_16.QueryAllProfileRequest; } });
|
|
1579
|
+
Object.defineProperty(exports, "QueryAllProfileResponse", { enumerable: true, get: function () { return query_16.QueryAllProfileResponse; } });
|
|
1486
1580
|
var event_11 = require("./profile/event");
|
|
1487
1581
|
Object.defineProperty(exports, "UpdateProfileEvent", { enumerable: true, get: function () { return event_11.UpdateProfileEvent; } });
|
|
1488
|
-
var
|
|
1489
|
-
Object.defineProperty(exports, "MsgCreateSubAccount", { enumerable: true, get: function () { return
|
|
1490
|
-
Object.defineProperty(exports, "MsgCreateSubAccountResponse", { enumerable: true, get: function () { return
|
|
1491
|
-
Object.defineProperty(exports, "MsgActivateSubAccount", { enumerable: true, get: function () { return
|
|
1492
|
-
Object.defineProperty(exports, "MsgActivateSubAccountResponse", { enumerable: true, get: function () { return
|
|
1493
|
-
Object.defineProperty(exports, "MsgRemoveSubAccount", { enumerable: true, get: function () { return
|
|
1494
|
-
Object.defineProperty(exports, "MsgRemoveSubAccountResponse", { enumerable: true, get: function () { return
|
|
1495
|
-
var
|
|
1496
|
-
Object.defineProperty(exports, "QueryGetSubAccountRequest", { enumerable: true, get: function () { return
|
|
1497
|
-
Object.defineProperty(exports, "QueryGetSubAccountResponse", { enumerable: true, get: function () { return
|
|
1498
|
-
Object.defineProperty(exports, "QueryAllSubAccountRequest", { enumerable: true, get: function () { return
|
|
1499
|
-
Object.defineProperty(exports, "QueryAllSubAccountResponse", { enumerable: true, get: function () { return
|
|
1500
|
-
Object.defineProperty(exports, "QuerySubAccountStatusRequest", { enumerable: true, get: function () { return
|
|
1501
|
-
Object.defineProperty(exports, "QuerySubAccountStatusResponse", { enumerable: true, get: function () { return
|
|
1502
|
-
Object.defineProperty(exports, "QuerySubAccountPowerRequest", { enumerable: true, get: function () { return
|
|
1503
|
-
Object.defineProperty(exports, "QuerySubAccountPowerResponse", { enumerable: true, get: function () { return
|
|
1582
|
+
var tx_51 = require("./subaccount/tx");
|
|
1583
|
+
Object.defineProperty(exports, "MsgCreateSubAccount", { enumerable: true, get: function () { return tx_51.MsgCreateSubAccount; } });
|
|
1584
|
+
Object.defineProperty(exports, "MsgCreateSubAccountResponse", { enumerable: true, get: function () { return tx_51.MsgCreateSubAccountResponse; } });
|
|
1585
|
+
Object.defineProperty(exports, "MsgActivateSubAccount", { enumerable: true, get: function () { return tx_51.MsgActivateSubAccount; } });
|
|
1586
|
+
Object.defineProperty(exports, "MsgActivateSubAccountResponse", { enumerable: true, get: function () { return tx_51.MsgActivateSubAccountResponse; } });
|
|
1587
|
+
Object.defineProperty(exports, "MsgRemoveSubAccount", { enumerable: true, get: function () { return tx_51.MsgRemoveSubAccount; } });
|
|
1588
|
+
Object.defineProperty(exports, "MsgRemoveSubAccountResponse", { enumerable: true, get: function () { return tx_51.MsgRemoveSubAccountResponse; } });
|
|
1589
|
+
var query_17 = require("./subaccount/query");
|
|
1590
|
+
Object.defineProperty(exports, "QueryGetSubAccountRequest", { enumerable: true, get: function () { return query_17.QueryGetSubAccountRequest; } });
|
|
1591
|
+
Object.defineProperty(exports, "QueryGetSubAccountResponse", { enumerable: true, get: function () { return query_17.QueryGetSubAccountResponse; } });
|
|
1592
|
+
Object.defineProperty(exports, "QueryAllSubAccountRequest", { enumerable: true, get: function () { return query_17.QueryAllSubAccountRequest; } });
|
|
1593
|
+
Object.defineProperty(exports, "QueryAllSubAccountResponse", { enumerable: true, get: function () { return query_17.QueryAllSubAccountResponse; } });
|
|
1594
|
+
Object.defineProperty(exports, "QuerySubAccountStatusRequest", { enumerable: true, get: function () { return query_17.QuerySubAccountStatusRequest; } });
|
|
1595
|
+
Object.defineProperty(exports, "QuerySubAccountStatusResponse", { enumerable: true, get: function () { return query_17.QuerySubAccountStatusResponse; } });
|
|
1596
|
+
Object.defineProperty(exports, "QuerySubAccountPowerRequest", { enumerable: true, get: function () { return query_17.QuerySubAccountPowerRequest; } });
|
|
1597
|
+
Object.defineProperty(exports, "QuerySubAccountPowerResponse", { enumerable: true, get: function () { return query_17.QuerySubAccountPowerResponse; } });
|
|
1504
1598
|
var subaccount_1 = require("./subaccount/subaccount");
|
|
1505
1599
|
Object.defineProperty(exports, "SubAccount", { enumerable: true, get: function () { return subaccount_1.SubAccount; } });
|
|
1506
1600
|
Object.defineProperty(exports, "GenesisSubAccount", { enumerable: true, get: function () { return subaccount_1.GenesisSubAccount; } });
|
|
@@ -1508,24 +1602,24 @@ var book_1 = require("./book/book");
|
|
|
1508
1602
|
Object.defineProperty(exports, "OrderBookLevel", { enumerable: true, get: function () { return book_1.OrderBookLevel; } });
|
|
1509
1603
|
Object.defineProperty(exports, "OrderBook", { enumerable: true, get: function () { return book_1.OrderBook; } });
|
|
1510
1604
|
Object.defineProperty(exports, "StopBook", { enumerable: true, get: function () { return book_1.StopBook; } });
|
|
1511
|
-
var
|
|
1512
|
-
Object.defineProperty(exports, "QueryImpactPriceRequest", { enumerable: true, get: function () { return
|
|
1513
|
-
Object.defineProperty(exports, "QueryImpactPriceResponse", { enumerable: true, get: function () { return
|
|
1514
|
-
Object.defineProperty(exports, "QueryGetBookRequest", { enumerable: true, get: function () { return
|
|
1515
|
-
Object.defineProperty(exports, "QueryGetBookResponse", { enumerable: true, get: function () { return
|
|
1516
|
-
Object.defineProperty(exports, "QueryAllBookRequest", { enumerable: true, get: function () { return
|
|
1517
|
-
Object.defineProperty(exports, "QueryAllBookResponse", { enumerable: true, get: function () { return
|
|
1605
|
+
var query_18 = require("./book/query");
|
|
1606
|
+
Object.defineProperty(exports, "QueryImpactPriceRequest", { enumerable: true, get: function () { return query_18.QueryImpactPriceRequest; } });
|
|
1607
|
+
Object.defineProperty(exports, "QueryImpactPriceResponse", { enumerable: true, get: function () { return query_18.QueryImpactPriceResponse; } });
|
|
1608
|
+
Object.defineProperty(exports, "QueryGetBookRequest", { enumerable: true, get: function () { return query_18.QueryGetBookRequest; } });
|
|
1609
|
+
Object.defineProperty(exports, "QueryGetBookResponse", { enumerable: true, get: function () { return query_18.QueryGetBookResponse; } });
|
|
1610
|
+
Object.defineProperty(exports, "QueryAllBookRequest", { enumerable: true, get: function () { return query_18.QueryAllBookRequest; } });
|
|
1611
|
+
Object.defineProperty(exports, "QueryAllBookResponse", { enumerable: true, get: function () { return query_18.QueryAllBookResponse; } });
|
|
1518
1612
|
var event_12 = require("./book/event");
|
|
1519
1613
|
Object.defineProperty(exports, "OrderBookEvent", { enumerable: true, get: function () { return event_12.OrderBookEvent; } });
|
|
1520
|
-
var
|
|
1521
|
-
Object.defineProperty(exports, "MsgDisableSpotMarket", { enumerable: true, get: function () { return
|
|
1522
|
-
Object.defineProperty(exports, "MsgDisableSpotMarketResponse", { enumerable: true, get: function () { return
|
|
1523
|
-
Object.defineProperty(exports, "MsgCreateMarket", { enumerable: true, get: function () { return
|
|
1524
|
-
Object.defineProperty(exports, "MsgCreateMarketResponse", { enumerable: true, get: function () { return
|
|
1525
|
-
Object.defineProperty(exports, "MsgUpdateMarket", { enumerable: true, get: function () { return
|
|
1526
|
-
Object.defineProperty(exports, "MsgUpdateMarketResponse", { enumerable: true, get: function () { return
|
|
1527
|
-
Object.defineProperty(exports, "MsgUpdatePerpetualsFundingInterval", { enumerable: true, get: function () { return
|
|
1528
|
-
Object.defineProperty(exports, "MsgUpdatePerpetualsFundingIntervalResponse", { enumerable: true, get: function () { return
|
|
1614
|
+
var tx_52 = require("./market/tx");
|
|
1615
|
+
Object.defineProperty(exports, "MsgDisableSpotMarket", { enumerable: true, get: function () { return tx_52.MsgDisableSpotMarket; } });
|
|
1616
|
+
Object.defineProperty(exports, "MsgDisableSpotMarketResponse", { enumerable: true, get: function () { return tx_52.MsgDisableSpotMarketResponse; } });
|
|
1617
|
+
Object.defineProperty(exports, "MsgCreateMarket", { enumerable: true, get: function () { return tx_52.MsgCreateMarket; } });
|
|
1618
|
+
Object.defineProperty(exports, "MsgCreateMarketResponse", { enumerable: true, get: function () { return tx_52.MsgCreateMarketResponse; } });
|
|
1619
|
+
Object.defineProperty(exports, "MsgUpdateMarket", { enumerable: true, get: function () { return tx_52.MsgUpdateMarket; } });
|
|
1620
|
+
Object.defineProperty(exports, "MsgUpdateMarketResponse", { enumerable: true, get: function () { return tx_52.MsgUpdateMarketResponse; } });
|
|
1621
|
+
Object.defineProperty(exports, "MsgUpdatePerpetualsFundingInterval", { enumerable: true, get: function () { return tx_52.MsgUpdatePerpetualsFundingInterval; } });
|
|
1622
|
+
Object.defineProperty(exports, "MsgUpdatePerpetualsFundingIntervalResponse", { enumerable: true, get: function () { return tx_52.MsgUpdatePerpetualsFundingIntervalResponse; } });
|
|
1529
1623
|
var proposal_10 = require("./market/proposal");
|
|
1530
1624
|
Object.defineProperty(exports, "CreateMarketProposal", { enumerable: true, get: function () { return proposal_10.CreateMarketProposal; } });
|
|
1531
1625
|
Object.defineProperty(exports, "UpdateMarketProposal", { enumerable: true, get: function () { return proposal_10.UpdateMarketProposal; } });
|
|
@@ -1536,66 +1630,66 @@ Object.defineProperty(exports, "ControlledParams", { enumerable: true, get: func
|
|
|
1536
1630
|
Object.defineProperty(exports, "Market", { enumerable: true, get: function () { return market_1.Market; } });
|
|
1537
1631
|
Object.defineProperty(exports, "MarketParams", { enumerable: true, get: function () { return market_1.MarketParams; } });
|
|
1538
1632
|
Object.defineProperty(exports, "IncomingDisableSpotMarketNames", { enumerable: true, get: function () { return market_1.IncomingDisableSpotMarketNames; } });
|
|
1539
|
-
var
|
|
1540
|
-
Object.defineProperty(exports, "QueryGetMarketRequest", { enumerable: true, get: function () { return
|
|
1541
|
-
Object.defineProperty(exports, "QueryGetMarketResponse", { enumerable: true, get: function () { return
|
|
1542
|
-
Object.defineProperty(exports, "QueryAllMarketRequest", { enumerable: true, get: function () { return
|
|
1543
|
-
Object.defineProperty(exports, "QueryAllMarketResponse", { enumerable: true, get: function () { return
|
|
1544
|
-
Object.defineProperty(exports, "QueryMarketParamsRequest", { enumerable: true, get: function () { return
|
|
1545
|
-
Object.defineProperty(exports, "QueryMarketParamsResponse", { enumerable: true, get: function () { return
|
|
1633
|
+
var query_19 = require("./market/query");
|
|
1634
|
+
Object.defineProperty(exports, "QueryGetMarketRequest", { enumerable: true, get: function () { return query_19.QueryGetMarketRequest; } });
|
|
1635
|
+
Object.defineProperty(exports, "QueryGetMarketResponse", { enumerable: true, get: function () { return query_19.QueryGetMarketResponse; } });
|
|
1636
|
+
Object.defineProperty(exports, "QueryAllMarketRequest", { enumerable: true, get: function () { return query_19.QueryAllMarketRequest; } });
|
|
1637
|
+
Object.defineProperty(exports, "QueryAllMarketResponse", { enumerable: true, get: function () { return query_19.QueryAllMarketResponse; } });
|
|
1638
|
+
Object.defineProperty(exports, "QueryMarketParamsRequest", { enumerable: true, get: function () { return query_19.QueryParamsRequest; } });
|
|
1639
|
+
Object.defineProperty(exports, "QueryMarketParamsResponse", { enumerable: true, get: function () { return query_19.QueryParamsResponse; } });
|
|
1546
1640
|
var event_13 = require("./market/event");
|
|
1547
1641
|
Object.defineProperty(exports, "MarketEvent", { enumerable: true, get: function () { return event_13.MarketEvent; } });
|
|
1548
1642
|
var inflation_1 = require("./inflation/inflation");
|
|
1549
1643
|
Object.defineProperty(exports, "MintData", { enumerable: true, get: function () { return inflation_1.MintData; } });
|
|
1550
|
-
var
|
|
1551
|
-
Object.defineProperty(exports, "QueryMintDataRequest", { enumerable: true, get: function () { return
|
|
1552
|
-
Object.defineProperty(exports, "QueryMintDataResponse", { enumerable: true, get: function () { return
|
|
1553
|
-
var
|
|
1554
|
-
Object.defineProperty(exports, "MsgSetSequence", { enumerable: true, get: function () { return
|
|
1555
|
-
Object.defineProperty(exports, "MsgSetSequenceResponse", { enumerable: true, get: function () { return
|
|
1556
|
-
var
|
|
1557
|
-
Object.defineProperty(exports, "QuerySequenceRequest", { enumerable: true, get: function () { return
|
|
1558
|
-
Object.defineProperty(exports, "QuerySequenceResponse", { enumerable: true, get: function () { return
|
|
1559
|
-
Object.defineProperty(exports, "QuerySequenceAllRequest", { enumerable: true, get: function () { return
|
|
1560
|
-
Object.defineProperty(exports, "QuerySequenceAllResponse", { enumerable: true, get: function () { return
|
|
1561
|
-
var
|
|
1562
|
-
Object.defineProperty(exports, "MsgCreatePool", { enumerable: true, get: function () { return
|
|
1563
|
-
Object.defineProperty(exports, "MsgCreatePoolResponse", { enumerable: true, get: function () { return
|
|
1564
|
-
Object.defineProperty(exports, "MsgCreatePoolWithLiquidity", { enumerable: true, get: function () { return
|
|
1565
|
-
Object.defineProperty(exports, "MsgCreatePoolWithLiquidityResponse", { enumerable: true, get: function () { return
|
|
1566
|
-
Object.defineProperty(exports, "MsgAddLiquidity", { enumerable: true, get: function () { return
|
|
1567
|
-
Object.defineProperty(exports, "MsgAddLiquidityResponse", { enumerable: true, get: function () { return
|
|
1568
|
-
Object.defineProperty(exports, "MsgRemoveLiquidity", { enumerable: true, get: function () { return
|
|
1569
|
-
Object.defineProperty(exports, "MsgRemoveLiquidityResponse", { enumerable: true, get: function () { return
|
|
1570
|
-
Object.defineProperty(exports, "LinkPoolParams", { enumerable: true, get: function () { return
|
|
1571
|
-
Object.defineProperty(exports, "UnlinkPoolParams", { enumerable: true, get: function () { return
|
|
1572
|
-
Object.defineProperty(exports, "MsgSetRewardsWeights", { enumerable: true, get: function () { return
|
|
1573
|
-
Object.defineProperty(exports, "SetRewardsWeightsParams", { enumerable: true, get: function () { return
|
|
1574
|
-
Object.defineProperty(exports, "MsgSetRewardsWeightsResponse", { enumerable: true, get: function () { return
|
|
1575
|
-
Object.defineProperty(exports, "MsgStakePoolToken", { enumerable: true, get: function () { return
|
|
1576
|
-
Object.defineProperty(exports, "MsgStakePoolTokenResponse", { enumerable: true, get: function () { return
|
|
1577
|
-
Object.defineProperty(exports, "MsgUnstakePoolToken", { enumerable: true, get: function () { return
|
|
1578
|
-
Object.defineProperty(exports, "MsgUnstakePoolTokenResponse", { enumerable: true, get: function () { return
|
|
1579
|
-
Object.defineProperty(exports, "MsgClaimPoolRewards", { enumerable: true, get: function () { return
|
|
1580
|
-
Object.defineProperty(exports, "MsgClaimPoolRewardsResponse", { enumerable: true, get: function () { return
|
|
1581
|
-
Object.defineProperty(exports, "MsgSetRewardCurve", { enumerable: true, get: function () { return
|
|
1582
|
-
Object.defineProperty(exports, "SetRewardCurveParams", { enumerable: true, get: function () { return
|
|
1583
|
-
Object.defineProperty(exports, "MsgSetRewardCurveResponse", { enumerable: true, get: function () { return
|
|
1584
|
-
Object.defineProperty(exports, "MsgSetCommitmentCurve", { enumerable: true, get: function () { return
|
|
1585
|
-
Object.defineProperty(exports, "SetCommitmentCurveParams", { enumerable: true, get: function () { return
|
|
1586
|
-
Object.defineProperty(exports, "MsgSetCommitmentCurveResponse", { enumerable: true, get: function () { return
|
|
1587
|
-
Object.defineProperty(exports, "MsgUpdatePool", { enumerable: true, get: function () { return
|
|
1588
|
-
Object.defineProperty(exports, "UpdatePoolParams", { enumerable: true, get: function () { return
|
|
1589
|
-
Object.defineProperty(exports, "MsgUpdatePoolResponse", { enumerable: true, get: function () { return
|
|
1590
|
-
Object.defineProperty(exports, "MsgCreatePoolRoute", { enumerable: true, get: function () { return
|
|
1591
|
-
Object.defineProperty(exports, "MsgCreatePoolRouteResponse", { enumerable: true, get: function () { return
|
|
1592
|
-
Object.defineProperty(exports, "CreatePoolRouteParams", { enumerable: true, get: function () { return
|
|
1593
|
-
Object.defineProperty(exports, "MsgRemovePoolRoute", { enumerable: true, get: function () { return
|
|
1594
|
-
Object.defineProperty(exports, "MsgRemovePoolRouteResponse", { enumerable: true, get: function () { return
|
|
1595
|
-
Object.defineProperty(exports, "RemovePoolRouteParams", { enumerable: true, get: function () { return
|
|
1596
|
-
Object.defineProperty(exports, "MsgUpdatePoolRoute", { enumerable: true, get: function () { return
|
|
1597
|
-
Object.defineProperty(exports, "MsgUpdatePoolRouteResponse", { enumerable: true, get: function () { return
|
|
1598
|
-
Object.defineProperty(exports, "UpdatePoolRouteParams", { enumerable: true, get: function () { return
|
|
1644
|
+
var query_20 = require("./inflation/query");
|
|
1645
|
+
Object.defineProperty(exports, "QueryMintDataRequest", { enumerable: true, get: function () { return query_20.QueryMintDataRequest; } });
|
|
1646
|
+
Object.defineProperty(exports, "QueryMintDataResponse", { enumerable: true, get: function () { return query_20.QueryMintDataResponse; } });
|
|
1647
|
+
var tx_53 = require("./sequence/tx");
|
|
1648
|
+
Object.defineProperty(exports, "MsgSetSequence", { enumerable: true, get: function () { return tx_53.MsgSetSequence; } });
|
|
1649
|
+
Object.defineProperty(exports, "MsgSetSequenceResponse", { enumerable: true, get: function () { return tx_53.MsgSetSequenceResponse; } });
|
|
1650
|
+
var query_21 = require("./sequence/query");
|
|
1651
|
+
Object.defineProperty(exports, "QuerySequenceRequest", { enumerable: true, get: function () { return query_21.QuerySequenceRequest; } });
|
|
1652
|
+
Object.defineProperty(exports, "QuerySequenceResponse", { enumerable: true, get: function () { return query_21.QuerySequenceResponse; } });
|
|
1653
|
+
Object.defineProperty(exports, "QuerySequenceAllRequest", { enumerable: true, get: function () { return query_21.QuerySequenceAllRequest; } });
|
|
1654
|
+
Object.defineProperty(exports, "QuerySequenceAllResponse", { enumerable: true, get: function () { return query_21.QuerySequenceAllResponse; } });
|
|
1655
|
+
var tx_54 = require("./liquiditypool/tx");
|
|
1656
|
+
Object.defineProperty(exports, "MsgCreatePool", { enumerable: true, get: function () { return tx_54.MsgCreatePool; } });
|
|
1657
|
+
Object.defineProperty(exports, "MsgCreatePoolResponse", { enumerable: true, get: function () { return tx_54.MsgCreatePoolResponse; } });
|
|
1658
|
+
Object.defineProperty(exports, "MsgCreatePoolWithLiquidity", { enumerable: true, get: function () { return tx_54.MsgCreatePoolWithLiquidity; } });
|
|
1659
|
+
Object.defineProperty(exports, "MsgCreatePoolWithLiquidityResponse", { enumerable: true, get: function () { return tx_54.MsgCreatePoolWithLiquidityResponse; } });
|
|
1660
|
+
Object.defineProperty(exports, "MsgAddLiquidity", { enumerable: true, get: function () { return tx_54.MsgAddLiquidity; } });
|
|
1661
|
+
Object.defineProperty(exports, "MsgAddLiquidityResponse", { enumerable: true, get: function () { return tx_54.MsgAddLiquidityResponse; } });
|
|
1662
|
+
Object.defineProperty(exports, "MsgRemoveLiquidity", { enumerable: true, get: function () { return tx_54.MsgRemoveLiquidity; } });
|
|
1663
|
+
Object.defineProperty(exports, "MsgRemoveLiquidityResponse", { enumerable: true, get: function () { return tx_54.MsgRemoveLiquidityResponse; } });
|
|
1664
|
+
Object.defineProperty(exports, "LinkPoolParams", { enumerable: true, get: function () { return tx_54.LinkPoolParams; } });
|
|
1665
|
+
Object.defineProperty(exports, "UnlinkPoolParams", { enumerable: true, get: function () { return tx_54.UnlinkPoolParams; } });
|
|
1666
|
+
Object.defineProperty(exports, "MsgSetRewardsWeights", { enumerable: true, get: function () { return tx_54.MsgSetRewardsWeights; } });
|
|
1667
|
+
Object.defineProperty(exports, "SetRewardsWeightsParams", { enumerable: true, get: function () { return tx_54.SetRewardsWeightsParams; } });
|
|
1668
|
+
Object.defineProperty(exports, "MsgSetRewardsWeightsResponse", { enumerable: true, get: function () { return tx_54.MsgSetRewardsWeightsResponse; } });
|
|
1669
|
+
Object.defineProperty(exports, "MsgStakePoolToken", { enumerable: true, get: function () { return tx_54.MsgStakePoolToken; } });
|
|
1670
|
+
Object.defineProperty(exports, "MsgStakePoolTokenResponse", { enumerable: true, get: function () { return tx_54.MsgStakePoolTokenResponse; } });
|
|
1671
|
+
Object.defineProperty(exports, "MsgUnstakePoolToken", { enumerable: true, get: function () { return tx_54.MsgUnstakePoolToken; } });
|
|
1672
|
+
Object.defineProperty(exports, "MsgUnstakePoolTokenResponse", { enumerable: true, get: function () { return tx_54.MsgUnstakePoolTokenResponse; } });
|
|
1673
|
+
Object.defineProperty(exports, "MsgClaimPoolRewards", { enumerable: true, get: function () { return tx_54.MsgClaimPoolRewards; } });
|
|
1674
|
+
Object.defineProperty(exports, "MsgClaimPoolRewardsResponse", { enumerable: true, get: function () { return tx_54.MsgClaimPoolRewardsResponse; } });
|
|
1675
|
+
Object.defineProperty(exports, "MsgSetRewardCurve", { enumerable: true, get: function () { return tx_54.MsgSetRewardCurve; } });
|
|
1676
|
+
Object.defineProperty(exports, "SetRewardCurveParams", { enumerable: true, get: function () { return tx_54.SetRewardCurveParams; } });
|
|
1677
|
+
Object.defineProperty(exports, "MsgSetRewardCurveResponse", { enumerable: true, get: function () { return tx_54.MsgSetRewardCurveResponse; } });
|
|
1678
|
+
Object.defineProperty(exports, "MsgSetCommitmentCurve", { enumerable: true, get: function () { return tx_54.MsgSetCommitmentCurve; } });
|
|
1679
|
+
Object.defineProperty(exports, "SetCommitmentCurveParams", { enumerable: true, get: function () { return tx_54.SetCommitmentCurveParams; } });
|
|
1680
|
+
Object.defineProperty(exports, "MsgSetCommitmentCurveResponse", { enumerable: true, get: function () { return tx_54.MsgSetCommitmentCurveResponse; } });
|
|
1681
|
+
Object.defineProperty(exports, "MsgUpdatePool", { enumerable: true, get: function () { return tx_54.MsgUpdatePool; } });
|
|
1682
|
+
Object.defineProperty(exports, "UpdatePoolParams", { enumerable: true, get: function () { return tx_54.UpdatePoolParams; } });
|
|
1683
|
+
Object.defineProperty(exports, "MsgUpdatePoolResponse", { enumerable: true, get: function () { return tx_54.MsgUpdatePoolResponse; } });
|
|
1684
|
+
Object.defineProperty(exports, "MsgCreatePoolRoute", { enumerable: true, get: function () { return tx_54.MsgCreatePoolRoute; } });
|
|
1685
|
+
Object.defineProperty(exports, "MsgCreatePoolRouteResponse", { enumerable: true, get: function () { return tx_54.MsgCreatePoolRouteResponse; } });
|
|
1686
|
+
Object.defineProperty(exports, "CreatePoolRouteParams", { enumerable: true, get: function () { return tx_54.CreatePoolRouteParams; } });
|
|
1687
|
+
Object.defineProperty(exports, "MsgRemovePoolRoute", { enumerable: true, get: function () { return tx_54.MsgRemovePoolRoute; } });
|
|
1688
|
+
Object.defineProperty(exports, "MsgRemovePoolRouteResponse", { enumerable: true, get: function () { return tx_54.MsgRemovePoolRouteResponse; } });
|
|
1689
|
+
Object.defineProperty(exports, "RemovePoolRouteParams", { enumerable: true, get: function () { return tx_54.RemovePoolRouteParams; } });
|
|
1690
|
+
Object.defineProperty(exports, "MsgUpdatePoolRoute", { enumerable: true, get: function () { return tx_54.MsgUpdatePoolRoute; } });
|
|
1691
|
+
Object.defineProperty(exports, "MsgUpdatePoolRouteResponse", { enumerable: true, get: function () { return tx_54.MsgUpdatePoolRouteResponse; } });
|
|
1692
|
+
Object.defineProperty(exports, "UpdatePoolRouteParams", { enumerable: true, get: function () { return tx_54.UpdatePoolRouteParams; } });
|
|
1599
1693
|
var reward_1 = require("./liquiditypool/reward");
|
|
1600
1694
|
Object.defineProperty(exports, "RewardCurve", { enumerable: true, get: function () { return reward_1.RewardCurve; } });
|
|
1601
1695
|
Object.defineProperty(exports, "CommitmentCurve", { enumerable: true, get: function () { return reward_1.CommitmentCurve; } });
|
|
@@ -1634,40 +1728,40 @@ Object.defineProperty(exports, "UpdatePoolProposal", { enumerable: true, get: fu
|
|
|
1634
1728
|
Object.defineProperty(exports, "CreatePoolRouteProposal", { enumerable: true, get: function () { return proposal_11.CreatePoolRouteProposal; } });
|
|
1635
1729
|
Object.defineProperty(exports, "RemovePoolRouteProposal", { enumerable: true, get: function () { return proposal_11.RemovePoolRouteProposal; } });
|
|
1636
1730
|
Object.defineProperty(exports, "UpdatePoolRouteProposal", { enumerable: true, get: function () { return proposal_11.UpdatePoolRouteProposal; } });
|
|
1637
|
-
var
|
|
1638
|
-
Object.defineProperty(exports, "QueryGetPoolRequest", { enumerable: true, get: function () { return
|
|
1639
|
-
Object.defineProperty(exports, "QueryGetPoolResponse", { enumerable: true, get: function () { return
|
|
1640
|
-
Object.defineProperty(exports, "QueryAllPoolRequest", { enumerable: true, get: function () { return
|
|
1641
|
-
Object.defineProperty(exports, "QueryAllPoolResponse", { enumerable: true, get: function () { return
|
|
1642
|
-
Object.defineProperty(exports, "QueryAllPoolAddressRequest", { enumerable: true, get: function () { return
|
|
1643
|
-
Object.defineProperty(exports, "QueryAllPoolAddressResponse", { enumerable: true, get: function () { return
|
|
1644
|
-
Object.defineProperty(exports, "QueryAllPoolAddressResponse_AddressesEntry", { enumerable: true, get: function () { return
|
|
1645
|
-
Object.defineProperty(exports, "QueryRewardHistoryRequest", { enumerable: true, get: function () { return
|
|
1646
|
-
Object.defineProperty(exports, "ExtendedPool", { enumerable: true, get: function () { return
|
|
1647
|
-
Object.defineProperty(exports, "QueryRewardHistoryResponse", { enumerable: true, get: function () { return
|
|
1648
|
-
Object.defineProperty(exports, "QueryCommitmentRequest", { enumerable: true, get: function () { return
|
|
1649
|
-
Object.defineProperty(exports, "QueryCommitmentResponse", { enumerable: true, get: function () { return
|
|
1650
|
-
Object.defineProperty(exports, "QueryAllCommitmentRequest", { enumerable: true, get: function () { return
|
|
1651
|
-
Object.defineProperty(exports, "QueryAllCommitmentResponse", { enumerable: true, get: function () { return
|
|
1652
|
-
Object.defineProperty(exports, "QueryLastClaimRequest", { enumerable: true, get: function () { return
|
|
1653
|
-
Object.defineProperty(exports, "QueryLastClaimResponse", { enumerable: true, get: function () { return
|
|
1654
|
-
Object.defineProperty(exports, "QueryCommitmentCurveRequest", { enumerable: true, get: function () { return
|
|
1655
|
-
Object.defineProperty(exports, "QueryCommitmentCurveResponse", { enumerable: true, get: function () { return
|
|
1656
|
-
Object.defineProperty(exports, "QueryRewardCurveRequest", { enumerable: true, get: function () { return
|
|
1657
|
-
Object.defineProperty(exports, "QueryRewardCurveResponse", { enumerable: true, get: function () { return
|
|
1658
|
-
Object.defineProperty(exports, "QueryTotalCommitmentRequest", { enumerable: true, get: function () { return
|
|
1659
|
-
Object.defineProperty(exports, "QueryTotalCommitmentResponse", { enumerable: true, get: function () { return
|
|
1660
|
-
Object.defineProperty(exports, "QueryAllTotalCommitmentRequest", { enumerable: true, get: function () { return
|
|
1661
|
-
Object.defineProperty(exports, "QueryAllTotalCommitmentResponse", { enumerable: true, get: function () { return
|
|
1662
|
-
Object.defineProperty(exports, "QueryClaimableRewardsRequest", { enumerable: true, get: function () { return
|
|
1663
|
-
Object.defineProperty(exports, "QueryClaimableRewardsResponse", { enumerable: true, get: function () { return
|
|
1664
|
-
Object.defineProperty(exports, "QueryLiquiditypoolParamsRequest", { enumerable: true, get: function () { return
|
|
1665
|
-
Object.defineProperty(exports, "QueryLiquiditypoolParamsResponse", { enumerable: true, get: function () { return
|
|
1666
|
-
Object.defineProperty(exports, "QueryAllPoolRouteRequest", { enumerable: true, get: function () { return
|
|
1667
|
-
Object.defineProperty(exports, "QueryAllPoolRouteResponse", { enumerable: true, get: function () { return
|
|
1668
|
-
Object.defineProperty(exports, "QueryAllPoolRouteAddressRequest", { enumerable: true, get: function () { return
|
|
1669
|
-
Object.defineProperty(exports, "QueryAllPoolRouteAddressResponse", { enumerable: true, get: function () { return
|
|
1670
|
-
Object.defineProperty(exports, "QueryAllPoolRouteAddressResponse_AddressesEntry", { enumerable: true, get: function () { return
|
|
1731
|
+
var query_22 = require("./liquiditypool/query");
|
|
1732
|
+
Object.defineProperty(exports, "QueryGetPoolRequest", { enumerable: true, get: function () { return query_22.QueryGetPoolRequest; } });
|
|
1733
|
+
Object.defineProperty(exports, "QueryGetPoolResponse", { enumerable: true, get: function () { return query_22.QueryGetPoolResponse; } });
|
|
1734
|
+
Object.defineProperty(exports, "QueryAllPoolRequest", { enumerable: true, get: function () { return query_22.QueryAllPoolRequest; } });
|
|
1735
|
+
Object.defineProperty(exports, "QueryAllPoolResponse", { enumerable: true, get: function () { return query_22.QueryAllPoolResponse; } });
|
|
1736
|
+
Object.defineProperty(exports, "QueryAllPoolAddressRequest", { enumerable: true, get: function () { return query_22.QueryAllPoolAddressRequest; } });
|
|
1737
|
+
Object.defineProperty(exports, "QueryAllPoolAddressResponse", { enumerable: true, get: function () { return query_22.QueryAllPoolAddressResponse; } });
|
|
1738
|
+
Object.defineProperty(exports, "QueryAllPoolAddressResponse_AddressesEntry", { enumerable: true, get: function () { return query_22.QueryAllPoolAddressResponse_AddressesEntry; } });
|
|
1739
|
+
Object.defineProperty(exports, "QueryRewardHistoryRequest", { enumerable: true, get: function () { return query_22.QueryRewardHistoryRequest; } });
|
|
1740
|
+
Object.defineProperty(exports, "ExtendedPool", { enumerable: true, get: function () { return query_22.ExtendedPool; } });
|
|
1741
|
+
Object.defineProperty(exports, "QueryRewardHistoryResponse", { enumerable: true, get: function () { return query_22.QueryRewardHistoryResponse; } });
|
|
1742
|
+
Object.defineProperty(exports, "QueryCommitmentRequest", { enumerable: true, get: function () { return query_22.QueryCommitmentRequest; } });
|
|
1743
|
+
Object.defineProperty(exports, "QueryCommitmentResponse", { enumerable: true, get: function () { return query_22.QueryCommitmentResponse; } });
|
|
1744
|
+
Object.defineProperty(exports, "QueryAllCommitmentRequest", { enumerable: true, get: function () { return query_22.QueryAllCommitmentRequest; } });
|
|
1745
|
+
Object.defineProperty(exports, "QueryAllCommitmentResponse", { enumerable: true, get: function () { return query_22.QueryAllCommitmentResponse; } });
|
|
1746
|
+
Object.defineProperty(exports, "QueryLastClaimRequest", { enumerable: true, get: function () { return query_22.QueryLastClaimRequest; } });
|
|
1747
|
+
Object.defineProperty(exports, "QueryLastClaimResponse", { enumerable: true, get: function () { return query_22.QueryLastClaimResponse; } });
|
|
1748
|
+
Object.defineProperty(exports, "QueryCommitmentCurveRequest", { enumerable: true, get: function () { return query_22.QueryCommitmentCurveRequest; } });
|
|
1749
|
+
Object.defineProperty(exports, "QueryCommitmentCurveResponse", { enumerable: true, get: function () { return query_22.QueryCommitmentCurveResponse; } });
|
|
1750
|
+
Object.defineProperty(exports, "QueryRewardCurveRequest", { enumerable: true, get: function () { return query_22.QueryRewardCurveRequest; } });
|
|
1751
|
+
Object.defineProperty(exports, "QueryRewardCurveResponse", { enumerable: true, get: function () { return query_22.QueryRewardCurveResponse; } });
|
|
1752
|
+
Object.defineProperty(exports, "QueryTotalCommitmentRequest", { enumerable: true, get: function () { return query_22.QueryTotalCommitmentRequest; } });
|
|
1753
|
+
Object.defineProperty(exports, "QueryTotalCommitmentResponse", { enumerable: true, get: function () { return query_22.QueryTotalCommitmentResponse; } });
|
|
1754
|
+
Object.defineProperty(exports, "QueryAllTotalCommitmentRequest", { enumerable: true, get: function () { return query_22.QueryAllTotalCommitmentRequest; } });
|
|
1755
|
+
Object.defineProperty(exports, "QueryAllTotalCommitmentResponse", { enumerable: true, get: function () { return query_22.QueryAllTotalCommitmentResponse; } });
|
|
1756
|
+
Object.defineProperty(exports, "QueryClaimableRewardsRequest", { enumerable: true, get: function () { return query_22.QueryClaimableRewardsRequest; } });
|
|
1757
|
+
Object.defineProperty(exports, "QueryClaimableRewardsResponse", { enumerable: true, get: function () { return query_22.QueryClaimableRewardsResponse; } });
|
|
1758
|
+
Object.defineProperty(exports, "QueryLiquiditypoolParamsRequest", { enumerable: true, get: function () { return query_22.QueryParamsRequest; } });
|
|
1759
|
+
Object.defineProperty(exports, "QueryLiquiditypoolParamsResponse", { enumerable: true, get: function () { return query_22.QueryParamsResponse; } });
|
|
1760
|
+
Object.defineProperty(exports, "QueryAllPoolRouteRequest", { enumerable: true, get: function () { return query_22.QueryAllPoolRouteRequest; } });
|
|
1761
|
+
Object.defineProperty(exports, "QueryAllPoolRouteResponse", { enumerable: true, get: function () { return query_22.QueryAllPoolRouteResponse; } });
|
|
1762
|
+
Object.defineProperty(exports, "QueryAllPoolRouteAddressRequest", { enumerable: true, get: function () { return query_22.QueryAllPoolRouteAddressRequest; } });
|
|
1763
|
+
Object.defineProperty(exports, "QueryAllPoolRouteAddressResponse", { enumerable: true, get: function () { return query_22.QueryAllPoolRouteAddressResponse; } });
|
|
1764
|
+
Object.defineProperty(exports, "QueryAllPoolRouteAddressResponse_AddressesEntry", { enumerable: true, get: function () { return query_22.QueryAllPoolRouteAddressResponse_AddressesEntry; } });
|
|
1671
1765
|
var event_14 = require("./liquiditypool/event");
|
|
1672
1766
|
Object.defineProperty(exports, "PoolEvent", { enumerable: true, get: function () { return event_14.PoolEvent; } });
|
|
1673
1767
|
Object.defineProperty(exports, "TotalCommitmentChangeEvent", { enumerable: true, get: function () { return event_14.TotalCommitmentChangeEvent; } });
|
|
@@ -1675,25 +1769,25 @@ Object.defineProperty(exports, "RewardsWeightChangeEvent", { enumerable: true, g
|
|
|
1675
1769
|
Object.defineProperty(exports, "CommitmentCurveEvent", { enumerable: true, get: function () { return event_14.CommitmentCurveEvent; } });
|
|
1676
1770
|
Object.defineProperty(exports, "CommitmentEvent", { enumerable: true, get: function () { return event_14.CommitmentEvent; } });
|
|
1677
1771
|
Object.defineProperty(exports, "SwapEvent", { enumerable: true, get: function () { return event_14.SwapEvent; } });
|
|
1678
|
-
var
|
|
1679
|
-
Object.defineProperty(exports, "QueryCoinBalancesRequest", { enumerable: true, get: function () { return
|
|
1680
|
-
Object.defineProperty(exports, "QueryCoinBalancesResponse", { enumerable: true, get: function () { return
|
|
1772
|
+
var query_23 = require("./insurance/query");
|
|
1773
|
+
Object.defineProperty(exports, "QueryCoinBalancesRequest", { enumerable: true, get: function () { return query_23.QueryCoinBalancesRequest; } });
|
|
1774
|
+
Object.defineProperty(exports, "QueryCoinBalancesResponse", { enumerable: true, get: function () { return query_23.QueryCoinBalancesResponse; } });
|
|
1681
1775
|
var event_15 = require("./insurance/event");
|
|
1682
1776
|
Object.defineProperty(exports, "EventDataInsuranceFundTransfer", { enumerable: true, get: function () { return event_15.EventDataInsuranceFundTransfer; } });
|
|
1683
1777
|
var fund_1 = require("./insurance/fund");
|
|
1684
1778
|
Object.defineProperty(exports, "FundByMarket", { enumerable: true, get: function () { return fund_1.FundByMarket; } });
|
|
1685
1779
|
Object.defineProperty(exports, "Fund", { enumerable: true, get: function () { return fund_1.Fund; } });
|
|
1686
|
-
var
|
|
1687
|
-
Object.defineProperty(exports, "MsgSetBackfillTimeInterval", { enumerable: true, get: function () { return
|
|
1688
|
-
Object.defineProperty(exports, "MsgSetBackfillTimeIntervalResponse", { enumerable: true, get: function () { return
|
|
1689
|
-
Object.defineProperty(exports, "MsgSetSmoothenBand", { enumerable: true, get: function () { return
|
|
1690
|
-
Object.defineProperty(exports, "MsgSetSmoothenBandResponse", { enumerable: true, get: function () { return
|
|
1691
|
-
Object.defineProperty(exports, "MsgSetImpactBand", { enumerable: true, get: function () { return
|
|
1692
|
-
Object.defineProperty(exports, "MsgSetImpactBandResponse", { enumerable: true, get: function () { return
|
|
1693
|
-
Object.defineProperty(exports, "MsgSetStaleIndexAllowance", { enumerable: true, get: function () { return
|
|
1694
|
-
Object.defineProperty(exports, "MsgSetStaleIndexAllowanceResponse", { enumerable: true, get: function () { return
|
|
1695
|
-
Object.defineProperty(exports, "MsgUpdateTokenPriceOracle", { enumerable: true, get: function () { return
|
|
1696
|
-
Object.defineProperty(exports, "MsgUpdateTokenPriceOracleResponse", { enumerable: true, get: function () { return
|
|
1780
|
+
var tx_55 = require("./pricing/tx");
|
|
1781
|
+
Object.defineProperty(exports, "MsgSetBackfillTimeInterval", { enumerable: true, get: function () { return tx_55.MsgSetBackfillTimeInterval; } });
|
|
1782
|
+
Object.defineProperty(exports, "MsgSetBackfillTimeIntervalResponse", { enumerable: true, get: function () { return tx_55.MsgSetBackfillTimeIntervalResponse; } });
|
|
1783
|
+
Object.defineProperty(exports, "MsgSetSmoothenBand", { enumerable: true, get: function () { return tx_55.MsgSetSmoothenBand; } });
|
|
1784
|
+
Object.defineProperty(exports, "MsgSetSmoothenBandResponse", { enumerable: true, get: function () { return tx_55.MsgSetSmoothenBandResponse; } });
|
|
1785
|
+
Object.defineProperty(exports, "MsgSetImpactBand", { enumerable: true, get: function () { return tx_55.MsgSetImpactBand; } });
|
|
1786
|
+
Object.defineProperty(exports, "MsgSetImpactBandResponse", { enumerable: true, get: function () { return tx_55.MsgSetImpactBandResponse; } });
|
|
1787
|
+
Object.defineProperty(exports, "MsgSetStaleIndexAllowance", { enumerable: true, get: function () { return tx_55.MsgSetStaleIndexAllowance; } });
|
|
1788
|
+
Object.defineProperty(exports, "MsgSetStaleIndexAllowanceResponse", { enumerable: true, get: function () { return tx_55.MsgSetStaleIndexAllowanceResponse; } });
|
|
1789
|
+
Object.defineProperty(exports, "MsgUpdateTokenPriceOracle", { enumerable: true, get: function () { return tx_55.MsgUpdateTokenPriceOracle; } });
|
|
1790
|
+
Object.defineProperty(exports, "MsgUpdateTokenPriceOracleResponse", { enumerable: true, get: function () { return tx_55.MsgUpdateTokenPriceOracleResponse; } });
|
|
1697
1791
|
var pricing_1 = require("./pricing/pricing");
|
|
1698
1792
|
Object.defineProperty(exports, "PricingParams", { enumerable: true, get: function () { return pricing_1.Params; } });
|
|
1699
1793
|
Object.defineProperty(exports, "PriceSet", { enumerable: true, get: function () { return pricing_1.PriceSet; } });
|
|
@@ -1701,21 +1795,21 @@ Object.defineProperty(exports, "TokenPrice", { enumerable: true, get: function (
|
|
|
1701
1795
|
var proposal_12 = require("./pricing/proposal");
|
|
1702
1796
|
Object.defineProperty(exports, "SettlementPriceProposal", { enumerable: true, get: function () { return proposal_12.SettlementPriceProposal; } });
|
|
1703
1797
|
Object.defineProperty(exports, "SettlementPriceParams", { enumerable: true, get: function () { return proposal_12.SettlementPriceParams; } });
|
|
1704
|
-
var
|
|
1705
|
-
Object.defineProperty(exports, "QueryPriceTokenRequest", { enumerable: true, get: function () { return
|
|
1706
|
-
Object.defineProperty(exports, "QueryPriceTokenResponse", { enumerable: true, get: function () { return
|
|
1707
|
-
Object.defineProperty(exports, "QueryPriceSetRequest", { enumerable: true, get: function () { return
|
|
1708
|
-
Object.defineProperty(exports, "QueryPriceSetResponse", { enumerable: true, get: function () { return
|
|
1709
|
-
Object.defineProperty(exports, "QueryAllPriceSetRequest", { enumerable: true, get: function () { return
|
|
1710
|
-
Object.defineProperty(exports, "QueryAllPriceSetResponse", { enumerable: true, get: function () { return
|
|
1711
|
-
Object.defineProperty(exports, "QueryRateRequest", { enumerable: true, get: function () { return
|
|
1712
|
-
Object.defineProperty(exports, "QueryRateResponse", { enumerable: true, get: function () { return
|
|
1713
|
-
Object.defineProperty(exports, "QueryPricingParamsRequest", { enumerable: true, get: function () { return
|
|
1714
|
-
Object.defineProperty(exports, "QueryPricingParamsResponse", { enumerable: true, get: function () { return
|
|
1715
|
-
Object.defineProperty(exports, "QueryTokenPriceRequest", { enumerable: true, get: function () { return
|
|
1716
|
-
Object.defineProperty(exports, "QueryTokenPriceResponse", { enumerable: true, get: function () { return
|
|
1717
|
-
Object.defineProperty(exports, "QueryTokenPriceAllRequest", { enumerable: true, get: function () { return
|
|
1718
|
-
Object.defineProperty(exports, "QueryTokenPriceAllResponse", { enumerable: true, get: function () { return
|
|
1798
|
+
var query_24 = require("./pricing/query");
|
|
1799
|
+
Object.defineProperty(exports, "QueryPriceTokenRequest", { enumerable: true, get: function () { return query_24.QueryPriceTokenRequest; } });
|
|
1800
|
+
Object.defineProperty(exports, "QueryPriceTokenResponse", { enumerable: true, get: function () { return query_24.QueryPriceTokenResponse; } });
|
|
1801
|
+
Object.defineProperty(exports, "QueryPriceSetRequest", { enumerable: true, get: function () { return query_24.QueryPriceSetRequest; } });
|
|
1802
|
+
Object.defineProperty(exports, "QueryPriceSetResponse", { enumerable: true, get: function () { return query_24.QueryPriceSetResponse; } });
|
|
1803
|
+
Object.defineProperty(exports, "QueryAllPriceSetRequest", { enumerable: true, get: function () { return query_24.QueryAllPriceSetRequest; } });
|
|
1804
|
+
Object.defineProperty(exports, "QueryAllPriceSetResponse", { enumerable: true, get: function () { return query_24.QueryAllPriceSetResponse; } });
|
|
1805
|
+
Object.defineProperty(exports, "QueryRateRequest", { enumerable: true, get: function () { return query_24.QueryRateRequest; } });
|
|
1806
|
+
Object.defineProperty(exports, "QueryRateResponse", { enumerable: true, get: function () { return query_24.QueryRateResponse; } });
|
|
1807
|
+
Object.defineProperty(exports, "QueryPricingParamsRequest", { enumerable: true, get: function () { return query_24.QueryParamsRequest; } });
|
|
1808
|
+
Object.defineProperty(exports, "QueryPricingParamsResponse", { enumerable: true, get: function () { return query_24.QueryParamsResponse; } });
|
|
1809
|
+
Object.defineProperty(exports, "QueryTokenPriceRequest", { enumerable: true, get: function () { return query_24.QueryTokenPriceRequest; } });
|
|
1810
|
+
Object.defineProperty(exports, "QueryTokenPriceResponse", { enumerable: true, get: function () { return query_24.QueryTokenPriceResponse; } });
|
|
1811
|
+
Object.defineProperty(exports, "QueryTokenPriceAllRequest", { enumerable: true, get: function () { return query_24.QueryTokenPriceAllRequest; } });
|
|
1812
|
+
Object.defineProperty(exports, "QueryTokenPriceAllResponse", { enumerable: true, get: function () { return query_24.QueryTokenPriceAllResponse; } });
|
|
1719
1813
|
var legacy_1 = require("./pricing/legacy");
|
|
1720
1814
|
Object.defineProperty(exports, "ParamsV2130", { enumerable: true, get: function () { return legacy_1.ParamsV2130; } });
|
|
1721
1815
|
var event_16 = require("./pricing/event");
|
|
@@ -1725,8 +1819,5 @@ Object.defineProperty(exports, "SetImpactBandEvent", { enumerable: true, get: fu
|
|
|
1725
1819
|
Object.defineProperty(exports, "SetSmoothenBandEvent", { enumerable: true, get: function () { return event_16.SetSmoothenBandEvent; } });
|
|
1726
1820
|
Object.defineProperty(exports, "SetStaleIndexAllowanceEvent", { enumerable: true, get: function () { return event_16.SetStaleIndexAllowanceEvent; } });
|
|
1727
1821
|
Object.defineProperty(exports, "SetBackfillTimeIntervalEvent", { enumerable: true, get: function () { return event_16.SetBackfillTimeIntervalEvent; } });
|
|
1728
|
-
var
|
|
1729
|
-
Object.defineProperty(exports, "MsgExecuteContract", { enumerable: true, get: function () { return
|
|
1730
|
-
var gov_2 = require("./cosmos/gov/v1beta1/gov");
|
|
1731
|
-
Object.defineProperty(exports, "TextProposal", { enumerable: true, get: function () { return gov_2.TextProposal; } });
|
|
1732
|
-
Object.defineProperty(exports, "Proposal", { enumerable: true, get: function () { return gov_2.Proposal; } });
|
|
1822
|
+
var tx_56 = require("cosmjs-types/cosmwasm/wasm/v1/tx");
|
|
1823
|
+
Object.defineProperty(exports, "MsgExecuteContract", { enumerable: true, get: function () { return tx_56.MsgExecuteContract; } });
|