@initia/initia.js 1.0.4 → 1.0.6

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 (30) hide show
  1. package/dist/core/authz/authorizations/ExecuteAuthorization.d.ts +1 -1
  2. package/dist/core/bank/msgs/MsgMultiSend.d.ts +2 -2
  3. package/dist/core/evm/EvmParams.d.ts +2 -2
  4. package/dist/core/evm/msgs/MsgCall.d.ts +1 -1
  5. package/dist/core/evm/msgs/MsgCreate.d.ts +1 -1
  6. package/dist/core/evm/msgs/MsgCreate2.d.ts +1 -1
  7. package/dist/core/gov/Deposit.d.ts +1 -1
  8. package/dist/core/gov/GovParams.d.ts +3 -3
  9. package/dist/core/gov/msgs/MsgDeposit.d.ts +1 -1
  10. package/dist/core/gov/msgs/MsgVoteWeightedLegacy.d.ts +1 -1
  11. package/dist/core/gov/proposals/Proposal.d.ts +1 -1
  12. package/dist/core/group/msgs/MsgCreateGroup.d.ts +1 -1
  13. package/dist/core/group/msgs/MsgCreateGroupWithPolicy.d.ts +1 -1
  14. package/dist/core/group/msgs/MsgUpdateGroupMembers.d.ts +1 -1
  15. package/dist/core/move/MoveParams.d.ts +1 -1
  16. package/dist/core/mstaking/msgs/MsgBeginRedelegate.d.ts +1 -1
  17. package/dist/core/mstaking/msgs/MsgCancelUnbondingDelegation.d.ts +1 -1
  18. package/dist/core/mstaking/msgs/MsgCreateValidator.d.ts +1 -1
  19. package/dist/core/mstaking/msgs/MsgDelegate.d.ts +1 -1
  20. package/dist/core/mstaking/msgs/MsgUndelegate.d.ts +1 -1
  21. package/dist/core/opchild/OpchildParams.d.ts +2 -2
  22. package/dist/core/opchild/msgs/MsgSpendFeePool.d.ts +1 -1
  23. package/dist/core/ophost/OphostParams.d.ts +1 -1
  24. package/dist/core/params/proposals/ParameterChangeProposal.d.ts +1 -1
  25. package/dist/core/wasm/authorizations/ContractExecutionAuthorization.d.ts +1 -1
  26. package/dist/core/wasm/authorizations/ContractMigrationAuthorization.d.ts +1 -1
  27. package/dist/core/wasm/authorizations/StoreCodeAuthorization.d.ts +1 -1
  28. package/dist/index.cjs +1 -1
  29. package/dist/index.mjs +124 -125
  30. package/package.json +2 -2
