@initia/initia.js 0.2.25 → 0.2.27
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/ibc/applications/nft-transfer/msgs/MsgNftTransfer.d.ts +1 -1
- package/dist/core/ibc/applications/transfer/msgs/MsgTransfer.d.ts +1 -1
- package/dist/core/wasm/msgs/MsgExecuteContract.d.ts +2 -2
- package/dist/core/wasm/msgs/MsgInstantiateContract.d.ts +2 -2
- package/dist/core/wasm/msgs/MsgInstantiateContractV2.d.ts +2 -2
- package/dist/core/wasm/msgs/MsgMigrateContract.d.ts +2 -2
- package/dist/core/wasm/msgs/MsgStoreAndInstantiateContract.d.ts +2 -2
- package/dist/core/wasm/msgs/MsgStoreAndMigrateContract.d.ts +2 -2
- package/dist/core/wasm/msgs/MsgSudoContract.d.ts +2 -2
- package/dist/index.cjs.js +2 -2
- package/dist/index.es.js +775 -747
- package/package.json +1 -1
|
@@ -24,7 +24,7 @@ export declare namespace MsgExecuteContract {
|
|
|
24
24
|
value: {
|
|
25
25
|
sender: AccAddress;
|
|
26
26
|
contract: AccAddress;
|
|
27
|
-
msg:
|
|
27
|
+
msg: JSON;
|
|
28
28
|
funds: Coins.Amino;
|
|
29
29
|
};
|
|
30
30
|
}
|
|
@@ -32,7 +32,7 @@ export declare namespace MsgExecuteContract {
|
|
|
32
32
|
'@type': '/cosmwasm.wasm.v1.MsgExecuteContract';
|
|
33
33
|
sender: AccAddress;
|
|
34
34
|
contract: AccAddress;
|
|
35
|
-
msg:
|
|
35
|
+
msg: JSON;
|
|
36
36
|
funds: Coins.Data;
|
|
37
37
|
}
|
|
38
38
|
type Proto = MsgExecuteContract_pb;
|
|
@@ -28,7 +28,7 @@ export declare namespace MsgInstantiateContract {
|
|
|
28
28
|
admin?: AccAddress;
|
|
29
29
|
code_id: string;
|
|
30
30
|
label?: string;
|
|
31
|
-
msg:
|
|
31
|
+
msg: JSON;
|
|
32
32
|
funds: Coins.Amino;
|
|
33
33
|
};
|
|
34
34
|
}
|
|
@@ -38,7 +38,7 @@ export declare namespace MsgInstantiateContract {
|
|
|
38
38
|
admin?: AccAddress;
|
|
39
39
|
code_id: string;
|
|
40
40
|
label?: string;
|
|
41
|
-
msg:
|
|
41
|
+
msg: JSON;
|
|
42
42
|
funds: Coins.Data;
|
|
43
43
|
}
|
|
44
44
|
type Proto = MsgInstantiateContract_pb;
|
|
@@ -30,7 +30,7 @@ export declare namespace MsgInstantiateContractV2 {
|
|
|
30
30
|
admin?: AccAddress;
|
|
31
31
|
code_id: string;
|
|
32
32
|
label?: string;
|
|
33
|
-
msg:
|
|
33
|
+
msg: JSON;
|
|
34
34
|
funds: Coins.Amino;
|
|
35
35
|
salt: string;
|
|
36
36
|
fix_msg: boolean;
|
|
@@ -42,7 +42,7 @@ export declare namespace MsgInstantiateContractV2 {
|
|
|
42
42
|
admin?: AccAddress;
|
|
43
43
|
code_id: string;
|
|
44
44
|
label?: string;
|
|
45
|
-
msg:
|
|
45
|
+
msg: JSON;
|
|
46
46
|
funds: Coins.Data;
|
|
47
47
|
salt: string;
|
|
48
48
|
fix_msg: boolean;
|
|
@@ -24,7 +24,7 @@ export declare namespace MsgMigrateContract {
|
|
|
24
24
|
sender: AccAddress;
|
|
25
25
|
contract: AccAddress;
|
|
26
26
|
code_id: string;
|
|
27
|
-
msg:
|
|
27
|
+
msg: JSON;
|
|
28
28
|
};
|
|
29
29
|
}
|
|
30
30
|
interface Data {
|
|
@@ -32,7 +32,7 @@ export declare namespace MsgMigrateContract {
|
|
|
32
32
|
sender: AccAddress;
|
|
33
33
|
contract: AccAddress;
|
|
34
34
|
code_id: string;
|
|
35
|
-
msg:
|
|
35
|
+
msg: JSON;
|
|
36
36
|
}
|
|
37
37
|
type Proto = MsgMigrateContract_pb;
|
|
38
38
|
}
|
|
@@ -36,7 +36,7 @@ export declare namespace MsgStoreAndInstantiateContract {
|
|
|
36
36
|
unpin_code?: boolean;
|
|
37
37
|
admin?: AccAddress;
|
|
38
38
|
label?: string;
|
|
39
|
-
msg:
|
|
39
|
+
msg: JSON;
|
|
40
40
|
funds: Coins.Amino;
|
|
41
41
|
source: string;
|
|
42
42
|
builder: string;
|
|
@@ -51,7 +51,7 @@ export declare namespace MsgStoreAndInstantiateContract {
|
|
|
51
51
|
unpin_code?: boolean;
|
|
52
52
|
admin?: AccAddress;
|
|
53
53
|
label?: string;
|
|
54
|
-
msg:
|
|
54
|
+
msg: JSON;
|
|
55
55
|
funds: Coins.Amino;
|
|
56
56
|
source: string;
|
|
57
57
|
builder: string;
|
|
@@ -27,7 +27,7 @@ export declare namespace MsgStoreAndMigrateContract {
|
|
|
27
27
|
wasm_byte_code: string;
|
|
28
28
|
instantiate_permission?: AccessConfig.Amino;
|
|
29
29
|
contract: AccAddress;
|
|
30
|
-
msg:
|
|
30
|
+
msg: JSON;
|
|
31
31
|
};
|
|
32
32
|
}
|
|
33
33
|
interface Data {
|
|
@@ -36,7 +36,7 @@ export declare namespace MsgStoreAndMigrateContract {
|
|
|
36
36
|
wasm_byte_code: string;
|
|
37
37
|
instantiate_permission?: AccessConfig.Data;
|
|
38
38
|
contract: AccAddress;
|
|
39
|
-
msg:
|
|
39
|
+
msg: JSON;
|
|
40
40
|
}
|
|
41
41
|
type Proto = MsgStoreAndMigrateContract_pb;
|
|
42
42
|
}
|
|
@@ -22,14 +22,14 @@ export declare namespace MsgSudoContract {
|
|
|
22
22
|
value: {
|
|
23
23
|
authority: AccAddress;
|
|
24
24
|
contract: AccAddress;
|
|
25
|
-
msg:
|
|
25
|
+
msg: JSON;
|
|
26
26
|
};
|
|
27
27
|
}
|
|
28
28
|
interface Data {
|
|
29
29
|
'@type': '/cosmwasm.wasm.v1.MsgSudoContract';
|
|
30
30
|
authority: AccAddress;
|
|
31
31
|
contract: AccAddress;
|
|
32
|
-
msg:
|
|
32
|
+
msg: JSON;
|
|
33
33
|
}
|
|
34
34
|
type Proto = MsgSudoContract_pb;
|
|
35
35
|
}
|