injectivejs 1.11.18 → 1.12.0

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.
Files changed (52) hide show
  1. package/binary.d.ts +1 -1
  2. package/binary.js +1 -1
  3. package/cosmos/authz/v1beta1/tx.rpc.func.d.ts +3 -3
  4. package/cosmos/bank/v1beta1/tx.rpc.func.d.ts +4 -4
  5. package/cosmos/distribution/v1beta1/tx.rpc.func.d.ts +7 -7
  6. package/cosmos/feegrant/v1beta1/tx.rpc.func.d.ts +3 -3
  7. package/cosmos/gov/v1/tx.rpc.func.d.ts +7 -7
  8. package/cosmos/gov/v1beta1/tx.rpc.func.d.ts +4 -4
  9. package/cosmos/group/v1/tx.rpc.func.d.ts +14 -14
  10. package/cosmos/staking/v1beta1/tx.rpc.func.d.ts +7 -7
  11. package/cosmos/vesting/v1beta1/tx.rpc.func.d.ts +3 -3
  12. package/cosmwasm/wasm/v1/tx.rpc.func.d.ts +17 -17
  13. package/esm/binary.js +1 -1
  14. package/esm/extern.js +1 -1
  15. package/esm/helper-func-types.js +1 -1
  16. package/esm/helpers.js +1 -1
  17. package/esm/index.js +1 -1
  18. package/esm/registry.js +1 -1
  19. package/esm/types.js +1 -1
  20. package/esm/utf8.js +1 -1
  21. package/esm/varint.js +1 -1
  22. package/extern.d.ts +2 -2
  23. package/extern.js +1 -1
  24. package/helper-func-types.d.ts +1 -1
  25. package/helper-func-types.js +1 -1
  26. package/helpers.d.ts +1 -1
  27. package/helpers.js +1 -1
  28. package/ibc/applications/transfer/v1/tx.rpc.func.d.ts +2 -2
  29. package/ibc/core/channel/v1/tx.rpc.func.d.ts +10 -10
  30. package/ibc/core/client/v1/tx.rpc.func.d.ts +8 -8
  31. package/ibc/core/connection/v1/tx.rpc.func.d.ts +5 -5
  32. package/index.d.ts +1 -1
  33. package/index.js +1 -1
  34. package/injective/auction/v1beta1/tx.rpc.func.d.ts +2 -2
  35. package/injective/exchange/v1beta1/tx.rpc.func.d.ts +36 -36
  36. package/injective/insurance/v1beta1/tx.rpc.func.d.ts +4 -4
  37. package/injective/ocr/v1beta1/tx.rpc.func.d.ts +9 -9
  38. package/injective/oracle/v1beta1/tx.rpc.func.d.ts +8 -8
  39. package/injective/peggy/v1/msgs.rpc.func.d.ts +14 -14
  40. package/injective/permissions/v1beta1/tx.rpc.func.d.ts +5 -5
  41. package/injective/tokenfactory/v1beta1/tx.rpc.func.d.ts +6 -6
  42. package/injective/txfees/v1beta1/tx.rpc.func.d.ts +1 -1
  43. package/injective/wasmx/v1/tx.rpc.func.d.ts +6 -6
  44. package/package.json +9 -9
  45. package/registry.d.ts +1 -1
  46. package/registry.js +1 -1
  47. package/types.d.ts +1 -1
  48. package/types.js +1 -1
  49. package/utf8.d.ts +1 -1
  50. package/utf8.js +1 -1
  51. package/varint.d.ts +1 -1
  52. package/varint.js +1 -1
package/binary.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * This file and any referenced files were automatically generated by @cosmology/telescope@1.12.19
2
+ * This file and any referenced files were automatically generated by @cosmology/telescope@1.12.20
3
3
  * DO NOT MODIFY BY HAND. Instead, download the latest proto files for your chain
4
4
  * and run the transpile command or npm scripts command that is used to regenerate this bundle.
5
5
  */
package/binary.js CHANGED
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  /**
3
- * This file and any referenced files were automatically generated by @cosmology/telescope@1.12.19
3
+ * This file and any referenced files were automatically generated by @cosmology/telescope@1.12.20
4
4
  * DO NOT MODIFY BY HAND. Instead, download the latest proto files for your chain
5
5
  * and run the transpile command or npm scripts command that is used to regenerate this bundle.
6
6
  */
@@ -8,7 +8,7 @@ import { MsgGrant, MsgExec, MsgRevoke } from "./tx";
8
8
  * @package cosmos.authz.v1beta1
9
9
  * @see proto service: cosmos.authz.v1beta1.Grant
10
10
  */