@@ -43,7 +43,7 @@ export declare namespace ExecuteAuthorization {
43
43
  interface Amino {
44
44
  type: 'move/ExecuteAuthorization';
45
45
  value: {
46
- items: ExecuteAuthorizationItem.Amino[];
46
+ items: ExecuteAuthorizationItem.Amino[] | null;
47
47
  };
48
48
  }
49
49
  interface Data {
@@ -21,8 +21,8 @@ export declare namespace MsgMultiSend {
21
21
  interface Amino {
22
22
  readonly type: 'cosmos-sdk/MsgMultiSend';
23
23
  value: {
24
- inputs: Input.Amino[];
25
- outputs: Output.Amino[];
24
+ inputs: Input.Amino[] | null;
25
+ outputs: Output.Amino[] | null;
26
26
  };
27
27
  }
28
28
  interface Data {
@@ -19,9 +19,9 @@ export declare class EvmParams extends JSONSerializable<EvmParams.Amino, EvmPara
19
19
  export declare namespace EvmParams {
20
20
  interface Amino {
21
21
  extra_eips: string[];
22
- allowed_publishers: string[];
22
+ allowed_publishers: string[] | null;
23
23
  allow_custom_erc20: boolean;
24
- allowed_custom_erc20s: string[];
24
+ allowed_custom_erc20s: string[] | null;
25
25
  fee_denom: string;
26
26
  gas_refund_ratio: string;
27
27
  num_retain_block_hashes: string;
@@ -27,7 +27,7 @@ export declare namespace MsgCall {
27
27
  contract_addr: AccAddress;
28
28
  input: string;
29
29
  value: string;
30
- access_list: AccessTuple.Amino[];
30
+ access_list: AccessTuple.Amino[] | null;
31
31
  };
32
32
  }
33
33
  interface Data {
@@ -25,7 +25,7 @@ export declare namespace MsgCreate {
25
25
  sender: AccAddress;
26
26
  code: string;
27
27
  value: string;
28
- access_list: AccessTuple.Amino[];
28
+ access_list: AccessTuple.Amino[] | null;
29
29
  };
30
30
  }
31
31
  interface Data {
@@ -27,7 +27,7 @@ export declare namespace MsgCreate2 {
27
27
  code: string;
28
28
  salt: string;
29
29
  value: string;
30
- access_list: AccessTuple.Amino[];
30
+ access_list: AccessTuple.Amino[] | null;
31
31
  };
32
32
  }
33
33
  interface Data {
@@ -18,7 +18,7 @@ export declare namespace Deposit {
18
18
  interface Amino {
19
19
  proposal_id: string;
20
20
  depositor: AccAddress;
21
- amount: Coins.Amino;
21
+ amount: Coins.Amino | null;
22
22
  }
23
23
  interface Data {
24
24
  proposal_id: string;
@@ -35,7 +35,7 @@ export declare class GovParams extends JSONSerializable<GovParams.Amino, GovPara
35
35
  }
36
36
  export declare namespace GovParams {
37
37
  interface Amino {
38
- min_deposit: Coins.Amino;
38
+ min_deposit: Coins.Amino | null;
39
39
  max_deposit_period: Duration.Amino;
40
40
  voting_period: Duration.Amino;
41
41
  quorum: string;
@@ -46,12 +46,12 @@ export declare namespace GovParams {
46
46
  proposal_cancel_dest: AccAddress;
47
47
  expedited_voting_period: Duration.Amino;
48
48
  expedited_threshold: string;
49
- expedited_min_deposit: Coins.Amino;
49
+ expedited_min_deposit: Coins.Amino | null;
50
50
  burn_vote_quorum: boolean;
51
51
  burn_proposal_deposit_prevote: boolean;
52
52
  burn_vote_veto: boolean;
53
53
  min_deposit_ratio: string;
54
- emergency_min_deposit: Coins.Amino;
54
+ emergency_min_deposit: Coins.Amino | null;
55
55
  emergency_tally_interval: Duration.Amino;
56
56
  low_threshold_functions: string[];
57
57
  vesting?: Vesting.Amino;
@@ -23,7 +23,7 @@ export declare namespace MsgDeposit {
23
23
  value: {
24
24
  proposal_id: string;
25
25
  depositor: AccAddress;
26
- amount: Coins.Amino;
26
+ amount: Coins.Amino | null;
27
27
  };
28
28
  }
29
29
  interface Data {
@@ -23,7 +23,7 @@ export declare namespace MsgVoteWeightedLegacy {
23
23
  value: {
24
24
  proposal_id: string;
25
25
  voter: AccAddress;
26
- options: WeightedVoteOption.Amino[];
26
+ options: WeightedVoteOption.Amino[] | null;
27
27
  };
28
28
  }
29
29
  interface Data {
@@ -42,7 +42,7 @@ export declare namespace Proposal {
42
42
  final_tally_result: TallyResult.Amino;
43
43
  submit_time: string;
44
44
  deposit_end_time: string;
45
- total_deposit: Coins.Amino;
45
+ total_deposit: Coins.Amino | null;
46
46
  voting_start_time: string;
47
47
  voting_end_time: string;
48
48
  emergency_start_time: string;
@@ -22,7 +22,7 @@ export declare namespace MsgCreateGroup {
22
22
  type: 'cosmos-sdk/MsgCreateGroup';
23
23
  value: {
24
24
  admin: AccAddress;
25
- members: MemberRequest.Amino[];
25
+ members: MemberRequest.Amino[] | null;
26
26
  metadata: string;
27
27
  };
28
28
  }
@@ -26,7 +26,7 @@ export declare namespace MsgCreateGroupWithPolicy {
26
26
  type: 'cosmos-sdk/MsgCreateGroupWithPolicy';
27
27
  value: {
28
28
  admin: AccAddress;
29
- members: MemberRequest.Amino[];
29
+ members: MemberRequest.Amino[] | null;
30
30
  group_metadata: string;
31
31
  group_policy_metadata: string;
32
32
  group_policy_as_admin: boolean;
@@ -23,7 +23,7 @@ export declare namespace MsgUpdateGroupMembers {
23
23
  value: {
24
24
  admin: AccAddress;
25
25
  group_id: string;
26
- member_updates: MemberRequest.Amino[];
26
+ member_updates: MemberRequest.Amino[] | null;
27
27
  };
28
28
  }
29
29
  interface Data {
@@ -22,7 +22,7 @@ export declare namespace MoveParams {
22
22
  base_min_gas_price: string;
23
23
  contract_shared_revenue_ratio: string;
24
24
  script_enabled: boolean;
25
- allowed_publishers: string[];
25
+ allowed_publishers: string[] | null;
26
26
  };
27
27
  }
28
28
  interface Data {
@@ -25,7 +25,7 @@ export declare namespace MsgBeginRedelegate {
25
25
  delegator_address: AccAddress;
26
26
  validator_src_address: ValAddress;
27
27
  validator_dst_address: ValAddress;
28
- amount: Coins.Amino;
28
+ amount: Coins.Amino | null;
29
29
  };
30
30
  }
31
31
  interface Data {
@@ -24,7 +24,7 @@ export declare namespace MsgCancelUnbondingDelegation {
24
24
  value: {
25
25
  delegator_address: AccAddress;
26
26
  validator_address: ValAddress;
27
- amount: Coins.Amino;
27
+ amount: Coins.Amino | null;
28
28
  creation_height: string;
29
29
  };
30
30
  }
@@ -29,7 +29,7 @@ export declare namespace MsgCreateValidator {
29
29
  commission: Validator.CommissionRates.Amino;
30
30
  validator_address: ValAddress;
31
31
  pubkey: ValConsPublicKey.Amino;
32
- amount: Coins.Amino;
32
+ amount: Coins.Amino | null;
33
33
  };
34
34
  }
35
35
  interface Data {
@@ -23,7 +23,7 @@ export declare namespace MsgDelegate {
23
23
  value: {
24
24
  delegator_address: AccAddress;
25
25
  validator_address: ValAddress;
26
- amount: Coins.Amino;
26
+ amount: Coins.Amino | null;
27
27
  };
28
28
  }
29
29
  interface Data {
@@ -23,7 +23,7 @@ export declare namespace MsgUndelegate {
23
23
  value: {
24
24
  delegator_address: AccAddress;
25
25
  validator_address: ValAddress;
26
- amount: Coins.Amino;
26
+ amount: Coins.Amino | null;
27
27
  };
28
28
  }
29
29
  interface Data {
@@ -25,9 +25,9 @@ export declare namespace OpchildParams {
25
25
  max_validators: number;
26
26
  historical_entries: number;
27
27
  min_gas_prices: Coins.Amino;
28
- bridge_executors: AccAddress[];
28
+ bridge_executors: AccAddress[] | null;
29
29
  admin: AccAddress;
30
- fee_whitelist: string[];
30
+ fee_whitelist: string[] | null;
31
31
  hook_max_gas: string;
32
32
  };
33
33
  }
@@ -23,7 +23,7 @@ export declare namespace MsgSpendFeePool {
23
23
  value: {
24
24
  authority: AccAddress;
25
25
  recipient: AccAddress;
26
- amount: Coins.Amino;
26
+ amount: Coins.Amino | null;
27
27
  };
28
28
  }
29
29
  interface Data {
@@ -15,7 +15,7 @@ export declare namespace OphostParams {
15
15
  interface Amino {
16
16
  type: 'ophost/Params';
17
17
  value: {
18
- registration_fee: Coins.Amino;
18
+ registration_fee: Coins.Amino | null;
19
19
  };
20
20
  }
21
21
  interface Data {
@@ -22,7 +22,7 @@ export declare namespace ParameterChangeProposal {
22
22
  value: {
23
23
  title: string;
24
24
  description: string;
25
- changes: ParamChange.Amino[];
25
+ changes: ParamChange.Amino[] | null;
26
26
  };
27
27
  }
28
28
  interface Data {
@@ -18,7 +18,7 @@ export declare namespace ContractExecutionAuthorization {
18
18
  interface Amino {
19
19
  type: 'wasm/ContractExecutionAuthorization';
20
20
  value: {
21
- grants: ContractGrant.Amino[];
21
+ grants: ContractGrant.Amino[] | null;
22
22
  };
23
23
  }
24
24
  interface Data {
@@ -18,7 +18,7 @@ export declare namespace ContractMigrationAuthorization {
18
18
  interface Amino {
19
19
  type: 'wasm/ContractMigrationAuthorization';
20
20
  value: {
21
- grants: ContractGrant.Amino[];
21
+ grants: ContractGrant.Amino[] | null;
22
22
  };
23
23
  }
24
24
  interface Data {
@@ -18,7 +18,7 @@ export declare namespace StoreCodeAuthorization {
18
18
  interface Amino {
19
19
  type: 'wasm/StoreCodeAuthorization';
20
20
  value: {
21
- grants: CodeGrant.Amino[];
21
+ grants: CodeGrant.Amino[] | null;
22
22
  };
23
23
  }
24
24
  interface Data {