@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.
- package/dist/core/authz/authorizations/ExecuteAuthorization.d.ts +1 -1
- package/dist/core/bank/msgs/MsgMultiSend.d.ts +2 -2
- package/dist/core/evm/EvmParams.d.ts +2 -2
- package/dist/core/evm/msgs/MsgCall.d.ts +1 -1
- package/dist/core/evm/msgs/MsgCreate.d.ts +1 -1
- package/dist/core/evm/msgs/MsgCreate2.d.ts +1 -1
- package/dist/core/gov/Deposit.d.ts +1 -1
- package/dist/core/gov/GovParams.d.ts +3 -3
- package/dist/core/gov/msgs/MsgDeposit.d.ts +1 -1
- package/dist/core/gov/msgs/MsgVoteWeightedLegacy.d.ts +1 -1
- package/dist/core/gov/proposals/Proposal.d.ts +1 -1
- package/dist/core/group/msgs/MsgCreateGroup.d.ts +1 -1
- package/dist/core/group/msgs/MsgCreateGroupWithPolicy.d.ts +1 -1
- package/dist/core/group/msgs/MsgUpdateGroupMembers.d.ts +1 -1
- package/dist/core/move/MoveParams.d.ts +1 -1
- package/dist/core/mstaking/msgs/MsgBeginRedelegate.d.ts +1 -1
- package/dist/core/mstaking/msgs/MsgCancelUnbondingDelegation.d.ts +1 -1
- package/dist/core/mstaking/msgs/MsgCreateValidator.d.ts +1 -1
- package/dist/core/mstaking/msgs/MsgDelegate.d.ts +1 -1
- package/dist/core/mstaking/msgs/MsgUndelegate.d.ts +1 -1
- package/dist/core/opchild/OpchildParams.d.ts +2 -2
- package/dist/core/opchild/msgs/MsgSpendFeePool.d.ts +1 -1
- package/dist/core/ophost/OphostParams.d.ts +1 -1
- package/dist/core/params/proposals/ParameterChangeProposal.d.ts +1 -1
- package/dist/core/wasm/authorizations/ContractExecutionAuthorization.d.ts +1 -1
- package/dist/core/wasm/authorizations/ContractMigrationAuthorization.d.ts +1 -1
- package/dist/core/wasm/authorizations/StoreCodeAuthorization.d.ts +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.mjs +124 -125
- package/package.json +2 -2
|
@@ -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;
|
|
@@ -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;
|
|
@@ -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;
|
|
@@ -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;
|
|
@@ -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
|
}
|