11
- export declare const grant: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgGrant | MsgGrant[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
11
+ export declare const grant: (client: import("@interchainjs/cosmos/types/signing-client").ISigningClient, signerAddress: string, message: MsgGrant | MsgGrant[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
12
12
  /**
13
13
  * Exec attempts to execute the provided messages using
14
14
  * authorizations granted to the grantee. Each message should have only
@@ -17,7 +17,7 @@ export declare const grant: (client: import("@interchainjs/cosmos/types").ISigni
17
17
  * @package cosmos.authz.v1beta1
18
18
  * @see proto service: cosmos.authz.v1beta1.Exec
19
19
  */
20
- export declare const exec: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgExec | MsgExec[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
20
+ export declare const exec: (client: import("@interchainjs/cosmos/types/signing-client").ISigningClient, signerAddress: string, message: MsgExec | MsgExec[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
21
21
  /**
22
22
  * Revoke revokes any authorization corresponding to the provided method name on the
23
23
  * granter's account that has been granted to the grantee.
@@ -25,4 +25,4 @@ export declare const exec: (client: import("@interchainjs/cosmos/types").ISignin
25
25
  * @package cosmos.authz.v1beta1
26
26
  * @see proto service: cosmos.authz.v1beta1.Revoke
27
27
  */
28
- export declare const revoke: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgRevoke | MsgRevoke[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
28
+ export declare const revoke: (client: import("@interchainjs/cosmos/types/signing-client").ISigningClient, signerAddress: string, message: MsgRevoke | MsgRevoke[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
@@ -5,14 +5,14 @@ import { MsgSend, MsgMultiSend, MsgUpdateParams, MsgSetSendEnabled } from "./tx"
5
5
  * @package cosmos.bank.v1beta1
6
6
  * @see proto service: cosmos.bank.v1beta1.Send
7
7
  */
8
- export declare const send: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgSend | MsgSend[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
8
+ export declare const send: (client: import("@interchainjs/cosmos/types/signing-client").ISigningClient, signerAddress: string, message: MsgSend | MsgSend[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
9
9
  /**
10
10
  * MultiSend defines a method for sending coins from some accounts to other accounts.
11
11
  * @name multiSend
12
12
  * @package cosmos.bank.v1beta1
13
13
  * @see proto service: cosmos.bank.v1beta1.MultiSend
14
14
  */
15
- export declare const multiSend: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgMultiSend | MsgMultiSend[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
15
+ export declare const multiSend: (client: import("@interchainjs/cosmos/types/signing-client").ISigningClient, signerAddress: string, message: MsgMultiSend | MsgMultiSend[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
16
16
  /**
17
17
  * UpdateParams defines a governance operation for updating the x/bank module parameters.
18
18
  * The authority is defined in the keeper.
@@ -20,7 +20,7 @@ export declare const multiSend: (client: import("@interchainjs/cosmos/types").IS
20
20
  * @package cosmos.bank.v1beta1
21
21
  * @see proto service: cosmos.bank.v1beta1.UpdateParams
22
22
  */
23
- export declare const updateParams: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgUpdateParams | MsgUpdateParams[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
23
+ export declare const updateParams: (client: import("@interchainjs/cosmos/types/signing-client").ISigningClient, signerAddress: string, message: MsgUpdateParams | MsgUpdateParams[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
24
24
  /**
25
25
  * SetSendEnabled is a governance operation for setting the SendEnabled flag
26
26
  * on any number of Denoms. Only the entries to add or update should be
@@ -30,4 +30,4 @@ export declare const updateParams: (client: import("@interchainjs/cosmos/types")
30
30
  * @package cosmos.bank.v1beta1
31
31
  * @see proto service: cosmos.bank.v1beta1.SetSendEnabled
32
32
  */
33
- export declare const setSendEnabled: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgSetSendEnabled | MsgSetSendEnabled[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
33
+ export declare const setSendEnabled: (client: import("@interchainjs/cosmos/types/signing-client").ISigningClient, signerAddress: string, message: MsgSetSendEnabled | MsgSetSendEnabled[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
@@ -6,7 +6,7 @@ import { MsgSetWithdrawAddress, MsgWithdrawDelegatorReward, MsgWithdrawValidator
6
6
  * @package cosmos.distribution.v1beta1
7
7
  * @see proto service: cosmos.distribution.v1beta1.SetWithdrawAddress
8
8
  */
9
- export declare const setWithdrawAddress: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgSetWithdrawAddress | MsgSetWithdrawAddress[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
9
+ export declare const setWithdrawAddress: (client: import("@interchainjs/cosmos/types/signing-client").ISigningClient, signerAddress: string, message: MsgSetWithdrawAddress | MsgSetWithdrawAddress[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
10
10
  /**
11
11
  * WithdrawDelegatorReward defines a method to withdraw rewards of delegator
12
12
  * from a single validator.
@@ -14,7 +14,7 @@ export declare const setWithdrawAddress: (client: import("@interchainjs/cosmos/t
14
14
  * @package cosmos.distribution.v1beta1
15
15
  * @see proto service: cosmos.distribution.v1beta1.WithdrawDelegatorReward
16
16
  */
17
- export declare const withdrawDelegatorReward: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgWithdrawDelegatorReward | MsgWithdrawDelegatorReward[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
17
+ export declare const withdrawDelegatorReward: (client: import("@interchainjs/cosmos/types/signing-client").ISigningClient, signerAddress: string, message: MsgWithdrawDelegatorReward | MsgWithdrawDelegatorReward[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
18
18
  /**
19
19
  * WithdrawValidatorCommission defines a method to withdraw the
20
20
  * full commission to the validator address.
@@ -22,7 +22,7 @@ export declare const withdrawDelegatorReward: (client: import("@interchainjs/cos
22
22
  * @package cosmos.distribution.v1beta1
23
23
  * @see proto service: cosmos.distribution.v1beta1.WithdrawValidatorCommission
24
24
  */
25
- export declare const withdrawValidatorCommission: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgWithdrawValidatorCommission | MsgWithdrawValidatorCommission[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
25
+ export declare const withdrawValidatorCommission: (client: import("@interchainjs/cosmos/types/signing-client").ISigningClient, signerAddress: string, message: MsgWithdrawValidatorCommission | MsgWithdrawValidatorCommission[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
26
26
  /**
27
27
  * FundCommunityPool defines a method to allow an account to directly
28
28
  * fund the community pool.
@@ -32,7 +32,7 @@ export declare const withdrawValidatorCommission: (client: import("@interchainjs
32
32
  * @package cosmos.distribution.v1beta1
33
33
  * @see proto service: cosmos.distribution.v1beta1.FundCommunityPool
34
34
  */
35
- export declare const fundCommunityPool: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgFundCommunityPool | MsgFundCommunityPool[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
35
+ export declare const fundCommunityPool: (client: import("@interchainjs/cosmos/types/signing-client").ISigningClient, signerAddress: string, message: MsgFundCommunityPool | MsgFundCommunityPool[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
36
36
  /**
37
37
  * UpdateParams defines a governance operation for updating the x/distribution
38
38
  * module parameters. The authority is defined in the keeper.
@@ -40,7 +40,7 @@ export declare const fundCommunityPool: (client: import("@interchainjs/cosmos/ty
40
40
  * @package cosmos.distribution.v1beta1
41
41
  * @see proto service: cosmos.distribution.v1beta1.UpdateParams
42
42
  */
43
- export declare const updateParams: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgUpdateParams | MsgUpdateParams[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
43
+ export declare const updateParams: (client: import("@interchainjs/cosmos/types/signing-client").ISigningClient, signerAddress: string, message: MsgUpdateParams | MsgUpdateParams[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
44
44
  /**
45
45
  * CommunityPoolSpend defines a governance operation for sending tokens from
46
46
  * the community pool in the x/distribution module to another account, which
@@ -52,7 +52,7 @@ export declare const updateParams: (client: import("@interchainjs/cosmos/types")
52
52
  * @package cosmos.distribution.v1beta1
53
53
  * @see proto service: cosmos.distribution.v1beta1.CommunityPoolSpend
54
54
  */
55
- export declare const communityPoolSpend: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgCommunityPoolSpend | MsgCommunityPoolSpend[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
55
+ export declare const communityPoolSpend: (client: import("@interchainjs/cosmos/types/signing-client").ISigningClient, signerAddress: string, message: MsgCommunityPoolSpend | MsgCommunityPoolSpend[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
56
56
  /**
57
57
  * DepositValidatorRewardsPool defines a method to provide additional rewards
58
58
  * to delegators to a specific validator.
@@ -60,4 +60,4 @@ export declare const communityPoolSpend: (client: import("@interchainjs/cosmos/t
60
60
  * @package cosmos.distribution.v1beta1
61
61
  * @see proto service: cosmos.distribution.v1beta1.DepositValidatorRewardsPool
62
62
  */
63
- export declare const depositValidatorRewardsPool: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgDepositValidatorRewardsPool | MsgDepositValidatorRewardsPool[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
63
+ export declare const depositValidatorRewardsPool: (client: import("@interchainjs/cosmos/types/signing-client").ISigningClient, signerAddress: string, message: MsgDepositValidatorRewardsPool | MsgDepositValidatorRewardsPool[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
@@ -6,7 +6,7 @@ import { MsgGrantAllowance, MsgRevokeAllowance, MsgPruneAllowances } from "./tx"
6
6
  * @package cosmos.feegrant.v1beta1
7
7
  * @see proto service: cosmos.feegrant.v1beta1.GrantAllowance
8
8
  */
9
- export declare const grantAllowance: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgGrantAllowance | MsgGrantAllowance[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
9
+ export declare const grantAllowance: (client: import("@interchainjs/cosmos/types/signing-client").ISigningClient, signerAddress: string, message: MsgGrantAllowance | MsgGrantAllowance[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
10
10
  /**
11
11
  * RevokeAllowance revokes any fee allowance of granter's account that
12
12
  * has been granted to the grantee.
@@ -14,11 +14,11 @@ export declare const grantAllowance: (client: import("@interchainjs/cosmos/types
14
14
  * @package cosmos.feegrant.v1beta1
15
15
  * @see proto service: cosmos.feegrant.v1beta1.RevokeAllowance
16
16
  */
17
- export declare const revokeAllowance: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgRevokeAllowance | MsgRevokeAllowance[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
17
+ export declare const revokeAllowance: (client: import("@interchainjs/cosmos/types/signing-client").ISigningClient, signerAddress: string, message: MsgRevokeAllowance | MsgRevokeAllowance[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
18
18
  /**
19
19
  * PruneAllowances prunes expired fee allowances, currently up to 75 at a time.
20
20
  * @name pruneAllowances
21
21
  * @package cosmos.feegrant.v1beta1
22
22
  * @see proto service: cosmos.feegrant.v1beta1.PruneAllowances
23
23
  */
24
- export declare const pruneAllowances: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgPruneAllowances | MsgPruneAllowances[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
24
+ export declare const pruneAllowances: (client: import("@interchainjs/cosmos/types/signing-client").ISigningClient, signerAddress: string, message: MsgPruneAllowances | MsgPruneAllowances[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
@@ -5,7 +5,7 @@ import { MsgSubmitProposal, MsgExecLegacyContent, MsgVote, MsgVoteWeighted, MsgD
5
5
  * @package cosmos.gov.v1
6
6
  * @see proto service: cosmos.gov.v1.SubmitProposal
7
7
  */
8
- export declare const submitProposal: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgSubmitProposal | MsgSubmitProposal[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
8
+ export declare const submitProposal: (client: import("@interchainjs/cosmos/types/signing-client").ISigningClient, signerAddress: string, message: MsgSubmitProposal | MsgSubmitProposal[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
9
9
  /**
10
10
  * ExecLegacyContent defines a Msg to be in included in a MsgSubmitProposal
11
11
  * to execute a legacy content-based proposal.
@@ -13,28 +13,28 @@ export declare const submitProposal: (client: import("@interchainjs/cosmos/types
13
13
  * @package cosmos.gov.v1
14
14
  * @see proto service: cosmos.gov.v1.ExecLegacyContent
15
15
  */
16
- export declare const execLegacyContent: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgExecLegacyContent | MsgExecLegacyContent[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
16
+ export declare const execLegacyContent: (client: import("@interchainjs/cosmos/types/signing-client").ISigningClient, signerAddress: string, message: MsgExecLegacyContent | MsgExecLegacyContent[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
17
17
  /**
18
18
  * Vote defines a method to add a vote on a specific proposal.
19
19
  * @name vote
20
20
  * @package cosmos.gov.v1
21
21
  * @see proto service: cosmos.gov.v1.Vote
22
22
  */
23
- export declare const vote: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgVote | MsgVote[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
23
+ export declare const vote: (client: import("@interchainjs/cosmos/types/signing-client").ISigningClient, signerAddress: string, message: MsgVote | MsgVote[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
24
24
  /**
25
25
  * VoteWeighted defines a method to add a weighted vote on a specific proposal.
26
26
  * @name voteWeighted
27
27
  * @package cosmos.gov.v1
28
28
  * @see proto service: cosmos.gov.v1.VoteWeighted
29
29
  */
30
- export declare const voteWeighted: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgVoteWeighted | MsgVoteWeighted[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
30
+ export declare const voteWeighted: (client: import("@interchainjs/cosmos/types/signing-client").ISigningClient, signerAddress: string, message: MsgVoteWeighted | MsgVoteWeighted[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
31
31
  /**
32
32
  * Deposit defines a method to add deposit on a specific proposal.
33
33
  * @name deposit
34
34
  * @package cosmos.gov.v1
35
35
  * @see proto service: cosmos.gov.v1.Deposit
36
36
  */
37
- export declare const deposit: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgDeposit | MsgDeposit[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
37
+ export declare const deposit: (client: import("@interchainjs/cosmos/types/signing-client").ISigningClient, signerAddress: string, message: MsgDeposit | MsgDeposit[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
38
38
  /**
39
39
  * UpdateParams defines a governance operation for updating the x/gov module
40
40
  * parameters. The authority is defined in the keeper.
@@ -42,11 +42,11 @@ export declare const deposit: (client: import("@interchainjs/cosmos/types").ISig
42
42
  * @package cosmos.gov.v1
43
43
  * @see proto service: cosmos.gov.v1.UpdateParams
44
44
  */
45
- export declare const updateParams: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgUpdateParams | MsgUpdateParams[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
45
+ export declare const updateParams: (client: import("@interchainjs/cosmos/types/signing-client").ISigningClient, signerAddress: string, message: MsgUpdateParams | MsgUpdateParams[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
46
46
  /**
47
47
  * CancelProposal defines a method to cancel governance proposal
48
48
  * @name cancelProposal
49
49
  * @package cosmos.gov.v1
50
50
  * @see proto service: cosmos.gov.v1.CancelProposal
51
51
  */
52
- export declare const cancelProposal: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgCancelProposal | MsgCancelProposal[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
52
+ export declare const cancelProposal: (client: import("@interchainjs/cosmos/types/signing-client").ISigningClient, signerAddress: string, message: MsgCancelProposal | MsgCancelProposal[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
@@ -5,25 +5,25 @@ import { MsgSubmitProposal, MsgVote, MsgVoteWeighted, MsgDeposit } from "./tx";
5
5
  * @package cosmos.gov.v1beta1
6
6
  * @see proto service: cosmos.gov.v1beta1.SubmitProposal
7
7
  */
8
- export declare const submitProposal: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgSubmitProposal | MsgSubmitProposal[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
8
+ export declare const submitProposal: (client: import("@interchainjs/cosmos/types/signing-client").ISigningClient, signerAddress: string, message: MsgSubmitProposal | MsgSubmitProposal[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
9
9
  /**
10
10
  * Vote defines a method to add a vote on a specific proposal.
11
11
  * @name vote
12
12
  * @package cosmos.gov.v1beta1
13
13
  * @see proto service: cosmos.gov.v1beta1.Vote
14
14
  */
15
- export declare const vote: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgVote | MsgVote[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
15
+ export declare const vote: (client: import("@interchainjs/cosmos/types/signing-client").ISigningClient, signerAddress: string, message: MsgVote | MsgVote[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
16
16
  /**
17
17
  * VoteWeighted defines a method to add a weighted vote on a specific proposal.
18
18
  * @name voteWeighted
19
19
  * @package cosmos.gov.v1beta1
20
20
  * @see proto service: cosmos.gov.v1beta1.VoteWeighted
21
21
  */
22
- export declare const voteWeighted: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgVoteWeighted | MsgVoteWeighted[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
22
+ export declare const voteWeighted: (client: import("@interchainjs/cosmos/types/signing-client").ISigningClient, signerAddress: string, message: MsgVoteWeighted | MsgVoteWeighted[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
23
23
  /**
24
24
  * Deposit defines a method to add deposit on a specific proposal.
25
25
  * @name deposit
26
26
  * @package cosmos.gov.v1beta1
27
27
  * @see proto service: cosmos.gov.v1beta1.Deposit
28
28
  */
29
- export declare const deposit: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgDeposit | MsgDeposit[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
29
+ export declare const deposit: (client: import("@interchainjs/cosmos/types/signing-client").ISigningClient, signerAddress: string, message: MsgDeposit | MsgDeposit[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
@@ -5,95 +5,95 @@ import { MsgCreateGroup, MsgUpdateGroupMembers, MsgUpdateGroupAdmin, MsgUpdateGr
5
5
  * @package cosmos.group.v1
6
6
  * @see proto service: cosmos.group.v1.CreateGroup
7
7
  */
8
- export declare const createGroup: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgCreateGroup | MsgCreateGroup[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
8
+ export declare const createGroup: (client: import("@interchainjs/cosmos/types/signing-client").ISigningClient, signerAddress: string, message: MsgCreateGroup | MsgCreateGroup[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
9
9
  /**
10
10
  * UpdateGroupMembers updates the group members with given group id and admin address.
11
11
  * @name updateGroupMembers
12
12
  * @package cosmos.group.v1
13
13
  * @see proto service: cosmos.group.v1.UpdateGroupMembers
14
14
  */
15
- export declare const updateGroupMembers: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgUpdateGroupMembers | MsgUpdateGroupMembers[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
15
+ export declare const updateGroupMembers: (client: import("@interchainjs/cosmos/types/signing-client").ISigningClient, signerAddress: string, message: MsgUpdateGroupMembers | MsgUpdateGroupMembers[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
16
16
  /**
17
17
  * UpdateGroupAdmin updates the group admin with given group id and previous admin address.
18
18
  * @name updateGroupAdmin
19
19
  * @package cosmos.group.v1
20
20
  * @see proto service: cosmos.group.v1.UpdateGroupAdmin
21
21
  */
22
- export declare const updateGroupAdmin: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgUpdateGroupAdmin | MsgUpdateGroupAdmin[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
22
+ export declare const updateGroupAdmin: (client: import("@interchainjs/cosmos/types/signing-client").ISigningClient, signerAddress: string, message: MsgUpdateGroupAdmin | MsgUpdateGroupAdmin[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
23
23
  /**
24
24
  * UpdateGroupMetadata updates the group metadata with given group id and admin address.
25
25
  * @name updateGroupMetadata
26
26
  * @package cosmos.group.v1
27
27
  * @see proto service: cosmos.group.v1.UpdateGroupMetadata
28
28
  */
29
- export declare const updateGroupMetadata: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgUpdateGroupMetadata | MsgUpdateGroupMetadata[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
29
+ export declare const updateGroupMetadata: (client: import("@interchainjs/cosmos/types/signing-client").ISigningClient, signerAddress: string, message: MsgUpdateGroupMetadata | MsgUpdateGroupMetadata[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
30
30
  /**
31
31
  * CreateGroupPolicy creates a new group policy using given DecisionPolicy.
32
32
  * @name createGroupPolicy
33
33
  * @package cosmos.group.v1
34
34
  * @see proto service: cosmos.group.v1.CreateGroupPolicy
35
35
  */
36
- export declare const createGroupPolicy: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgCreateGroupPolicy | MsgCreateGroupPolicy[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
36
+ export declare const createGroupPolicy: (client: import("@interchainjs/cosmos/types/signing-client").ISigningClient, signerAddress: string, message: MsgCreateGroupPolicy | MsgCreateGroupPolicy[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
37
37
  /**
38
38
  * CreateGroupWithPolicy creates a new group with policy.
39
39
  * @name createGroupWithPolicy
40
40
  * @package cosmos.group.v1
41
41
  * @see proto service: cosmos.group.v1.CreateGroupWithPolicy
42
42
  */
43
- export declare const createGroupWithPolicy: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgCreateGroupWithPolicy | MsgCreateGroupWithPolicy[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
43
+ export declare const createGroupWithPolicy: (client: import("@interchainjs/cosmos/types/signing-client").ISigningClient, signerAddress: string, message: MsgCreateGroupWithPolicy | MsgCreateGroupWithPolicy[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
44
44
  /**
45
45
  * UpdateGroupPolicyAdmin updates a group policy admin.
46
46
  * @name updateGroupPolicyAdmin
47
47
  * @package cosmos.group.v1
48
48
  * @see proto service: cosmos.group.v1.UpdateGroupPolicyAdmin
49
49
  */
50
- export declare const updateGroupPolicyAdmin: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgUpdateGroupPolicyAdmin | MsgUpdateGroupPolicyAdmin[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
50
+ export declare const updateGroupPolicyAdmin: (client: import("@interchainjs/cosmos/types/signing-client").ISigningClient, signerAddress: string, message: MsgUpdateGroupPolicyAdmin | MsgUpdateGroupPolicyAdmin[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
51
51
  /**
52
52
  * UpdateGroupPolicyDecisionPolicy allows a group policy's decision policy to be updated.
53
53
  * @name updateGroupPolicyDecisionPolicy
54
54
  * @package cosmos.group.v1
55
55
  * @see proto service: cosmos.group.v1.UpdateGroupPolicyDecisionPolicy
56
56
  */
57
- export declare const updateGroupPolicyDecisionPolicy: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgUpdateGroupPolicyDecisionPolicy | MsgUpdateGroupPolicyDecisionPolicy[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
57
+ export declare const updateGroupPolicyDecisionPolicy: (client: import("@interchainjs/cosmos/types/signing-client").ISigningClient, signerAddress: string, message: MsgUpdateGroupPolicyDecisionPolicy | MsgUpdateGroupPolicyDecisionPolicy[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
58
58
  /**
59
59
  * UpdateGroupPolicyMetadata updates a group policy metadata.
60
60
  * @name updateGroupPolicyMetadata
61
61
  * @package cosmos.group.v1
62
62
  * @see proto service: cosmos.group.v1.UpdateGroupPolicyMetadata
63
63
  */
64
- export declare const updateGroupPolicyMetadata: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgUpdateGroupPolicyMetadata | MsgUpdateGroupPolicyMetadata[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
64
+ export declare const updateGroupPolicyMetadata: (client: import("@interchainjs/cosmos/types/signing-client").ISigningClient, signerAddress: string, message: MsgUpdateGroupPolicyMetadata | MsgUpdateGroupPolicyMetadata[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
65
65
  /**
66
66
  * SubmitProposal submits a new proposal.
67
67
  * @name submitProposal
68
68
  * @package cosmos.group.v1
69
69
  * @see proto service: cosmos.group.v1.SubmitProposal
70
70
  */
71
- export declare const submitProposal: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgSubmitProposal | MsgSubmitProposal[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
71
+ export declare const submitProposal: (client: import("@interchainjs/cosmos/types/signing-client").ISigningClient, signerAddress: string, message: MsgSubmitProposal | MsgSubmitProposal[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
72
72
  /**
73
73
  * WithdrawProposal withdraws a proposal.
74
74
  * @name withdrawProposal
75
75
  * @package cosmos.group.v1
76
76
  * @see proto service: cosmos.group.v1.WithdrawProposal
77
77
  */
78
- export declare const withdrawProposal: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgWithdrawProposal | MsgWithdrawProposal[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
78
+ export declare const withdrawProposal: (client: import("@interchainjs/cosmos/types/signing-client").ISigningClient, signerAddress: string, message: MsgWithdrawProposal | MsgWithdrawProposal[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
79
79
  /**
80
80
  * Vote allows a voter to vote on a proposal.
81
81
  * @name vote
82
82
  * @package cosmos.group.v1
83
83
  * @see proto service: cosmos.group.v1.Vote
84
84
  */
85
- export declare const vote: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgVote | MsgVote[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
85
+ export declare const vote: (client: import("@interchainjs/cosmos/types/signing-client").ISigningClient, signerAddress: string, message: MsgVote | MsgVote[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
86
86
  /**
87
87
  * Exec executes a proposal.
88
88
  * @name exec
89
89
  * @package cosmos.group.v1
90
90
  * @see proto service: cosmos.group.v1.Exec
91
91
  */
92
- export declare const exec: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgExec | MsgExec[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
92
+ export declare const exec: (client: import("@interchainjs/cosmos/types/signing-client").ISigningClient, signerAddress: string, message: MsgExec | MsgExec[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
93
93
  /**
94
94
  * LeaveGroup allows a group member to leave the group.
95
95
  * @name leaveGroup
96
96
  * @package cosmos.group.v1
97
97
  * @see proto service: cosmos.group.v1.LeaveGroup
98
98
  */
99
- export declare const leaveGroup: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgLeaveGroup | MsgLeaveGroup[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
99
+ export declare const leaveGroup: (client: import("@interchainjs/cosmos/types/signing-client").ISigningClient, signerAddress: string, message: MsgLeaveGroup | MsgLeaveGroup[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
@@ -5,14 +5,14 @@ import { MsgCreateValidator, MsgEditValidator, MsgDelegate, MsgBeginRedelegate,
5
5
  * @package cosmos.staking.v1beta1
6
6
  * @see proto service: cosmos.staking.v1beta1.CreateValidator
7
7
  */
8
- export declare const createValidator: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgCreateValidator | MsgCreateValidator[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
8
+ export declare const createValidator: (client: import("@interchainjs/cosmos/types/signing-client").ISigningClient, signerAddress: string, message: MsgCreateValidator | MsgCreateValidator[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
9
9
  /**
10
10
  * EditValidator defines a method for editing an existing validator.
11
11
  * @name editValidator
12
12
  * @package cosmos.staking.v1beta1
13
13
  * @see proto service: cosmos.staking.v1beta1.EditValidator
14
14
  */
15
- export declare const editValidator: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgEditValidator | MsgEditValidator[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
15
+ export declare const editValidator: (client: import("@interchainjs/cosmos/types/signing-client").ISigningClient, signerAddress: string, message: MsgEditValidator | MsgEditValidator[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
16
16
  /**
17
17
  * Delegate defines a method for performing a delegation of coins
18
18
  * from a delegator to a validator.
@@ -20,7 +20,7 @@ export declare const editValidator: (client: import("@interchainjs/cosmos/types"
20
20
  * @package cosmos.staking.v1beta1
21
21
  * @see proto service: cosmos.staking.v1beta1.Delegate
22
22
  */
23
- export declare const delegate: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgDelegate | MsgDelegate[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
23
+ export declare const delegate: (client: import("@interchainjs/cosmos/types/signing-client").ISigningClient, signerAddress: string, message: MsgDelegate | MsgDelegate[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
24
24
  /**
25
25
  * BeginRedelegate defines a method for performing a redelegation
26
26
  * of coins from a delegator and source validator to a destination validator.
@@ -28,7 +28,7 @@ export declare const delegate: (client: import("@interchainjs/cosmos/types").ISi
28
28
  * @package cosmos.staking.v1beta1
29
29
  * @see proto service: cosmos.staking.v1beta1.BeginRedelegate
30
30
  */
31
- export declare const beginRedelegate: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgBeginRedelegate | MsgBeginRedelegate[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
31
+ export declare const beginRedelegate: (client: import("@interchainjs/cosmos/types/signing-client").ISigningClient, signerAddress: string, message: MsgBeginRedelegate | MsgBeginRedelegate[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
32
32
  /**
33
33
  * Undelegate defines a method for performing an undelegation from a
34
34
  * delegate and a validator.
@@ -36,7 +36,7 @@ export declare const beginRedelegate: (client: import("@interchainjs/cosmos/type
36
36
  * @package cosmos.staking.v1beta1
37
37
  * @see proto service: cosmos.staking.v1beta1.Undelegate
38
38
  */
39
- export declare const undelegate: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgUndelegate | MsgUndelegate[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
39
+ export declare const undelegate: (client: import("@interchainjs/cosmos/types/signing-client").ISigningClient, signerAddress: string, message: MsgUndelegate | MsgUndelegate[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
40
40
  /**
41
41
  * CancelUnbondingDelegation defines a method for performing canceling the unbonding delegation
42
42
  * and delegate back to previous validator.
@@ -44,7 +44,7 @@ export declare const undelegate: (client: import("@interchainjs/cosmos/types").I
44
44
  * @package cosmos.staking.v1beta1
45
45
  * @see proto service: cosmos.staking.v1beta1.CancelUnbondingDelegation
46
46
  */
47
- export declare const cancelUnbondingDelegation: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgCancelUnbondingDelegation | MsgCancelUnbondingDelegation[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
47
+ export declare const cancelUnbondingDelegation: (client: import("@interchainjs/cosmos/types/signing-client").ISigningClient, signerAddress: string, message: MsgCancelUnbondingDelegation | MsgCancelUnbondingDelegation[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
48
48
  /**
49
49
  * UpdateParams defines an operation for updating the x/staking module
50
50
  * parameters.
@@ -52,4 +52,4 @@ export declare const cancelUnbondingDelegation: (client: import("@interchainjs/c
52
52
  * @package cosmos.staking.v1beta1
53
53
  * @see proto service: cosmos.staking.v1beta1.UpdateParams
54
54
  */
55
- export declare const updateParams: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgUpdateParams | MsgUpdateParams[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
55
+ export declare const updateParams: (client: import("@interchainjs/cosmos/types/signing-client").ISigningClient, signerAddress: string, message: MsgUpdateParams | MsgUpdateParams[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
@@ -6,7 +6,7 @@ import { MsgCreateVestingAccount, MsgCreatePermanentLockedAccount, MsgCreatePeri
6
6
  * @package cosmos.vesting.v1beta1
7
7
  * @see proto service: cosmos.vesting.v1beta1.CreateVestingAccount
8
8
  */
9
- export declare const createVestingAccount: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgCreateVestingAccount | MsgCreateVestingAccount[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
9
+ export declare const createVestingAccount: (client: import("@interchainjs/cosmos/types/signing-client").ISigningClient, signerAddress: string, message: MsgCreateVestingAccount | MsgCreateVestingAccount[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
10
10
  /**
11
11
  * CreatePermanentLockedAccount defines a method that enables creating a permanent
12
12
  * locked account.
@@ -14,7 +14,7 @@ export declare const createVestingAccount: (client: import("@interchainjs/cosmos
14
14
  * @package cosmos.vesting.v1beta1
15
15
  * @see proto service: cosmos.vesting.v1beta1.CreatePermanentLockedAccount
16
16
  */
17
- export declare const createPermanentLockedAccount: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgCreatePermanentLockedAccount | MsgCreatePermanentLockedAccount[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
17
+ export declare const createPermanentLockedAccount: (client: import("@interchainjs/cosmos/types/signing-client").ISigningClient, signerAddress: string, message: MsgCreatePermanentLockedAccount | MsgCreatePermanentLockedAccount[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
18
18
  /**
19
19
  * CreatePeriodicVestingAccount defines a method that enables creating a
20
20
  * periodic vesting account.
@@ -22,4 +22,4 @@ export declare const createPermanentLockedAccount: (client: import("@interchainj
22
22
  * @package cosmos.vesting.v1beta1
23
23
  * @see proto service: cosmos.vesting.v1beta1.CreatePeriodicVestingAccount
24
24
  */
25
- export declare const createPeriodicVestingAccount: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgCreatePeriodicVestingAccount | MsgCreatePeriodicVestingAccount[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
25
+ export declare const createPeriodicVestingAccount: (client: import("@interchainjs/cosmos/types/signing-client").ISigningClient, signerAddress: string, message: MsgCreatePeriodicVestingAccount | MsgCreatePeriodicVestingAccount[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;