@dashevo/wasm-dpp2 3.0.0-dev.9 → 3.0.0-rc.2
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/dpp.compressed.js +1 -1
- package/dist/dpp.d.ts +1166 -1062
- package/dist/dpp.js +1 -1
- package/dist/raw/wasm_dpp2.d.ts +1166 -1062
- package/dist/raw/wasm_dpp2.js +304 -72
- package/dist/raw/wasm_dpp2.no_url.js +304 -72
- package/dist/raw/wasm_dpp2_bg.wasm +0 -0
- package/dist/raw/wasm_dpp2_bg.wasm.d.ts +1075 -1061
- package/package.json +1 -1
package/dist/dpp.d.ts
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
/* tslint:disable */
|
|
2
2
|
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Test helper: Convert a JsValue to a JSON-compatible JsValue.
|
|
5
|
+
*
|
|
6
|
+
* This function is exposed for testing purposes to validate the Map normalization
|
|
7
|
+
* and BigInt handling logic in unit tests. It calls `js_value_to_json` internally
|
|
8
|
+
* and converts the result back to a JsValue.
|
|
9
|
+
*
|
|
10
|
+
* # Example (JavaScript)
|
|
11
|
+
* ```javascript
|
|
12
|
+
* const map = new Map([['key', 'value']]);
|
|
13
|
+
* const json = testJsValueToJson(map);
|
|
14
|
+
* console.log(json); // { key: 'value' }
|
|
15
|
+
* ```
|
|
16
|
+
*/
|
|
17
|
+
export function testJsValueToJson(value: any): any;
|
|
3
18
|
export enum ActionGoal {
|
|
4
19
|
ActionCompletion = 0,
|
|
5
20
|
ActionParticipation = 1,
|
|
@@ -128,6 +143,30 @@ export enum WasmDppErrorKind {
|
|
|
128
143
|
Generic = 4,
|
|
129
144
|
}
|
|
130
145
|
|
|
146
|
+
/**
|
|
147
|
+
* Flexible ProTxHash type that accepts ProTxHash object, hex string, or Uint8Array.
|
|
148
|
+
*
|
|
149
|
+
* - Hex string: 64-character hex-encoded hash (reversed byte order, as displayed)
|
|
150
|
+
* - Uint8Array: 32 bytes in internal byte order
|
|
151
|
+
*/
|
|
152
|
+
export type ProTxHashLike = ProTxHash | string | Uint8Array;
|
|
153
|
+
|
|
154
|
+
|
|
155
|
+
|
|
156
|
+
export type IdentifierLike = Identifier | Uint8Array | string;
|
|
157
|
+
|
|
158
|
+
|
|
159
|
+
|
|
160
|
+
/**
|
|
161
|
+
* Flexible network type that accepts Network enum, string names, or numeric values.
|
|
162
|
+
*
|
|
163
|
+
* String values (case-insensitive): "mainnet", "testnet", "devnet", "regtest"
|
|
164
|
+
* Numeric values: 0 (mainnet), 1 (testnet), 2 (devnet), 3 (regtest)
|
|
165
|
+
*/
|
|
166
|
+
export type NetworkLike = Network | "mainnet" | "testnet" | "devnet" | "regtest" | 0 | 1 | 2 | 3;
|
|
167
|
+
|
|
168
|
+
|
|
169
|
+
|
|
131
170
|
/**
|
|
132
171
|
* A Platform address can be provided as:
|
|
133
172
|
* - A PlatformAddress object
|
|
@@ -137,10 +176,6 @@ export enum WasmDppErrorKind {
|
|
|
137
176
|
export type PlatformAddressLike = PlatformAddress | Uint8Array | string;
|
|
138
177
|
|
|
139
178
|
|
|
140
|
-
|
|
141
|
-
export type IdentifierLike = Identifier | Uint8Array | string;
|
|
142
|
-
|
|
143
|
-
|
|
144
179
|
export class ActionTaker {
|
|
145
180
|
free(): void;
|
|
146
181
|
constructor(value: any);
|
|
@@ -827,6 +862,55 @@ export class GroupStateTransitionInfo {
|
|
|
827
862
|
groupContractPosition: number;
|
|
828
863
|
readonly __type: string;
|
|
829
864
|
}
|
|
865
|
+
/**
|
|
866
|
+
* Wrapper for GroupStateTransitionInfoStatus enum.
|
|
867
|
+
*
|
|
868
|
+
* This represents the group action context for a state transition:
|
|
869
|
+
* - Proposer: The identity proposing a new group action
|
|
870
|
+
* - OtherSigner: The identity signing/voting on an existing group action
|
|
871
|
+
*/
|
|
872
|
+
export class GroupStateTransitionInfoStatus {
|
|
873
|
+
private constructor();
|
|
874
|
+
free(): void;
|
|
875
|
+
/**
|
|
876
|
+
* Create a new other signer status for voting on an existing group action.
|
|
877
|
+
*
|
|
878
|
+
* Use this when the identity is signing/voting on an action proposed by someone else.
|
|
879
|
+
*
|
|
880
|
+
* @param groupContractPosition - The position of the group in the contract
|
|
881
|
+
* @param actionId - The ID of the action being voted on
|
|
882
|
+
* @returns GroupStateTransitionInfoStatus for an other signer
|
|
883
|
+
*/
|
|
884
|
+
static otherSigner(group_contract_position: number, action_id: Identifier | Uint8Array | string): GroupStateTransitionInfoStatus;
|
|
885
|
+
/**
|
|
886
|
+
* Convert to GroupStateTransitionInfo.
|
|
887
|
+
*/
|
|
888
|
+
toInfo(): GroupStateTransitionInfo;
|
|
889
|
+
/**
|
|
890
|
+
* Create a new proposer status for initiating a group action.
|
|
891
|
+
*
|
|
892
|
+
* Use this when the identity is proposing a new group action.
|
|
893
|
+
*
|
|
894
|
+
* @param groupContractPosition - The position of the group in the contract
|
|
895
|
+
* @returns GroupStateTransitionInfoStatus for a proposer
|
|
896
|
+
*/
|
|
897
|
+
static proposer(group_contract_position: number): GroupStateTransitionInfoStatus;
|
|
898
|
+
/**
|
|
899
|
+
* Check if this is a proposer status.
|
|
900
|
+
*/
|
|
901
|
+
readonly isProposer: boolean;
|
|
902
|
+
static readonly __struct: string;
|
|
903
|
+
/**
|
|
904
|
+
* Get the group contract position.
|
|
905
|
+
*/
|
|
906
|
+
readonly groupContractPosition: number;
|
|
907
|
+
/**
|
|
908
|
+
* Get the action ID (only available for other signer status).
|
|
909
|
+
* Returns null for proposer status.
|
|
910
|
+
*/
|
|
911
|
+
readonly actionId: Identifier | undefined;
|
|
912
|
+
readonly __type: string;
|
|
913
|
+
}
|
|
830
914
|
export class Identifier {
|
|
831
915
|
free(): void;
|
|
832
916
|
static fromBytes(bytes: Uint8Array): Identifier;
|
|
@@ -970,7 +1054,7 @@ export class IdentityPublicKey {
|
|
|
970
1054
|
static fromObject(js_value: any): IdentityPublicKey;
|
|
971
1055
|
getContractBounds(): any;
|
|
972
1056
|
getPublicKeyHash(): string;
|
|
973
|
-
validatePrivateKey(js_private_key_bytes: Uint8Array, network:
|
|
1057
|
+
validatePrivateKey(js_private_key_bytes: Uint8Array, network: NetworkLike): boolean;
|
|
974
1058
|
constructor(id: number, js_purpose: any, js_security_level: any, js_key_type: any, read_only: boolean, binary_data: string, disabled_at: bigint | null | undefined, js_contract_bounds: any);
|
|
975
1059
|
hex(): string;
|
|
976
1060
|
/**
|
|
@@ -1045,8 +1129,8 @@ export class IdentityPublicKeyInCreation {
|
|
|
1045
1129
|
/**
|
|
1046
1130
|
* A signer for identity-based state transitions.
|
|
1047
1131
|
*
|
|
1048
|
-
*
|
|
1049
|
-
* and
|
|
1132
|
+
* Private keys are stored by their public key hash (20 bytes).
|
|
1133
|
+
* Both ECDSA_HASH160 and ECDSA_SECP256K1 keys are looked up by hash160.
|
|
1050
1134
|
*/
|
|
1051
1135
|
export class IdentitySigner {
|
|
1052
1136
|
free(): void;
|
|
@@ -1063,8 +1147,7 @@ export class IdentitySigner {
|
|
|
1063
1147
|
/**
|
|
1064
1148
|
* Adds a private key to the signer.
|
|
1065
1149
|
*
|
|
1066
|
-
* The
|
|
1067
|
-
* Hash160(compressed_public_key) where Hash160 = RIPEMD160(SHA256(x)).
|
|
1150
|
+
* The key is stored by public key hash (20 bytes): Hash160(compressed_public_key)
|
|
1068
1151
|
*
|
|
1069
1152
|
* @param privateKey - The PrivateKey object
|
|
1070
1153
|
*/
|
|
@@ -1074,6 +1157,7 @@ export class IdentitySigner {
|
|
|
1074
1157
|
* Returns the number of keys in this signer.
|
|
1075
1158
|
*/
|
|
1076
1159
|
readonly keyCount: number;
|
|
1160
|
+
readonly __type: string;
|
|
1077
1161
|
}
|
|
1078
1162
|
export class IdentityTokenInfo {
|
|
1079
1163
|
private constructor();
|
|
@@ -1222,10 +1306,8 @@ export class PlatformAddress {
|
|
|
1222
1306
|
static fromBytes(bytes: Uint8Array): PlatformAddress;
|
|
1223
1307
|
/**
|
|
1224
1308
|
* Returns the bech32m-encoded address string for the specified network.
|
|
1225
|
-
*
|
|
1226
|
-
* @param network - "mainnet", "testnet", "devnet", or "regtest"
|
|
1227
1309
|
*/
|
|
1228
|
-
toBech32m(network:
|
|
1310
|
+
toBech32m(network: NetworkLike): string;
|
|
1229
1311
|
/**
|
|
1230
1312
|
* Returns the hash as a hex string.
|
|
1231
1313
|
*/
|
|
@@ -1373,6 +1455,10 @@ export class PlatformAddressSigner {
|
|
|
1373
1455
|
* Returns the number of keys in this signer.
|
|
1374
1456
|
*/
|
|
1375
1457
|
readonly keyCount: number;
|
|
1458
|
+
/**
|
|
1459
|
+
* Returns the type name for WASM object identification (instance getter).
|
|
1460
|
+
*/
|
|
1461
|
+
readonly __type: string;
|
|
1376
1462
|
}
|
|
1377
1463
|
export class PrefundedVotingBalance {
|
|
1378
1464
|
free(): void;
|
|
@@ -1405,6 +1491,10 @@ export class PrivateKey {
|
|
|
1405
1491
|
static readonly __struct: string;
|
|
1406
1492
|
readonly __type: string;
|
|
1407
1493
|
}
|
|
1494
|
+
export class ProTxHash {
|
|
1495
|
+
private constructor();
|
|
1496
|
+
free(): void;
|
|
1497
|
+
}
|
|
1408
1498
|
export class PublicKey {
|
|
1409
1499
|
free(): void;
|
|
1410
1500
|
static fromBytes(bytes: Uint8Array): PublicKey;
|
|
@@ -1578,6 +1668,8 @@ export class TokenConfiguration {
|
|
|
1578
1668
|
export class TokenConfigurationChangeItem {
|
|
1579
1669
|
private constructor();
|
|
1580
1670
|
free(): void;
|
|
1671
|
+
static MainControlGroupItem(group_contract_position?: number | null): TokenConfigurationChangeItem;
|
|
1672
|
+
static noChangeItem(): TokenConfigurationChangeItem;
|
|
1581
1673
|
static MaxSupplyItem(supply?: bigint | null): TokenConfigurationChangeItem;
|
|
1582
1674
|
static MaxSupplyAdminGroupItem(action_taker: AuthorizedActionTakers): TokenConfigurationChangeItem;
|
|
1583
1675
|
static MaxSupplyControlGroupItem(action_taker: AuthorizedActionTakers): TokenConfigurationChangeItem;
|
|
@@ -1598,6 +1690,9 @@ export class TokenConfigurationChangeItem {
|
|
|
1598
1690
|
static PerpetualDistributionConfigurationItem(js_perpetual_distribution_value: any): TokenConfigurationChangeItem;
|
|
1599
1691
|
static PerpetualDistributionAdminGroupItem(action_taker: AuthorizedActionTakers): TokenConfigurationChangeItem;
|
|
1600
1692
|
static PerpetualDistributionControlGroupItem(action_taker: AuthorizedActionTakers): TokenConfigurationChangeItem;
|
|
1693
|
+
static NewTokensDestinationIdentityItem(js_identity_id: Identifier | Uint8Array | string): TokenConfigurationChangeItem;
|
|
1694
|
+
static NewTokensDestinationIdentityAdminGroupItem(action_taker: AuthorizedActionTakers): TokenConfigurationChangeItem;
|
|
1695
|
+
static NewTokensDestinationIdentityControlGroupItem(action_taker: AuthorizedActionTakers): TokenConfigurationChangeItem;
|
|
1601
1696
|
static MintingAllowChoosingDestinationItem(flag: boolean): TokenConfigurationChangeItem;
|
|
1602
1697
|
static MintingAllowChoosingDestinationAdminGroupItem(action_taker: AuthorizedActionTakers): TokenConfigurationChangeItem;
|
|
1603
1698
|
static MintingAllowChoosingDestinationControlGroupItem(action_taker: AuthorizedActionTakers): TokenConfigurationChangeItem;
|
|
@@ -1605,13 +1700,8 @@ export class TokenConfigurationChangeItem {
|
|
|
1605
1700
|
static FreezeAdminGroupItem(action_taker: AuthorizedActionTakers): TokenConfigurationChangeItem;
|
|
1606
1701
|
static UnfreezeItem(action_taker: AuthorizedActionTakers): TokenConfigurationChangeItem;
|
|
1607
1702
|
static UnfreezeAdminGroupItem(action_taker: AuthorizedActionTakers): TokenConfigurationChangeItem;
|
|
1608
|
-
static NewTokensDestinationIdentityItem(js_identity_id: Identifier | Uint8Array | string): TokenConfigurationChangeItem;
|
|
1609
|
-
static NewTokensDestinationIdentityAdminGroupItem(action_taker: AuthorizedActionTakers): TokenConfigurationChangeItem;
|
|
1610
|
-
static NewTokensDestinationIdentityControlGroupItem(action_taker: AuthorizedActionTakers): TokenConfigurationChangeItem;
|
|
1611
|
-
static noChangeItem(): TokenConfigurationChangeItem;
|
|
1612
1703
|
getItemName(): string;
|
|
1613
1704
|
getItem(): any;
|
|
1614
|
-
static MainControlGroupItem(group_contract_position?: number | null): TokenConfigurationChangeItem;
|
|
1615
1705
|
static readonly __struct: string;
|
|
1616
1706
|
readonly __type: string;
|
|
1617
1707
|
}
|
|
@@ -1919,273 +2009,47 @@ export type InitInput = RequestInfo | URL | Response | BufferSource | WebAssembl
|
|
|
1919
2009
|
|
|
1920
2010
|
export interface InitOutput {
|
|
1921
2011
|
readonly memory: WebAssembly.Memory;
|
|
1922
|
-
readonly
|
|
1923
|
-
readonly __wbg_identitycredittransfer_free: (a: number, b: number) => void;
|
|
1924
|
-
readonly __wbg_identitycreditwithdrawaltransition_free: (a: number, b: number) => void;
|
|
1925
|
-
readonly __wbg_partialidentity_free: (a: number, b: number) => void;
|
|
1926
|
-
readonly __wbg_resourcevote_free: (a: number, b: number) => void;
|
|
1927
|
-
readonly __wbg_statetransition_free: (a: number, b: number) => void;
|
|
1928
|
-
readonly __wbg_tokenconfigurationconvention_free: (a: number, b: number) => void;
|
|
1929
|
-
readonly __wbg_tokenkeepshistoryrules_free: (a: number, b: number) => void;
|
|
1930
|
-
readonly __wbg_vote_free: (a: number, b: number) => void;
|
|
1931
|
-
readonly __wbg_votepoll_free: (a: number, b: number) => void;
|
|
1932
|
-
readonly corescript_fromBytes: (a: number, b: number) => number;
|
|
1933
|
-
readonly corescript_newP2PKH: (a: number, b: number) => number;
|
|
1934
|
-
readonly corescript_newP2SH: (a: number, b: number) => number;
|
|
1935
|
-
readonly corescript_struct_name: () => [number, number];
|
|
1936
|
-
readonly corescript_toASMString: (a: number) => [number, number];
|
|
1937
|
-
readonly corescript_toAddress: (a: number, b: any) => [number, number, number, number];
|
|
1938
|
-
readonly corescript_toBase64: (a: number) => [number, number];
|
|
1939
|
-
readonly corescript_toBytes: (a: number) => [number, number];
|
|
1940
|
-
readonly corescript_toHex: (a: number) => [number, number];
|
|
1941
|
-
readonly corescript_toString: (a: number) => [number, number];
|
|
1942
|
-
readonly corescript_type_name: (a: number) => [number, number];
|
|
1943
|
-
readonly identitycredittransfer_fromBase64: (a: number, b: number) => [number, number, number];
|
|
1944
|
-
readonly identitycredittransfer_fromBytes: (a: number, b: number) => [number, number, number];
|
|
1945
|
-
readonly identitycredittransfer_fromHex: (a: number, b: number) => [number, number, number];
|
|
1946
|
-
readonly identitycredittransfer_fromStateTransition: (a: number) => [number, number, number];
|
|
1947
|
-
readonly identitycredittransfer_getSignableBytes: (a: number) => [number, number, number, number];
|
|
1948
|
-
readonly identitycredittransfer_get_amount: (a: number) => bigint;
|
|
1949
|
-
readonly identitycredittransfer_get_identity_id: (a: number) => number;
|
|
1950
|
-
readonly identitycredittransfer_get_nonce: (a: number) => bigint;
|
|
1951
|
-
readonly identitycredittransfer_get_recipient_id: (a: number) => number;
|
|
1952
|
-
readonly identitycredittransfer_get_signature: (a: number) => [number, number];
|
|
1953
|
-
readonly identitycredittransfer_get_signature_public_key_id: (a: number) => number;
|
|
1954
|
-
readonly identitycredittransfer_get_user_fee_increase: (a: number) => number;
|
|
1955
|
-
readonly identitycredittransfer_new: (a: bigint, b: any, c: any, d: bigint, e: number) => [number, number, number];
|
|
1956
|
-
readonly identitycredittransfer_set_amount: (a: number, b: bigint) => void;
|
|
1957
|
-
readonly identitycredittransfer_set_nonce: (a: number, b: bigint) => void;
|
|
1958
|
-
readonly identitycredittransfer_set_recipient_id: (a: number, b: any) => [number, number];
|
|
1959
|
-
readonly identitycredittransfer_set_sender_id: (a: number, b: any) => [number, number];
|
|
1960
|
-
readonly identitycredittransfer_set_signature: (a: number, b: number, c: number) => void;
|
|
1961
|
-
readonly identitycredittransfer_set_signature_public_key_id: (a: number, b: number) => void;
|
|
1962
|
-
readonly identitycredittransfer_set_user_fee_increase: (a: number, b: number) => void;
|
|
1963
|
-
readonly identitycredittransfer_struct_name: () => [number, number];
|
|
1964
|
-
readonly identitycredittransfer_toBase64: (a: number) => [number, number, number, number];
|
|
1965
|
-
readonly identitycredittransfer_toBytes: (a: number) => [number, number, number, number];
|
|
1966
|
-
readonly identitycredittransfer_toHex: (a: number) => [number, number, number, number];
|
|
1967
|
-
readonly identitycredittransfer_toStateTransition: (a: number) => number;
|
|
1968
|
-
readonly identitycredittransfer_type_name: (a: number) => [number, number];
|
|
1969
|
-
readonly identitycredittransfertransition_fromJSON: (a: any) => [number, number, number];
|
|
1970
|
-
readonly identitycredittransfertransition_fromObject: (a: any) => [number, number, number];
|
|
1971
|
-
readonly identitycredittransfertransition_toJSON: (a: number) => [number, number, number];
|
|
1972
|
-
readonly identitycredittransfertransition_toObject: (a: number) => [number, number, number];
|
|
1973
|
-
readonly identitycreditwithdrawaltransition_fromBase64: (a: number, b: number) => [number, number, number];
|
|
1974
|
-
readonly identitycreditwithdrawaltransition_fromBytes: (a: number, b: number) => [number, number, number];
|
|
1975
|
-
readonly identitycreditwithdrawaltransition_fromHex: (a: number, b: number) => [number, number, number];
|
|
1976
|
-
readonly identitycreditwithdrawaltransition_fromJSON: (a: any) => [number, number, number];
|
|
1977
|
-
readonly identitycreditwithdrawaltransition_fromObject: (a: any) => [number, number, number];
|
|
1978
|
-
readonly identitycreditwithdrawaltransition_fromStateTransition: (a: number) => [number, number, number];
|
|
1979
|
-
readonly identitycreditwithdrawaltransition_getModifiedDataIds: (a: number) => [number, number];
|
|
1980
|
-
readonly identitycreditwithdrawaltransition_getOptionalAssetLockProof: (a: number) => any;
|
|
1981
|
-
readonly identitycreditwithdrawaltransition_getPurposeRequirement: (a: number) => [number, number];
|
|
1982
|
-
readonly identitycreditwithdrawaltransition_getSignableBytes: (a: number) => [number, number, number, number];
|
|
1983
|
-
readonly identitycreditwithdrawaltransition_get_amount: (a: number) => bigint;
|
|
1984
|
-
readonly identitycreditwithdrawaltransition_get_core_fee_per_byte: (a: number) => number;
|
|
1985
|
-
readonly identitycreditwithdrawaltransition_get_identity_id: (a: number) => number;
|
|
1986
|
-
readonly identitycreditwithdrawaltransition_get_nonce: (a: number) => bigint;
|
|
1987
|
-
readonly identitycreditwithdrawaltransition_get_output_script: (a: number) => number;
|
|
1988
|
-
readonly identitycreditwithdrawaltransition_get_pooling: (a: number) => [number, number];
|
|
1989
|
-
readonly identitycreditwithdrawaltransition_get_signature: (a: number) => [number, number];
|
|
1990
|
-
readonly identitycreditwithdrawaltransition_get_signature_public_key_id: (a: number) => number;
|
|
1991
|
-
readonly identitycreditwithdrawaltransition_get_user_fee_increase: (a: number) => number;
|
|
1992
|
-
readonly identitycreditwithdrawaltransition_new: (a: any, b: bigint, c: number, d: any, e: any, f: number, g: bigint, h: number) => [number, number, number];
|
|
1993
|
-
readonly identitycreditwithdrawaltransition_set_amount: (a: number, b: bigint) => void;
|
|
1994
|
-
readonly identitycreditwithdrawaltransition_set_core_fee_per_byte: (a: number, b: number) => void;
|
|
1995
|
-
readonly identitycreditwithdrawaltransition_set_identity_id: (a: number, b: any) => [number, number];
|
|
1996
|
-
readonly identitycreditwithdrawaltransition_set_nonce: (a: number, b: bigint) => void;
|
|
1997
|
-
readonly identitycreditwithdrawaltransition_set_output_script: (a: number, b: any) => [number, number];
|
|
1998
|
-
readonly identitycreditwithdrawaltransition_set_pooling: (a: number, b: any) => [number, number];
|
|
1999
|
-
readonly identitycreditwithdrawaltransition_set_signature: (a: number, b: number, c: number) => void;
|
|
2000
|
-
readonly identitycreditwithdrawaltransition_set_signature_public_key_id: (a: number, b: number) => void;
|
|
2001
|
-
readonly identitycreditwithdrawaltransition_set_user_fee_increase: (a: number, b: number) => void;
|
|
2002
|
-
readonly identitycreditwithdrawaltransition_struct_name: () => [number, number];
|
|
2003
|
-
readonly identitycreditwithdrawaltransition_toBase64: (a: number) => [number, number, number, number];
|
|
2004
|
-
readonly identitycreditwithdrawaltransition_toBytes: (a: number) => [number, number, number, number];
|
|
2005
|
-
readonly identitycreditwithdrawaltransition_toHex: (a: number) => [number, number, number, number];
|
|
2006
|
-
readonly identitycreditwithdrawaltransition_toJSON: (a: number) => [number, number, number];
|
|
2007
|
-
readonly identitycreditwithdrawaltransition_toObject: (a: number) => [number, number, number];
|
|
2008
|
-
readonly identitycreditwithdrawaltransition_toStateTransition: (a: number) => number;
|
|
2009
|
-
readonly identitycreditwithdrawaltransition_type_name: (a: number) => [number, number];
|
|
2010
|
-
readonly partialidentity_balance: (a: number) => [number, bigint];
|
|
2011
|
-
readonly partialidentity_id: (a: number) => number;
|
|
2012
|
-
readonly partialidentity_loaded_public_keys: (a: number) => [number, number, number];
|
|
2013
|
-
readonly partialidentity_new: (a: any, b: any, c: number, d: bigint, e: number, f: bigint, g: number) => [number, number, number];
|
|
2014
|
-
readonly partialidentity_not_found_public_keys: (a: number) => any;
|
|
2015
|
-
readonly partialidentity_revision: (a: number) => [number, bigint];
|
|
2016
|
-
readonly partialidentity_set_balance: (a: number, b: number, c: bigint) => void;
|
|
2017
|
-
readonly partialidentity_set_id: (a: number, b: any) => [number, number];
|
|
2018
|
-
readonly partialidentity_set_loaded_public_keys: (a: number, b: any) => [number, number];
|
|
2019
|
-
readonly partialidentity_set_not_found_public_keys: (a: number, b: number) => [number, number];
|
|
2020
|
-
readonly partialidentity_set_revision: (a: number, b: number, c: bigint) => void;
|
|
2021
|
-
readonly partialidentity_toJSON: (a: number) => [number, number, number];
|
|
2022
|
-
readonly partialidentity_toObject: (a: number) => [number, number, number];
|
|
2023
|
-
readonly resourcevote_choice: (a: number) => number;
|
|
2024
|
-
readonly resourcevote_fromJSON: (a: any) => [number, number, number];
|
|
2025
|
-
readonly resourcevote_fromObject: (a: any) => [number, number, number];
|
|
2026
|
-
readonly resourcevote_new: (a: number, b: number) => number;
|
|
2027
|
-
readonly resourcevote_set_choice: (a: number, b: number) => void;
|
|
2028
|
-
readonly resourcevote_set_vote_poll: (a: number, b: number) => void;
|
|
2029
|
-
readonly resourcevote_struct_name: () => [number, number];
|
|
2030
|
-
readonly resourcevote_toJSON: (a: number) => [number, number, number];
|
|
2031
|
-
readonly resourcevote_toObject: (a: number) => [number, number, number];
|
|
2032
|
-
readonly resourcevote_type_name: (a: number) => [number, number];
|
|
2033
|
-
readonly resourcevote_vote_poll: (a: number) => number;
|
|
2034
|
-
readonly statetransition_fromBase64: (a: number, b: number) => [number, number, number];
|
|
2035
|
-
readonly statetransition_fromBytes: (a: number, b: number) => [number, number, number];
|
|
2036
|
-
readonly statetransition_fromHex: (a: number, b: number) => [number, number, number];
|
|
2037
|
-
readonly statetransition_getActionType: (a: number) => [number, number];
|
|
2038
|
-
readonly statetransition_getActionTypeNumber: (a: number) => number;
|
|
2039
|
-
readonly statetransition_getIdentityContractNonce: (a: number) => [number, bigint];
|
|
2040
|
-
readonly statetransition_getIdentityNonce: (a: number) => [number, bigint];
|
|
2041
|
-
readonly statetransition_getKeyLevelRequirement: (a: number, b: any) => [number, number, number, number];
|
|
2042
|
-
readonly statetransition_getOwnerId: (a: number) => number;
|
|
2043
|
-
readonly statetransition_getPurposeRequirement: (a: number) => [number, number];
|
|
2044
|
-
readonly statetransition_get_signature: (a: number) => [number, number];
|
|
2045
|
-
readonly statetransition_get_signature_public_key_id: (a: number) => number;
|
|
2046
|
-
readonly statetransition_get_user_fee_increase: (a: number) => number;
|
|
2047
|
-
readonly statetransition_hash: (a: number, b: number) => [number, number, number, number];
|
|
2048
|
-
readonly statetransition_setIdentityContractNonce: (a: number, b: bigint) => [number, number];
|
|
2049
|
-
readonly statetransition_setIdentityNonce: (a: number, b: bigint) => [number, number];
|
|
2050
|
-
readonly statetransition_setOwnerId: (a: number, b: any) => [number, number];
|
|
2051
|
-
readonly statetransition_set_signature: (a: number, b: number, c: number) => number;
|
|
2052
|
-
readonly statetransition_set_signature_public_key_id: (a: number, b: number) => void;
|
|
2053
|
-
readonly statetransition_set_user_fee_increase: (a: number, b: number) => void;
|
|
2054
|
-
readonly statetransition_sign: (a: number, b: number, c: number) => [number, number, number, number];
|
|
2055
|
-
readonly statetransition_signByPrivateKey: (a: number, b: number, c: number, d: any) => [number, number, number, number];
|
|
2056
|
-
readonly statetransition_struct_name: () => [number, number];
|
|
2057
|
-
readonly statetransition_toBase64: (a: number) => [number, number, number];
|
|
2058
|
-
readonly statetransition_toBytes: (a: number) => [number, number, number];
|
|
2059
|
-
readonly statetransition_toHex: (a: number) => [number, number, number];
|
|
2060
|
-
readonly statetransition_type_name: (a: number) => [number, number];
|
|
2061
|
-
readonly statetransition_verifyPublicKey: (a: number, b: number, c: number, d: number) => [number, number];
|
|
2062
|
-
readonly tokenconfigurationchangeitem_ConventionsAdminGroupItem: (a: number) => number;
|
|
2063
|
-
readonly tokenconfigurationchangeitem_ConventionsControlGroupItem: (a: number) => number;
|
|
2064
|
-
readonly tokenconfigurationchangeitem_DestroyFrozenFundsAdminGroupItem: (a: number) => number;
|
|
2065
|
-
readonly tokenconfigurationchangeitem_DestroyFrozenFundsItem: (a: number) => number;
|
|
2066
|
-
readonly tokenconfigurationchangeitem_EmergencyActionAdminGroupItem: (a: number) => number;
|
|
2067
|
-
readonly tokenconfigurationchangeitem_EmergencyActionItem: (a: number) => number;
|
|
2068
|
-
readonly tokenconfigurationchangeitem_FreezeAdminGroupItem: (a: number) => number;
|
|
2069
|
-
readonly tokenconfigurationchangeitem_FreezeItem: (a: number) => number;
|
|
2070
|
-
readonly tokenconfigurationchangeitem_ManualBurningAdminGroupItem: (a: number) => number;
|
|
2071
|
-
readonly tokenconfigurationchangeitem_ManualBurningItem: (a: number) => number;
|
|
2072
|
-
readonly tokenconfigurationchangeitem_ManualMintingAdminGroupItem: (a: number) => number;
|
|
2073
|
-
readonly tokenconfigurationchangeitem_ManualMintingItem: (a: number) => number;
|
|
2074
|
-
readonly tokenconfigurationchangeitem_MarketplaceTradeModeAdminGroupItem: (a: number) => number;
|
|
2075
|
-
readonly tokenconfigurationchangeitem_MarketplaceTradeModeControlGroupItem: (a: number) => number;
|
|
2076
|
-
readonly tokenconfigurationchangeitem_MarketplaceTradeModeItem: (a: number) => number;
|
|
2077
|
-
readonly tokenconfigurationchangeitem_MaxSupplyAdminGroupItem: (a: number) => number;
|
|
2078
|
-
readonly tokenconfigurationchangeitem_MaxSupplyControlGroupItem: (a: number) => number;
|
|
2079
|
-
readonly tokenconfigurationchangeitem_MaxSupplyItem: (a: number, b: bigint) => number;
|
|
2080
|
-
readonly tokenconfigurationchangeitem_MintingAllowChoosingDestinationAdminGroupItem: (a: number) => number;
|
|
2081
|
-
readonly tokenconfigurationchangeitem_MintingAllowChoosingDestinationControlGroupItem: (a: number) => number;
|
|
2082
|
-
readonly tokenconfigurationchangeitem_MintingAllowChoosingDestinationItem: (a: number) => number;
|
|
2083
|
-
readonly tokenconfigurationchangeitem_PerpetualDistributionAdminGroupItem: (a: number) => number;
|
|
2084
|
-
readonly tokenconfigurationchangeitem_PerpetualDistributionConfigurationItem: (a: any) => number;
|
|
2085
|
-
readonly tokenconfigurationchangeitem_PerpetualDistributionControlGroupItem: (a: number) => number;
|
|
2086
|
-
readonly tokenconfigurationchangeitem_UnfreezeAdminGroupItem: (a: number) => number;
|
|
2087
|
-
readonly tokenconfigurationchangeitem_UnfreezeItem: (a: number) => number;
|
|
2088
|
-
readonly tokenconfigurationchangeitem_conventionsItem: (a: number) => number;
|
|
2089
|
-
readonly tokenconfigurationconvention_decimals: (a: number) => number;
|
|
2090
|
-
readonly tokenconfigurationconvention_localizations: (a: number) => [number, number, number];
|
|
2091
|
-
readonly tokenconfigurationconvention_new: (a: any, b: number) => [number, number, number];
|
|
2092
|
-
readonly tokenconfigurationconvention_set_decimals: (a: number, b: number) => void;
|
|
2093
|
-
readonly tokenconfigurationconvention_set_localizations: (a: number, b: any) => [number, number];
|
|
2094
|
-
readonly tokenconfigurationconvention_struct_name: () => [number, number];
|
|
2095
|
-
readonly tokenconfigurationconvention_type_name: (a: number) => [number, number];
|
|
2096
|
-
readonly tokenkeepshistoryrules_get_keeps_burning_history: (a: number) => number;
|
|
2097
|
-
readonly tokenkeepshistoryrules_get_keeps_direct_pricing_history: (a: number) => number;
|
|
2098
|
-
readonly tokenkeepshistoryrules_get_keeps_direct_purchase_history: (a: number) => number;
|
|
2099
|
-
readonly tokenkeepshistoryrules_get_keeps_freezing_history: (a: number) => number;
|
|
2100
|
-
readonly tokenkeepshistoryrules_get_keeps_minting_history: (a: number) => number;
|
|
2101
|
-
readonly tokenkeepshistoryrules_get_keeps_transfer_history: (a: number) => number;
|
|
2102
|
-
readonly tokenkeepshistoryrules_new: (a: number, b: number, c: number, d: number, e: number, f: number) => number;
|
|
2103
|
-
readonly tokenkeepshistoryrules_set_keeps_burning_history: (a: number, b: number) => void;
|
|
2104
|
-
readonly tokenkeepshistoryrules_set_keeps_direct_pricing_history: (a: number, b: number) => void;
|
|
2105
|
-
readonly tokenkeepshistoryrules_set_keeps_direct_purchase_history: (a: number, b: number) => void;
|
|
2106
|
-
readonly tokenkeepshistoryrules_set_keeps_freezing_history: (a: number, b: number) => void;
|
|
2107
|
-
readonly tokenkeepshistoryrules_set_keeps_minting_history: (a: number, b: number) => void;
|
|
2108
|
-
readonly tokenkeepshistoryrules_set_keeps_transfer_history: (a: number, b: number) => void;
|
|
2109
|
-
readonly tokenkeepshistoryrules_struct_name: () => [number, number];
|
|
2110
|
-
readonly tokenkeepshistoryrules_type_name: (a: number) => [number, number];
|
|
2111
|
-
readonly vote_fromJSON: (a: any) => [number, number, number];
|
|
2112
|
-
readonly vote_fromObject: (a: any) => [number, number, number];
|
|
2113
|
-
readonly vote_resource_vote_choice: (a: number) => number;
|
|
2114
|
-
readonly vote_set_resource_vote_choice: (a: number, b: number) => void;
|
|
2115
|
-
readonly vote_set_vote_poll: (a: number, b: number) => void;
|
|
2116
|
-
readonly vote_struct_name: () => [number, number];
|
|
2117
|
-
readonly vote_toJSON: (a: number) => [number, number, number];
|
|
2118
|
-
readonly vote_toObject: (a: number) => [number, number, number];
|
|
2119
|
-
readonly vote_type_name: (a: number) => [number, number];
|
|
2120
|
-
readonly vote_vote_poll: (a: number) => number;
|
|
2121
|
-
readonly votepoll_contract_id: (a: number) => number;
|
|
2122
|
-
readonly votepoll_document_type_name: (a: number) => [number, number];
|
|
2123
|
-
readonly votepoll_fromJSON: (a: any) => [number, number, number];
|
|
2124
|
-
readonly votepoll_fromObject: (a: any) => [number, number, number];
|
|
2125
|
-
readonly votepoll_index_name: (a: number) => [number, number];
|
|
2126
|
-
readonly votepoll_index_values: (a: number) => [number, number, number];
|
|
2127
|
-
readonly votepoll_new: (a: any, b: number, c: number, d: number, e: number, f: any) => [number, number, number];
|
|
2128
|
-
readonly votepoll_set_contract_id: (a: number, b: any) => [number, number];
|
|
2129
|
-
readonly votepoll_set_document_type_name: (a: number, b: number, c: number) => void;
|
|
2130
|
-
readonly votepoll_set_index_name: (a: number, b: number, c: number) => void;
|
|
2131
|
-
readonly votepoll_set_index_values: (a: number, b: any) => [number, number];
|
|
2132
|
-
readonly votepoll_struct_name: () => [number, number];
|
|
2133
|
-
readonly votepoll_toJSON: (a: number) => [number, number, number];
|
|
2134
|
-
readonly votepoll_toObject: (a: number) => [number, number, number];
|
|
2135
|
-
readonly votepoll_toString: (a: number) => [number, number];
|
|
2136
|
-
readonly votepoll_type_name: (a: number) => [number, number];
|
|
2137
|
-
readonly vote_new: (a: number, b: number) => number;
|
|
2138
|
-
readonly __wbg_actiontaker_free: (a: number, b: number) => void;
|
|
2139
|
-
readonly __wbg_authorizedactiontakers_free: (a: number, b: number) => void;
|
|
2012
|
+
readonly __wbg_assetlockproof_free: (a: number, b: number) => void;
|
|
2140
2013
|
readonly __wbg_blockbaseddistribution_free: (a: number, b: number) => void;
|
|
2141
|
-
readonly __wbg_changecontrolrules_free: (a: number, b: number) => void;
|
|
2142
2014
|
readonly __wbg_distributionfunction_free: (a: number, b: number) => void;
|
|
2143
2015
|
readonly __wbg_epochbaseddistribution_free: (a: number, b: number) => void;
|
|
2144
2016
|
readonly __wbg_finalizedepochinfo_free: (a: number, b: number) => void;
|
|
2145
2017
|
readonly __wbg_get_blockbaseddistribution_interval: (a: number) => bigint;
|
|
2146
2018
|
readonly __wbg_get_epochbaseddistribution_interval: (a: number) => number;
|
|
2147
2019
|
readonly __wbg_get_timebaseddistribution_interval: (a: number) => bigint;
|
|
2148
|
-
readonly
|
|
2020
|
+
readonly __wbg_groupstatetransitioninfo_free: (a: number, b: number) => void;
|
|
2021
|
+
readonly __wbg_identitypublickey_free: (a: number, b: number) => void;
|
|
2149
2022
|
readonly __wbg_rewarddistributiontype_free: (a: number, b: number) => void;
|
|
2150
2023
|
readonly __wbg_set_blockbaseddistribution_interval: (a: number, b: bigint) => void;
|
|
2151
2024
|
readonly __wbg_set_epochbaseddistribution_interval: (a: number, b: number) => void;
|
|
2152
2025
|
readonly __wbg_timebaseddistribution_free: (a: number, b: number) => void;
|
|
2026
|
+
readonly __wbg_tokencontractinfo_free: (a: number, b: number) => void;
|
|
2027
|
+
readonly __wbg_tokendistributionrecipient_free: (a: number, b: number) => void;
|
|
2153
2028
|
readonly __wbg_tokendistributionrules_free: (a: number, b: number) => void;
|
|
2154
2029
|
readonly __wbg_tokenperpetualdistribution_free: (a: number, b: number) => void;
|
|
2155
2030
|
readonly __wbg_tokenpreprogrammeddistribution_free: (a: number, b: number) => void;
|
|
2156
|
-
readonly
|
|
2157
|
-
readonly
|
|
2158
|
-
readonly
|
|
2159
|
-
readonly
|
|
2160
|
-
readonly
|
|
2161
|
-
readonly
|
|
2162
|
-
readonly
|
|
2163
|
-
readonly
|
|
2164
|
-
readonly
|
|
2165
|
-
readonly
|
|
2166
|
-
readonly
|
|
2167
|
-
readonly
|
|
2168
|
-
readonly
|
|
2169
|
-
readonly
|
|
2170
|
-
readonly
|
|
2031
|
+
readonly assetlockproof_createChainAssetLockProof: (a: number, b: number) => [number, number, number];
|
|
2032
|
+
readonly assetlockproof_createIdentityId: (a: number) => [number, number, number];
|
|
2033
|
+
readonly assetlockproof_createInstantAssetLockProof: (a: number, b: number, c: number, d: number, e: number) => [number, number, number];
|
|
2034
|
+
readonly assetlockproof_fromBytes: (a: number, b: number) => [number, number, number];
|
|
2035
|
+
readonly assetlockproof_fromHex: (a: number, b: number) => [number, number, number];
|
|
2036
|
+
readonly assetlockproof_fromJSON: (a: any) => [number, number, number];
|
|
2037
|
+
readonly assetlockproof_fromObject: (a: any) => [number, number, number];
|
|
2038
|
+
readonly assetlockproof_getChainLockProof: (a: number) => number;
|
|
2039
|
+
readonly assetlockproof_getInstantLockProof: (a: number) => number;
|
|
2040
|
+
readonly assetlockproof_getLockType: (a: number) => [number, number];
|
|
2041
|
+
readonly assetlockproof_getOutPoint: (a: number) => number;
|
|
2042
|
+
readonly assetlockproof_new: (a: any) => [number, number, number];
|
|
2043
|
+
readonly assetlockproof_struct_name: () => [number, number];
|
|
2044
|
+
readonly assetlockproof_toBytes: (a: number) => [number, number, number, number];
|
|
2045
|
+
readonly assetlockproof_toHex: (a: number) => [number, number, number, number];
|
|
2046
|
+
readonly assetlockproof_toJSON: (a: number) => [number, number, number];
|
|
2047
|
+
readonly assetlockproof_toObject: (a: number) => [number, number, number];
|
|
2048
|
+
readonly assetlockproof_type_name: (a: number) => [number, number];
|
|
2171
2049
|
readonly blockbaseddistribution_get_function: (a: number) => number;
|
|
2172
2050
|
readonly blockbaseddistribution_set_function: (a: number, b: number) => void;
|
|
2173
2051
|
readonly blockbaseddistribution_struct_name: () => [number, number];
|
|
2174
2052
|
readonly blockbaseddistribution_type_name: (a: number) => [number, number];
|
|
2175
|
-
readonly changecontrolrules_canChangeAdminActionTakers: (a: number, b: number, c: any, d: number, e: any, f: number, g: any) => [number, number, number];
|
|
2176
|
-
readonly changecontrolrules_get_admin_action_takers: (a: number) => number;
|
|
2177
|
-
readonly changecontrolrules_get_authorized_to_make_change: (a: number) => number;
|
|
2178
|
-
readonly changecontrolrules_get_changing_admin_action_takers_to_no_one_allowed: (a: number) => number;
|
|
2179
|
-
readonly changecontrolrules_get_changing_authorized_action_takers_to_no_one_allowed: (a: number) => number;
|
|
2180
|
-
readonly changecontrolrules_get_self_changing_admin_action_takers_allowed: (a: number) => number;
|
|
2181
|
-
readonly changecontrolrules_new: (a: number, b: number, c: number, d: number, e: number) => number;
|
|
2182
|
-
readonly changecontrolrules_set_admin_action_takers: (a: number, b: number) => void;
|
|
2183
|
-
readonly changecontrolrules_set_authorized_to_make_change: (a: number, b: number) => void;
|
|
2184
|
-
readonly changecontrolrules_set_changing_admin_action_takers_to_no_one_allowed: (a: number, b: number) => void;
|
|
2185
|
-
readonly changecontrolrules_set_changing_authorized_action_takers_to_no_one_allowed: (a: number, b: number) => void;
|
|
2186
|
-
readonly changecontrolrules_set_self_changing_admin_action_takers_allowed: (a: number, b: number) => void;
|
|
2187
|
-
readonly changecontrolrules_struct_name: () => [number, number];
|
|
2188
|
-
readonly changecontrolrules_type_name: (a: number) => [number, number];
|
|
2189
2053
|
readonly distributionfunction_Exponential: (a: bigint, b: bigint, c: bigint, d: bigint, e: bigint, f: number, g: bigint, h: bigint, i: number, j: bigint, k: number, l: bigint) => number;
|
|
2190
2054
|
readonly distributionfunction_FixedAmountDistribution: (a: bigint) => number;
|
|
2191
2055
|
readonly distributionfunction_InvertedLogarithmic: (a: bigint, b: bigint, c: bigint, d: bigint, e: bigint, f: number, g: bigint, h: bigint, i: number, j: bigint, k: number, l: bigint) => number;
|
|
@@ -2234,20 +2098,72 @@ export interface InitOutput {
|
|
|
2234
2098
|
readonly finalizedepochinfo_total_created_storage_fees: (a: number) => any;
|
|
2235
2099
|
readonly finalizedepochinfo_total_distributed_storage_fees: (a: number) => any;
|
|
2236
2100
|
readonly finalizedepochinfo_total_processing_fees: (a: number) => any;
|
|
2237
|
-
readonly
|
|
2101
|
+
readonly groupstatetransitioninfo_get_action_id: (a: number) => number;
|
|
2102
|
+
readonly groupstatetransitioninfo_get_action_is_proposer: (a: number) => number;
|
|
2103
|
+
readonly groupstatetransitioninfo_get_group_contract_position: (a: number) => number;
|
|
2104
|
+
readonly groupstatetransitioninfo_new: (a: number, b: any, c: number) => [number, number, number];
|
|
2105
|
+
readonly groupstatetransitioninfo_set_action_id: (a: number, b: any) => [number, number];
|
|
2106
|
+
readonly groupstatetransitioninfo_set_action_is_proposer: (a: number, b: number) => void;
|
|
2107
|
+
readonly groupstatetransitioninfo_set_group_contract_position: (a: number, b: number) => void;
|
|
2108
|
+
readonly groupstatetransitioninfo_struct_name: () => [number, number];
|
|
2109
|
+
readonly groupstatetransitioninfo_type_name: (a: number) => [number, number];
|
|
2110
|
+
readonly identitypublickey_base64: (a: number) => [number, number, number, number];
|
|
2111
|
+
readonly identitypublickey_fromBase64: (a: number, b: number) => [number, number, number];
|
|
2112
|
+
readonly identitypublickey_fromBytes: (a: number, b: number) => [number, number, number];
|
|
2113
|
+
readonly identitypublickey_fromHex: (a: number, b: number) => [number, number, number];
|
|
2114
|
+
readonly identitypublickey_fromJSON: (a: any) => [number, number, number];
|
|
2115
|
+
readonly identitypublickey_fromObject: (a: any) => [number, number, number];
|
|
2116
|
+
readonly identitypublickey_getContractBounds: (a: number) => any;
|
|
2117
|
+
readonly identitypublickey_getPublicKeyHash: (a: number) => [number, number, number, number];
|
|
2118
|
+
readonly identitypublickey_get_data: (a: number) => [number, number];
|
|
2119
|
+
readonly identitypublickey_get_disabled_at: (a: number) => [number, bigint];
|
|
2120
|
+
readonly identitypublickey_get_key_id: (a: number) => number;
|
|
2121
|
+
readonly identitypublickey_get_key_type: (a: number) => [number, number];
|
|
2122
|
+
readonly identitypublickey_get_key_type_number: (a: number) => number;
|
|
2123
|
+
readonly identitypublickey_get_purpose: (a: number) => [number, number];
|
|
2124
|
+
readonly identitypublickey_get_purpose_number: (a: number) => number;
|
|
2125
|
+
readonly identitypublickey_get_read_only: (a: number) => number;
|
|
2126
|
+
readonly identitypublickey_get_security_level: (a: number) => [number, number];
|
|
2127
|
+
readonly identitypublickey_get_security_level_number: (a: number) => number;
|
|
2128
|
+
readonly identitypublickey_hex: (a: number) => [number, number, number, number];
|
|
2129
|
+
readonly identitypublickey_isMaster: (a: number) => number;
|
|
2130
|
+
readonly identitypublickey_new: (a: number, b: any, c: any, d: any, e: number, f: number, g: number, h: number, i: bigint, j: any) => [number, number, number];
|
|
2131
|
+
readonly identitypublickey_set_data: (a: number, b: number, c: number) => [number, number];
|
|
2132
|
+
readonly identitypublickey_set_disabled_at: (a: number, b: bigint) => void;
|
|
2133
|
+
readonly identitypublickey_set_key_id: (a: number, b: number) => void;
|
|
2134
|
+
readonly identitypublickey_set_key_type: (a: number, b: any) => [number, number];
|
|
2135
|
+
readonly identitypublickey_set_key_type_number: (a: number, b: any) => [number, number];
|
|
2136
|
+
readonly identitypublickey_set_purpose: (a: number, b: any) => [number, number];
|
|
2137
|
+
readonly identitypublickey_set_purpose_number: (a: number, b: any) => [number, number];
|
|
2138
|
+
readonly identitypublickey_set_read_only: (a: number, b: number) => void;
|
|
2139
|
+
readonly identitypublickey_set_security_level: (a: number, b: any) => [number, number];
|
|
2140
|
+
readonly identitypublickey_set_security_level_number: (a: number, b: any) => [number, number];
|
|
2141
|
+
readonly identitypublickey_struct_name: () => [number, number];
|
|
2142
|
+
readonly identitypublickey_toBytes: (a: number) => [number, number, number, number];
|
|
2143
|
+
readonly identitypublickey_toJSON: (a: number) => [number, number, number];
|
|
2144
|
+
readonly identitypublickey_toObject: (a: number) => [number, number, number];
|
|
2145
|
+
readonly identitypublickey_type_name: (a: number) => [number, number];
|
|
2146
|
+
readonly identitypublickey_validatePrivateKey: (a: number, b: number, c: number, d: any) => [number, number, number];
|
|
2238
2147
|
readonly rewarddistributiontype_BlockBasedDistribution: (a: bigint, b: number) => number;
|
|
2239
2148
|
readonly rewarddistributiontype_EpochBasedDistribution: (a: number, b: number) => number;
|
|
2240
2149
|
readonly rewarddistributiontype_TimeBasedDistribution: (a: bigint, b: number) => number;
|
|
2241
2150
|
readonly rewarddistributiontype_getDistribution: (a: number) => any;
|
|
2242
2151
|
readonly rewarddistributiontype_struct_name: () => [number, number];
|
|
2243
2152
|
readonly rewarddistributiontype_type_name: (a: number) => [number, number];
|
|
2153
|
+
readonly testJsValueToJson: (a: any) => [number, number, number];
|
|
2244
2154
|
readonly timebaseddistribution_get_function: (a: number) => number;
|
|
2245
2155
|
readonly timebaseddistribution_set_function: (a: number, b: number) => void;
|
|
2246
2156
|
readonly timebaseddistribution_struct_name: () => [number, number];
|
|
2247
2157
|
readonly timebaseddistribution_type_name: (a: number) => [number, number];
|
|
2248
|
-
readonly
|
|
2249
|
-
readonly
|
|
2250
|
-
readonly
|
|
2158
|
+
readonly tokencontractinfo_contract_id: (a: number) => number;
|
|
2159
|
+
readonly tokencontractinfo_token_contract_position: (a: number) => number;
|
|
2160
|
+
readonly tokendistributionrecipient_ContractOwner: () => number;
|
|
2161
|
+
readonly tokendistributionrecipient_EvonodesByParticipation: () => number;
|
|
2162
|
+
readonly tokendistributionrecipient_Identity: (a: any) => [number, number, number];
|
|
2163
|
+
readonly tokendistributionrecipient_getType: (a: number) => [number, number];
|
|
2164
|
+
readonly tokendistributionrecipient_getValue: (a: number) => any;
|
|
2165
|
+
readonly tokendistributionrecipient_struct_name: () => [number, number];
|
|
2166
|
+
readonly tokendistributionrecipient_type_name: (a: number) => [number, number];
|
|
2251
2167
|
readonly tokendistributionrules_get_change_direct_purchase_pricing_rules: (a: number) => number;
|
|
2252
2168
|
readonly tokendistributionrules_get_minting_allow_choosing_destination: (a: number) => number;
|
|
2253
2169
|
readonly tokendistributionrules_get_minting_allow_choosing_destination_rules: (a: number) => number;
|
|
@@ -2281,80 +2197,58 @@ export interface InitOutput {
|
|
|
2281
2197
|
readonly tokenpreprogrammeddistribution_type_name: (a: number) => [number, number];
|
|
2282
2198
|
readonly finalizedepochinfo_type_name: (a: number) => [number, number];
|
|
2283
2199
|
readonly __wbg_set_timebaseddistribution_interval: (a: number, b: bigint) => void;
|
|
2284
|
-
readonly
|
|
2285
|
-
readonly
|
|
2286
|
-
readonly
|
|
2287
|
-
readonly
|
|
2288
|
-
readonly __wbg_documenttransfertransition_free: (a: number, b: number) => void;
|
|
2289
|
-
readonly __wbg_groupstatetransitioninfo_free: (a: number, b: number) => void;
|
|
2200
|
+
readonly __wbg_contractbounds_free: (a: number, b: number) => void;
|
|
2201
|
+
readonly __wbg_documentbasetransition_free: (a: number, b: number) => void;
|
|
2202
|
+
readonly __wbg_feestrategystep_free: (a: number, b: number) => void;
|
|
2203
|
+
readonly __wbg_groupstatetransitioninfostatus_free: (a: number, b: number) => void;
|
|
2290
2204
|
readonly __wbg_identitycreatetransition_free: (a: number, b: number) => void;
|
|
2205
|
+
readonly __wbg_identitypublickeyincreation_free: (a: number, b: number) => void;
|
|
2291
2206
|
readonly __wbg_identitytopuptransition_free: (a: number, b: number) => void;
|
|
2292
2207
|
readonly __wbg_instantassetlockproof_free: (a: number, b: number) => void;
|
|
2293
2208
|
readonly __wbg_outpoint_free: (a: number, b: number) => void;
|
|
2294
|
-
readonly
|
|
2295
|
-
readonly
|
|
2296
|
-
readonly
|
|
2297
|
-
readonly
|
|
2298
|
-
readonly
|
|
2299
|
-
readonly
|
|
2300
|
-
readonly
|
|
2301
|
-
readonly
|
|
2302
|
-
readonly
|
|
2303
|
-
readonly
|
|
2304
|
-
readonly
|
|
2305
|
-
readonly
|
|
2306
|
-
readonly
|
|
2307
|
-
readonly
|
|
2308
|
-
readonly
|
|
2309
|
-
readonly
|
|
2310
|
-
readonly
|
|
2311
|
-
readonly
|
|
2312
|
-
readonly
|
|
2313
|
-
readonly
|
|
2314
|
-
readonly
|
|
2315
|
-
readonly
|
|
2316
|
-
readonly
|
|
2317
|
-
readonly
|
|
2318
|
-
readonly
|
|
2319
|
-
readonly
|
|
2320
|
-
readonly
|
|
2321
|
-
readonly
|
|
2322
|
-
readonly
|
|
2323
|
-
readonly
|
|
2324
|
-
readonly
|
|
2325
|
-
readonly
|
|
2326
|
-
readonly
|
|
2327
|
-
readonly
|
|
2328
|
-
readonly
|
|
2329
|
-
readonly
|
|
2330
|
-
readonly
|
|
2331
|
-
readonly
|
|
2332
|
-
readonly
|
|
2333
|
-
readonly
|
|
2334
|
-
readonly
|
|
2335
|
-
readonly
|
|
2336
|
-
readonly
|
|
2337
|
-
readonly documentreplacetransition_struct_name: () => [number, number];
|
|
2338
|
-
readonly documentreplacetransition_toDocumentTransition: (a: number) => number;
|
|
2339
|
-
readonly documentreplacetransition_type_name: (a: number) => [number, number];
|
|
2340
|
-
readonly documenttransfertransition_fromDocumentTransition: (a: number) => [number, number, number];
|
|
2341
|
-
readonly documenttransfertransition_get_base: (a: number) => number;
|
|
2342
|
-
readonly documenttransfertransition_get_recipient_owner_id: (a: number) => number;
|
|
2343
|
-
readonly documenttransfertransition_new: (a: number, b: bigint, c: any, d: any) => [number, number, number];
|
|
2344
|
-
readonly documenttransfertransition_set_base: (a: number, b: number) => void;
|
|
2345
|
-
readonly documenttransfertransition_set_recipient_owner_id: (a: number, b: any) => [number, number];
|
|
2346
|
-
readonly documenttransfertransition_struct_name: () => [number, number];
|
|
2347
|
-
readonly documenttransfertransition_toDocumentTransition: (a: number) => number;
|
|
2348
|
-
readonly documenttransfertransition_type_name: (a: number) => [number, number];
|
|
2349
|
-
readonly groupstatetransitioninfo_get_action_id: (a: number) => number;
|
|
2350
|
-
readonly groupstatetransitioninfo_get_action_is_proposer: (a: number) => number;
|
|
2351
|
-
readonly groupstatetransitioninfo_get_group_contract_position: (a: number) => number;
|
|
2352
|
-
readonly groupstatetransitioninfo_new: (a: number, b: any, c: number) => [number, number, number];
|
|
2353
|
-
readonly groupstatetransitioninfo_set_action_id: (a: number, b: any) => [number, number];
|
|
2354
|
-
readonly groupstatetransitioninfo_set_action_is_proposer: (a: number, b: number) => void;
|
|
2355
|
-
readonly groupstatetransitioninfo_set_group_contract_position: (a: number, b: number) => void;
|
|
2356
|
-
readonly groupstatetransitioninfo_struct_name: () => [number, number];
|
|
2357
|
-
readonly groupstatetransitioninfo_type_name: (a: number) => [number, number];
|
|
2209
|
+
readonly __wbg_protxhash_free: (a: number, b: number) => void;
|
|
2210
|
+
readonly __wbg_tokenpaymentinfo_free: (a: number, b: number) => void;
|
|
2211
|
+
readonly contractbounds_SingleContract: (a: any) => [number, number, number];
|
|
2212
|
+
readonly contractbounds_SingleContractDocumentType: (a: any, b: number, c: number) => [number, number, number];
|
|
2213
|
+
readonly contractbounds_contract_bounds_type: (a: number) => [number, number];
|
|
2214
|
+
readonly contractbounds_contract_bounds_type_number: (a: number) => number;
|
|
2215
|
+
readonly contractbounds_document_type_name: (a: number) => [number, number];
|
|
2216
|
+
readonly contractbounds_fromJSON: (a: any) => [number, number, number];
|
|
2217
|
+
readonly contractbounds_fromObject: (a: any) => [number, number, number];
|
|
2218
|
+
readonly contractbounds_id: (a: number) => number;
|
|
2219
|
+
readonly contractbounds_new: (a: any, b: number, c: number) => [number, number, number];
|
|
2220
|
+
readonly contractbounds_set_document_type_name: (a: number, b: number, c: number) => void;
|
|
2221
|
+
readonly contractbounds_set_id: (a: number, b: any) => [number, number];
|
|
2222
|
+
readonly contractbounds_struct_name: () => [number, number];
|
|
2223
|
+
readonly contractbounds_toJSON: (a: number) => [number, number, number];
|
|
2224
|
+
readonly contractbounds_toObject: (a: number) => [number, number, number];
|
|
2225
|
+
readonly contractbounds_type_name: (a: number) => [number, number];
|
|
2226
|
+
readonly documentbasetransition_get_data_contract_id: (a: number) => number;
|
|
2227
|
+
readonly documentbasetransition_get_document_type_name: (a: number) => [number, number];
|
|
2228
|
+
readonly documentbasetransition_get_id: (a: number) => number;
|
|
2229
|
+
readonly documentbasetransition_get_identity_contract_nonce: (a: number) => bigint;
|
|
2230
|
+
readonly documentbasetransition_get_token_payment_info: (a: number) => number;
|
|
2231
|
+
readonly documentbasetransition_new: (a: any, b: bigint, c: number, d: number, e: any, f: any) => [number, number, number];
|
|
2232
|
+
readonly documentbasetransition_set_data_contract_id: (a: number, b: any) => [number, number];
|
|
2233
|
+
readonly documentbasetransition_set_document_type_name: (a: number, b: number, c: number) => void;
|
|
2234
|
+
readonly documentbasetransition_set_id: (a: number, b: any) => [number, number];
|
|
2235
|
+
readonly documentbasetransition_set_identity_contract_nonce: (a: number, b: bigint) => void;
|
|
2236
|
+
readonly documentbasetransition_set_token_payment_info: (a: number, b: number) => void;
|
|
2237
|
+
readonly documentbasetransition_struct_name: () => [number, number];
|
|
2238
|
+
readonly documentbasetransition_type_name: (a: number) => [number, number];
|
|
2239
|
+
readonly feestrategystep_deductFromInput: (a: number) => number;
|
|
2240
|
+
readonly feestrategystep_index: (a: number) => number;
|
|
2241
|
+
readonly feestrategystep_isDeductFromInput: (a: number) => number;
|
|
2242
|
+
readonly feestrategystep_isReduceOutput: (a: number) => number;
|
|
2243
|
+
readonly feestrategystep_reduceOutput: (a: number) => number;
|
|
2244
|
+
readonly groupstatetransitioninfostatus_action_id: (a: number) => number;
|
|
2245
|
+
readonly groupstatetransitioninfostatus_group_contract_position: (a: number) => number;
|
|
2246
|
+
readonly groupstatetransitioninfostatus_is_proposer: (a: number) => number;
|
|
2247
|
+
readonly groupstatetransitioninfostatus_otherSigner: (a: number, b: any) => [number, number, number];
|
|
2248
|
+
readonly groupstatetransitioninfostatus_proposer: (a: number) => number;
|
|
2249
|
+
readonly groupstatetransitioninfostatus_struct_name: () => [number, number];
|
|
2250
|
+
readonly groupstatetransitioninfostatus_toInfo: (a: number) => number;
|
|
2251
|
+
readonly groupstatetransitioninfostatus_type_name: (a: number) => [number, number];
|
|
2358
2252
|
readonly identitycreatetransition_default: (a: any) => [number, number, number];
|
|
2359
2253
|
readonly identitycreatetransition_fromBase64: (a: number, b: number) => [number, number, number];
|
|
2360
2254
|
readonly identitycreatetransition_fromBytes: (a: number, b: number) => [number, number, number];
|
|
@@ -2381,13 +2275,38 @@ export interface InitOutput {
|
|
|
2381
2275
|
readonly identitycreatetransition_toObject: (a: number) => [number, number, number];
|
|
2382
2276
|
readonly identitycreatetransition_toStateTransition: (a: number) => number;
|
|
2383
2277
|
readonly identitycreatetransition_type_name: (a: number) => [number, number];
|
|
2384
|
-
readonly
|
|
2385
|
-
readonly
|
|
2386
|
-
readonly
|
|
2387
|
-
readonly
|
|
2388
|
-
readonly
|
|
2389
|
-
readonly
|
|
2390
|
-
readonly
|
|
2278
|
+
readonly identitypublickeyincreation_fromJSON: (a: any) => [number, number, number];
|
|
2279
|
+
readonly identitypublickeyincreation_fromObject: (a: any) => [number, number, number];
|
|
2280
|
+
readonly identitypublickeyincreation_getHash: (a: number) => [number, number, number, number];
|
|
2281
|
+
readonly identitypublickeyincreation_get_contract_bounds: (a: number) => number;
|
|
2282
|
+
readonly identitypublickeyincreation_get_data: (a: number) => [number, number];
|
|
2283
|
+
readonly identitypublickeyincreation_get_key_id: (a: number) => number;
|
|
2284
|
+
readonly identitypublickeyincreation_get_key_type: (a: number) => [number, number];
|
|
2285
|
+
readonly identitypublickeyincreation_get_purpose: (a: number) => [number, number];
|
|
2286
|
+
readonly identitypublickeyincreation_get_read_only: (a: number) => number;
|
|
2287
|
+
readonly identitypublickeyincreation_get_security_level: (a: number) => [number, number];
|
|
2288
|
+
readonly identitypublickeyincreation_get_signature: (a: number) => [number, number];
|
|
2289
|
+
readonly identitypublickeyincreation_new: (a: number, b: any, c: any, d: any, e: number, f: number, g: number, h: number, i: number, j: any) => [number, number, number];
|
|
2290
|
+
readonly identitypublickeyincreation_set_contract_bounds: (a: number, b: any) => [number, number];
|
|
2291
|
+
readonly identitypublickeyincreation_set_data: (a: number, b: number, c: number) => void;
|
|
2292
|
+
readonly identitypublickeyincreation_set_key_id: (a: number, b: number) => void;
|
|
2293
|
+
readonly identitypublickeyincreation_set_key_type: (a: number, b: any) => [number, number];
|
|
2294
|
+
readonly identitypublickeyincreation_set_purpose: (a: number, b: any) => [number, number];
|
|
2295
|
+
readonly identitypublickeyincreation_set_read_only: (a: number, b: number) => void;
|
|
2296
|
+
readonly identitypublickeyincreation_set_security_level: (a: number, b: any) => [number, number];
|
|
2297
|
+
readonly identitypublickeyincreation_set_signature: (a: number, b: number, c: number) => void;
|
|
2298
|
+
readonly identitypublickeyincreation_struct_name: () => [number, number];
|
|
2299
|
+
readonly identitypublickeyincreation_toIdentityPublicKey: (a: number) => [number, number, number];
|
|
2300
|
+
readonly identitypublickeyincreation_toJSON: (a: number) => [number, number, number];
|
|
2301
|
+
readonly identitypublickeyincreation_toObject: (a: number) => [number, number, number];
|
|
2302
|
+
readonly identitypublickeyincreation_type_name: (a: number) => [number, number];
|
|
2303
|
+
readonly identitytopuptransition_fromBase64: (a: number, b: number) => [number, number, number];
|
|
2304
|
+
readonly identitytopuptransition_fromBytes: (a: number, b: number) => [number, number, number];
|
|
2305
|
+
readonly identitytopuptransition_fromHex: (a: number, b: number) => [number, number, number];
|
|
2306
|
+
readonly identitytopuptransition_fromJSON: (a: any) => [number, number, number];
|
|
2307
|
+
readonly identitytopuptransition_fromObject: (a: any) => [number, number, number];
|
|
2308
|
+
readonly identitytopuptransition_fromStateTransition: (a: number) => [number, number, number];
|
|
2309
|
+
readonly identitytopuptransition_getModifiedDataIds: (a: number) => [number, number];
|
|
2391
2310
|
readonly identitytopuptransition_getOptionalAssetLockProof: (a: number) => any;
|
|
2392
2311
|
readonly identitytopuptransition_getSignableBytes: (a: number) => [number, number, number, number];
|
|
2393
2312
|
readonly identitytopuptransition_get_asset_lock_proof: (a: number) => number;
|
|
@@ -2433,66 +2352,80 @@ export interface InitOutput {
|
|
|
2433
2352
|
readonly outpoint_toBytes: (a: number) => [number, number];
|
|
2434
2353
|
readonly outpoint_toHex: (a: number) => [number, number];
|
|
2435
2354
|
readonly outpoint_type_name: (a: number) => [number, number];
|
|
2436
|
-
readonly
|
|
2437
|
-
readonly
|
|
2438
|
-
readonly
|
|
2439
|
-
readonly
|
|
2440
|
-
readonly
|
|
2441
|
-
readonly
|
|
2442
|
-
readonly
|
|
2443
|
-
readonly
|
|
2444
|
-
readonly
|
|
2445
|
-
readonly
|
|
2446
|
-
readonly
|
|
2447
|
-
readonly
|
|
2448
|
-
readonly
|
|
2449
|
-
readonly
|
|
2450
|
-
readonly
|
|
2451
|
-
readonly
|
|
2452
|
-
readonly
|
|
2355
|
+
readonly tokenpaymentinfo_gas_fees_paid_by: (a: number) => [number, number];
|
|
2356
|
+
readonly tokenpaymentinfo_maximum_token_cost: (a: number) => [number, bigint];
|
|
2357
|
+
readonly tokenpaymentinfo_minimum_token_cost: (a: number) => [number, bigint];
|
|
2358
|
+
readonly tokenpaymentinfo_new: (a: any, b: number, c: number, d: bigint, e: number, f: bigint, g: any) => [number, number, number];
|
|
2359
|
+
readonly tokenpaymentinfo_payment_token_contract_id: (a: number) => number;
|
|
2360
|
+
readonly tokenpaymentinfo_set_gas_fees_paid_by: (a: number, b: any) => [number, number];
|
|
2361
|
+
readonly tokenpaymentinfo_set_maximum_token_cost: (a: number, b: number, c: bigint) => void;
|
|
2362
|
+
readonly tokenpaymentinfo_set_payment_token_contract_id: (a: number, b: any) => [number, number];
|
|
2363
|
+
readonly tokenpaymentinfo_set_token_contract_position: (a: number, b: number) => void;
|
|
2364
|
+
readonly tokenpaymentinfo_struct_name: () => [number, number];
|
|
2365
|
+
readonly tokenpaymentinfo_token_contract_position: (a: number) => number;
|
|
2366
|
+
readonly tokenpaymentinfo_type_name: (a: number) => [number, number];
|
|
2367
|
+
readonly tokenpaymentinfo_set_minimum_token_cost: (a: number, b: number, c: bigint) => void;
|
|
2368
|
+
readonly __wbg_actiontaker_free: (a: number, b: number) => void;
|
|
2369
|
+
readonly __wbg_authorizedactiontakers_free: (a: number, b: number) => void;
|
|
2370
|
+
readonly __wbg_changecontrolrules_free: (a: number, b: number) => void;
|
|
2371
|
+
readonly __wbg_group_free: (a: number, b: number) => void;
|
|
2372
|
+
readonly __wbg_identifier_free: (a: number, b: number) => void;
|
|
2453
2373
|
readonly __wbg_identity_free: (a: number, b: number) => void;
|
|
2454
|
-
readonly
|
|
2455
|
-
readonly
|
|
2456
|
-
readonly
|
|
2457
|
-
readonly
|
|
2458
|
-
readonly
|
|
2459
|
-
readonly
|
|
2460
|
-
readonly
|
|
2461
|
-
readonly
|
|
2462
|
-
readonly
|
|
2463
|
-
readonly
|
|
2464
|
-
readonly
|
|
2465
|
-
readonly
|
|
2466
|
-
readonly
|
|
2467
|
-
readonly
|
|
2468
|
-
readonly
|
|
2469
|
-
readonly
|
|
2470
|
-
readonly
|
|
2471
|
-
readonly
|
|
2472
|
-
readonly
|
|
2473
|
-
readonly
|
|
2474
|
-
readonly
|
|
2475
|
-
readonly
|
|
2476
|
-
readonly
|
|
2477
|
-
readonly
|
|
2478
|
-
readonly
|
|
2479
|
-
readonly
|
|
2480
|
-
readonly
|
|
2481
|
-
readonly
|
|
2482
|
-
readonly
|
|
2483
|
-
readonly
|
|
2484
|
-
readonly
|
|
2485
|
-
readonly
|
|
2486
|
-
readonly
|
|
2487
|
-
readonly
|
|
2488
|
-
readonly
|
|
2489
|
-
readonly
|
|
2490
|
-
readonly
|
|
2491
|
-
readonly
|
|
2492
|
-
readonly
|
|
2493
|
-
readonly
|
|
2494
|
-
readonly
|
|
2495
|
-
readonly
|
|
2374
|
+
readonly __wbg_identityupdatetransition_free: (a: number, b: number) => void;
|
|
2375
|
+
readonly __wbg_resourcevotechoice_free: (a: number, b: number) => void;
|
|
2376
|
+
readonly __wbg_tokenfreezetransition_free: (a: number, b: number) => void;
|
|
2377
|
+
readonly __wbg_tokenpricingschedule_free: (a: number, b: number) => void;
|
|
2378
|
+
readonly actiontaker_getType: (a: number) => [number, number];
|
|
2379
|
+
readonly actiontaker_get_value: (a: number) => any;
|
|
2380
|
+
readonly actiontaker_new: (a: any) => [number, number, number];
|
|
2381
|
+
readonly actiontaker_set_value: (a: number, b: any) => [number, number];
|
|
2382
|
+
readonly actiontaker_struct_name: () => [number, number];
|
|
2383
|
+
readonly actiontaker_type_name: (a: number) => [number, number];
|
|
2384
|
+
readonly authorizedactiontakers_ContractOwner: () => number;
|
|
2385
|
+
readonly authorizedactiontakers_Group: (a: number) => number;
|
|
2386
|
+
readonly authorizedactiontakers_Identity: (a: any) => [number, number, number];
|
|
2387
|
+
readonly authorizedactiontakers_MainGroup: () => number;
|
|
2388
|
+
readonly authorizedactiontakers_NoOne: () => number;
|
|
2389
|
+
readonly authorizedactiontakers_getTakerType: (a: number) => [number, number];
|
|
2390
|
+
readonly authorizedactiontakers_getValue: (a: number) => any;
|
|
2391
|
+
readonly authorizedactiontakers_struct_name: () => [number, number];
|
|
2392
|
+
readonly authorizedactiontakers_type_name: (a: number) => [number, number];
|
|
2393
|
+
readonly changecontrolrules_canChangeAdminActionTakers: (a: number, b: number, c: any, d: number, e: any, f: number, g: any) => [number, number, number];
|
|
2394
|
+
readonly changecontrolrules_get_admin_action_takers: (a: number) => number;
|
|
2395
|
+
readonly changecontrolrules_get_authorized_to_make_change: (a: number) => number;
|
|
2396
|
+
readonly changecontrolrules_get_changing_admin_action_takers_to_no_one_allowed: (a: number) => number;
|
|
2397
|
+
readonly changecontrolrules_get_changing_authorized_action_takers_to_no_one_allowed: (a: number) => number;
|
|
2398
|
+
readonly changecontrolrules_get_self_changing_admin_action_takers_allowed: (a: number) => number;
|
|
2399
|
+
readonly changecontrolrules_new: (a: number, b: number, c: number, d: number, e: number) => number;
|
|
2400
|
+
readonly changecontrolrules_set_admin_action_takers: (a: number, b: number) => void;
|
|
2401
|
+
readonly changecontrolrules_set_authorized_to_make_change: (a: number, b: number) => void;
|
|
2402
|
+
readonly changecontrolrules_set_changing_admin_action_takers_to_no_one_allowed: (a: number, b: number) => void;
|
|
2403
|
+
readonly changecontrolrules_set_changing_authorized_action_takers_to_no_one_allowed: (a: number, b: number) => void;
|
|
2404
|
+
readonly changecontrolrules_set_self_changing_admin_action_takers_allowed: (a: number, b: number) => void;
|
|
2405
|
+
readonly changecontrolrules_struct_name: () => [number, number];
|
|
2406
|
+
readonly changecontrolrules_type_name: (a: number) => [number, number];
|
|
2407
|
+
readonly group_fromJSON: (a: any) => [number, number, number];
|
|
2408
|
+
readonly group_fromObject: (a: any) => [number, number, number];
|
|
2409
|
+
readonly group_get_members: (a: number) => [number, number, number];
|
|
2410
|
+
readonly group_get_required_power: (a: number) => number;
|
|
2411
|
+
readonly group_new: (a: any, b: number) => [number, number, number];
|
|
2412
|
+
readonly group_setMemberRequiredPower: (a: number, b: any, c: number) => [number, number];
|
|
2413
|
+
readonly group_set_members: (a: number, b: any) => [number, number];
|
|
2414
|
+
readonly group_set_required_power: (a: number, b: number) => void;
|
|
2415
|
+
readonly group_struct_name: () => [number, number];
|
|
2416
|
+
readonly group_toJSON: (a: number) => [number, number, number];
|
|
2417
|
+
readonly group_type_name: (a: number) => [number, number];
|
|
2418
|
+
readonly identifier_fromBase58: (a: number, b: number) => [number, number, number];
|
|
2419
|
+
readonly identifier_fromBase64: (a: number, b: number) => [number, number, number];
|
|
2420
|
+
readonly identifier_fromBytes: (a: number, b: number) => [number, number, number];
|
|
2421
|
+
readonly identifier_fromHex: (a: number, b: number) => [number, number, number];
|
|
2422
|
+
readonly identifier_new: (a: any) => [number, number, number];
|
|
2423
|
+
readonly identifier_struct_name: () => [number, number];
|
|
2424
|
+
readonly identifier_toBase58: (a: number) => [number, number];
|
|
2425
|
+
readonly identifier_toBase64: (a: number) => [number, number];
|
|
2426
|
+
readonly identifier_toBytes: (a: number) => [number, number];
|
|
2427
|
+
readonly identifier_toHex: (a: number) => [number, number];
|
|
2428
|
+
readonly identifier_type_name: (a: number) => [number, number];
|
|
2496
2429
|
readonly identity_addPublicKey: (a: number, b: number) => void;
|
|
2497
2430
|
readonly identity_fromBase64: (a: number, b: number) => [number, number, number];
|
|
2498
2431
|
readonly identity_fromBytes: (a: number, b: number) => [number, number, number];
|
|
@@ -2515,100 +2448,459 @@ export interface InitOutput {
|
|
|
2515
2448
|
readonly identity_toJSON: (a: number) => [number, number, number];
|
|
2516
2449
|
readonly identity_toObject: (a: number) => [number, number, number];
|
|
2517
2450
|
readonly identity_type_name: (a: number) => [number, number];
|
|
2518
|
-
readonly
|
|
2519
|
-
readonly
|
|
2520
|
-
readonly
|
|
2521
|
-
readonly
|
|
2522
|
-
readonly
|
|
2523
|
-
readonly
|
|
2524
|
-
readonly
|
|
2525
|
-
readonly
|
|
2526
|
-
readonly
|
|
2527
|
-
readonly
|
|
2528
|
-
readonly
|
|
2529
|
-
readonly
|
|
2530
|
-
readonly
|
|
2531
|
-
readonly
|
|
2532
|
-
readonly
|
|
2533
|
-
readonly
|
|
2534
|
-
readonly
|
|
2535
|
-
readonly
|
|
2536
|
-
readonly
|
|
2537
|
-
readonly
|
|
2538
|
-
readonly
|
|
2539
|
-
readonly
|
|
2540
|
-
readonly
|
|
2541
|
-
readonly
|
|
2542
|
-
readonly
|
|
2543
|
-
readonly
|
|
2544
|
-
readonly
|
|
2545
|
-
readonly
|
|
2546
|
-
readonly
|
|
2547
|
-
readonly
|
|
2548
|
-
readonly
|
|
2549
|
-
readonly
|
|
2550
|
-
readonly
|
|
2551
|
-
readonly
|
|
2552
|
-
readonly
|
|
2553
|
-
readonly
|
|
2554
|
-
readonly
|
|
2555
|
-
readonly
|
|
2556
|
-
readonly
|
|
2557
|
-
readonly
|
|
2558
|
-
readonly
|
|
2559
|
-
readonly
|
|
2560
|
-
readonly
|
|
2561
|
-
readonly
|
|
2562
|
-
readonly
|
|
2563
|
-
readonly
|
|
2564
|
-
readonly
|
|
2565
|
-
readonly
|
|
2566
|
-
readonly
|
|
2567
|
-
readonly
|
|
2568
|
-
readonly
|
|
2569
|
-
readonly
|
|
2570
|
-
readonly
|
|
2571
|
-
readonly
|
|
2572
|
-
readonly
|
|
2573
|
-
readonly
|
|
2574
|
-
readonly
|
|
2575
|
-
readonly
|
|
2576
|
-
readonly
|
|
2577
|
-
readonly
|
|
2578
|
-
readonly
|
|
2579
|
-
readonly
|
|
2580
|
-
readonly
|
|
2581
|
-
readonly
|
|
2582
|
-
readonly
|
|
2583
|
-
readonly
|
|
2584
|
-
readonly
|
|
2585
|
-
readonly
|
|
2586
|
-
readonly
|
|
2587
|
-
readonly
|
|
2588
|
-
readonly
|
|
2589
|
-
readonly
|
|
2590
|
-
readonly
|
|
2591
|
-
readonly
|
|
2592
|
-
readonly
|
|
2593
|
-
readonly
|
|
2594
|
-
readonly
|
|
2595
|
-
readonly
|
|
2596
|
-
readonly
|
|
2597
|
-
readonly
|
|
2598
|
-
readonly
|
|
2599
|
-
readonly
|
|
2600
|
-
readonly
|
|
2601
|
-
readonly
|
|
2602
|
-
readonly __wbg_wasmdpperror_free: (a: number, b: number) => void;
|
|
2603
|
-
readonly blockinfo_core_height: (a: number) => number;
|
|
2604
|
-
readonly blockinfo_epoch_index: (a: number) => number;
|
|
2605
|
-
readonly blockinfo_fromJSON: (a: any) => [number, number, number];
|
|
2606
|
-
readonly blockinfo_fromObject: (a: any) => [number, number, number];
|
|
2607
|
-
readonly blockinfo_height: (a: number) => bigint;
|
|
2608
|
-
readonly blockinfo_new: (a: bigint, b: bigint, c: number, d: number) => [number, number, number];
|
|
2609
|
-
readonly blockinfo_time_ms: (a: number) => bigint;
|
|
2451
|
+
readonly identityupdatetransition_fromBase64: (a: number, b: number) => [number, number, number];
|
|
2452
|
+
readonly identityupdatetransition_fromBytes: (a: number, b: number) => [number, number, number];
|
|
2453
|
+
readonly identityupdatetransition_fromHex: (a: number, b: number) => [number, number, number];
|
|
2454
|
+
readonly identityupdatetransition_fromJSON: (a: any) => [number, number, number];
|
|
2455
|
+
readonly identityupdatetransition_fromObject: (a: any) => [number, number, number];
|
|
2456
|
+
readonly identityupdatetransition_fromStateTransition: (a: number) => [number, number, number];
|
|
2457
|
+
readonly identityupdatetransition_getModifiedDataIds: (a: number) => [number, number];
|
|
2458
|
+
readonly identityupdatetransition_getOptionalAssetLockProof: (a: number) => any;
|
|
2459
|
+
readonly identityupdatetransition_getPurposeRequirement: (a: number) => [number, number];
|
|
2460
|
+
readonly identityupdatetransition_getSignableBytes: (a: number) => [number, number, number, number];
|
|
2461
|
+
readonly identityupdatetransition_get_identity_identifier: (a: number) => number;
|
|
2462
|
+
readonly identityupdatetransition_get_nonce: (a: number) => bigint;
|
|
2463
|
+
readonly identityupdatetransition_get_public_key_ids_to_add: (a: number) => [number, number];
|
|
2464
|
+
readonly identityupdatetransition_get_public_key_ids_to_disable: (a: number) => [number, number];
|
|
2465
|
+
readonly identityupdatetransition_get_revision: (a: number) => bigint;
|
|
2466
|
+
readonly identityupdatetransition_get_signature: (a: number) => [number, number];
|
|
2467
|
+
readonly identityupdatetransition_get_signature_public_key_id: (a: number) => number;
|
|
2468
|
+
readonly identityupdatetransition_get_user_fee_increase: (a: number) => number;
|
|
2469
|
+
readonly identityupdatetransition_new: (a: any, b: bigint, c: bigint, d: any, e: number, f: number, g: number) => [number, number, number];
|
|
2470
|
+
readonly identityupdatetransition_set_identity_identifier: (a: number, b: any) => [number, number];
|
|
2471
|
+
readonly identityupdatetransition_set_nonce: (a: number, b: bigint) => void;
|
|
2472
|
+
readonly identityupdatetransition_set_public_key_ids_to_add: (a: number, b: any) => [number, number];
|
|
2473
|
+
readonly identityupdatetransition_set_public_key_ids_to_disable: (a: number, b: number, c: number) => void;
|
|
2474
|
+
readonly identityupdatetransition_set_revision: (a: number, b: bigint) => void;
|
|
2475
|
+
readonly identityupdatetransition_set_signature: (a: number, b: number, c: number) => void;
|
|
2476
|
+
readonly identityupdatetransition_set_signature_public_key_id: (a: number, b: number) => void;
|
|
2477
|
+
readonly identityupdatetransition_set_user_fee_increase: (a: number, b: number) => void;
|
|
2478
|
+
readonly identityupdatetransition_struct_name: () => [number, number];
|
|
2479
|
+
readonly identityupdatetransition_toBase64: (a: number) => [number, number, number, number];
|
|
2480
|
+
readonly identityupdatetransition_toBytes: (a: number) => [number, number, number, number];
|
|
2481
|
+
readonly identityupdatetransition_toHex: (a: number) => [number, number, number, number];
|
|
2482
|
+
readonly identityupdatetransition_toJSON: (a: number) => [number, number, number];
|
|
2483
|
+
readonly identityupdatetransition_toObject: (a: number) => [number, number, number];
|
|
2484
|
+
readonly identityupdatetransition_toStateTransition: (a: number) => number;
|
|
2485
|
+
readonly identityupdatetransition_type_name: (a: number) => [number, number];
|
|
2486
|
+
readonly resourcevotechoice_Lock: () => number;
|
|
2487
|
+
readonly resourcevotechoice_TowardsIdentity: (a: any) => [number, number, number];
|
|
2488
|
+
readonly resourcevotechoice_fromJSON: (a: any) => [number, number, number];
|
|
2489
|
+
readonly resourcevotechoice_fromObject: (a: any) => [number, number, number];
|
|
2490
|
+
readonly resourcevotechoice_getType: (a: number) => [number, number];
|
|
2491
|
+
readonly resourcevotechoice_getValue: (a: number) => any;
|
|
2492
|
+
readonly resourcevotechoice_struct_name: () => [number, number];
|
|
2493
|
+
readonly resourcevotechoice_toJSON: (a: number) => [number, number, number];
|
|
2494
|
+
readonly resourcevotechoice_toObject: (a: number) => [number, number, number];
|
|
2495
|
+
readonly resourcevotechoice_type_name: (a: number) => [number, number];
|
|
2496
|
+
readonly tokenfreezetransition_get_base: (a: number) => number;
|
|
2497
|
+
readonly tokenfreezetransition_get_frozen_identity_id: (a: number) => number;
|
|
2498
|
+
readonly tokenfreezetransition_get_public_note: (a: number) => [number, number];
|
|
2499
|
+
readonly tokenfreezetransition_new: (a: number, b: any, c: number, d: number) => [number, number, number];
|
|
2500
|
+
readonly tokenfreezetransition_set_base: (a: number, b: number) => void;
|
|
2501
|
+
readonly tokenfreezetransition_set_frozen_identity_id: (a: number, b: any) => [number, number];
|
|
2502
|
+
readonly tokenfreezetransition_set_public_note: (a: number, b: number, c: number) => void;
|
|
2503
|
+
readonly tokenfreezetransition_struct_name: () => [number, number];
|
|
2504
|
+
readonly tokenfreezetransition_type_name: (a: number) => [number, number];
|
|
2505
|
+
readonly tokenpricingschedule_SetPrices: (a: any) => [number, number, number];
|
|
2506
|
+
readonly tokenpricingschedule_SinglePrice: (a: bigint) => number;
|
|
2507
|
+
readonly tokenpricingschedule_getScheduleType: (a: number) => [number, number];
|
|
2508
|
+
readonly tokenpricingschedule_getValue: (a: number) => [number, number, number];
|
|
2509
|
+
readonly tokenpricingschedule_struct_name: () => [number, number];
|
|
2510
|
+
readonly tokenpricingschedule_type_name: (a: number) => [number, number];
|
|
2511
|
+
readonly resourcevotechoice_Abstain: () => number;
|
|
2512
|
+
readonly identifier_toJSON: (a: number) => [number, number];
|
|
2513
|
+
readonly identifier_toString: (a: number) => [number, number];
|
|
2514
|
+
readonly group_toObject: (a: number) => [number, number, number];
|
|
2515
|
+
readonly __wbg_blockinfo_free: (a: number, b: number) => void;
|
|
2516
|
+
readonly __wbg_consensuserror_free: (a: number, b: number) => void;
|
|
2517
|
+
readonly __wbg_documentcreatetransition_free: (a: number, b: number) => void;
|
|
2518
|
+
readonly __wbg_documentdeletetransition_free: (a: number, b: number) => void;
|
|
2519
|
+
readonly __wbg_documentpurchasetransition_free: (a: number, b: number) => void;
|
|
2520
|
+
readonly __wbg_documentreplacetransition_free: (a: number, b: number) => void;
|
|
2521
|
+
readonly __wbg_documenttransfertransition_free: (a: number, b: number) => void;
|
|
2522
|
+
readonly __wbg_documenttransition_free: (a: number, b: number) => void;
|
|
2523
|
+
readonly __wbg_documentupdatepricetransition_free: (a: number, b: number) => void;
|
|
2524
|
+
readonly __wbg_identitycredittransfer_free: (a: number, b: number) => void;
|
|
2525
|
+
readonly __wbg_identitysigner_free: (a: number, b: number) => void;
|
|
2526
|
+
readonly __wbg_platformaddress_free: (a: number, b: number) => void;
|
|
2527
|
+
readonly __wbg_wasmdpperror_free: (a: number, b: number) => void;
|
|
2528
|
+
readonly blockinfo_core_height: (a: number) => number;
|
|
2529
|
+
readonly blockinfo_epoch_index: (a: number) => number;
|
|
2530
|
+
readonly blockinfo_fromJSON: (a: any) => [number, number, number];
|
|
2531
|
+
readonly blockinfo_fromObject: (a: any) => [number, number, number];
|
|
2532
|
+
readonly blockinfo_height: (a: number) => bigint;
|
|
2533
|
+
readonly blockinfo_new: (a: bigint, b: bigint, c: number, d: number) => [number, number, number];
|
|
2534
|
+
readonly blockinfo_time_ms: (a: number) => bigint;
|
|
2610
2535
|
readonly blockinfo_toJSON: (a: number) => [number, number, number];
|
|
2611
2536
|
readonly blockinfo_toObject: (a: number) => [number, number, number];
|
|
2537
|
+
readonly consensuserror_deserialize: (a: number, b: number) => [number, number, number];
|
|
2538
|
+
readonly consensuserror_message: (a: number) => [number, number];
|
|
2539
|
+
readonly documentcreatetransition_clearPrefundedVotingBalance: (a: number) => void;
|
|
2540
|
+
readonly documentcreatetransition_fromDocumentTransition: (a: number) => [number, number, number];
|
|
2541
|
+
readonly documentcreatetransition_get_base: (a: number) => number;
|
|
2542
|
+
readonly documentcreatetransition_get_data: (a: number) => [number, number, number];
|
|
2543
|
+
readonly documentcreatetransition_get_entropy: (a: number) => [number, number];
|
|
2544
|
+
readonly documentcreatetransition_get_prefunded_voting_balance: (a: number) => number;
|
|
2545
|
+
readonly documentcreatetransition_new: (a: number, b: bigint, c: any, d: any) => [number, number, number];
|
|
2546
|
+
readonly documentcreatetransition_set_base: (a: number, b: number) => void;
|
|
2547
|
+
readonly documentcreatetransition_set_data: (a: number, b: any) => [number, number];
|
|
2548
|
+
readonly documentcreatetransition_set_entropy: (a: number, b: number, c: number) => [number, number];
|
|
2549
|
+
readonly documentcreatetransition_set_prefunded_voting_balance: (a: number, b: number) => void;
|
|
2550
|
+
readonly documentcreatetransition_struct_name: () => [number, number];
|
|
2551
|
+
readonly documentcreatetransition_toDocumentTransition: (a: number) => number;
|
|
2552
|
+
readonly documentcreatetransition_type_name: (a: number) => [number, number];
|
|
2553
|
+
readonly documentdeletetransition_fromDocumentTransition: (a: number) => [number, number, number];
|
|
2554
|
+
readonly documentdeletetransition_get_base: (a: number) => number;
|
|
2555
|
+
readonly documentdeletetransition_new: (a: number, b: bigint, c: any) => [number, number, number];
|
|
2556
|
+
readonly documentdeletetransition_set_base: (a: number, b: number) => void;
|
|
2557
|
+
readonly documentdeletetransition_struct_name: () => [number, number];
|
|
2558
|
+
readonly documentdeletetransition_toDocumentTransition: (a: number) => number;
|
|
2559
|
+
readonly documentdeletetransition_type_name: (a: number) => [number, number];
|
|
2560
|
+
readonly documentpurchasetransition_fromDocumentTransition: (a: number) => [number, number, number];
|
|
2561
|
+
readonly documentpurchasetransition_get_base: (a: number) => number;
|
|
2562
|
+
readonly documentpurchasetransition_get_price: (a: number) => bigint;
|
|
2563
|
+
readonly documentpurchasetransition_get_revision: (a: number) => bigint;
|
|
2564
|
+
readonly documentpurchasetransition_new: (a: number, b: bigint, c: bigint, d: any) => [number, number, number];
|
|
2565
|
+
readonly documentpurchasetransition_set_base: (a: number, b: number) => void;
|
|
2566
|
+
readonly documentpurchasetransition_set_price: (a: number, b: bigint) => void;
|
|
2567
|
+
readonly documentpurchasetransition_set_revision: (a: number, b: bigint) => void;
|
|
2568
|
+
readonly documentpurchasetransition_struct_name: () => [number, number];
|
|
2569
|
+
readonly documentpurchasetransition_toDocumentTransition: (a: number) => number;
|
|
2570
|
+
readonly documentpurchasetransition_type_name: (a: number) => [number, number];
|
|
2571
|
+
readonly documentreplacetransition_fromDocumentTransition: (a: number) => [number, number, number];
|
|
2572
|
+
readonly documentreplacetransition_get_base: (a: number) => number;
|
|
2573
|
+
readonly documentreplacetransition_get_data: (a: number) => [number, number, number];
|
|
2574
|
+
readonly documentreplacetransition_get_revision: (a: number) => bigint;
|
|
2575
|
+
readonly documentreplacetransition_new: (a: number, b: bigint, c: any) => [number, number, number];
|
|
2576
|
+
readonly documentreplacetransition_set_base: (a: number, b: number) => void;
|
|
2577
|
+
readonly documentreplacetransition_set_data: (a: number, b: any) => [number, number];
|
|
2578
|
+
readonly documentreplacetransition_set_revision: (a: number, b: bigint) => void;
|
|
2579
|
+
readonly documentreplacetransition_struct_name: () => [number, number];
|
|
2580
|
+
readonly documentreplacetransition_toDocumentTransition: (a: number) => number;
|
|
2581
|
+
readonly documentreplacetransition_type_name: (a: number) => [number, number];
|
|
2582
|
+
readonly documenttransfertransition_fromDocumentTransition: (a: number) => [number, number, number];
|
|
2583
|
+
readonly documenttransfertransition_get_base: (a: number) => number;
|
|
2584
|
+
readonly documenttransfertransition_get_recipient_owner_id: (a: number) => number;
|
|
2585
|
+
readonly documenttransfertransition_new: (a: number, b: bigint, c: any, d: any) => [number, number, number];
|
|
2586
|
+
readonly documenttransfertransition_set_base: (a: number, b: number) => void;
|
|
2587
|
+
readonly documenttransfertransition_set_recipient_owner_id: (a: number, b: any) => [number, number];
|
|
2588
|
+
readonly documenttransfertransition_struct_name: () => [number, number];
|
|
2589
|
+
readonly documenttransfertransition_toDocumentTransition: (a: number) => number;
|
|
2590
|
+
readonly documenttransfertransition_type_name: (a: number) => [number, number];
|
|
2591
|
+
readonly documenttransition_get_action_type: (a: number) => [number, number];
|
|
2592
|
+
readonly documenttransition_get_action_type_number: (a: number) => number;
|
|
2593
|
+
readonly documenttransition_get_create_transition: (a: number) => [number, number, number];
|
|
2594
|
+
readonly documenttransition_get_data_contract_id: (a: number) => number;
|
|
2595
|
+
readonly documenttransition_get_delete_transition: (a: number) => [number, number, number];
|
|
2596
|
+
readonly documenttransition_get_document_type_name: (a: number) => [number, number];
|
|
2597
|
+
readonly documenttransition_get_entropy: (a: number) => [number, number];
|
|
2598
|
+
readonly documenttransition_get_id: (a: number) => number;
|
|
2599
|
+
readonly documenttransition_get_identity_contract_nonce: (a: number) => bigint;
|
|
2600
|
+
readonly documenttransition_get_purchase_transition: (a: number) => [number, number, number];
|
|
2601
|
+
readonly documenttransition_get_replace_transition: (a: number) => [number, number, number];
|
|
2602
|
+
readonly documenttransition_get_revision: (a: number) => [number, bigint];
|
|
2603
|
+
readonly documenttransition_get_transfer_transition: (a: number) => [number, number, number];
|
|
2604
|
+
readonly documenttransition_get_update_price_transition: (a: number) => [number, number, number];
|
|
2605
|
+
readonly documenttransition_set_data_contract_id: (a: number, b: any) => [number, number];
|
|
2606
|
+
readonly documenttransition_set_identity_contract_nonce: (a: number, b: bigint) => void;
|
|
2607
|
+
readonly documenttransition_set_revision: (a: number, b: bigint) => void;
|
|
2608
|
+
readonly documenttransition_struct_name: () => [number, number];
|
|
2609
|
+
readonly documenttransition_type_name: (a: number) => [number, number];
|
|
2610
|
+
readonly documentupdatepricetransition_fromDocumentTransition: (a: number) => [number, number, number];
|
|
2611
|
+
readonly documentupdatepricetransition_get_base: (a: number) => number;
|
|
2612
|
+
readonly documentupdatepricetransition_get_price: (a: number) => bigint;
|
|
2613
|
+
readonly documentupdatepricetransition_new: (a: number, b: bigint, c: bigint, d: any) => [number, number, number];
|
|
2614
|
+
readonly documentupdatepricetransition_set_base: (a: number, b: number) => void;
|
|
2615
|
+
readonly documentupdatepricetransition_set_price: (a: number, b: bigint) => void;
|
|
2616
|
+
readonly documentupdatepricetransition_struct_name: () => [number, number];
|
|
2617
|
+
readonly documentupdatepricetransition_toDocumentTransition: (a: number) => number;
|
|
2618
|
+
readonly documentupdatepricetransition_type_name: (a: number) => [number, number];
|
|
2619
|
+
readonly identitycredittransfer_fromBase64: (a: number, b: number) => [number, number, number];
|
|
2620
|
+
readonly identitycredittransfer_fromBytes: (a: number, b: number) => [number, number, number];
|
|
2621
|
+
readonly identitycredittransfer_fromHex: (a: number, b: number) => [number, number, number];
|
|
2622
|
+
readonly identitycredittransfer_fromStateTransition: (a: number) => [number, number, number];
|
|
2623
|
+
readonly identitycredittransfer_getSignableBytes: (a: number) => [number, number, number, number];
|
|
2624
|
+
readonly identitycredittransfer_get_amount: (a: number) => bigint;
|
|
2625
|
+
readonly identitycredittransfer_get_identity_id: (a: number) => number;
|
|
2626
|
+
readonly identitycredittransfer_get_nonce: (a: number) => bigint;
|
|
2627
|
+
readonly identitycredittransfer_get_recipient_id: (a: number) => number;
|
|
2628
|
+
readonly identitycredittransfer_get_signature: (a: number) => [number, number];
|
|
2629
|
+
readonly identitycredittransfer_get_signature_public_key_id: (a: number) => number;
|
|
2630
|
+
readonly identitycredittransfer_get_user_fee_increase: (a: number) => number;
|
|
2631
|
+
readonly identitycredittransfer_new: (a: bigint, b: any, c: any, d: bigint, e: number) => [number, number, number];
|
|
2632
|
+
readonly identitycredittransfer_set_amount: (a: number, b: bigint) => void;
|
|
2633
|
+
readonly identitycredittransfer_set_nonce: (a: number, b: bigint) => void;
|
|
2634
|
+
readonly identitycredittransfer_set_recipient_id: (a: number, b: any) => [number, number];
|
|
2635
|
+
readonly identitycredittransfer_set_sender_id: (a: number, b: any) => [number, number];
|
|
2636
|
+
readonly identitycredittransfer_set_signature: (a: number, b: number, c: number) => void;
|
|
2637
|
+
readonly identitycredittransfer_set_signature_public_key_id: (a: number, b: number) => void;
|
|
2638
|
+
readonly identitycredittransfer_set_user_fee_increase: (a: number, b: number) => void;
|
|
2639
|
+
readonly identitycredittransfer_struct_name: () => [number, number];
|
|
2640
|
+
readonly identitycredittransfer_toBase64: (a: number) => [number, number, number, number];
|
|
2641
|
+
readonly identitycredittransfer_toBytes: (a: number) => [number, number, number, number];
|
|
2642
|
+
readonly identitycredittransfer_toHex: (a: number) => [number, number, number, number];
|
|
2643
|
+
readonly identitycredittransfer_toStateTransition: (a: number) => number;
|
|
2644
|
+
readonly identitycredittransfer_type_name: (a: number) => [number, number];
|
|
2645
|
+
readonly identitycredittransfertransition_fromJSON: (a: any) => [number, number, number];
|
|
2646
|
+
readonly identitycredittransfertransition_fromObject: (a: any) => [number, number, number];
|
|
2647
|
+
readonly identitycredittransfertransition_toJSON: (a: number) => [number, number, number];
|
|
2648
|
+
readonly identitycredittransfertransition_toObject: (a: number) => [number, number, number];
|
|
2649
|
+
readonly identitysigner_addKey: (a: number, b: number) => [number, number];
|
|
2650
|
+
readonly identitysigner_addKeyFromWif: (a: number, b: number, c: number) => [number, number];
|
|
2651
|
+
readonly identitysigner_key_count: (a: number) => number;
|
|
2652
|
+
readonly identitysigner_new: () => number;
|
|
2653
|
+
readonly identitysigner_struct_name: () => [number, number];
|
|
2654
|
+
readonly identitysigner_type_name: (a: number) => [number, number];
|
|
2655
|
+
readonly platformaddress_addressType: (a: number) => [number, number];
|
|
2656
|
+
readonly platformaddress_fromBech32m: (a: number, b: number) => [number, number, number];
|
|
2657
|
+
readonly platformaddress_fromBytes: (a: number, b: number) => [number, number, number];
|
|
2658
|
+
readonly platformaddress_fromHex: (a: number, b: number) => [number, number, number];
|
|
2659
|
+
readonly platformaddress_fromP2pkhHash: (a: number, b: number) => [number, number, number];
|
|
2660
|
+
readonly platformaddress_fromP2shHash: (a: number, b: number) => [number, number, number];
|
|
2661
|
+
readonly platformaddress_hash: (a: number) => [number, number];
|
|
2662
|
+
readonly platformaddress_hashToHex: (a: number) => [number, number];
|
|
2663
|
+
readonly platformaddress_isP2pkh: (a: number) => number;
|
|
2664
|
+
readonly platformaddress_isP2sh: (a: number) => number;
|
|
2665
|
+
readonly platformaddress_new: (a: any) => [number, number, number];
|
|
2666
|
+
readonly platformaddress_struct_name: () => [number, number];
|
|
2667
|
+
readonly platformaddress_toBech32m: (a: number, b: any) => [number, number, number, number];
|
|
2668
|
+
readonly platformaddress_toBytes: (a: number) => [number, number];
|
|
2669
|
+
readonly platformaddress_toHex: (a: number) => [number, number];
|
|
2670
|
+
readonly platformaddress_type_name: (a: number) => [number, number];
|
|
2671
|
+
readonly wasmdpperror_code: (a: number) => number;
|
|
2672
|
+
readonly wasmdpperror_kind: (a: number) => number;
|
|
2673
|
+
readonly wasmdpperror_message: (a: number) => [number, number];
|
|
2674
|
+
readonly wasmdpperror_name: (a: number) => [number, number];
|
|
2675
|
+
readonly __wbg_extendedepochinfo_free: (a: number, b: number) => void;
|
|
2676
|
+
readonly __wbg_identitytokeninfo_free: (a: number, b: number) => void;
|
|
2677
|
+
readonly __wbg_platformaddressinput_free: (a: number, b: number) => void;
|
|
2678
|
+
readonly __wbg_platformaddressoutput_free: (a: number, b: number) => void;
|
|
2679
|
+
readonly __wbg_tokenevent_free: (a: number, b: number) => void;
|
|
2680
|
+
readonly extendedepochinfo_fee_multiplier: (a: number) => number;
|
|
2681
|
+
readonly extendedepochinfo_fee_multiplier_permille: (a: number) => bigint;
|
|
2682
|
+
readonly extendedepochinfo_first_block_height: (a: number) => any;
|
|
2683
|
+
readonly extendedepochinfo_first_block_time: (a: number) => any;
|
|
2684
|
+
readonly extendedepochinfo_first_core_block_height: (a: number) => number;
|
|
2685
|
+
readonly extendedepochinfo_fromJSON: (a: any) => [number, number, number];
|
|
2686
|
+
readonly extendedepochinfo_fromObject: (a: any) => [number, number, number];
|
|
2687
|
+
readonly extendedepochinfo_index: (a: number) => number;
|
|
2688
|
+
readonly extendedepochinfo_new: (a: number, b: bigint, c: bigint, d: number, e: bigint, f: number) => number;
|
|
2689
|
+
readonly extendedepochinfo_protocol_version: (a: number) => number;
|
|
2690
|
+
readonly extendedepochinfo_set_fee_multiplier_permille: (a: number, b: bigint) => void;
|
|
2691
|
+
readonly extendedepochinfo_set_first_block_height: (a: number, b: bigint) => void;
|
|
2692
|
+
readonly extendedepochinfo_set_first_block_time: (a: number, b: bigint) => void;
|
|
2693
|
+
readonly extendedepochinfo_set_first_core_block_height: (a: number, b: number) => void;
|
|
2694
|
+
readonly extendedepochinfo_set_index: (a: number, b: number) => void;
|
|
2695
|
+
readonly extendedepochinfo_set_protocol_version: (a: number, b: number) => void;
|
|
2696
|
+
readonly extendedepochinfo_struct_name: () => [number, number];
|
|
2697
|
+
readonly extendedepochinfo_toJSON: (a: number) => [number, number, number];
|
|
2698
|
+
readonly extendedepochinfo_toObject: (a: number) => [number, number, number];
|
|
2699
|
+
readonly extendedepochinfo_type_name: (a: number) => [number, number];
|
|
2700
|
+
readonly identitytokeninfo_frozen: (a: number) => number;
|
|
2701
|
+
readonly platformaddressinput_address: (a: number) => number;
|
|
2702
|
+
readonly platformaddressinput_amount: (a: number) => any;
|
|
2703
|
+
readonly platformaddressinput_new: (a: any, b: number, c: any) => [number, number, number];
|
|
2704
|
+
readonly platformaddressinput_nonce: (a: number) => number;
|
|
2705
|
+
readonly platformaddressoutput_address: (a: number) => number;
|
|
2706
|
+
readonly platformaddressoutput_amount: (a: number) => any;
|
|
2707
|
+
readonly platformaddressoutput_new: (a: any, b: number) => [number, number, number];
|
|
2708
|
+
readonly tokenconfigurationchangeitem_MainControlGroupItem: (a: number) => number;
|
|
2709
|
+
readonly tokenconfigurationchangeitem_noChangeItem: () => number;
|
|
2710
|
+
readonly tokenevent_fromJSON: (a: any) => [number, number, number];
|
|
2711
|
+
readonly tokenevent_fromObject: (a: any) => [number, number, number];
|
|
2712
|
+
readonly tokenevent_struct_name: (a: number) => [number, number];
|
|
2713
|
+
readonly tokenevent_toJSON: (a: number) => [number, number, number];
|
|
2714
|
+
readonly tokenevent_toObject: (a: number) => [number, number, number];
|
|
2715
|
+
readonly tokenevent_variant: (a: number) => number;
|
|
2716
|
+
readonly tokenevent_type_name: (a: number) => [number, number];
|
|
2717
|
+
readonly __wbg_contenderwithserializeddocument_free: (a: number, b: number) => void;
|
|
2718
|
+
readonly __wbg_corescript_free: (a: number, b: number) => void;
|
|
2719
|
+
readonly __wbg_datacontractupdatetransition_free: (a: number, b: number) => void;
|
|
2720
|
+
readonly __wbg_identitycreditwithdrawaltransition_free: (a: number, b: number) => void;
|
|
2721
|
+
readonly __wbg_partialidentity_free: (a: number, b: number) => void;
|
|
2722
|
+
readonly __wbg_prefundedvotingbalance_free: (a: number, b: number) => void;
|
|
2723
|
+
readonly __wbg_publickey_free: (a: number, b: number) => void;
|
|
2724
|
+
readonly __wbg_statetransition_free: (a: number, b: number) => void;
|
|
2725
|
+
readonly __wbg_tokenbasetransition_free: (a: number, b: number) => void;
|
|
2726
|
+
readonly __wbg_tokendestroyfrozenfundstransition_free: (a: number, b: number) => void;
|
|
2727
|
+
readonly __wbg_tokenemergencyactiontransition_free: (a: number, b: number) => void;
|
|
2728
|
+
readonly contenderwithserializeddocument_fromJSON: (a: any) => [number, number, number];
|
|
2729
|
+
readonly contenderwithserializeddocument_fromObject: (a: any) => [number, number, number];
|
|
2730
|
+
readonly contenderwithserializeddocument_identity_id: (a: number) => number;
|
|
2731
|
+
readonly contenderwithserializeddocument_new: (a: any, b: number, c: number, d: number) => [number, number, number];
|
|
2732
|
+
readonly contenderwithserializeddocument_serialized_document: (a: number) => any;
|
|
2733
|
+
readonly contenderwithserializeddocument_toJSON: (a: number) => [number, number, number];
|
|
2734
|
+
readonly contenderwithserializeddocument_toObject: (a: number) => [number, number, number];
|
|
2735
|
+
readonly contenderwithserializeddocument_vote_tally: (a: number) => number;
|
|
2736
|
+
readonly corescript_fromBytes: (a: number, b: number) => number;
|
|
2737
|
+
readonly corescript_newP2PKH: (a: number, b: number) => number;
|
|
2738
|
+
readonly corescript_newP2SH: (a: number, b: number) => number;
|
|
2739
|
+
readonly corescript_struct_name: () => [number, number];
|
|
2740
|
+
readonly corescript_toASMString: (a: number) => [number, number];
|
|
2741
|
+
readonly corescript_toAddress: (a: number, b: any) => [number, number, number, number];
|
|
2742
|
+
readonly corescript_toBase64: (a: number) => [number, number];
|
|
2743
|
+
readonly corescript_toBytes: (a: number) => [number, number];
|
|
2744
|
+
readonly corescript_toHex: (a: number) => [number, number];
|
|
2745
|
+
readonly corescript_toString: (a: number) => [number, number];
|
|
2746
|
+
readonly corescript_type_name: (a: number) => [number, number];
|
|
2747
|
+
readonly datacontractupdatetransition_fromBase64: (a: number, b: number) => [number, number, number];
|
|
2748
|
+
readonly datacontractupdatetransition_fromBytes: (a: number, b: number) => [number, number, number];
|
|
2749
|
+
readonly datacontractupdatetransition_fromHex: (a: number, b: number) => [number, number, number];
|
|
2750
|
+
readonly datacontractupdatetransition_fromJSON: (a: any) => [number, number, number];
|
|
2751
|
+
readonly datacontractupdatetransition_fromObject: (a: any) => [number, number, number];
|
|
2752
|
+
readonly datacontractupdatetransition_fromStateTransition: (a: number) => [number, number, number];
|
|
2753
|
+
readonly datacontractupdatetransition_getDataContract: (a: number, b: number, c: any) => [number, number, number];
|
|
2754
|
+
readonly datacontractupdatetransition_get_feature_version: (a: number) => number;
|
|
2755
|
+
readonly datacontractupdatetransition_get_identity_nonce: (a: number) => bigint;
|
|
2756
|
+
readonly datacontractupdatetransition_new: (a: number, b: bigint, c: any) => [number, number, number];
|
|
2757
|
+
readonly datacontractupdatetransition_setDataContract: (a: number, b: number, c: any) => [number, number];
|
|
2758
|
+
readonly datacontractupdatetransition_struct_name: () => [number, number];
|
|
2759
|
+
readonly datacontractupdatetransition_toBase64: (a: number) => [number, number, number, number];
|
|
2760
|
+
readonly datacontractupdatetransition_toBytes: (a: number) => [number, number, number, number];
|
|
2761
|
+
readonly datacontractupdatetransition_toHex: (a: number) => [number, number, number, number];
|
|
2762
|
+
readonly datacontractupdatetransition_toJSON: (a: number) => [number, number, number];
|
|
2763
|
+
readonly datacontractupdatetransition_toObject: (a: number) => [number, number, number];
|
|
2764
|
+
readonly datacontractupdatetransition_toStateTransition: (a: number) => number;
|
|
2765
|
+
readonly datacontractupdatetransition_type_name: (a: number) => [number, number];
|
|
2766
|
+
readonly datacontractupdatetransition_verifyProtocolVersion: (a: number, b: number) => [number, number, number];
|
|
2767
|
+
readonly identitycreditwithdrawaltransition_fromBase64: (a: number, b: number) => [number, number, number];
|
|
2768
|
+
readonly identitycreditwithdrawaltransition_fromBytes: (a: number, b: number) => [number, number, number];
|
|
2769
|
+
readonly identitycreditwithdrawaltransition_fromHex: (a: number, b: number) => [number, number, number];
|
|
2770
|
+
readonly identitycreditwithdrawaltransition_fromJSON: (a: any) => [number, number, number];
|
|
2771
|
+
readonly identitycreditwithdrawaltransition_fromObject: (a: any) => [number, number, number];
|
|
2772
|
+
readonly identitycreditwithdrawaltransition_fromStateTransition: (a: number) => [number, number, number];
|
|
2773
|
+
readonly identitycreditwithdrawaltransition_getModifiedDataIds: (a: number) => [number, number];
|
|
2774
|
+
readonly identitycreditwithdrawaltransition_getOptionalAssetLockProof: (a: number) => any;
|
|
2775
|
+
readonly identitycreditwithdrawaltransition_getPurposeRequirement: (a: number) => [number, number];
|
|
2776
|
+
readonly identitycreditwithdrawaltransition_getSignableBytes: (a: number) => [number, number, number, number];
|
|
2777
|
+
readonly identitycreditwithdrawaltransition_get_amount: (a: number) => bigint;
|
|
2778
|
+
readonly identitycreditwithdrawaltransition_get_core_fee_per_byte: (a: number) => number;
|
|
2779
|
+
readonly identitycreditwithdrawaltransition_get_identity_id: (a: number) => number;
|
|
2780
|
+
readonly identitycreditwithdrawaltransition_get_nonce: (a: number) => bigint;
|
|
2781
|
+
readonly identitycreditwithdrawaltransition_get_output_script: (a: number) => number;
|
|
2782
|
+
readonly identitycreditwithdrawaltransition_get_pooling: (a: number) => [number, number];
|
|
2783
|
+
readonly identitycreditwithdrawaltransition_get_signature: (a: number) => [number, number];
|
|
2784
|
+
readonly identitycreditwithdrawaltransition_get_signature_public_key_id: (a: number) => number;
|
|
2785
|
+
readonly identitycreditwithdrawaltransition_get_user_fee_increase: (a: number) => number;
|
|
2786
|
+
readonly identitycreditwithdrawaltransition_new: (a: any, b: bigint, c: number, d: any, e: any, f: number, g: bigint, h: number) => [number, number, number];
|
|
2787
|
+
readonly identitycreditwithdrawaltransition_set_amount: (a: number, b: bigint) => void;
|
|
2788
|
+
readonly identitycreditwithdrawaltransition_set_core_fee_per_byte: (a: number, b: number) => void;
|
|
2789
|
+
readonly identitycreditwithdrawaltransition_set_identity_id: (a: number, b: any) => [number, number];
|
|
2790
|
+
readonly identitycreditwithdrawaltransition_set_nonce: (a: number, b: bigint) => void;
|
|
2791
|
+
readonly identitycreditwithdrawaltransition_set_output_script: (a: number, b: any) => [number, number];
|
|
2792
|
+
readonly identitycreditwithdrawaltransition_set_pooling: (a: number, b: any) => [number, number];
|
|
2793
|
+
readonly identitycreditwithdrawaltransition_set_signature: (a: number, b: number, c: number) => void;
|
|
2794
|
+
readonly identitycreditwithdrawaltransition_set_signature_public_key_id: (a: number, b: number) => void;
|
|
2795
|
+
readonly identitycreditwithdrawaltransition_set_user_fee_increase: (a: number, b: number) => void;
|
|
2796
|
+
readonly identitycreditwithdrawaltransition_struct_name: () => [number, number];
|
|
2797
|
+
readonly identitycreditwithdrawaltransition_toBase64: (a: number) => [number, number, number, number];
|
|
2798
|
+
readonly identitycreditwithdrawaltransition_toBytes: (a: number) => [number, number, number, number];
|
|
2799
|
+
readonly identitycreditwithdrawaltransition_toHex: (a: number) => [number, number, number, number];
|
|
2800
|
+
readonly identitycreditwithdrawaltransition_toJSON: (a: number) => [number, number, number];
|
|
2801
|
+
readonly identitycreditwithdrawaltransition_toObject: (a: number) => [number, number, number];
|
|
2802
|
+
readonly identitycreditwithdrawaltransition_toStateTransition: (a: number) => number;
|
|
2803
|
+
readonly identitycreditwithdrawaltransition_type_name: (a: number) => [number, number];
|
|
2804
|
+
readonly partialidentity_balance: (a: number) => [number, bigint];
|
|
2805
|
+
readonly partialidentity_id: (a: number) => number;
|
|
2806
|
+
readonly partialidentity_loaded_public_keys: (a: number) => [number, number, number];
|
|
2807
|
+
readonly partialidentity_new: (a: any, b: any, c: number, d: bigint, e: number, f: bigint, g: number) => [number, number, number];
|
|
2808
|
+
readonly partialidentity_not_found_public_keys: (a: number) => any;
|
|
2809
|
+
readonly partialidentity_revision: (a: number) => [number, bigint];
|
|
2810
|
+
readonly partialidentity_set_balance: (a: number, b: number, c: bigint) => void;
|
|
2811
|
+
readonly partialidentity_set_id: (a: number, b: any) => [number, number];
|
|
2812
|
+
readonly partialidentity_set_loaded_public_keys: (a: number, b: any) => [number, number];
|
|
2813
|
+
readonly partialidentity_set_not_found_public_keys: (a: number, b: number) => [number, number];
|
|
2814
|
+
readonly partialidentity_set_revision: (a: number, b: number, c: bigint) => void;
|
|
2815
|
+
readonly partialidentity_toJSON: (a: number) => [number, number, number];
|
|
2816
|
+
readonly partialidentity_toObject: (a: number) => [number, number, number];
|
|
2817
|
+
readonly prefundedvotingbalance_credits: (a: number) => bigint;
|
|
2818
|
+
readonly prefundedvotingbalance_indexName: (a: number) => [number, number];
|
|
2819
|
+
readonly prefundedvotingbalance_new: (a: number, b: number, c: bigint) => number;
|
|
2820
|
+
readonly prefundedvotingbalance_struct_name: () => [number, number];
|
|
2821
|
+
readonly prefundedvotingbalance_type_name: (a: number) => [number, number];
|
|
2822
|
+
readonly publickey_compressed: (a: number) => number;
|
|
2823
|
+
readonly publickey_fromBytes: (a: number, b: number) => [number, number, number];
|
|
2824
|
+
readonly publickey_getPublicKeyHash: (a: number) => [number, number];
|
|
2825
|
+
readonly publickey_inner: (a: number) => [number, number];
|
|
2826
|
+
readonly publickey_new: (a: number, b: number, c: number) => [number, number, number];
|
|
2827
|
+
readonly publickey_set_compressed: (a: number, b: number) => void;
|
|
2828
|
+
readonly publickey_set_inner: (a: number, b: number, c: number) => [number, number];
|
|
2829
|
+
readonly publickey_struct_name: () => [number, number];
|
|
2830
|
+
readonly publickey_toBytes: (a: number) => [number, number];
|
|
2831
|
+
readonly publickey_type_name: (a: number) => [number, number];
|
|
2832
|
+
readonly statetransition_fromBase64: (a: number, b: number) => [number, number, number];
|
|
2833
|
+
readonly statetransition_fromBytes: (a: number, b: number) => [number, number, number];
|
|
2834
|
+
readonly statetransition_fromHex: (a: number, b: number) => [number, number, number];
|
|
2835
|
+
readonly statetransition_getActionType: (a: number) => [number, number];
|
|
2836
|
+
readonly statetransition_getActionTypeNumber: (a: number) => number;
|
|
2837
|
+
readonly statetransition_getIdentityContractNonce: (a: number) => [number, bigint];
|
|
2838
|
+
readonly statetransition_getIdentityNonce: (a: number) => [number, bigint];
|
|
2839
|
+
readonly statetransition_getKeyLevelRequirement: (a: number, b: any) => [number, number, number, number];
|
|
2840
|
+
readonly statetransition_getOwnerId: (a: number) => number;
|
|
2841
|
+
readonly statetransition_getPurposeRequirement: (a: number) => [number, number];
|
|
2842
|
+
readonly statetransition_get_signature: (a: number) => [number, number];
|
|
2843
|
+
readonly statetransition_get_signature_public_key_id: (a: number) => number;
|
|
2844
|
+
readonly statetransition_get_user_fee_increase: (a: number) => number;
|
|
2845
|
+
readonly statetransition_hash: (a: number, b: number) => [number, number, number, number];
|
|
2846
|
+
readonly statetransition_setIdentityContractNonce: (a: number, b: bigint) => [number, number];
|
|
2847
|
+
readonly statetransition_setIdentityNonce: (a: number, b: bigint) => [number, number];
|
|
2848
|
+
readonly statetransition_setOwnerId: (a: number, b: any) => [number, number];
|
|
2849
|
+
readonly statetransition_set_signature: (a: number, b: number, c: number) => number;
|
|
2850
|
+
readonly statetransition_set_signature_public_key_id: (a: number, b: number) => void;
|
|
2851
|
+
readonly statetransition_set_user_fee_increase: (a: number, b: number) => void;
|
|
2852
|
+
readonly statetransition_sign: (a: number, b: number, c: number) => [number, number, number, number];
|
|
2853
|
+
readonly statetransition_signByPrivateKey: (a: number, b: number, c: number, d: any) => [number, number, number, number];
|
|
2854
|
+
readonly statetransition_struct_name: () => [number, number];
|
|
2855
|
+
readonly statetransition_toBase64: (a: number) => [number, number, number];
|
|
2856
|
+
readonly statetransition_toBytes: (a: number) => [number, number, number];
|
|
2857
|
+
readonly statetransition_toHex: (a: number) => [number, number, number];
|
|
2858
|
+
readonly statetransition_type_name: (a: number) => [number, number];
|
|
2859
|
+
readonly statetransition_verifyPublicKey: (a: number, b: number, c: number, d: number) => [number, number];
|
|
2860
|
+
readonly tokenbasetransition_get_data_contract_id: (a: number) => number;
|
|
2861
|
+
readonly tokenbasetransition_get_identity_contract_nonce: (a: number) => bigint;
|
|
2862
|
+
readonly tokenbasetransition_get_token_contract_position: (a: number) => number;
|
|
2863
|
+
readonly tokenbasetransition_get_token_id: (a: number) => number;
|
|
2864
|
+
readonly tokenbasetransition_get_using_group_info: (a: number) => number;
|
|
2865
|
+
readonly tokenbasetransition_new: (a: bigint, b: number, c: any, d: any, e: any) => [number, number, number];
|
|
2866
|
+
readonly tokenbasetransition_set_data_contract_id: (a: number, b: any) => [number, number];
|
|
2867
|
+
readonly tokenbasetransition_set_identity_contract_nonce: (a: number, b: bigint) => void;
|
|
2868
|
+
readonly tokenbasetransition_set_token_contract_position: (a: number, b: number) => void;
|
|
2869
|
+
readonly tokenbasetransition_set_token_id: (a: number, b: any) => [number, number];
|
|
2870
|
+
readonly tokenbasetransition_set_using_group_info: (a: number, b: any) => [number, number];
|
|
2871
|
+
readonly tokenbasetransition_struct_name: () => [number, number];
|
|
2872
|
+
readonly tokenbasetransition_type_name: (a: number) => [number, number];
|
|
2873
|
+
readonly tokendestroyfrozenfundstransition_get_base: (a: number) => number;
|
|
2874
|
+
readonly tokendestroyfrozenfundstransition_get_frozen_identity_id: (a: number) => number;
|
|
2875
|
+
readonly tokendestroyfrozenfundstransition_get_public_note: (a: number) => [number, number];
|
|
2876
|
+
readonly tokendestroyfrozenfundstransition_new: (a: number, b: any, c: number, d: number) => [number, number, number];
|
|
2877
|
+
readonly tokendestroyfrozenfundstransition_set_base: (a: number, b: number) => void;
|
|
2878
|
+
readonly tokendestroyfrozenfundstransition_set_frozen_identity_id: (a: number, b: any) => [number, number];
|
|
2879
|
+
readonly tokendestroyfrozenfundstransition_set_public_note: (a: number, b: number, c: number) => void;
|
|
2880
|
+
readonly tokendestroyfrozenfundstransition_struct_name: () => [number, number];
|
|
2881
|
+
readonly tokendestroyfrozenfundstransition_type_name: (a: number) => [number, number];
|
|
2882
|
+
readonly tokenemergencyactiontransition_get_base: (a: number) => number;
|
|
2883
|
+
readonly tokenemergencyactiontransition_get_emergency_action: (a: number) => [number, number];
|
|
2884
|
+
readonly tokenemergencyactiontransition_get_public_note: (a: number) => [number, number];
|
|
2885
|
+
readonly tokenemergencyactiontransition_new: (a: number, b: number, c: number, d: number) => number;
|
|
2886
|
+
readonly tokenemergencyactiontransition_set_base: (a: number, b: number) => void;
|
|
2887
|
+
readonly tokenemergencyactiontransition_set_emergency_action: (a: number, b: number) => void;
|
|
2888
|
+
readonly tokenemergencyactiontransition_set_public_note: (a: number, b: number, c: number) => void;
|
|
2889
|
+
readonly tokenemergencyactiontransition_struct_name: () => [number, number];
|
|
2890
|
+
readonly tokenemergencyactiontransition_type_name: (a: number) => [number, number];
|
|
2891
|
+
readonly __wbg_chainassetlockproof_free: (a: number, b: number) => void;
|
|
2892
|
+
readonly __wbg_contesteddocumentvotepollwinnerinfo_free: (a: number, b: number) => void;
|
|
2893
|
+
readonly __wbg_datacontractcreatetransition_free: (a: number, b: number) => void;
|
|
2894
|
+
readonly __wbg_platformaddresssigner_free: (a: number, b: number) => void;
|
|
2895
|
+
readonly __wbg_privateencryptednote_free: (a: number, b: number) => void;
|
|
2896
|
+
readonly __wbg_privatekey_free: (a: number, b: number) => void;
|
|
2897
|
+
readonly __wbg_sharedencryptednote_free: (a: number, b: number) => void;
|
|
2898
|
+
readonly __wbg_tokenconfigurationconvention_free: (a: number, b: number) => void;
|
|
2899
|
+
readonly __wbg_tokenstatus_free: (a: number, b: number) => void;
|
|
2900
|
+
readonly __wbg_tokentrademode_free: (a: number, b: number) => void;
|
|
2901
|
+
readonly __wbg_tokentransfertransition_free: (a: number, b: number) => void;
|
|
2902
|
+
readonly __wbg_tokenunfreezetransition_free: (a: number, b: number) => void;
|
|
2903
|
+
readonly __wbg_votepoll_free: (a: number, b: number) => void;
|
|
2612
2904
|
readonly chainassetlockproof_createIdentityId: (a: number) => number;
|
|
2613
2905
|
readonly chainassetlockproof_fromBytes: (a: number, b: number) => [number, number, number];
|
|
2614
2906
|
readonly chainassetlockproof_fromJSON: (a: any) => [number, number, number];
|
|
@@ -2623,8 +2915,6 @@ export interface InitOutput {
|
|
|
2623
2915
|
readonly chainassetlockproof_toJSON: (a: number) => [number, number, number];
|
|
2624
2916
|
readonly chainassetlockproof_toObject: (a: number) => [number, number, number];
|
|
2625
2917
|
readonly chainassetlockproof_type_name: (a: number) => [number, number];
|
|
2626
|
-
readonly consensuserror_deserialize: (a: number, b: number) => [number, number, number];
|
|
2627
|
-
readonly consensuserror_message: (a: number) => [number, number];
|
|
2628
2918
|
readonly contesteddocumentvotepollwinnerinfo_fromJSON: (a: any) => [number, number, number];
|
|
2629
2919
|
readonly contesteddocumentvotepollwinnerinfo_fromObject: (a: any) => [number, number, number];
|
|
2630
2920
|
readonly contesteddocumentvotepollwinnerinfo_identity_id: (a: number) => number;
|
|
@@ -2655,164 +2945,13 @@ export interface InitOutput {
|
|
|
2655
2945
|
readonly datacontractcreatetransition_toStateTransition: (a: number) => number;
|
|
2656
2946
|
readonly datacontractcreatetransition_type_name: (a: number) => [number, number];
|
|
2657
2947
|
readonly datacontractcreatetransition_verifyProtocolVersion: (a: number, b: number) => [number, number, number];
|
|
2658
|
-
readonly
|
|
2659
|
-
readonly
|
|
2660
|
-
readonly
|
|
2661
|
-
readonly
|
|
2662
|
-
readonly
|
|
2663
|
-
readonly
|
|
2664
|
-
readonly
|
|
2665
|
-
readonly documentbasetransition_set_document_type_name: (a: number, b: number, c: number) => void;
|
|
2666
|
-
readonly documentbasetransition_set_id: (a: number, b: any) => [number, number];
|
|
2667
|
-
readonly documentbasetransition_set_identity_contract_nonce: (a: number, b: bigint) => void;
|
|
2668
|
-
readonly documentbasetransition_set_token_payment_info: (a: number, b: number) => void;
|
|
2669
|
-
readonly documentbasetransition_struct_name: () => [number, number];
|
|
2670
|
-
readonly documentbasetransition_type_name: (a: number) => [number, number];
|
|
2671
|
-
readonly documentupdatepricetransition_fromDocumentTransition: (a: number) => [number, number, number];
|
|
2672
|
-
readonly documentupdatepricetransition_get_base: (a: number) => number;
|
|
2673
|
-
readonly documentupdatepricetransition_get_price: (a: number) => bigint;
|
|
2674
|
-
readonly documentupdatepricetransition_new: (a: number, b: bigint, c: bigint, d: any) => [number, number, number];
|
|
2675
|
-
readonly documentupdatepricetransition_set_base: (a: number, b: number) => void;
|
|
2676
|
-
readonly documentupdatepricetransition_set_price: (a: number, b: bigint) => void;
|
|
2677
|
-
readonly documentupdatepricetransition_struct_name: () => [number, number];
|
|
2678
|
-
readonly documentupdatepricetransition_toDocumentTransition: (a: number) => number;
|
|
2679
|
-
readonly documentupdatepricetransition_type_name: (a: number) => [number, number];
|
|
2680
|
-
readonly group_fromJSON: (a: any) => [number, number, number];
|
|
2681
|
-
readonly group_fromObject: (a: any) => [number, number, number];
|
|
2682
|
-
readonly group_get_members: (a: number) => [number, number, number];
|
|
2683
|
-
readonly group_get_required_power: (a: number) => number;
|
|
2684
|
-
readonly group_new: (a: any, b: number) => [number, number, number];
|
|
2685
|
-
readonly group_setMemberRequiredPower: (a: number, b: any, c: number) => [number, number];
|
|
2686
|
-
readonly group_set_members: (a: number, b: any) => [number, number];
|
|
2687
|
-
readonly group_set_required_power: (a: number, b: number) => void;
|
|
2688
|
-
readonly group_struct_name: () => [number, number];
|
|
2689
|
-
readonly group_toJSON: (a: number) => [number, number, number];
|
|
2690
|
-
readonly group_type_name: (a: number) => [number, number];
|
|
2691
|
-
readonly platformaddress_addressType: (a: number) => [number, number];
|
|
2692
|
-
readonly platformaddress_fromBech32m: (a: number, b: number) => [number, number, number];
|
|
2693
|
-
readonly platformaddress_fromBytes: (a: number, b: number) => [number, number, number];
|
|
2694
|
-
readonly platformaddress_fromHex: (a: number, b: number) => [number, number, number];
|
|
2695
|
-
readonly platformaddress_fromP2pkhHash: (a: number, b: number) => [number, number, number];
|
|
2696
|
-
readonly platformaddress_fromP2shHash: (a: number, b: number) => [number, number, number];
|
|
2697
|
-
readonly platformaddress_hash: (a: number) => [number, number];
|
|
2698
|
-
readonly platformaddress_hashToHex: (a: number) => [number, number];
|
|
2699
|
-
readonly platformaddress_isP2pkh: (a: number) => number;
|
|
2700
|
-
readonly platformaddress_isP2sh: (a: number) => number;
|
|
2701
|
-
readonly platformaddress_new: (a: any) => [number, number, number];
|
|
2702
|
-
readonly platformaddress_struct_name: () => [number, number];
|
|
2703
|
-
readonly platformaddress_toBech32m: (a: number, b: number, c: number) => [number, number, number, number];
|
|
2704
|
-
readonly platformaddress_toBytes: (a: number) => [number, number];
|
|
2705
|
-
readonly platformaddress_toHex: (a: number) => [number, number];
|
|
2706
|
-
readonly platformaddress_type_name: (a: number) => [number, number];
|
|
2707
|
-
readonly resourcevotechoice_Abstain: () => number;
|
|
2708
|
-
readonly resourcevotechoice_Lock: () => number;
|
|
2709
|
-
readonly resourcevotechoice_TowardsIdentity: (a: any) => [number, number, number];
|
|
2710
|
-
readonly resourcevotechoice_fromJSON: (a: any) => [number, number, number];
|
|
2711
|
-
readonly resourcevotechoice_fromObject: (a: any) => [number, number, number];
|
|
2712
|
-
readonly resourcevotechoice_getType: (a: number) => [number, number];
|
|
2713
|
-
readonly resourcevotechoice_getValue: (a: number) => any;
|
|
2714
|
-
readonly resourcevotechoice_struct_name: () => [number, number];
|
|
2715
|
-
readonly resourcevotechoice_toJSON: (a: number) => [number, number, number];
|
|
2716
|
-
readonly resourcevotechoice_toObject: (a: number) => [number, number, number];
|
|
2717
|
-
readonly resourcevotechoice_type_name: (a: number) => [number, number];
|
|
2718
|
-
readonly tokencontractinfo_contract_id: (a: number) => number;
|
|
2719
|
-
readonly tokencontractinfo_token_contract_position: (a: number) => number;
|
|
2720
|
-
readonly wasmdpperror_code: (a: number) => number;
|
|
2721
|
-
readonly wasmdpperror_kind: (a: number) => number;
|
|
2722
|
-
readonly wasmdpperror_message: (a: number) => [number, number];
|
|
2723
|
-
readonly wasmdpperror_name: (a: number) => [number, number];
|
|
2724
|
-
readonly group_toObject: (a: number) => [number, number, number];
|
|
2725
|
-
readonly __wbg_distributionexponential_free: (a: number, b: number) => void;
|
|
2726
|
-
readonly __wbg_distributionfixedamount_free: (a: number, b: number) => void;
|
|
2727
|
-
readonly __wbg_distributioninvertedlogarithmic_free: (a: number, b: number) => void;
|
|
2728
|
-
readonly __wbg_distributionlinear_free: (a: number, b: number) => void;
|
|
2729
|
-
readonly __wbg_distributionlogarithmic_free: (a: number, b: number) => void;
|
|
2730
|
-
readonly __wbg_distributionpolynomial_free: (a: number, b: number) => void;
|
|
2731
|
-
readonly __wbg_distributionrandom_free: (a: number, b: number) => void;
|
|
2732
|
-
readonly __wbg_distributionstepdecreasingamount_free: (a: number, b: number) => void;
|
|
2733
|
-
readonly __wbg_get_distributionexponential_a: (a: number) => bigint;
|
|
2734
|
-
readonly __wbg_get_distributionexponential_b: (a: number) => bigint;
|
|
2735
|
-
readonly __wbg_get_distributionexponential_d: (a: number) => bigint;
|
|
2736
|
-
readonly __wbg_get_distributionexponential_m: (a: number) => bigint;
|
|
2737
|
-
readonly __wbg_get_distributionexponential_maxValue: (a: number) => [number, bigint];
|
|
2738
|
-
readonly __wbg_get_distributionexponential_minValue: (a: number) => [number, bigint];
|
|
2739
|
-
readonly __wbg_get_distributionexponential_n: (a: number) => bigint;
|
|
2740
|
-
readonly __wbg_get_distributionexponential_o: (a: number) => bigint;
|
|
2741
|
-
readonly __wbg_get_distributionexponential_startMoment: (a: number) => [number, bigint];
|
|
2742
|
-
readonly __wbg_get_distributionfixedamount_amount: (a: number) => bigint;
|
|
2743
|
-
readonly __wbg_get_distributioninvertedlogarithmic_a: (a: number) => bigint;
|
|
2744
|
-
readonly __wbg_get_distributioninvertedlogarithmic_b: (a: number) => bigint;
|
|
2745
|
-
readonly __wbg_get_distributioninvertedlogarithmic_d: (a: number) => bigint;
|
|
2746
|
-
readonly __wbg_get_distributioninvertedlogarithmic_m: (a: number) => bigint;
|
|
2747
|
-
readonly __wbg_get_distributioninvertedlogarithmic_maxValue: (a: number) => [number, bigint];
|
|
2748
|
-
readonly __wbg_get_distributioninvertedlogarithmic_minValue: (a: number) => [number, bigint];
|
|
2749
|
-
readonly __wbg_get_distributioninvertedlogarithmic_n: (a: number) => bigint;
|
|
2750
|
-
readonly __wbg_get_distributioninvertedlogarithmic_o: (a: number) => bigint;
|
|
2751
|
-
readonly __wbg_get_distributioninvertedlogarithmic_startMoment: (a: number) => [number, bigint];
|
|
2752
|
-
readonly __wbg_get_distributionlinear_a: (a: number) => bigint;
|
|
2753
|
-
readonly __wbg_get_distributionlinear_d: (a: number) => bigint;
|
|
2754
|
-
readonly __wbg_get_distributionlinear_maxValue: (a: number) => [number, bigint];
|
|
2755
|
-
readonly __wbg_get_distributionlinear_minValue: (a: number) => [number, bigint];
|
|
2756
|
-
readonly __wbg_get_distributionlinear_startStep: (a: number) => [number, bigint];
|
|
2757
|
-
readonly __wbg_get_distributionlinear_startingAmount: (a: number) => bigint;
|
|
2758
|
-
readonly __wbg_get_distributionlogarithmic_a: (a: number) => bigint;
|
|
2759
|
-
readonly __wbg_get_distributionlogarithmic_b: (a: number) => bigint;
|
|
2760
|
-
readonly __wbg_get_distributionlogarithmic_d: (a: number) => bigint;
|
|
2761
|
-
readonly __wbg_get_distributionlogarithmic_m: (a: number) => bigint;
|
|
2762
|
-
readonly __wbg_get_distributionlogarithmic_maxValue: (a: number) => [number, bigint];
|
|
2763
|
-
readonly __wbg_get_distributionlogarithmic_minValue: (a: number) => [number, bigint];
|
|
2764
|
-
readonly __wbg_get_distributionlogarithmic_n: (a: number) => bigint;
|
|
2765
|
-
readonly __wbg_get_distributionlogarithmic_o: (a: number) => bigint;
|
|
2766
|
-
readonly __wbg_get_distributionlogarithmic_startMoment: (a: number) => [number, bigint];
|
|
2767
|
-
readonly __wbg_get_distributionpolynomial_a: (a: number) => bigint;
|
|
2768
|
-
readonly __wbg_get_distributionpolynomial_b: (a: number) => bigint;
|
|
2769
|
-
readonly __wbg_get_distributionpolynomial_d: (a: number) => bigint;
|
|
2770
|
-
readonly __wbg_get_distributionpolynomial_m: (a: number) => bigint;
|
|
2771
|
-
readonly __wbg_get_distributionpolynomial_maxValue: (a: number) => [number, bigint];
|
|
2772
|
-
readonly __wbg_get_distributionpolynomial_minValue: (a: number) => [number, bigint];
|
|
2773
|
-
readonly __wbg_get_distributionpolynomial_n: (a: number) => bigint;
|
|
2774
|
-
readonly __wbg_get_distributionpolynomial_o: (a: number) => bigint;
|
|
2775
|
-
readonly __wbg_get_distributionpolynomial_startMoment: (a: number) => [number, bigint];
|
|
2776
|
-
readonly __wbg_get_distributionrandom_max: (a: number) => bigint;
|
|
2777
|
-
readonly __wbg_get_distributionrandom_min: (a: number) => bigint;
|
|
2778
|
-
readonly __wbg_get_distributionstepdecreasingamount_decreasePerIntervalDenominator: (a: number) => number;
|
|
2779
|
-
readonly __wbg_get_distributionstepdecreasingamount_decreasePerIntervalNumerator: (a: number) => number;
|
|
2780
|
-
readonly __wbg_get_distributionstepdecreasingamount_distributionStartAmount: (a: number) => bigint;
|
|
2781
|
-
readonly __wbg_get_distributionstepdecreasingamount_maxIntervalCount: (a: number) => number;
|
|
2782
|
-
readonly __wbg_get_distributionstepdecreasingamount_minValue: (a: number) => [number, bigint];
|
|
2783
|
-
readonly __wbg_get_distributionstepdecreasingamount_startDecreasingOffset: (a: number) => [number, bigint];
|
|
2784
|
-
readonly __wbg_get_distributionstepdecreasingamount_stepCount: (a: number) => number;
|
|
2785
|
-
readonly __wbg_get_distributionstepdecreasingamount_trailingDistributionIntervalAmount: (a: number) => bigint;
|
|
2786
|
-
readonly __wbg_privateencryptednote_free: (a: number, b: number) => void;
|
|
2787
|
-
readonly __wbg_set_distributionexponential_a: (a: number, b: bigint) => void;
|
|
2788
|
-
readonly __wbg_set_distributionexponential_b: (a: number, b: bigint) => void;
|
|
2789
|
-
readonly __wbg_set_distributionexponential_d: (a: number, b: bigint) => void;
|
|
2790
|
-
readonly __wbg_set_distributionexponential_m: (a: number, b: bigint) => void;
|
|
2791
|
-
readonly __wbg_set_distributionexponential_maxValue: (a: number, b: number, c: bigint) => void;
|
|
2792
|
-
readonly __wbg_set_distributionexponential_minValue: (a: number, b: number, c: bigint) => void;
|
|
2793
|
-
readonly __wbg_set_distributionexponential_n: (a: number, b: bigint) => void;
|
|
2794
|
-
readonly __wbg_set_distributionexponential_o: (a: number, b: bigint) => void;
|
|
2795
|
-
readonly __wbg_set_distributionexponential_startMoment: (a: number, b: number, c: bigint) => void;
|
|
2796
|
-
readonly __wbg_set_distributionfixedamount_amount: (a: number, b: bigint) => void;
|
|
2797
|
-
readonly __wbg_set_distributionrandom_max: (a: number, b: bigint) => void;
|
|
2798
|
-
readonly __wbg_set_distributionstepdecreasingamount_decreasePerIntervalDenominator: (a: number, b: number) => void;
|
|
2799
|
-
readonly __wbg_set_distributionstepdecreasingamount_decreasePerIntervalNumerator: (a: number, b: number) => void;
|
|
2800
|
-
readonly __wbg_set_distributionstepdecreasingamount_distributionStartAmount: (a: number, b: bigint) => void;
|
|
2801
|
-
readonly __wbg_set_distributionstepdecreasingamount_maxIntervalCount: (a: number, b: number) => void;
|
|
2802
|
-
readonly __wbg_set_distributionstepdecreasingamount_stepCount: (a: number, b: number) => void;
|
|
2803
|
-
readonly __wbg_set_distributionstepdecreasingamount_trailingDistributionIntervalAmount: (a: number, b: bigint) => void;
|
|
2804
|
-
readonly __wbg_sharedencryptednote_free: (a: number, b: number) => void;
|
|
2805
|
-
readonly __wbg_tokenconfigupdatetransition_free: (a: number, b: number) => void;
|
|
2806
|
-
readonly __wbg_tokenconfiguration_free: (a: number, b: number) => void;
|
|
2807
|
-
readonly __wbg_tokenconfigurationchangeitem_free: (a: number, b: number) => void;
|
|
2808
|
-
readonly __wbg_tokendestroyfrozenfundstransition_free: (a: number, b: number) => void;
|
|
2809
|
-
readonly __wbg_tokenemergencyactiontransition_free: (a: number, b: number) => void;
|
|
2810
|
-
readonly __wbg_tokenfreezetransition_free: (a: number, b: number) => void;
|
|
2811
|
-
readonly __wbg_tokenmarketplacerules_free: (a: number, b: number) => void;
|
|
2812
|
-
readonly __wbg_tokenminttransition_free: (a: number, b: number) => void;
|
|
2813
|
-
readonly __wbg_tokentrademode_free: (a: number, b: number) => void;
|
|
2814
|
-
readonly __wbg_tokentransfertransition_free: (a: number, b: number) => void;
|
|
2815
|
-
readonly __wbg_tokentransition_free: (a: number, b: number) => void;
|
|
2948
|
+
readonly platformaddresssigner_addKey: (a: number, b: number) => [number, number, number];
|
|
2949
|
+
readonly platformaddresssigner_getPrivateKeysBytes: (a: number) => [number, number, number];
|
|
2950
|
+
readonly platformaddresssigner_hasKey: (a: number, b: any) => [number, number, number];
|
|
2951
|
+
readonly platformaddresssigner_key_count: (a: number) => number;
|
|
2952
|
+
readonly platformaddresssigner_new: () => number;
|
|
2953
|
+
readonly platformaddresssigner_struct_name: () => [number, number];
|
|
2954
|
+
readonly platformaddresssigner_type_name: (a: number) => [number, number];
|
|
2816
2955
|
readonly privateencryptednote_derivation_encryption_key_index: (a: number) => number;
|
|
2817
2956
|
readonly privateencryptednote_new: (a: number, b: number, c: number, d: number) => number;
|
|
2818
2957
|
readonly privateencryptednote_root_encryption_key_index: (a: number) => number;
|
|
@@ -2822,6 +2961,16 @@ export interface InitOutput {
|
|
|
2822
2961
|
readonly privateencryptednote_struct_name: () => [number, number];
|
|
2823
2962
|
readonly privateencryptednote_type_name: (a: number) => [number, number];
|
|
2824
2963
|
readonly privateencryptednote_value: (a: number) => [number, number];
|
|
2964
|
+
readonly privatekey_WIF: (a: number) => [number, number];
|
|
2965
|
+
readonly privatekey_fromBytes: (a: number, b: number, c: any) => [number, number, number];
|
|
2966
|
+
readonly privatekey_fromHex: (a: number, b: number, c: any) => [number, number, number];
|
|
2967
|
+
readonly privatekey_fromWIF: (a: number, b: number) => [number, number, number];
|
|
2968
|
+
readonly privatekey_getPublicKey: (a: number) => number;
|
|
2969
|
+
readonly privatekey_getPublicKeyHash: (a: number) => [number, number];
|
|
2970
|
+
readonly privatekey_struct_name: () => [number, number];
|
|
2971
|
+
readonly privatekey_toBytes: (a: number) => [number, number];
|
|
2972
|
+
readonly privatekey_toHex: (a: number) => [number, number];
|
|
2973
|
+
readonly privatekey_type_name: (a: number) => [number, number];
|
|
2825
2974
|
readonly sharedencryptednote_recipient_key_index: (a: number) => number;
|
|
2826
2975
|
readonly sharedencryptednote_sender_key_index: (a: number) => number;
|
|
2827
2976
|
readonly sharedencryptednote_set_recipient_key_index: (a: number, b: number) => void;
|
|
@@ -2830,106 +2979,44 @@ export interface InitOutput {
|
|
|
2830
2979
|
readonly sharedencryptednote_struct_name: () => [number, number];
|
|
2831
2980
|
readonly sharedencryptednote_type_name: (a: number) => [number, number];
|
|
2832
2981
|
readonly sharedencryptednote_value: (a: number) => [number, number];
|
|
2833
|
-
readonly
|
|
2834
|
-
readonly
|
|
2835
|
-
readonly
|
|
2836
|
-
readonly
|
|
2837
|
-
readonly
|
|
2838
|
-
readonly
|
|
2839
|
-
readonly
|
|
2840
|
-
readonly
|
|
2841
|
-
readonly
|
|
2842
|
-
readonly
|
|
2843
|
-
readonly
|
|
2844
|
-
readonly
|
|
2845
|
-
readonly
|
|
2846
|
-
readonly
|
|
2847
|
-
readonly
|
|
2848
|
-
readonly
|
|
2849
|
-
readonly
|
|
2850
|
-
readonly
|
|
2851
|
-
readonly
|
|
2852
|
-
readonly
|
|
2853
|
-
readonly
|
|
2854
|
-
readonly
|
|
2855
|
-
readonly
|
|
2856
|
-
readonly
|
|
2857
|
-
readonly
|
|
2858
|
-
readonly
|
|
2859
|
-
readonly
|
|
2860
|
-
readonly
|
|
2861
|
-
readonly
|
|
2862
|
-
readonly
|
|
2863
|
-
readonly
|
|
2864
|
-
readonly
|
|
2865
|
-
readonly
|
|
2866
|
-
readonly
|
|
2867
|
-
readonly
|
|
2868
|
-
readonly
|
|
2869
|
-
readonly
|
|
2870
|
-
readonly
|
|
2871
|
-
readonly tokenconfiguration_set_is_allowed_transfer_to_frozen_balance: (a: number, b: number) => void;
|
|
2872
|
-
readonly tokenconfiguration_set_keeps_history: (a: number, b: number) => void;
|
|
2873
|
-
readonly tokenconfiguration_set_main_control_group: (a: number, b: number) => void;
|
|
2874
|
-
readonly tokenconfiguration_set_main_control_group_can_be_modified: (a: number, b: number) => void;
|
|
2875
|
-
readonly tokenconfiguration_set_manual_burning_rules: (a: number, b: number) => void;
|
|
2876
|
-
readonly tokenconfiguration_set_manual_minting_rules: (a: number, b: number) => void;
|
|
2877
|
-
readonly tokenconfiguration_set_marketplace_rules: (a: number, b: number) => void;
|
|
2878
|
-
readonly tokenconfiguration_set_max_supply: (a: number, b: number, c: bigint) => void;
|
|
2879
|
-
readonly tokenconfiguration_set_max_supply_change_rules: (a: number, b: number) => void;
|
|
2880
|
-
readonly tokenconfiguration_set_start_as_paused: (a: number, b: number) => void;
|
|
2881
|
-
readonly tokenconfiguration_set_unfreeze_rules: (a: number, b: number) => void;
|
|
2882
|
-
readonly tokenconfiguration_struct_name: () => [number, number];
|
|
2883
|
-
readonly tokenconfiguration_type_name: (a: number) => [number, number];
|
|
2884
|
-
readonly tokenconfigurationchangeitem_getItem: (a: number) => any;
|
|
2885
|
-
readonly tokenconfigurationchangeitem_getItemName: (a: number) => [number, number];
|
|
2886
|
-
readonly tokenconfigurationchangeitem_struct_name: () => [number, number];
|
|
2887
|
-
readonly tokenconfigurationchangeitem_type_name: (a: number) => [number, number];
|
|
2888
|
-
readonly tokendestroyfrozenfundstransition_get_base: (a: number) => number;
|
|
2889
|
-
readonly tokendestroyfrozenfundstransition_get_frozen_identity_id: (a: number) => number;
|
|
2890
|
-
readonly tokendestroyfrozenfundstransition_get_public_note: (a: number) => [number, number];
|
|
2891
|
-
readonly tokendestroyfrozenfundstransition_new: (a: number, b: any, c: number, d: number) => [number, number, number];
|
|
2892
|
-
readonly tokendestroyfrozenfundstransition_set_base: (a: number, b: number) => void;
|
|
2893
|
-
readonly tokendestroyfrozenfundstransition_set_frozen_identity_id: (a: number, b: any) => [number, number];
|
|
2894
|
-
readonly tokendestroyfrozenfundstransition_set_public_note: (a: number, b: number, c: number) => void;
|
|
2895
|
-
readonly tokendestroyfrozenfundstransition_struct_name: () => [number, number];
|
|
2896
|
-
readonly tokendestroyfrozenfundstransition_type_name: (a: number) => [number, number];
|
|
2897
|
-
readonly tokenemergencyactiontransition_get_base: (a: number) => number;
|
|
2898
|
-
readonly tokenemergencyactiontransition_get_emergency_action: (a: number) => [number, number];
|
|
2899
|
-
readonly tokenemergencyactiontransition_get_public_note: (a: number) => [number, number];
|
|
2900
|
-
readonly tokenemergencyactiontransition_new: (a: number, b: number, c: number, d: number) => number;
|
|
2901
|
-
readonly tokenemergencyactiontransition_set_base: (a: number, b: number) => void;
|
|
2902
|
-
readonly tokenemergencyactiontransition_set_emergency_action: (a: number, b: number) => void;
|
|
2903
|
-
readonly tokenemergencyactiontransition_set_public_note: (a: number, b: number, c: number) => void;
|
|
2904
|
-
readonly tokenemergencyactiontransition_struct_name: () => [number, number];
|
|
2905
|
-
readonly tokenemergencyactiontransition_type_name: (a: number) => [number, number];
|
|
2906
|
-
readonly tokenfreezetransition_get_base: (a: number) => number;
|
|
2907
|
-
readonly tokenfreezetransition_get_frozen_identity_id: (a: number) => number;
|
|
2908
|
-
readonly tokenfreezetransition_get_public_note: (a: number) => [number, number];
|
|
2909
|
-
readonly tokenfreezetransition_set_base: (a: number, b: number) => void;
|
|
2910
|
-
readonly tokenfreezetransition_set_frozen_identity_id: (a: number, b: any) => [number, number];
|
|
2911
|
-
readonly tokenfreezetransition_set_public_note: (a: number, b: number, c: number) => void;
|
|
2912
|
-
readonly tokenfreezetransition_struct_name: () => [number, number];
|
|
2913
|
-
readonly tokenfreezetransition_type_name: (a: number) => [number, number];
|
|
2914
|
-
readonly tokenmarketplacerules_new: (a: number, b: number) => number;
|
|
2915
|
-
readonly tokenmarketplacerules_set_trade_mode: (a: number, b: number) => void;
|
|
2916
|
-
readonly tokenmarketplacerules_set_trade_mode_change_rules: (a: number, b: number) => void;
|
|
2917
|
-
readonly tokenmarketplacerules_struct_name: () => [number, number];
|
|
2918
|
-
readonly tokenmarketplacerules_trade_mode: (a: number) => number;
|
|
2919
|
-
readonly tokenmarketplacerules_trade_mode_change_rules: (a: number) => number;
|
|
2920
|
-
readonly tokenmarketplacerules_type_name: (a: number) => [number, number];
|
|
2921
|
-
readonly tokenminttransition_getRecipientId: (a: number, b: number) => [number, number, number];
|
|
2922
|
-
readonly tokenminttransition_get_amount: (a: number) => bigint;
|
|
2923
|
-
readonly tokenminttransition_get_base: (a: number) => number;
|
|
2924
|
-
readonly tokenminttransition_get_public_note: (a: number) => [number, number];
|
|
2925
|
-
readonly tokenminttransition_issued_to_identity_id: (a: number) => number;
|
|
2926
|
-
readonly tokenminttransition_new: (a: number, b: any, c: bigint, d: number, e: number) => [number, number, number];
|
|
2927
|
-
readonly tokenminttransition_set_amount: (a: number, b: bigint) => void;
|
|
2928
|
-
readonly tokenminttransition_set_base: (a: number, b: number) => void;
|
|
2929
|
-
readonly tokenminttransition_set_issued_to_identity_id: (a: number, b: any) => [number, number];
|
|
2930
|
-
readonly tokenminttransition_set_public_note: (a: number, b: number, c: number) => void;
|
|
2931
|
-
readonly tokenminttransition_struct_name: () => [number, number];
|
|
2932
|
-
readonly tokenminttransition_type_name: (a: number) => [number, number];
|
|
2982
|
+
readonly tokenconfigurationchangeitem_ConventionsAdminGroupItem: (a: number) => number;
|
|
2983
|
+
readonly tokenconfigurationchangeitem_ConventionsControlGroupItem: (a: number) => number;
|
|
2984
|
+
readonly tokenconfigurationchangeitem_DestroyFrozenFundsAdminGroupItem: (a: number) => number;
|
|
2985
|
+
readonly tokenconfigurationchangeitem_DestroyFrozenFundsItem: (a: number) => number;
|
|
2986
|
+
readonly tokenconfigurationchangeitem_EmergencyActionAdminGroupItem: (a: number) => number;
|
|
2987
|
+
readonly tokenconfigurationchangeitem_EmergencyActionItem: (a: number) => number;
|
|
2988
|
+
readonly tokenconfigurationchangeitem_FreezeAdminGroupItem: (a: number) => number;
|
|
2989
|
+
readonly tokenconfigurationchangeitem_FreezeItem: (a: number) => number;
|
|
2990
|
+
readonly tokenconfigurationchangeitem_ManualBurningAdminGroupItem: (a: number) => number;
|
|
2991
|
+
readonly tokenconfigurationchangeitem_ManualBurningItem: (a: number) => number;
|
|
2992
|
+
readonly tokenconfigurationchangeitem_ManualMintingAdminGroupItem: (a: number) => number;
|
|
2993
|
+
readonly tokenconfigurationchangeitem_ManualMintingItem: (a: number) => number;
|
|
2994
|
+
readonly tokenconfigurationchangeitem_MarketplaceTradeModeAdminGroupItem: (a: number) => number;
|
|
2995
|
+
readonly tokenconfigurationchangeitem_MarketplaceTradeModeControlGroupItem: (a: number) => number;
|
|
2996
|
+
readonly tokenconfigurationchangeitem_MarketplaceTradeModeItem: (a: number) => number;
|
|
2997
|
+
readonly tokenconfigurationchangeitem_MaxSupplyAdminGroupItem: (a: number) => number;
|
|
2998
|
+
readonly tokenconfigurationchangeitem_MaxSupplyControlGroupItem: (a: number) => number;
|
|
2999
|
+
readonly tokenconfigurationchangeitem_MaxSupplyItem: (a: number, b: bigint) => number;
|
|
3000
|
+
readonly tokenconfigurationchangeitem_MintingAllowChoosingDestinationAdminGroupItem: (a: number) => number;
|
|
3001
|
+
readonly tokenconfigurationchangeitem_MintingAllowChoosingDestinationControlGroupItem: (a: number) => number;
|
|
3002
|
+
readonly tokenconfigurationchangeitem_MintingAllowChoosingDestinationItem: (a: number) => number;
|
|
3003
|
+
readonly tokenconfigurationchangeitem_NewTokensDestinationIdentityAdminGroupItem: (a: number) => number;
|
|
3004
|
+
readonly tokenconfigurationchangeitem_NewTokensDestinationIdentityControlGroupItem: (a: number) => number;
|
|
3005
|
+
readonly tokenconfigurationchangeitem_NewTokensDestinationIdentityItem: (a: any) => [number, number, number];
|
|
3006
|
+
readonly tokenconfigurationchangeitem_PerpetualDistributionAdminGroupItem: (a: number) => number;
|
|
3007
|
+
readonly tokenconfigurationchangeitem_PerpetualDistributionConfigurationItem: (a: any) => number;
|
|
3008
|
+
readonly tokenconfigurationchangeitem_PerpetualDistributionControlGroupItem: (a: number) => number;
|
|
3009
|
+
readonly tokenconfigurationchangeitem_UnfreezeAdminGroupItem: (a: number) => number;
|
|
3010
|
+
readonly tokenconfigurationchangeitem_UnfreezeItem: (a: number) => number;
|
|
3011
|
+
readonly tokenconfigurationchangeitem_conventionsItem: (a: number) => number;
|
|
3012
|
+
readonly tokenconfigurationconvention_decimals: (a: number) => number;
|
|
3013
|
+
readonly tokenconfigurationconvention_localizations: (a: number) => [number, number, number];
|
|
3014
|
+
readonly tokenconfigurationconvention_new: (a: any, b: number) => [number, number, number];
|
|
3015
|
+
readonly tokenconfigurationconvention_set_decimals: (a: number, b: number) => void;
|
|
3016
|
+
readonly tokenconfigurationconvention_set_localizations: (a: number, b: any) => [number, number];
|
|
3017
|
+
readonly tokenconfigurationconvention_struct_name: () => [number, number];
|
|
3018
|
+
readonly tokenconfigurationconvention_type_name: (a: number) => [number, number];
|
|
3019
|
+
readonly tokenstatus_paused: (a: number) => number;
|
|
2933
3020
|
readonly tokentrademode_getValue: (a: number) => [number, number];
|
|
2934
3021
|
readonly tokentrademode_struct_name: () => [number, number];
|
|
2935
3022
|
readonly tokentrademode_type_name: (a: number) => [number, number];
|
|
@@ -2948,108 +3035,40 @@ export interface InitOutput {
|
|
|
2948
3035
|
readonly tokentransfertransition_set_shared_encrypted_note: (a: number, b: any) => [number, number];
|
|
2949
3036
|
readonly tokentransfertransition_struct_name: () => [number, number];
|
|
2950
3037
|
readonly tokentransfertransition_type_name: (a: number) => [number, number];
|
|
2951
|
-
readonly
|
|
2952
|
-
readonly
|
|
2953
|
-
readonly
|
|
2954
|
-
readonly
|
|
2955
|
-
readonly
|
|
2956
|
-
readonly
|
|
2957
|
-
readonly
|
|
2958
|
-
readonly
|
|
2959
|
-
readonly
|
|
2960
|
-
readonly
|
|
2961
|
-
readonly
|
|
2962
|
-
readonly
|
|
2963
|
-
readonly
|
|
2964
|
-
readonly
|
|
2965
|
-
readonly
|
|
2966
|
-
readonly
|
|
2967
|
-
readonly
|
|
2968
|
-
readonly
|
|
2969
|
-
readonly
|
|
2970
|
-
readonly
|
|
2971
|
-
readonly
|
|
2972
|
-
readonly
|
|
2973
|
-
readonly
|
|
2974
|
-
readonly
|
|
2975
|
-
readonly
|
|
2976
|
-
readonly
|
|
2977
|
-
readonly
|
|
2978
|
-
readonly __wbg_set_distributionlogarithmic_n: (a: number, b: bigint) => void;
|
|
2979
|
-
readonly __wbg_set_distributionlogarithmic_o: (a: number, b: bigint) => void;
|
|
2980
|
-
readonly __wbg_set_distributionpolynomial_a: (a: number, b: bigint) => void;
|
|
2981
|
-
readonly __wbg_set_distributionpolynomial_b: (a: number, b: bigint) => void;
|
|
2982
|
-
readonly __wbg_set_distributionpolynomial_d: (a: number, b: bigint) => void;
|
|
2983
|
-
readonly __wbg_set_distributionpolynomial_m: (a: number, b: bigint) => void;
|
|
2984
|
-
readonly __wbg_set_distributionpolynomial_n: (a: number, b: bigint) => void;
|
|
2985
|
-
readonly __wbg_set_distributionpolynomial_o: (a: number, b: bigint) => void;
|
|
2986
|
-
readonly __wbg_set_distributionrandom_min: (a: number, b: bigint) => void;
|
|
2987
|
-
readonly tokenfreezetransition_new: (a: number, b: any, c: number, d: number) => [number, number, number];
|
|
2988
|
-
readonly sharedencryptednote_new: (a: number, b: number, c: number, d: number) => number;
|
|
2989
|
-
readonly __wbg_set_distributioninvertedlogarithmic_maxValue: (a: number, b: number, c: bigint) => void;
|
|
2990
|
-
readonly __wbg_set_distributioninvertedlogarithmic_minValue: (a: number, b: number, c: bigint) => void;
|
|
2991
|
-
readonly __wbg_set_distributioninvertedlogarithmic_startMoment: (a: number, b: number, c: bigint) => void;
|
|
2992
|
-
readonly __wbg_set_distributionlinear_maxValue: (a: number, b: number, c: bigint) => void;
|
|
2993
|
-
readonly __wbg_set_distributionlinear_minValue: (a: number, b: number, c: bigint) => void;
|
|
2994
|
-
readonly __wbg_set_distributionlinear_startStep: (a: number, b: number, c: bigint) => void;
|
|
2995
|
-
readonly __wbg_set_distributionlogarithmic_maxValue: (a: number, b: number, c: bigint) => void;
|
|
2996
|
-
readonly __wbg_set_distributionlogarithmic_minValue: (a: number, b: number, c: bigint) => void;
|
|
2997
|
-
readonly __wbg_set_distributionlogarithmic_startMoment: (a: number, b: number, c: bigint) => void;
|
|
2998
|
-
readonly __wbg_set_distributionpolynomial_maxValue: (a: number, b: number, c: bigint) => void;
|
|
2999
|
-
readonly __wbg_set_distributionpolynomial_minValue: (a: number, b: number, c: bigint) => void;
|
|
3000
|
-
readonly __wbg_set_distributionpolynomial_startMoment: (a: number, b: number, c: bigint) => void;
|
|
3001
|
-
readonly __wbg_set_distributionstepdecreasingamount_minValue: (a: number, b: number, c: bigint) => void;
|
|
3002
|
-
readonly __wbg_set_distributionstepdecreasingamount_startDecreasingOffset: (a: number, b: number, c: bigint) => void;
|
|
3003
|
-
readonly tokentrademode_NotTradeable: () => number;
|
|
3004
|
-
readonly tokenconfigurationchangeitem_MainControlGroupItem: (a: number) => number;
|
|
3005
|
-
readonly __wbg_extendedepochinfo_free: (a: number, b: number) => void;
|
|
3006
|
-
readonly __wbg_feestrategystep_free: (a: number, b: number) => void;
|
|
3007
|
-
readonly __wbg_tokenevent_free: (a: number, b: number) => void;
|
|
3008
|
-
readonly extendedepochinfo_fee_multiplier: (a: number) => number;
|
|
3009
|
-
readonly extendedepochinfo_fee_multiplier_permille: (a: number) => bigint;
|
|
3010
|
-
readonly extendedepochinfo_first_block_height: (a: number) => any;
|
|
3011
|
-
readonly extendedepochinfo_first_block_time: (a: number) => any;
|
|
3012
|
-
readonly extendedepochinfo_first_core_block_height: (a: number) => number;
|
|
3013
|
-
readonly extendedepochinfo_fromJSON: (a: any) => [number, number, number];
|
|
3014
|
-
readonly extendedepochinfo_fromObject: (a: any) => [number, number, number];
|
|
3015
|
-
readonly extendedepochinfo_index: (a: number) => number;
|
|
3016
|
-
readonly extendedepochinfo_new: (a: number, b: bigint, c: bigint, d: number, e: bigint, f: number) => number;
|
|
3017
|
-
readonly extendedepochinfo_protocol_version: (a: number) => number;
|
|
3018
|
-
readonly extendedepochinfo_set_fee_multiplier_permille: (a: number, b: bigint) => void;
|
|
3019
|
-
readonly extendedepochinfo_set_first_block_height: (a: number, b: bigint) => void;
|
|
3020
|
-
readonly extendedepochinfo_set_first_block_time: (a: number, b: bigint) => void;
|
|
3021
|
-
readonly extendedepochinfo_set_first_core_block_height: (a: number, b: number) => void;
|
|
3022
|
-
readonly extendedepochinfo_set_index: (a: number, b: number) => void;
|
|
3023
|
-
readonly extendedepochinfo_set_protocol_version: (a: number, b: number) => void;
|
|
3024
|
-
readonly extendedepochinfo_struct_name: () => [number, number];
|
|
3025
|
-
readonly extendedepochinfo_toJSON: (a: number) => [number, number, number];
|
|
3026
|
-
readonly extendedepochinfo_toObject: (a: number) => [number, number, number];
|
|
3027
|
-
readonly extendedepochinfo_type_name: (a: number) => [number, number];
|
|
3028
|
-
readonly feestrategystep_deductFromInput: (a: number) => number;
|
|
3029
|
-
readonly feestrategystep_index: (a: number) => number;
|
|
3030
|
-
readonly feestrategystep_isDeductFromInput: (a: number) => number;
|
|
3031
|
-
readonly feestrategystep_isReduceOutput: (a: number) => number;
|
|
3032
|
-
readonly feestrategystep_reduceOutput: (a: number) => number;
|
|
3033
|
-
readonly tokenevent_fromJSON: (a: any) => [number, number, number];
|
|
3034
|
-
readonly tokenevent_fromObject: (a: any) => [number, number, number];
|
|
3035
|
-
readonly tokenevent_struct_name: (a: number) => [number, number];
|
|
3036
|
-
readonly tokenevent_toJSON: (a: number) => [number, number, number];
|
|
3037
|
-
readonly tokenevent_toObject: (a: number) => [number, number, number];
|
|
3038
|
-
readonly tokenevent_variant: (a: number) => number;
|
|
3039
|
-
readonly tokenevent_type_name: (a: number) => [number, number];
|
|
3038
|
+
readonly tokenunfreezetransition_get_base: (a: number) => number;
|
|
3039
|
+
readonly tokenunfreezetransition_get_frozen_identity_id: (a: number) => number;
|
|
3040
|
+
readonly tokenunfreezetransition_get_public_note: (a: number) => [number, number];
|
|
3041
|
+
readonly tokenunfreezetransition_new: (a: number, b: any, c: number, d: number) => [number, number, number];
|
|
3042
|
+
readonly tokenunfreezetransition_set_base: (a: number, b: number) => void;
|
|
3043
|
+
readonly tokenunfreezetransition_set_frozen_identity_id: (a: number, b: any) => [number, number];
|
|
3044
|
+
readonly tokenunfreezetransition_set_public_note: (a: number, b: number, c: number) => void;
|
|
3045
|
+
readonly tokenunfreezetransition_struct_name: () => [number, number];
|
|
3046
|
+
readonly tokenunfreezetransition_type_name: (a: number) => [number, number];
|
|
3047
|
+
readonly votepoll_contract_id: (a: number) => number;
|
|
3048
|
+
readonly votepoll_document_type_name: (a: number) => [number, number];
|
|
3049
|
+
readonly votepoll_fromJSON: (a: any) => [number, number, number];
|
|
3050
|
+
readonly votepoll_fromObject: (a: any) => [number, number, number];
|
|
3051
|
+
readonly votepoll_index_name: (a: number) => [number, number];
|
|
3052
|
+
readonly votepoll_index_values: (a: number) => [number, number, number];
|
|
3053
|
+
readonly votepoll_new: (a: any, b: number, c: number, d: number, e: number, f: any) => [number, number, number];
|
|
3054
|
+
readonly votepoll_set_contract_id: (a: number, b: any) => [number, number];
|
|
3055
|
+
readonly votepoll_set_document_type_name: (a: number, b: number, c: number) => void;
|
|
3056
|
+
readonly votepoll_set_index_name: (a: number, b: number, c: number) => void;
|
|
3057
|
+
readonly votepoll_set_index_values: (a: number, b: any) => [number, number];
|
|
3058
|
+
readonly votepoll_struct_name: () => [number, number];
|
|
3059
|
+
readonly votepoll_toJSON: (a: number) => [number, number, number];
|
|
3060
|
+
readonly votepoll_toObject: (a: number) => [number, number, number];
|
|
3061
|
+
readonly votepoll_toString: (a: number) => [number, number];
|
|
3062
|
+
readonly votepoll_type_name: (a: number) => [number, number];
|
|
3063
|
+
readonly sharedencryptednote_new: (a: number, b: number, c: number, d: number) => number;
|
|
3064
|
+
readonly tokentrademode_NotTradeable: () => number;
|
|
3040
3065
|
readonly __wbg_batchedtransition_free: (a: number, b: number) => void;
|
|
3041
3066
|
readonly __wbg_batchtransition_free: (a: number, b: number) => void;
|
|
3042
3067
|
readonly __wbg_datacontract_free: (a: number, b: number) => void;
|
|
3043
3068
|
readonly __wbg_document_free: (a: number, b: number) => void;
|
|
3044
|
-
readonly __wbg_documentdeletetransition_free: (a: number, b: number) => void;
|
|
3045
|
-
readonly __wbg_documenttransition_free: (a: number, b: number) => void;
|
|
3046
|
-
readonly __wbg_groupaction_free: (a: number, b: number) => void;
|
|
3047
|
-
readonly __wbg_groupactionevent_free: (a: number, b: number) => void;
|
|
3048
3069
|
readonly __wbg_masternodevotetransition_free: (a: number, b: number) => void;
|
|
3049
|
-
readonly
|
|
3050
|
-
readonly
|
|
3051
|
-
readonly __wbg_tokenpricingschedule_free: (a: number, b: number) => void;
|
|
3052
|
-
readonly __wbg_tokensetpricefordirectpurchasetransition_free: (a: number, b: number) => void;
|
|
3070
|
+
readonly __wbg_resourcevote_free: (a: number, b: number) => void;
|
|
3071
|
+
readonly __wbg_vote_free: (a: number, b: number) => void;
|
|
3053
3072
|
readonly batchedtransition_data_contract_id: (a: number) => number;
|
|
3054
3073
|
readonly batchedtransition_new: (a: any) => [number, number, number];
|
|
3055
3074
|
readonly batchedtransition_set_data_contract_id: (a: number, b: any) => [number, number];
|
|
@@ -3156,51 +3175,6 @@ export interface InitOutput {
|
|
|
3156
3175
|
readonly document_toJSON: (a: number) => [number, number, number];
|
|
3157
3176
|
readonly document_toObject: (a: number) => [number, number, number];
|
|
3158
3177
|
readonly document_type_name: (a: number) => [number, number];
|
|
3159
|
-
readonly documentdeletetransition_fromDocumentTransition: (a: number) => [number, number, number];
|
|
3160
|
-
readonly documentdeletetransition_get_base: (a: number) => number;
|
|
3161
|
-
readonly documentdeletetransition_new: (a: number, b: bigint, c: any) => [number, number, number];
|
|
3162
|
-
readonly documentdeletetransition_set_base: (a: number, b: number) => void;
|
|
3163
|
-
readonly documentdeletetransition_struct_name: () => [number, number];
|
|
3164
|
-
readonly documentdeletetransition_toDocumentTransition: (a: number) => number;
|
|
3165
|
-
readonly documentdeletetransition_type_name: (a: number) => [number, number];
|
|
3166
|
-
readonly documenttransition_get_action_type: (a: number) => [number, number];
|
|
3167
|
-
readonly documenttransition_get_action_type_number: (a: number) => number;
|
|
3168
|
-
readonly documenttransition_get_create_transition: (a: number) => [number, number, number];
|
|
3169
|
-
readonly documenttransition_get_data_contract_id: (a: number) => number;
|
|
3170
|
-
readonly documenttransition_get_delete_transition: (a: number) => [number, number, number];
|
|
3171
|
-
readonly documenttransition_get_document_type_name: (a: number) => [number, number];
|
|
3172
|
-
readonly documenttransition_get_entropy: (a: number) => [number, number];
|
|
3173
|
-
readonly documenttransition_get_id: (a: number) => number;
|
|
3174
|
-
readonly documenttransition_get_identity_contract_nonce: (a: number) => bigint;
|
|
3175
|
-
readonly documenttransition_get_purchase_transition: (a: number) => [number, number, number];
|
|
3176
|
-
readonly documenttransition_get_replace_transition: (a: number) => [number, number, number];
|
|
3177
|
-
readonly documenttransition_get_revision: (a: number) => [number, bigint];
|
|
3178
|
-
readonly documenttransition_get_transfer_transition: (a: number) => [number, number, number];
|
|
3179
|
-
readonly documenttransition_get_update_price_transition: (a: number) => [number, number, number];
|
|
3180
|
-
readonly documenttransition_set_data_contract_id: (a: number, b: any) => [number, number];
|
|
3181
|
-
readonly documenttransition_set_identity_contract_nonce: (a: number, b: bigint) => void;
|
|
3182
|
-
readonly documenttransition_set_revision: (a: number, b: bigint) => void;
|
|
3183
|
-
readonly documenttransition_struct_name: () => [number, number];
|
|
3184
|
-
readonly documenttransition_type_name: (a: number) => [number, number];
|
|
3185
|
-
readonly groupaction_contract_id: (a: number) => number;
|
|
3186
|
-
readonly groupaction_event: (a: number) => number;
|
|
3187
|
-
readonly groupaction_fromJSON: (a: any) => [number, number, number];
|
|
3188
|
-
readonly groupaction_fromObject: (a: any) => [number, number, number];
|
|
3189
|
-
readonly groupaction_proposer_id: (a: number) => number;
|
|
3190
|
-
readonly groupaction_struct_name: () => [number, number];
|
|
3191
|
-
readonly groupaction_toJSON: (a: number) => [number, number, number];
|
|
3192
|
-
readonly groupaction_toObject: (a: number) => [number, number, number];
|
|
3193
|
-
readonly groupaction_token_contract_position: (a: number) => number;
|
|
3194
|
-
readonly groupaction_type_name: (a: number) => [number, number];
|
|
3195
|
-
readonly groupactionevent_eventName: (a: number) => [number, number];
|
|
3196
|
-
readonly groupactionevent_fromJSON: (a: any) => [number, number, number];
|
|
3197
|
-
readonly groupactionevent_fromObject: (a: any) => [number, number, number];
|
|
3198
|
-
readonly groupactionevent_publicNote: (a: number) => [number, number];
|
|
3199
|
-
readonly groupactionevent_struct_name: (a: number) => [number, number];
|
|
3200
|
-
readonly groupactionevent_toJSON: (a: number) => [number, number, number];
|
|
3201
|
-
readonly groupactionevent_toObject: (a: number) => [number, number, number];
|
|
3202
|
-
readonly groupactionevent_tokenEvent: (a: number) => number;
|
|
3203
|
-
readonly groupactionevent_variant: (a: number) => number;
|
|
3204
3178
|
readonly masternodevotetransition_fromBase64: (a: number, b: number) => [number, number, number];
|
|
3205
3179
|
readonly masternodevotetransition_fromBytes: (a: number, b: number) => [number, number, number];
|
|
3206
3180
|
readonly masternodevotetransition_fromHex: (a: number, b: number) => [number, number, number];
|
|
@@ -3232,157 +3206,140 @@ export interface InitOutput {
|
|
|
3232
3206
|
readonly masternodevotetransition_type_name: (a: number) => [number, number];
|
|
3233
3207
|
readonly masternodevotetransition_vote: (a: number) => number;
|
|
3234
3208
|
readonly masternodevotetransition_voter_identity_id: (a: number) => number;
|
|
3235
|
-
readonly
|
|
3236
|
-
readonly
|
|
3237
|
-
readonly
|
|
3238
|
-
readonly
|
|
3239
|
-
readonly
|
|
3240
|
-
readonly
|
|
3241
|
-
readonly
|
|
3242
|
-
readonly
|
|
3243
|
-
readonly
|
|
3244
|
-
readonly
|
|
3245
|
-
readonly
|
|
3246
|
-
readonly
|
|
3247
|
-
readonly
|
|
3248
|
-
readonly
|
|
3249
|
-
readonly
|
|
3250
|
-
readonly
|
|
3251
|
-
readonly
|
|
3252
|
-
readonly
|
|
3253
|
-
readonly
|
|
3254
|
-
readonly
|
|
3255
|
-
readonly
|
|
3256
|
-
readonly
|
|
3257
|
-
readonly tokenpricingschedule_SinglePrice: (a: bigint) => number;
|
|
3258
|
-
readonly tokenpricingschedule_getScheduleType: (a: number) => [number, number];
|
|
3259
|
-
readonly tokenpricingschedule_getValue: (a: number) => [number, number, number];
|
|
3260
|
-
readonly tokenpricingschedule_struct_name: () => [number, number];
|
|
3261
|
-
readonly tokenpricingschedule_type_name: (a: number) => [number, number];
|
|
3262
|
-
readonly tokensetpricefordirectpurchasetransition_get_base: (a: number) => number;
|
|
3263
|
-
readonly tokensetpricefordirectpurchasetransition_get_price: (a: number) => any;
|
|
3264
|
-
readonly tokensetpricefordirectpurchasetransition_get_public_note: (a: number) => [number, number];
|
|
3265
|
-
readonly tokensetpricefordirectpurchasetransition_new: (a: number, b: any, c: number, d: number) => [number, number, number];
|
|
3266
|
-
readonly tokensetpricefordirectpurchasetransition_set_base: (a: number, b: number) => void;
|
|
3267
|
-
readonly tokensetpricefordirectpurchasetransition_set_price: (a: number, b: any) => [number, number];
|
|
3268
|
-
readonly tokensetpricefordirectpurchasetransition_set_public_note: (a: number, b: number, c: number) => void;
|
|
3269
|
-
readonly tokensetpricefordirectpurchasetransition_struct_name: () => [number, number];
|
|
3270
|
-
readonly tokensetpricefordirectpurchasetransition_type_name: (a: number) => [number, number];
|
|
3271
|
-
readonly groupactionevent_type_name: (a: number) => [number, number];
|
|
3272
|
-
readonly tokenpaymentinfo_set_minimum_token_cost: (a: number, b: number, c: bigint) => void;
|
|
3209
|
+
readonly resourcevote_choice: (a: number) => number;
|
|
3210
|
+
readonly resourcevote_fromJSON: (a: any) => [number, number, number];
|
|
3211
|
+
readonly resourcevote_fromObject: (a: any) => [number, number, number];
|
|
3212
|
+
readonly resourcevote_new: (a: number, b: number) => number;
|
|
3213
|
+
readonly resourcevote_set_choice: (a: number, b: number) => void;
|
|
3214
|
+
readonly resourcevote_set_vote_poll: (a: number, b: number) => void;
|
|
3215
|
+
readonly resourcevote_struct_name: () => [number, number];
|
|
3216
|
+
readonly resourcevote_toJSON: (a: number) => [number, number, number];
|
|
3217
|
+
readonly resourcevote_toObject: (a: number) => [number, number, number];
|
|
3218
|
+
readonly resourcevote_type_name: (a: number) => [number, number];
|
|
3219
|
+
readonly resourcevote_vote_poll: (a: number) => number;
|
|
3220
|
+
readonly vote_fromJSON: (a: any) => [number, number, number];
|
|
3221
|
+
readonly vote_fromObject: (a: any) => [number, number, number];
|
|
3222
|
+
readonly vote_resource_vote_choice: (a: number) => number;
|
|
3223
|
+
readonly vote_set_resource_vote_choice: (a: number, b: number) => void;
|
|
3224
|
+
readonly vote_set_vote_poll: (a: number, b: number) => void;
|
|
3225
|
+
readonly vote_struct_name: () => [number, number];
|
|
3226
|
+
readonly vote_toJSON: (a: number) => [number, number, number];
|
|
3227
|
+
readonly vote_toObject: (a: number) => [number, number, number];
|
|
3228
|
+
readonly vote_type_name: (a: number) => [number, number];
|
|
3229
|
+
readonly vote_vote_poll: (a: number) => number;
|
|
3230
|
+
readonly vote_new: (a: number, b: number) => number;
|
|
3273
3231
|
readonly masternodevotetransition_get_user_fee_increase: (a: number) => number;
|
|
3274
|
-
readonly
|
|
3275
|
-
readonly
|
|
3276
|
-
readonly
|
|
3277
|
-
readonly
|
|
3278
|
-
readonly
|
|
3279
|
-
readonly
|
|
3280
|
-
readonly
|
|
3281
|
-
readonly
|
|
3282
|
-
readonly
|
|
3283
|
-
readonly
|
|
3284
|
-
readonly
|
|
3285
|
-
readonly
|
|
3286
|
-
readonly
|
|
3287
|
-
readonly
|
|
3288
|
-
readonly
|
|
3289
|
-
readonly
|
|
3290
|
-
readonly
|
|
3291
|
-
readonly
|
|
3292
|
-
readonly
|
|
3293
|
-
readonly
|
|
3294
|
-
readonly
|
|
3295
|
-
readonly
|
|
3296
|
-
readonly
|
|
3297
|
-
readonly
|
|
3298
|
-
readonly
|
|
3299
|
-
readonly
|
|
3300
|
-
readonly
|
|
3301
|
-
readonly
|
|
3302
|
-
readonly
|
|
3303
|
-
readonly
|
|
3304
|
-
readonly
|
|
3305
|
-
readonly
|
|
3306
|
-
readonly
|
|
3307
|
-
readonly
|
|
3308
|
-
readonly
|
|
3309
|
-
readonly
|
|
3310
|
-
readonly
|
|
3311
|
-
readonly
|
|
3312
|
-
readonly
|
|
3313
|
-
readonly
|
|
3314
|
-
readonly
|
|
3315
|
-
readonly
|
|
3316
|
-
readonly
|
|
3317
|
-
readonly
|
|
3318
|
-
readonly
|
|
3319
|
-
readonly
|
|
3320
|
-
readonly
|
|
3321
|
-
readonly
|
|
3322
|
-
readonly
|
|
3323
|
-
readonly
|
|
3324
|
-
readonly
|
|
3325
|
-
readonly
|
|
3326
|
-
readonly
|
|
3327
|
-
readonly
|
|
3328
|
-
readonly
|
|
3329
|
-
readonly
|
|
3330
|
-
readonly
|
|
3331
|
-
readonly
|
|
3332
|
-
readonly
|
|
3333
|
-
readonly
|
|
3334
|
-
readonly
|
|
3335
|
-
readonly
|
|
3336
|
-
readonly
|
|
3337
|
-
readonly
|
|
3338
|
-
readonly
|
|
3339
|
-
readonly
|
|
3340
|
-
readonly
|
|
3341
|
-
readonly
|
|
3342
|
-
readonly
|
|
3343
|
-
readonly
|
|
3344
|
-
readonly
|
|
3345
|
-
readonly
|
|
3346
|
-
readonly
|
|
3347
|
-
readonly
|
|
3348
|
-
readonly
|
|
3349
|
-
readonly
|
|
3350
|
-
readonly
|
|
3351
|
-
readonly
|
|
3352
|
-
readonly
|
|
3353
|
-
readonly
|
|
3354
|
-
readonly
|
|
3355
|
-
readonly
|
|
3356
|
-
readonly
|
|
3357
|
-
readonly
|
|
3358
|
-
readonly
|
|
3359
|
-
readonly
|
|
3360
|
-
readonly
|
|
3361
|
-
readonly
|
|
3362
|
-
readonly
|
|
3363
|
-
readonly
|
|
3364
|
-
readonly
|
|
3365
|
-
readonly
|
|
3366
|
-
readonly
|
|
3367
|
-
readonly
|
|
3368
|
-
readonly
|
|
3369
|
-
readonly
|
|
3370
|
-
readonly
|
|
3371
|
-
readonly
|
|
3372
|
-
readonly
|
|
3373
|
-
readonly
|
|
3374
|
-
readonly
|
|
3375
|
-
readonly
|
|
3376
|
-
readonly
|
|
3377
|
-
readonly
|
|
3378
|
-
readonly
|
|
3379
|
-
readonly
|
|
3380
|
-
readonly
|
|
3381
|
-
readonly
|
|
3382
|
-
readonly
|
|
3383
|
-
readonly
|
|
3384
|
-
readonly
|
|
3385
|
-
readonly tokenbasetransition_type_name: (a: number) => [number, number];
|
|
3232
|
+
readonly __wbg_distributionexponential_free: (a: number, b: number) => void;
|
|
3233
|
+
readonly __wbg_distributionfixedamount_free: (a: number, b: number) => void;
|
|
3234
|
+
readonly __wbg_distributioninvertedlogarithmic_free: (a: number, b: number) => void;
|
|
3235
|
+
readonly __wbg_distributionlinear_free: (a: number, b: number) => void;
|
|
3236
|
+
readonly __wbg_distributionlogarithmic_free: (a: number, b: number) => void;
|
|
3237
|
+
readonly __wbg_distributionpolynomial_free: (a: number, b: number) => void;
|
|
3238
|
+
readonly __wbg_distributionrandom_free: (a: number, b: number) => void;
|
|
3239
|
+
readonly __wbg_distributionstepdecreasingamount_free: (a: number, b: number) => void;
|
|
3240
|
+
readonly __wbg_get_distributionexponential_a: (a: number) => bigint;
|
|
3241
|
+
readonly __wbg_get_distributionexponential_b: (a: number) => bigint;
|
|
3242
|
+
readonly __wbg_get_distributionexponential_d: (a: number) => bigint;
|
|
3243
|
+
readonly __wbg_get_distributionexponential_m: (a: number) => bigint;
|
|
3244
|
+
readonly __wbg_get_distributionexponential_maxValue: (a: number) => [number, bigint];
|
|
3245
|
+
readonly __wbg_get_distributionexponential_minValue: (a: number) => [number, bigint];
|
|
3246
|
+
readonly __wbg_get_distributionexponential_n: (a: number) => bigint;
|
|
3247
|
+
readonly __wbg_get_distributionexponential_o: (a: number) => bigint;
|
|
3248
|
+
readonly __wbg_get_distributionexponential_startMoment: (a: number) => [number, bigint];
|
|
3249
|
+
readonly __wbg_get_distributionfixedamount_amount: (a: number) => bigint;
|
|
3250
|
+
readonly __wbg_get_distributioninvertedlogarithmic_a: (a: number) => bigint;
|
|
3251
|
+
readonly __wbg_get_distributioninvertedlogarithmic_b: (a: number) => bigint;
|
|
3252
|
+
readonly __wbg_get_distributioninvertedlogarithmic_d: (a: number) => bigint;
|
|
3253
|
+
readonly __wbg_get_distributioninvertedlogarithmic_m: (a: number) => bigint;
|
|
3254
|
+
readonly __wbg_get_distributioninvertedlogarithmic_maxValue: (a: number) => [number, bigint];
|
|
3255
|
+
readonly __wbg_get_distributioninvertedlogarithmic_minValue: (a: number) => [number, bigint];
|
|
3256
|
+
readonly __wbg_get_distributioninvertedlogarithmic_n: (a: number) => bigint;
|
|
3257
|
+
readonly __wbg_get_distributioninvertedlogarithmic_o: (a: number) => bigint;
|
|
3258
|
+
readonly __wbg_get_distributioninvertedlogarithmic_startMoment: (a: number) => [number, bigint];
|
|
3259
|
+
readonly __wbg_get_distributionlinear_a: (a: number) => bigint;
|
|
3260
|
+
readonly __wbg_get_distributionlinear_d: (a: number) => bigint;
|
|
3261
|
+
readonly __wbg_get_distributionlinear_maxValue: (a: number) => [number, bigint];
|
|
3262
|
+
readonly __wbg_get_distributionlinear_minValue: (a: number) => [number, bigint];
|
|
3263
|
+
readonly __wbg_get_distributionlinear_startStep: (a: number) => [number, bigint];
|
|
3264
|
+
readonly __wbg_get_distributionlinear_startingAmount: (a: number) => bigint;
|
|
3265
|
+
readonly __wbg_get_distributionlogarithmic_a: (a: number) => bigint;
|
|
3266
|
+
readonly __wbg_get_distributionlogarithmic_b: (a: number) => bigint;
|
|
3267
|
+
readonly __wbg_get_distributionlogarithmic_d: (a: number) => bigint;
|
|
3268
|
+
readonly __wbg_get_distributionlogarithmic_m: (a: number) => bigint;
|
|
3269
|
+
readonly __wbg_get_distributionlogarithmic_maxValue: (a: number) => [number, bigint];
|
|
3270
|
+
readonly __wbg_get_distributionlogarithmic_minValue: (a: number) => [number, bigint];
|
|
3271
|
+
readonly __wbg_get_distributionlogarithmic_n: (a: number) => bigint;
|
|
3272
|
+
readonly __wbg_get_distributionlogarithmic_o: (a: number) => bigint;
|
|
3273
|
+
readonly __wbg_get_distributionlogarithmic_startMoment: (a: number) => [number, bigint];
|
|
3274
|
+
readonly __wbg_get_distributionpolynomial_a: (a: number) => bigint;
|
|
3275
|
+
readonly __wbg_get_distributionpolynomial_b: (a: number) => bigint;
|
|
3276
|
+
readonly __wbg_get_distributionpolynomial_d: (a: number) => bigint;
|
|
3277
|
+
readonly __wbg_get_distributionpolynomial_m: (a: number) => bigint;
|
|
3278
|
+
readonly __wbg_get_distributionpolynomial_maxValue: (a: number) => [number, bigint];
|
|
3279
|
+
readonly __wbg_get_distributionpolynomial_minValue: (a: number) => [number, bigint];
|
|
3280
|
+
readonly __wbg_get_distributionpolynomial_n: (a: number) => bigint;
|
|
3281
|
+
readonly __wbg_get_distributionpolynomial_o: (a: number) => bigint;
|
|
3282
|
+
readonly __wbg_get_distributionpolynomial_startMoment: (a: number) => [number, bigint];
|
|
3283
|
+
readonly __wbg_get_distributionrandom_max: (a: number) => bigint;
|
|
3284
|
+
readonly __wbg_get_distributionrandom_min: (a: number) => bigint;
|
|
3285
|
+
readonly __wbg_get_distributionstepdecreasingamount_decreasePerIntervalDenominator: (a: number) => number;
|
|
3286
|
+
readonly __wbg_get_distributionstepdecreasingamount_decreasePerIntervalNumerator: (a: number) => number;
|
|
3287
|
+
readonly __wbg_get_distributionstepdecreasingamount_distributionStartAmount: (a: number) => bigint;
|
|
3288
|
+
readonly __wbg_get_distributionstepdecreasingamount_maxIntervalCount: (a: number) => number;
|
|
3289
|
+
readonly __wbg_get_distributionstepdecreasingamount_minValue: (a: number) => [number, bigint];
|
|
3290
|
+
readonly __wbg_get_distributionstepdecreasingamount_startDecreasingOffset: (a: number) => [number, bigint];
|
|
3291
|
+
readonly __wbg_get_distributionstepdecreasingamount_stepCount: (a: number) => number;
|
|
3292
|
+
readonly __wbg_get_distributionstepdecreasingamount_trailingDistributionIntervalAmount: (a: number) => bigint;
|
|
3293
|
+
readonly __wbg_groupaction_free: (a: number, b: number) => void;
|
|
3294
|
+
readonly __wbg_groupactionevent_free: (a: number, b: number) => void;
|
|
3295
|
+
readonly __wbg_set_distributionexponential_a: (a: number, b: bigint) => void;
|
|
3296
|
+
readonly __wbg_set_distributionexponential_b: (a: number, b: bigint) => void;
|
|
3297
|
+
readonly __wbg_set_distributionexponential_d: (a: number, b: bigint) => void;
|
|
3298
|
+
readonly __wbg_set_distributionexponential_m: (a: number, b: bigint) => void;
|
|
3299
|
+
readonly __wbg_set_distributionexponential_maxValue: (a: number, b: number, c: bigint) => void;
|
|
3300
|
+
readonly __wbg_set_distributionexponential_minValue: (a: number, b: number, c: bigint) => void;
|
|
3301
|
+
readonly __wbg_set_distributionexponential_n: (a: number, b: bigint) => void;
|
|
3302
|
+
readonly __wbg_set_distributionexponential_o: (a: number, b: bigint) => void;
|
|
3303
|
+
readonly __wbg_set_distributionexponential_startMoment: (a: number, b: number, c: bigint) => void;
|
|
3304
|
+
readonly __wbg_set_distributionfixedamount_amount: (a: number, b: bigint) => void;
|
|
3305
|
+
readonly __wbg_set_distributionrandom_max: (a: number, b: bigint) => void;
|
|
3306
|
+
readonly __wbg_set_distributionstepdecreasingamount_decreasePerIntervalDenominator: (a: number, b: number) => void;
|
|
3307
|
+
readonly __wbg_set_distributionstepdecreasingamount_decreasePerIntervalNumerator: (a: number, b: number) => void;
|
|
3308
|
+
readonly __wbg_set_distributionstepdecreasingamount_distributionStartAmount: (a: number, b: bigint) => void;
|
|
3309
|
+
readonly __wbg_set_distributionstepdecreasingamount_maxIntervalCount: (a: number, b: number) => void;
|
|
3310
|
+
readonly __wbg_set_distributionstepdecreasingamount_stepCount: (a: number, b: number) => void;
|
|
3311
|
+
readonly __wbg_set_distributionstepdecreasingamount_trailingDistributionIntervalAmount: (a: number, b: bigint) => void;
|
|
3312
|
+
readonly __wbg_tokenburntransition_free: (a: number, b: number) => void;
|
|
3313
|
+
readonly __wbg_tokenclaimtransition_free: (a: number, b: number) => void;
|
|
3314
|
+
readonly __wbg_tokenconfigupdatetransition_free: (a: number, b: number) => void;
|
|
3315
|
+
readonly __wbg_tokenconfiguration_free: (a: number, b: number) => void;
|
|
3316
|
+
readonly __wbg_tokenconfigurationchangeitem_free: (a: number, b: number) => void;
|
|
3317
|
+
readonly __wbg_tokenconfigurationlocalization_free: (a: number, b: number) => void;
|
|
3318
|
+
readonly __wbg_tokendirectpurchasetransition_free: (a: number, b: number) => void;
|
|
3319
|
+
readonly __wbg_tokenkeepshistoryrules_free: (a: number, b: number) => void;
|
|
3320
|
+
readonly __wbg_tokenmarketplacerules_free: (a: number, b: number) => void;
|
|
3321
|
+
readonly __wbg_tokenminttransition_free: (a: number, b: number) => void;
|
|
3322
|
+
readonly __wbg_tokensetpricefordirectpurchasetransition_free: (a: number, b: number) => void;
|
|
3323
|
+
readonly __wbg_tokentransition_free: (a: number, b: number) => void;
|
|
3324
|
+
readonly groupaction_contract_id: (a: number) => number;
|
|
3325
|
+
readonly groupaction_event: (a: number) => number;
|
|
3326
|
+
readonly groupaction_fromJSON: (a: any) => [number, number, number];
|
|
3327
|
+
readonly groupaction_fromObject: (a: any) => [number, number, number];
|
|
3328
|
+
readonly groupaction_proposer_id: (a: number) => number;
|
|
3329
|
+
readonly groupaction_struct_name: () => [number, number];
|
|
3330
|
+
readonly groupaction_toJSON: (a: number) => [number, number, number];
|
|
3331
|
+
readonly groupaction_toObject: (a: number) => [number, number, number];
|
|
3332
|
+
readonly groupaction_token_contract_position: (a: number) => number;
|
|
3333
|
+
readonly groupaction_type_name: (a: number) => [number, number];
|
|
3334
|
+
readonly groupactionevent_eventName: (a: number) => [number, number];
|
|
3335
|
+
readonly groupactionevent_fromJSON: (a: any) => [number, number, number];
|
|
3336
|
+
readonly groupactionevent_fromObject: (a: any) => [number, number, number];
|
|
3337
|
+
readonly groupactionevent_publicNote: (a: number) => [number, number];
|
|
3338
|
+
readonly groupactionevent_struct_name: (a: number) => [number, number];
|
|
3339
|
+
readonly groupactionevent_toJSON: (a: number) => [number, number, number];
|
|
3340
|
+
readonly groupactionevent_toObject: (a: number) => [number, number, number];
|
|
3341
|
+
readonly groupactionevent_tokenEvent: (a: number) => number;
|
|
3342
|
+
readonly groupactionevent_variant: (a: number) => number;
|
|
3386
3343
|
readonly tokenburntransition_get_base: (a: number) => number;
|
|
3387
3344
|
readonly tokenburntransition_get_burn_amount: (a: number) => bigint;
|
|
3388
3345
|
readonly tokenburntransition_get_public_note: (a: number) => [number, number];
|
|
@@ -3401,6 +3358,61 @@ export interface InitOutput {
|
|
|
3401
3358
|
readonly tokenclaimtransition_set_public_note: (a: number, b: number, c: number) => void;
|
|
3402
3359
|
readonly tokenclaimtransition_struct_name: () => [number, number];
|
|
3403
3360
|
readonly tokenclaimtransition_type_name: (a: number) => [number, number];
|
|
3361
|
+
readonly tokenconfigupdatetransition_get_base: (a: number) => number;
|
|
3362
|
+
readonly tokenconfigupdatetransition_get_public_note: (a: number) => [number, number];
|
|
3363
|
+
readonly tokenconfigupdatetransition_get_update_token_configuration_item: (a: number) => number;
|
|
3364
|
+
readonly tokenconfigupdatetransition_new: (a: number, b: number, c: number, d: number) => [number, number, number];
|
|
3365
|
+
readonly tokenconfigupdatetransition_set_base: (a: number, b: number) => void;
|
|
3366
|
+
readonly tokenconfigupdatetransition_set_public_note: (a: number, b: number, c: number) => void;
|
|
3367
|
+
readonly tokenconfigupdatetransition_set_update_token_configuration_item: (a: number, b: number) => void;
|
|
3368
|
+
readonly tokenconfigupdatetransition_struct_name: () => [number, number];
|
|
3369
|
+
readonly tokenconfigupdatetransition_type_name: (a: number) => [number, number];
|
|
3370
|
+
readonly tokenconfiguration_calculateTokenId: (a: any, b: number) => [number, number, number];
|
|
3371
|
+
readonly tokenconfiguration_get_base_supply: (a: number) => bigint;
|
|
3372
|
+
readonly tokenconfiguration_get_conventions: (a: number) => number;
|
|
3373
|
+
readonly tokenconfiguration_get_conventions_change_rules: (a: number) => number;
|
|
3374
|
+
readonly tokenconfiguration_get_description: (a: number) => [number, number];
|
|
3375
|
+
readonly tokenconfiguration_get_destroy_frozen_funds_rules: (a: number) => number;
|
|
3376
|
+
readonly tokenconfiguration_get_distribution_rules: (a: number) => number;
|
|
3377
|
+
readonly tokenconfiguration_get_emergency_action_rules: (a: number) => number;
|
|
3378
|
+
readonly tokenconfiguration_get_freeze_rules: (a: number) => number;
|
|
3379
|
+
readonly tokenconfiguration_get_is_allowed_transfer_to_frozen_balance: (a: number) => number;
|
|
3380
|
+
readonly tokenconfiguration_get_keeps_history: (a: number) => number;
|
|
3381
|
+
readonly tokenconfiguration_get_main_control_group: (a: number) => number;
|
|
3382
|
+
readonly tokenconfiguration_get_main_control_group_can_be_modified: (a: number) => number;
|
|
3383
|
+
readonly tokenconfiguration_get_manual_burning_rules: (a: number) => number;
|
|
3384
|
+
readonly tokenconfiguration_get_manual_minting_rules: (a: number) => number;
|
|
3385
|
+
readonly tokenconfiguration_get_marketplace_rules: (a: number) => number;
|
|
3386
|
+
readonly tokenconfiguration_get_max_supply: (a: number) => [number, bigint];
|
|
3387
|
+
readonly tokenconfiguration_get_max_supply_change_rules: (a: number) => number;
|
|
3388
|
+
readonly tokenconfiguration_get_start_as_paused: (a: number) => number;
|
|
3389
|
+
readonly tokenconfiguration_get_unfreeze_rules: (a: number) => number;
|
|
3390
|
+
readonly tokenconfiguration_new: (a: number, b: number, c: bigint, d: number, e: bigint, f: number, g: number, h: number, i: number, j: number, k: number, l: number, m: number, n: number, o: number, p: number, q: number, r: number, s: number, t: number, u: number) => number;
|
|
3391
|
+
readonly tokenconfiguration_set_base_supply: (a: number, b: bigint) => void;
|
|
3392
|
+
readonly tokenconfiguration_set_conventions: (a: number, b: number) => void;
|
|
3393
|
+
readonly tokenconfiguration_set_conventions_change_rules: (a: number, b: number) => void;
|
|
3394
|
+
readonly tokenconfiguration_set_description: (a: number, b: number, c: number) => void;
|
|
3395
|
+
readonly tokenconfiguration_set_destroy_frozen_funds_rules: (a: number, b: number) => void;
|
|
3396
|
+
readonly tokenconfiguration_set_distribution_rules: (a: number, b: number) => void;
|
|
3397
|
+
readonly tokenconfiguration_set_emergency_action_rules: (a: number, b: number) => void;
|
|
3398
|
+
readonly tokenconfiguration_set_freeze_rules: (a: number, b: number) => void;
|
|
3399
|
+
readonly tokenconfiguration_set_is_allowed_transfer_to_frozen_balance: (a: number, b: number) => void;
|
|
3400
|
+
readonly tokenconfiguration_set_keeps_history: (a: number, b: number) => void;
|
|
3401
|
+
readonly tokenconfiguration_set_main_control_group: (a: number, b: number) => void;
|
|
3402
|
+
readonly tokenconfiguration_set_main_control_group_can_be_modified: (a: number, b: number) => void;
|
|
3403
|
+
readonly tokenconfiguration_set_manual_burning_rules: (a: number, b: number) => void;
|
|
3404
|
+
readonly tokenconfiguration_set_manual_minting_rules: (a: number, b: number) => void;
|
|
3405
|
+
readonly tokenconfiguration_set_marketplace_rules: (a: number, b: number) => void;
|
|
3406
|
+
readonly tokenconfiguration_set_max_supply: (a: number, b: number, c: bigint) => void;
|
|
3407
|
+
readonly tokenconfiguration_set_max_supply_change_rules: (a: number, b: number) => void;
|
|
3408
|
+
readonly tokenconfiguration_set_start_as_paused: (a: number, b: number) => void;
|
|
3409
|
+
readonly tokenconfiguration_set_unfreeze_rules: (a: number, b: number) => void;
|
|
3410
|
+
readonly tokenconfiguration_struct_name: () => [number, number];
|
|
3411
|
+
readonly tokenconfiguration_type_name: (a: number) => [number, number];
|
|
3412
|
+
readonly tokenconfigurationchangeitem_getItem: (a: number) => any;
|
|
3413
|
+
readonly tokenconfigurationchangeitem_getItemName: (a: number) => [number, number];
|
|
3414
|
+
readonly tokenconfigurationchangeitem_struct_name: () => [number, number];
|
|
3415
|
+
readonly tokenconfigurationchangeitem_type_name: (a: number) => [number, number];
|
|
3404
3416
|
readonly tokenconfigurationlocalization_fromJSON: (a: any) => [number, number, number];
|
|
3405
3417
|
readonly tokenconfigurationlocalization_fromObject: (a: any) => [number, number, number];
|
|
3406
3418
|
readonly tokenconfigurationlocalization_get_plural_form: (a: number) => [number, number];
|
|
@@ -3414,18 +3426,109 @@ export interface InitOutput {
|
|
|
3414
3426
|
readonly tokenconfigurationlocalization_toJSON: (a: number) => [number, number, number];
|
|
3415
3427
|
readonly tokenconfigurationlocalization_toObject: (a: number) => [number, number, number];
|
|
3416
3428
|
readonly tokenconfigurationlocalization_type_name: (a: number) => [number, number];
|
|
3417
|
-
readonly
|
|
3418
|
-
readonly
|
|
3419
|
-
readonly
|
|
3420
|
-
readonly
|
|
3421
|
-
readonly
|
|
3422
|
-
readonly
|
|
3423
|
-
readonly
|
|
3424
|
-
readonly
|
|
3425
|
-
readonly
|
|
3426
|
-
readonly
|
|
3427
|
-
readonly
|
|
3428
|
-
readonly
|
|
3429
|
+
readonly tokendirectpurchasetransition_get_base: (a: number) => number;
|
|
3430
|
+
readonly tokendirectpurchasetransition_get_token_count: (a: number) => bigint;
|
|
3431
|
+
readonly tokendirectpurchasetransition_get_total_agreed_price: (a: number) => bigint;
|
|
3432
|
+
readonly tokendirectpurchasetransition_new: (a: number, b: bigint, c: bigint) => number;
|
|
3433
|
+
readonly tokendirectpurchasetransition_set_base: (a: number, b: number) => void;
|
|
3434
|
+
readonly tokendirectpurchasetransition_set_token_count: (a: number, b: bigint) => void;
|
|
3435
|
+
readonly tokendirectpurchasetransition_set_total_agreed_price: (a: number, b: bigint) => void;
|
|
3436
|
+
readonly tokendirectpurchasetransition_struct_name: () => [number, number];
|
|
3437
|
+
readonly tokendirectpurchasetransition_type_name: (a: number) => [number, number];
|
|
3438
|
+
readonly tokenkeepshistoryrules_get_keeps_burning_history: (a: number) => number;
|
|
3439
|
+
readonly tokenkeepshistoryrules_get_keeps_direct_pricing_history: (a: number) => number;
|
|
3440
|
+
readonly tokenkeepshistoryrules_get_keeps_direct_purchase_history: (a: number) => number;
|
|
3441
|
+
readonly tokenkeepshistoryrules_get_keeps_freezing_history: (a: number) => number;
|
|
3442
|
+
readonly tokenkeepshistoryrules_get_keeps_minting_history: (a: number) => number;
|
|
3443
|
+
readonly tokenkeepshistoryrules_get_keeps_transfer_history: (a: number) => number;
|
|
3444
|
+
readonly tokenkeepshistoryrules_new: (a: number, b: number, c: number, d: number, e: number, f: number) => number;
|
|
3445
|
+
readonly tokenkeepshistoryrules_set_keeps_burning_history: (a: number, b: number) => void;
|
|
3446
|
+
readonly tokenkeepshistoryrules_set_keeps_direct_pricing_history: (a: number, b: number) => void;
|
|
3447
|
+
readonly tokenkeepshistoryrules_set_keeps_direct_purchase_history: (a: number, b: number) => void;
|
|
3448
|
+
readonly tokenkeepshistoryrules_set_keeps_freezing_history: (a: number, b: number) => void;
|
|
3449
|
+
readonly tokenkeepshistoryrules_set_keeps_minting_history: (a: number, b: number) => void;
|
|
3450
|
+
readonly tokenkeepshistoryrules_set_keeps_transfer_history: (a: number, b: number) => void;
|
|
3451
|
+
readonly tokenkeepshistoryrules_struct_name: () => [number, number];
|
|
3452
|
+
readonly tokenkeepshistoryrules_type_name: (a: number) => [number, number];
|
|
3453
|
+
readonly tokenmarketplacerules_new: (a: number, b: number) => number;
|
|
3454
|
+
readonly tokenmarketplacerules_set_trade_mode: (a: number, b: number) => void;
|
|
3455
|
+
readonly tokenmarketplacerules_set_trade_mode_change_rules: (a: number, b: number) => void;
|
|
3456
|
+
readonly tokenmarketplacerules_struct_name: () => [number, number];
|
|
3457
|
+
readonly tokenmarketplacerules_trade_mode: (a: number) => number;
|
|
3458
|
+
readonly tokenmarketplacerules_trade_mode_change_rules: (a: number) => number;
|
|
3459
|
+
readonly tokenmarketplacerules_type_name: (a: number) => [number, number];
|
|
3460
|
+
readonly tokenminttransition_getRecipientId: (a: number, b: number) => [number, number, number];
|
|
3461
|
+
readonly tokenminttransition_get_amount: (a: number) => bigint;
|
|
3462
|
+
readonly tokenminttransition_get_base: (a: number) => number;
|
|
3463
|
+
readonly tokenminttransition_get_public_note: (a: number) => [number, number];
|
|
3464
|
+
readonly tokenminttransition_issued_to_identity_id: (a: number) => number;
|
|
3465
|
+
readonly tokenminttransition_new: (a: number, b: any, c: bigint, d: number, e: number) => [number, number, number];
|
|
3466
|
+
readonly tokenminttransition_set_amount: (a: number, b: bigint) => void;
|
|
3467
|
+
readonly tokenminttransition_set_base: (a: number, b: number) => void;
|
|
3468
|
+
readonly tokenminttransition_set_issued_to_identity_id: (a: number, b: any) => [number, number];
|
|
3469
|
+
readonly tokenminttransition_set_public_note: (a: number, b: number, c: number) => void;
|
|
3470
|
+
readonly tokenminttransition_struct_name: () => [number, number];
|
|
3471
|
+
readonly tokenminttransition_type_name: (a: number) => [number, number];
|
|
3472
|
+
readonly tokensetpricefordirectpurchasetransition_get_base: (a: number) => number;
|
|
3473
|
+
readonly tokensetpricefordirectpurchasetransition_get_price: (a: number) => any;
|
|
3474
|
+
readonly tokensetpricefordirectpurchasetransition_get_public_note: (a: number) => [number, number];
|
|
3475
|
+
readonly tokensetpricefordirectpurchasetransition_new: (a: number, b: any, c: number, d: number) => [number, number, number];
|
|
3476
|
+
readonly tokensetpricefordirectpurchasetransition_set_base: (a: number, b: number) => void;
|
|
3477
|
+
readonly tokensetpricefordirectpurchasetransition_set_price: (a: number, b: any) => [number, number];
|
|
3478
|
+
readonly tokensetpricefordirectpurchasetransition_set_public_note: (a: number, b: number, c: number) => void;
|
|
3479
|
+
readonly tokensetpricefordirectpurchasetransition_struct_name: () => [number, number];
|
|
3480
|
+
readonly tokensetpricefordirectpurchasetransition_type_name: (a: number) => [number, number];
|
|
3481
|
+
readonly tokentransition_getHistoricalDocumentId: (a: number, b: any) => [number, number, number];
|
|
3482
|
+
readonly tokentransition_getHistoricalDocumentTypeName: (a: number) => [number, number];
|
|
3483
|
+
readonly tokentransition_getTransition: (a: number) => any;
|
|
3484
|
+
readonly tokentransition_getTransitionType: (a: number) => [number, number];
|
|
3485
|
+
readonly tokentransition_getTransitionTypeNumber: (a: number) => number;
|
|
3486
|
+
readonly tokentransition_get_contract_id: (a: number) => number;
|
|
3487
|
+
readonly tokentransition_get_identity_contract_nonce: (a: number) => bigint;
|
|
3488
|
+
readonly tokentransition_get_token_id: (a: number) => number;
|
|
3489
|
+
readonly tokentransition_new: (a: any) => [number, number, number];
|
|
3490
|
+
readonly tokentransition_set_contract_id: (a: number, b: any) => [number, number];
|
|
3491
|
+
readonly tokentransition_set_identity_contract_nonce: (a: number, b: bigint) => void;
|
|
3492
|
+
readonly tokentransition_set_token_id: (a: number, b: any) => [number, number];
|
|
3493
|
+
readonly tokentransition_struct_name: () => [number, number];
|
|
3494
|
+
readonly tokentransition_type_name: (a: number) => [number, number];
|
|
3495
|
+
readonly groupactionevent_type_name: (a: number) => [number, number];
|
|
3496
|
+
readonly __wbg_set_distributioninvertedlogarithmic_a: (a: number, b: bigint) => void;
|
|
3497
|
+
readonly __wbg_set_distributioninvertedlogarithmic_b: (a: number, b: bigint) => void;
|
|
3498
|
+
readonly __wbg_set_distributioninvertedlogarithmic_d: (a: number, b: bigint) => void;
|
|
3499
|
+
readonly __wbg_set_distributioninvertedlogarithmic_m: (a: number, b: bigint) => void;
|
|
3500
|
+
readonly __wbg_set_distributioninvertedlogarithmic_n: (a: number, b: bigint) => void;
|
|
3501
|
+
readonly __wbg_set_distributioninvertedlogarithmic_o: (a: number, b: bigint) => void;
|
|
3502
|
+
readonly __wbg_set_distributionlinear_a: (a: number, b: bigint) => void;
|
|
3503
|
+
readonly __wbg_set_distributionlinear_d: (a: number, b: bigint) => void;
|
|
3504
|
+
readonly __wbg_set_distributionlinear_startingAmount: (a: number, b: bigint) => void;
|
|
3505
|
+
readonly __wbg_set_distributionlogarithmic_a: (a: number, b: bigint) => void;
|
|
3506
|
+
readonly __wbg_set_distributionlogarithmic_b: (a: number, b: bigint) => void;
|
|
3507
|
+
readonly __wbg_set_distributionlogarithmic_d: (a: number, b: bigint) => void;
|
|
3508
|
+
readonly __wbg_set_distributionlogarithmic_m: (a: number, b: bigint) => void;
|
|
3509
|
+
readonly __wbg_set_distributionlogarithmic_n: (a: number, b: bigint) => void;
|
|
3510
|
+
readonly __wbg_set_distributionlogarithmic_o: (a: number, b: bigint) => void;
|
|
3511
|
+
readonly __wbg_set_distributionpolynomial_a: (a: number, b: bigint) => void;
|
|
3512
|
+
readonly __wbg_set_distributionpolynomial_b: (a: number, b: bigint) => void;
|
|
3513
|
+
readonly __wbg_set_distributionpolynomial_d: (a: number, b: bigint) => void;
|
|
3514
|
+
readonly __wbg_set_distributionpolynomial_m: (a: number, b: bigint) => void;
|
|
3515
|
+
readonly __wbg_set_distributionpolynomial_n: (a: number, b: bigint) => void;
|
|
3516
|
+
readonly __wbg_set_distributionpolynomial_o: (a: number, b: bigint) => void;
|
|
3517
|
+
readonly __wbg_set_distributionrandom_min: (a: number, b: bigint) => void;
|
|
3518
|
+
readonly __wbg_set_distributioninvertedlogarithmic_maxValue: (a: number, b: number, c: bigint) => void;
|
|
3519
|
+
readonly __wbg_set_distributioninvertedlogarithmic_minValue: (a: number, b: number, c: bigint) => void;
|
|
3520
|
+
readonly __wbg_set_distributioninvertedlogarithmic_startMoment: (a: number, b: number, c: bigint) => void;
|
|
3521
|
+
readonly __wbg_set_distributionlinear_maxValue: (a: number, b: number, c: bigint) => void;
|
|
3522
|
+
readonly __wbg_set_distributionlinear_minValue: (a: number, b: number, c: bigint) => void;
|
|
3523
|
+
readonly __wbg_set_distributionlinear_startStep: (a: number, b: number, c: bigint) => void;
|
|
3524
|
+
readonly __wbg_set_distributionlogarithmic_maxValue: (a: number, b: number, c: bigint) => void;
|
|
3525
|
+
readonly __wbg_set_distributionlogarithmic_minValue: (a: number, b: number, c: bigint) => void;
|
|
3526
|
+
readonly __wbg_set_distributionlogarithmic_startMoment: (a: number, b: number, c: bigint) => void;
|
|
3527
|
+
readonly __wbg_set_distributionpolynomial_maxValue: (a: number, b: number, c: bigint) => void;
|
|
3528
|
+
readonly __wbg_set_distributionpolynomial_minValue: (a: number, b: number, c: bigint) => void;
|
|
3529
|
+
readonly __wbg_set_distributionpolynomial_startMoment: (a: number, b: number, c: bigint) => void;
|
|
3530
|
+
readonly __wbg_set_distributionstepdecreasingamount_minValue: (a: number, b: number, c: bigint) => void;
|
|
3531
|
+
readonly __wbg_set_distributionstepdecreasingamount_startDecreasingOffset: (a: number, b: number, c: bigint) => void;
|
|
3429
3532
|
readonly rustsecp256k1_v0_10_0_context_create: (a: number) => number;
|
|
3430
3533
|
readonly rustsecp256k1_v0_10_0_context_destroy: (a: number) => void;
|
|
3431
3534
|
readonly rustsecp256k1_v0_10_0_default_error_callback_fn: (a: number, b: number) => void;
|
|
@@ -3438,6 +3541,7 @@ export interface InitOutput {
|
|
|
3438
3541
|
readonly __wbindgen_free: (a: number, b: number, c: number) => void;
|
|
3439
3542
|
readonly __externref_table_dealloc: (a: number) => void;
|
|
3440
3543
|
readonly __externref_drop_slice: (a: number, b: number) => void;
|
|
3544
|
+
readonly closure1353_externref_shim: (a: number, b: number, c: any, d: any) => void;
|
|
3441
3545
|
readonly __wbindgen_start: () => void;
|
|
3442
3546
|
}
|
|
3443
3547
|
|