@dashevo/wasm-dpp2 3.0.0-dev.8 → 3.0.0-rc.1
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 +1231 -1167
- package/dist/dpp.js +1 -1
- package/dist/raw/wasm_dpp2.d.ts +1231 -1167
- package/dist/raw/wasm_dpp2.js +254 -95
- package/dist/raw/wasm_dpp2.no_url.js +254 -95
- package/dist/raw/wasm_dpp2_bg.wasm +0 -0
- package/dist/raw/wasm_dpp2_bg.wasm.d.ts +1289 -1278
- package/package.json +1 -1
package/dist/raw/wasm_dpp2.d.ts
CHANGED
|
@@ -128,6 +128,10 @@ export enum WasmDppErrorKind {
|
|
|
128
128
|
Generic = 4,
|
|
129
129
|
}
|
|
130
130
|
|
|
131
|
+
export type IdentifierLike = Identifier | Uint8Array | string;
|
|
132
|
+
|
|
133
|
+
|
|
134
|
+
|
|
131
135
|
/**
|
|
132
136
|
* A Platform address can be provided as:
|
|
133
137
|
* - A PlatformAddress object
|
|
@@ -137,10 +141,6 @@ export enum WasmDppErrorKind {
|
|
|
137
141
|
export type PlatformAddressLike = PlatformAddress | Uint8Array | string;
|
|
138
142
|
|
|
139
143
|
|
|
140
|
-
|
|
141
|
-
export type IdentifierLike = Identifier | Uint8Array | string;
|
|
142
|
-
|
|
143
|
-
|
|
144
144
|
export class ActionTaker {
|
|
145
145
|
free(): void;
|
|
146
146
|
constructor(value: any);
|
|
@@ -827,6 +827,55 @@ export class GroupStateTransitionInfo {
|
|
|
827
827
|
groupContractPosition: number;
|
|
828
828
|
readonly __type: string;
|
|
829
829
|
}
|
|
830
|
+
/**
|
|
831
|
+
* Wrapper for GroupStateTransitionInfoStatus enum.
|
|
832
|
+
*
|
|
833
|
+
* This represents the group action context for a state transition:
|
|
834
|
+
* - Proposer: The identity proposing a new group action
|
|
835
|
+
* - OtherSigner: The identity signing/voting on an existing group action
|
|
836
|
+
*/
|
|
837
|
+
export class GroupStateTransitionInfoStatus {
|
|
838
|
+
private constructor();
|
|
839
|
+
free(): void;
|
|
840
|
+
/**
|
|
841
|
+
* Create a new other signer status for voting on an existing group action.
|
|
842
|
+
*
|
|
843
|
+
* Use this when the identity is signing/voting on an action proposed by someone else.
|
|
844
|
+
*
|
|
845
|
+
* @param groupContractPosition - The position of the group in the contract
|
|
846
|
+
* @param actionId - The ID of the action being voted on
|
|
847
|
+
* @returns GroupStateTransitionInfoStatus for an other signer
|
|
848
|
+
*/
|
|
849
|
+
static otherSigner(group_contract_position: number, action_id: Identifier | Uint8Array | string): GroupStateTransitionInfoStatus;
|
|
850
|
+
/**
|
|
851
|
+
* Convert to GroupStateTransitionInfo.
|
|
852
|
+
*/
|
|
853
|
+
toInfo(): GroupStateTransitionInfo;
|
|
854
|
+
/**
|
|
855
|
+
* Create a new proposer status for initiating a group action.
|
|
856
|
+
*
|
|
857
|
+
* Use this when the identity is proposing a new group action.
|
|
858
|
+
*
|
|
859
|
+
* @param groupContractPosition - The position of the group in the contract
|
|
860
|
+
* @returns GroupStateTransitionInfoStatus for a proposer
|
|
861
|
+
*/
|
|
862
|
+
static proposer(group_contract_position: number): GroupStateTransitionInfoStatus;
|
|
863
|
+
/**
|
|
864
|
+
* Check if this is a proposer status.
|
|
865
|
+
*/
|
|
866
|
+
readonly isProposer: boolean;
|
|
867
|
+
static readonly __struct: string;
|
|
868
|
+
/**
|
|
869
|
+
* Get the group contract position.
|
|
870
|
+
*/
|
|
871
|
+
readonly groupContractPosition: number;
|
|
872
|
+
/**
|
|
873
|
+
* Get the action ID (only available for other signer status).
|
|
874
|
+
* Returns null for proposer status.
|
|
875
|
+
*/
|
|
876
|
+
readonly actionId: Identifier | undefined;
|
|
877
|
+
readonly __type: string;
|
|
878
|
+
}
|
|
830
879
|
export class Identifier {
|
|
831
880
|
free(): void;
|
|
832
881
|
static fromBytes(bytes: Uint8Array): Identifier;
|
|
@@ -1045,8 +1094,8 @@ export class IdentityPublicKeyInCreation {
|
|
|
1045
1094
|
/**
|
|
1046
1095
|
* A signer for identity-based state transitions.
|
|
1047
1096
|
*
|
|
1048
|
-
*
|
|
1049
|
-
* and
|
|
1097
|
+
* Private keys are stored by their public key hash (20 bytes).
|
|
1098
|
+
* Both ECDSA_HASH160 and ECDSA_SECP256K1 keys are looked up by hash160.
|
|
1050
1099
|
*/
|
|
1051
1100
|
export class IdentitySigner {
|
|
1052
1101
|
free(): void;
|
|
@@ -1063,8 +1112,7 @@ export class IdentitySigner {
|
|
|
1063
1112
|
/**
|
|
1064
1113
|
* Adds a private key to the signer.
|
|
1065
1114
|
*
|
|
1066
|
-
* The
|
|
1067
|
-
* Hash160(compressed_public_key) where Hash160 = RIPEMD160(SHA256(x)).
|
|
1115
|
+
* The key is stored by public key hash (20 bytes): Hash160(compressed_public_key)
|
|
1068
1116
|
*
|
|
1069
1117
|
* @param privateKey - The PrivateKey object
|
|
1070
1118
|
*/
|
|
@@ -1074,6 +1122,7 @@ export class IdentitySigner {
|
|
|
1074
1122
|
* Returns the number of keys in this signer.
|
|
1075
1123
|
*/
|
|
1076
1124
|
readonly keyCount: number;
|
|
1125
|
+
readonly __type: string;
|
|
1077
1126
|
}
|
|
1078
1127
|
export class IdentityTokenInfo {
|
|
1079
1128
|
private constructor();
|
|
@@ -1373,6 +1422,10 @@ export class PlatformAddressSigner {
|
|
|
1373
1422
|
* Returns the number of keys in this signer.
|
|
1374
1423
|
*/
|
|
1375
1424
|
readonly keyCount: number;
|
|
1425
|
+
/**
|
|
1426
|
+
* Returns the type name for WASM object identification (instance getter).
|
|
1427
|
+
*/
|
|
1428
|
+
readonly __type: string;
|
|
1376
1429
|
}
|
|
1377
1430
|
export class PrefundedVotingBalance {
|
|
1378
1431
|
free(): void;
|
|
@@ -1578,6 +1631,9 @@ export class TokenConfiguration {
|
|
|
1578
1631
|
export class TokenConfigurationChangeItem {
|
|
1579
1632
|
private constructor();
|
|
1580
1633
|
free(): void;
|
|
1634
|
+
getItemName(): string;
|
|
1635
|
+
getItem(): any;
|
|
1636
|
+
static MainControlGroupItem(group_contract_position?: number | null): TokenConfigurationChangeItem;
|
|
1581
1637
|
static MaxSupplyItem(supply?: bigint | null): TokenConfigurationChangeItem;
|
|
1582
1638
|
static MaxSupplyAdminGroupItem(action_taker: AuthorizedActionTakers): TokenConfigurationChangeItem;
|
|
1583
1639
|
static MaxSupplyControlGroupItem(action_taker: AuthorizedActionTakers): TokenConfigurationChangeItem;
|
|
@@ -1592,9 +1648,6 @@ export class TokenConfigurationChangeItem {
|
|
|
1592
1648
|
static EmergencyActionAdminGroupItem(action_taker: AuthorizedActionTakers): TokenConfigurationChangeItem;
|
|
1593
1649
|
static DestroyFrozenFundsItem(action_taker: AuthorizedActionTakers): TokenConfigurationChangeItem;
|
|
1594
1650
|
static DestroyFrozenFundsAdminGroupItem(action_taker: AuthorizedActionTakers): TokenConfigurationChangeItem;
|
|
1595
|
-
static MarketplaceTradeModeItem(trade_mode: TokenTradeMode): TokenConfigurationChangeItem;
|
|
1596
|
-
static MarketplaceTradeModeAdminGroupItem(action_taker: AuthorizedActionTakers): TokenConfigurationChangeItem;
|
|
1597
|
-
static MarketplaceTradeModeControlGroupItem(action_taker: AuthorizedActionTakers): TokenConfigurationChangeItem;
|
|
1598
1651
|
static PerpetualDistributionConfigurationItem(js_perpetual_distribution_value: any): TokenConfigurationChangeItem;
|
|
1599
1652
|
static PerpetualDistributionAdminGroupItem(action_taker: AuthorizedActionTakers): TokenConfigurationChangeItem;
|
|
1600
1653
|
static PerpetualDistributionControlGroupItem(action_taker: AuthorizedActionTakers): TokenConfigurationChangeItem;
|
|
@@ -1605,13 +1658,13 @@ export class TokenConfigurationChangeItem {
|
|
|
1605
1658
|
static FreezeAdminGroupItem(action_taker: AuthorizedActionTakers): TokenConfigurationChangeItem;
|
|
1606
1659
|
static UnfreezeItem(action_taker: AuthorizedActionTakers): TokenConfigurationChangeItem;
|
|
1607
1660
|
static UnfreezeAdminGroupItem(action_taker: AuthorizedActionTakers): TokenConfigurationChangeItem;
|
|
1661
|
+
static noChangeItem(): TokenConfigurationChangeItem;
|
|
1662
|
+
static MarketplaceTradeModeItem(trade_mode: TokenTradeMode): TokenConfigurationChangeItem;
|
|
1663
|
+
static MarketplaceTradeModeAdminGroupItem(action_taker: AuthorizedActionTakers): TokenConfigurationChangeItem;
|
|
1664
|
+
static MarketplaceTradeModeControlGroupItem(action_taker: AuthorizedActionTakers): TokenConfigurationChangeItem;
|
|
1608
1665
|
static NewTokensDestinationIdentityItem(js_identity_id: Identifier | Uint8Array | string): TokenConfigurationChangeItem;
|
|
1609
1666
|
static NewTokensDestinationIdentityAdminGroupItem(action_taker: AuthorizedActionTakers): TokenConfigurationChangeItem;
|
|
1610
1667
|
static NewTokensDestinationIdentityControlGroupItem(action_taker: AuthorizedActionTakers): TokenConfigurationChangeItem;
|
|
1611
|
-
static noChangeItem(): TokenConfigurationChangeItem;
|
|
1612
|
-
getItemName(): string;
|
|
1613
|
-
getItem(): any;
|
|
1614
|
-
static MainControlGroupItem(group_contract_position?: number | null): TokenConfigurationChangeItem;
|
|
1615
1668
|
static readonly __struct: string;
|
|
1616
1669
|
readonly __type: string;
|
|
1617
1670
|
}
|
|
@@ -1919,16 +1972,149 @@ export type InitInput = RequestInfo | URL | Response | BufferSource | WebAssembl
|
|
|
1919
1972
|
|
|
1920
1973
|
export interface InitOutput {
|
|
1921
1974
|
readonly memory: WebAssembly.Memory;
|
|
1975
|
+
readonly __wbg_assetlockproof_free: (a: number, b: number) => void;
|
|
1976
|
+
readonly __wbg_groupstatetransitioninfostatus_free: (a: number, b: number) => void;
|
|
1977
|
+
readonly __wbg_identifier_free: (a: number, b: number) => void;
|
|
1978
|
+
readonly __wbg_identitypublickey_free: (a: number, b: number) => void;
|
|
1979
|
+
readonly __wbg_partialidentity_free: (a: number, b: number) => void;
|
|
1980
|
+
readonly __wbg_tokenconfigurationlocalization_free: (a: number, b: number) => void;
|
|
1981
|
+
readonly __wbg_tokendestroyfrozenfundstransition_free: (a: number, b: number) => void;
|
|
1982
|
+
readonly __wbg_tokenkeepshistoryrules_free: (a: number, b: number) => void;
|
|
1983
|
+
readonly assetlockproof_createChainAssetLockProof: (a: number, b: number) => [number, number, number];
|
|
1984
|
+
readonly assetlockproof_createIdentityId: (a: number) => [number, number, number];
|
|
1985
|
+
readonly assetlockproof_createInstantAssetLockProof: (a: number, b: number, c: number, d: number, e: number) => [number, number, number];
|
|
1986
|
+
readonly assetlockproof_fromBytes: (a: number, b: number) => [number, number, number];
|
|
1987
|
+
readonly assetlockproof_fromHex: (a: number, b: number) => [number, number, number];
|
|
1988
|
+
readonly assetlockproof_fromJSON: (a: any) => [number, number, number];
|
|
1989
|
+
readonly assetlockproof_fromObject: (a: any) => [number, number, number];
|
|
1990
|
+
readonly assetlockproof_getChainLockProof: (a: number) => number;
|
|
1991
|
+
readonly assetlockproof_getInstantLockProof: (a: number) => number;
|
|
1992
|
+
readonly assetlockproof_getLockType: (a: number) => [number, number];
|
|
1993
|
+
readonly assetlockproof_getOutPoint: (a: number) => number;
|
|
1994
|
+
readonly assetlockproof_new: (a: any) => [number, number, number];
|
|
1995
|
+
readonly assetlockproof_struct_name: () => [number, number];
|
|
1996
|
+
readonly assetlockproof_toBytes: (a: number) => [number, number, number, number];
|
|
1997
|
+
readonly assetlockproof_toHex: (a: number) => [number, number, number, number];
|
|
1998
|
+
readonly assetlockproof_toJSON: (a: number) => [number, number, number];
|
|
1999
|
+
readonly assetlockproof_toObject: (a: number) => [number, number, number];
|
|
2000
|
+
readonly assetlockproof_type_name: (a: number) => [number, number];
|
|
2001
|
+
readonly groupstatetransitioninfostatus_action_id: (a: number) => number;
|
|
2002
|
+
readonly groupstatetransitioninfostatus_group_contract_position: (a: number) => number;
|
|
2003
|
+
readonly groupstatetransitioninfostatus_is_proposer: (a: number) => number;
|
|
2004
|
+
readonly groupstatetransitioninfostatus_otherSigner: (a: number, b: any) => [number, number, number];
|
|
2005
|
+
readonly groupstatetransitioninfostatus_proposer: (a: number) => number;
|
|
2006
|
+
readonly groupstatetransitioninfostatus_struct_name: () => [number, number];
|
|
2007
|
+
readonly groupstatetransitioninfostatus_toInfo: (a: number) => number;
|
|
2008
|
+
readonly groupstatetransitioninfostatus_type_name: (a: number) => [number, number];
|
|
2009
|
+
readonly identifier_fromBase58: (a: number, b: number) => [number, number, number];
|
|
2010
|
+
readonly identifier_fromBase64: (a: number, b: number) => [number, number, number];
|
|
2011
|
+
readonly identifier_fromBytes: (a: number, b: number) => [number, number, number];
|
|
2012
|
+
readonly identifier_fromHex: (a: number, b: number) => [number, number, number];
|
|
2013
|
+
readonly identifier_new: (a: any) => [number, number, number];
|
|
2014
|
+
readonly identifier_struct_name: () => [number, number];
|
|
2015
|
+
readonly identifier_toBase58: (a: number) => [number, number];
|
|
2016
|
+
readonly identifier_toBase64: (a: number) => [number, number];
|
|
2017
|
+
readonly identifier_toBytes: (a: number) => [number, number];
|
|
2018
|
+
readonly identifier_toHex: (a: number) => [number, number];
|
|
2019
|
+
readonly identifier_type_name: (a: number) => [number, number];
|
|
2020
|
+
readonly identitypublickey_base64: (a: number) => [number, number, number, number];
|
|
2021
|
+
readonly identitypublickey_fromBase64: (a: number, b: number) => [number, number, number];
|
|
2022
|
+
readonly identitypublickey_fromBytes: (a: number, b: number) => [number, number, number];
|
|
2023
|
+
readonly identitypublickey_fromHex: (a: number, b: number) => [number, number, number];
|
|
2024
|
+
readonly identitypublickey_fromJSON: (a: any) => [number, number, number];
|
|
2025
|
+
readonly identitypublickey_fromObject: (a: any) => [number, number, number];
|
|
2026
|
+
readonly identitypublickey_getContractBounds: (a: number) => any;
|
|
2027
|
+
readonly identitypublickey_getPublicKeyHash: (a: number) => [number, number, number, number];
|
|
2028
|
+
readonly identitypublickey_get_data: (a: number) => [number, number];
|
|
2029
|
+
readonly identitypublickey_get_disabled_at: (a: number) => [number, bigint];
|
|
2030
|
+
readonly identitypublickey_get_key_id: (a: number) => number;
|
|
2031
|
+
readonly identitypublickey_get_key_type: (a: number) => [number, number];
|
|
2032
|
+
readonly identitypublickey_get_key_type_number: (a: number) => number;
|
|
2033
|
+
readonly identitypublickey_get_purpose: (a: number) => [number, number];
|
|
2034
|
+
readonly identitypublickey_get_purpose_number: (a: number) => number;
|
|
2035
|
+
readonly identitypublickey_get_read_only: (a: number) => number;
|
|
2036
|
+
readonly identitypublickey_get_security_level: (a: number) => [number, number];
|
|
2037
|
+
readonly identitypublickey_get_security_level_number: (a: number) => number;
|
|
2038
|
+
readonly identitypublickey_hex: (a: number) => [number, number, number, number];
|
|
2039
|
+
readonly identitypublickey_isMaster: (a: number) => number;
|
|
2040
|
+
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];
|
|
2041
|
+
readonly identitypublickey_set_data: (a: number, b: number, c: number) => [number, number];
|
|
2042
|
+
readonly identitypublickey_set_disabled_at: (a: number, b: bigint) => void;
|
|
2043
|
+
readonly identitypublickey_set_key_id: (a: number, b: number) => void;
|
|
2044
|
+
readonly identitypublickey_set_key_type: (a: number, b: any) => [number, number];
|
|
2045
|
+
readonly identitypublickey_set_key_type_number: (a: number, b: any) => [number, number];
|
|
2046
|
+
readonly identitypublickey_set_purpose: (a: number, b: any) => [number, number];
|
|
2047
|
+
readonly identitypublickey_set_purpose_number: (a: number, b: any) => [number, number];
|
|
2048
|
+
readonly identitypublickey_set_read_only: (a: number, b: number) => void;
|
|
2049
|
+
readonly identitypublickey_set_security_level: (a: number, b: any) => [number, number];
|
|
2050
|
+
readonly identitypublickey_set_security_level_number: (a: number, b: any) => [number, number];
|
|
2051
|
+
readonly identitypublickey_struct_name: () => [number, number];
|
|
2052
|
+
readonly identitypublickey_toBytes: (a: number) => [number, number, number, number];
|
|
2053
|
+
readonly identitypublickey_toJSON: (a: number) => [number, number, number];
|
|
2054
|
+
readonly identitypublickey_toObject: (a: number) => [number, number, number];
|
|
2055
|
+
readonly identitypublickey_type_name: (a: number) => [number, number];
|
|
2056
|
+
readonly identitypublickey_validatePrivateKey: (a: number, b: number, c: number, d: any) => [number, number, number];
|
|
2057
|
+
readonly partialidentity_balance: (a: number) => [number, bigint];
|
|
2058
|
+
readonly partialidentity_id: (a: number) => number;
|
|
2059
|
+
readonly partialidentity_loaded_public_keys: (a: number) => [number, number, number];
|
|
2060
|
+
readonly partialidentity_new: (a: any, b: any, c: number, d: bigint, e: number, f: bigint, g: number) => [number, number, number];
|
|
2061
|
+
readonly partialidentity_not_found_public_keys: (a: number) => any;
|
|
2062
|
+
readonly partialidentity_revision: (a: number) => [number, bigint];
|
|
2063
|
+
readonly partialidentity_set_balance: (a: number, b: number, c: bigint) => void;
|
|
2064
|
+
readonly partialidentity_set_id: (a: number, b: any) => [number, number];
|
|
2065
|
+
readonly partialidentity_set_loaded_public_keys: (a: number, b: any) => [number, number];
|
|
2066
|
+
readonly partialidentity_set_not_found_public_keys: (a: number, b: number) => [number, number];
|
|
2067
|
+
readonly partialidentity_set_revision: (a: number, b: number, c: bigint) => void;
|
|
2068
|
+
readonly partialidentity_toJSON: (a: number) => [number, number, number];
|
|
2069
|
+
readonly partialidentity_toObject: (a: number) => [number, number, number];
|
|
2070
|
+
readonly tokenconfigurationlocalization_fromJSON: (a: any) => [number, number, number];
|
|
2071
|
+
readonly tokenconfigurationlocalization_fromObject: (a: any) => [number, number, number];
|
|
2072
|
+
readonly tokenconfigurationlocalization_get_plural_form: (a: number) => [number, number];
|
|
2073
|
+
readonly tokenconfigurationlocalization_get_should_capitalize: (a: number) => number;
|
|
2074
|
+
readonly tokenconfigurationlocalization_get_singular_form: (a: number) => [number, number];
|
|
2075
|
+
readonly tokenconfigurationlocalization_new: (a: number, b: number, c: number, d: number, e: number) => number;
|
|
2076
|
+
readonly tokenconfigurationlocalization_set_plural_form: (a: number, b: number, c: number) => void;
|
|
2077
|
+
readonly tokenconfigurationlocalization_set_should_capitalize: (a: number, b: number) => void;
|
|
2078
|
+
readonly tokenconfigurationlocalization_set_singular_form: (a: number, b: number, c: number) => void;
|
|
2079
|
+
readonly tokenconfigurationlocalization_struct_name: () => [number, number];
|
|
2080
|
+
readonly tokenconfigurationlocalization_toJSON: (a: number) => [number, number, number];
|
|
2081
|
+
readonly tokenconfigurationlocalization_toObject: (a: number) => [number, number, number];
|
|
2082
|
+
readonly tokenconfigurationlocalization_type_name: (a: number) => [number, number];
|
|
2083
|
+
readonly tokendestroyfrozenfundstransition_get_base: (a: number) => number;
|
|
2084
|
+
readonly tokendestroyfrozenfundstransition_get_frozen_identity_id: (a: number) => number;
|
|
2085
|
+
readonly tokendestroyfrozenfundstransition_get_public_note: (a: number) => [number, number];
|
|
2086
|
+
readonly tokendestroyfrozenfundstransition_new: (a: number, b: any, c: number, d: number) => [number, number, number];
|
|
2087
|
+
readonly tokendestroyfrozenfundstransition_set_base: (a: number, b: number) => void;
|
|
2088
|
+
readonly tokendestroyfrozenfundstransition_set_frozen_identity_id: (a: number, b: any) => [number, number];
|
|
2089
|
+
readonly tokendestroyfrozenfundstransition_set_public_note: (a: number, b: number, c: number) => void;
|
|
2090
|
+
readonly tokendestroyfrozenfundstransition_struct_name: () => [number, number];
|
|
2091
|
+
readonly tokendestroyfrozenfundstransition_type_name: (a: number) => [number, number];
|
|
2092
|
+
readonly tokenkeepshistoryrules_get_keeps_burning_history: (a: number) => number;
|
|
2093
|
+
readonly tokenkeepshistoryrules_get_keeps_direct_pricing_history: (a: number) => number;
|
|
2094
|
+
readonly tokenkeepshistoryrules_get_keeps_direct_purchase_history: (a: number) => number;
|
|
2095
|
+
readonly tokenkeepshistoryrules_get_keeps_freezing_history: (a: number) => number;
|
|
2096
|
+
readonly tokenkeepshistoryrules_get_keeps_minting_history: (a: number) => number;
|
|
2097
|
+
readonly tokenkeepshistoryrules_get_keeps_transfer_history: (a: number) => number;
|
|
2098
|
+
readonly tokenkeepshistoryrules_new: (a: number, b: number, c: number, d: number, e: number, f: number) => number;
|
|
2099
|
+
readonly tokenkeepshistoryrules_set_keeps_burning_history: (a: number, b: number) => void;
|
|
2100
|
+
readonly tokenkeepshistoryrules_set_keeps_direct_pricing_history: (a: number, b: number) => void;
|
|
2101
|
+
readonly tokenkeepshistoryrules_set_keeps_direct_purchase_history: (a: number, b: number) => void;
|
|
2102
|
+
readonly tokenkeepshistoryrules_set_keeps_freezing_history: (a: number, b: number) => void;
|
|
2103
|
+
readonly tokenkeepshistoryrules_set_keeps_minting_history: (a: number, b: number) => void;
|
|
2104
|
+
readonly tokenkeepshistoryrules_set_keeps_transfer_history: (a: number, b: number) => void;
|
|
2105
|
+
readonly tokenkeepshistoryrules_struct_name: () => [number, number];
|
|
2106
|
+
readonly tokenkeepshistoryrules_type_name: (a: number) => [number, number];
|
|
2107
|
+
readonly identifier_toJSON: (a: number) => [number, number];
|
|
2108
|
+
readonly identifier_toString: (a: number) => [number, number];
|
|
1922
2109
|
readonly __wbg_corescript_free: (a: number, b: number) => void;
|
|
1923
|
-
readonly
|
|
2110
|
+
readonly __wbg_datacontractcreatetransition_free: (a: number, b: number) => void;
|
|
2111
|
+
readonly __wbg_feestrategystep_free: (a: number, b: number) => void;
|
|
2112
|
+
readonly __wbg_groupstatetransitioninfo_free: (a: number, b: number) => void;
|
|
1924
2113
|
readonly __wbg_identitycreditwithdrawaltransition_free: (a: number, b: number) => void;
|
|
1925
|
-
readonly
|
|
1926
|
-
readonly
|
|
2114
|
+
readonly __wbg_identitypublickeyincreation_free: (a: number, b: number) => void;
|
|
2115
|
+
readonly __wbg_outpoint_free: (a: number, b: number) => void;
|
|
2116
|
+
readonly __wbg_platformaddresssigner_free: (a: number, b: number) => void;
|
|
1927
2117
|
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
2118
|
readonly corescript_fromBytes: (a: number, b: number) => number;
|
|
1933
2119
|
readonly corescript_newP2PKH: (a: number, b: number) => number;
|
|
1934
2120
|
readonly corescript_newP2SH: (a: number, b: number) => number;
|
|
@@ -1940,36 +2126,40 @@ export interface InitOutput {
|
|
|
1940
2126
|
readonly corescript_toHex: (a: number) => [number, number];
|
|
1941
2127
|
readonly corescript_toString: (a: number) => [number, number];
|
|
1942
2128
|
readonly corescript_type_name: (a: number) => [number, number];
|
|
1943
|
-
readonly
|
|
1944
|
-
readonly
|
|
1945
|
-
readonly
|
|
1946
|
-
readonly
|
|
1947
|
-
readonly
|
|
1948
|
-
readonly
|
|
1949
|
-
readonly
|
|
1950
|
-
readonly
|
|
1951
|
-
readonly
|
|
1952
|
-
readonly
|
|
1953
|
-
readonly
|
|
1954
|
-
readonly
|
|
1955
|
-
readonly
|
|
1956
|
-
readonly
|
|
1957
|
-
readonly
|
|
1958
|
-
readonly
|
|
1959
|
-
readonly
|
|
1960
|
-
readonly
|
|
1961
|
-
readonly
|
|
1962
|
-
readonly
|
|
1963
|
-
readonly
|
|
1964
|
-
readonly
|
|
1965
|
-
readonly
|
|
1966
|
-
readonly
|
|
1967
|
-
readonly
|
|
1968
|
-
readonly
|
|
1969
|
-
readonly
|
|
1970
|
-
readonly
|
|
1971
|
-
readonly
|
|
1972
|
-
readonly
|
|
2129
|
+
readonly datacontractcreatetransition_fromBase64: (a: number, b: number) => [number, number, number];
|
|
2130
|
+
readonly datacontractcreatetransition_fromBytes: (a: number, b: number) => [number, number, number];
|
|
2131
|
+
readonly datacontractcreatetransition_fromHex: (a: number, b: number) => [number, number, number];
|
|
2132
|
+
readonly datacontractcreatetransition_fromJSON: (a: any) => [number, number, number];
|
|
2133
|
+
readonly datacontractcreatetransition_fromObject: (a: any) => [number, number, number];
|
|
2134
|
+
readonly datacontractcreatetransition_fromStateTransition: (a: number) => [number, number, number];
|
|
2135
|
+
readonly datacontractcreatetransition_getDataContract: (a: number, b: any, c: number) => [number, number, number];
|
|
2136
|
+
readonly datacontractcreatetransition_get_feature_version: (a: number) => number;
|
|
2137
|
+
readonly datacontractcreatetransition_get_identity_nonce: (a: number) => bigint;
|
|
2138
|
+
readonly datacontractcreatetransition_new: (a: number, b: bigint, c: any) => [number, number, number];
|
|
2139
|
+
readonly datacontractcreatetransition_setDataContract: (a: number, b: number, c: any) => [number, number];
|
|
2140
|
+
readonly datacontractcreatetransition_struct_name: () => [number, number];
|
|
2141
|
+
readonly datacontractcreatetransition_toBase64: (a: number) => [number, number, number, number];
|
|
2142
|
+
readonly datacontractcreatetransition_toBytes: (a: number) => [number, number, number, number];
|
|
2143
|
+
readonly datacontractcreatetransition_toHex: (a: number) => [number, number, number, number];
|
|
2144
|
+
readonly datacontractcreatetransition_toJSON: (a: number) => [number, number, number];
|
|
2145
|
+
readonly datacontractcreatetransition_toObject: (a: number) => [number, number, number];
|
|
2146
|
+
readonly datacontractcreatetransition_toStateTransition: (a: number) => number;
|
|
2147
|
+
readonly datacontractcreatetransition_type_name: (a: number) => [number, number];
|
|
2148
|
+
readonly datacontractcreatetransition_verifyProtocolVersion: (a: number, b: number) => [number, number, number];
|
|
2149
|
+
readonly feestrategystep_deductFromInput: (a: number) => number;
|
|
2150
|
+
readonly feestrategystep_index: (a: number) => number;
|
|
2151
|
+
readonly feestrategystep_isDeductFromInput: (a: number) => number;
|
|
2152
|
+
readonly feestrategystep_isReduceOutput: (a: number) => number;
|
|
2153
|
+
readonly feestrategystep_reduceOutput: (a: number) => number;
|
|
2154
|
+
readonly groupstatetransitioninfo_get_action_id: (a: number) => number;
|
|
2155
|
+
readonly groupstatetransitioninfo_get_action_is_proposer: (a: number) => number;
|
|
2156
|
+
readonly groupstatetransitioninfo_get_group_contract_position: (a: number) => number;
|
|
2157
|
+
readonly groupstatetransitioninfo_new: (a: number, b: any, c: number) => [number, number, number];
|
|
2158
|
+
readonly groupstatetransitioninfo_set_action_id: (a: number, b: any) => [number, number];
|
|
2159
|
+
readonly groupstatetransitioninfo_set_action_is_proposer: (a: number, b: number) => void;
|
|
2160
|
+
readonly groupstatetransitioninfo_set_group_contract_position: (a: number, b: number) => void;
|
|
2161
|
+
readonly groupstatetransitioninfo_struct_name: () => [number, number];
|
|
2162
|
+
readonly groupstatetransitioninfo_type_name: (a: number) => [number, number];
|
|
1973
2163
|
readonly identitycreditwithdrawaltransition_fromBase64: (a: number, b: number) => [number, number, number];
|
|
1974
2164
|
readonly identitycreditwithdrawaltransition_fromBytes: (a: number, b: number) => [number, number, number];
|
|
1975
2165
|
readonly identitycreditwithdrawaltransition_fromHex: (a: number, b: number) => [number, number, number];
|
|
@@ -2007,30 +2197,49 @@ export interface InitOutput {
|
|
|
2007
2197
|
readonly identitycreditwithdrawaltransition_toObject: (a: number) => [number, number, number];
|
|
2008
2198
|
readonly identitycreditwithdrawaltransition_toStateTransition: (a: number) => number;
|
|
2009
2199
|
readonly identitycreditwithdrawaltransition_type_name: (a: number) => [number, number];
|
|
2010
|
-
readonly
|
|
2011
|
-
readonly
|
|
2012
|
-
readonly
|
|
2013
|
-
readonly
|
|
2014
|
-
readonly
|
|
2015
|
-
readonly
|
|
2016
|
-
readonly
|
|
2017
|
-
readonly
|
|
2018
|
-
readonly
|
|
2019
|
-
readonly
|
|
2020
|
-
readonly
|
|
2021
|
-
readonly
|
|
2022
|
-
readonly
|
|
2023
|
-
readonly
|
|
2024
|
-
readonly
|
|
2025
|
-
readonly
|
|
2026
|
-
readonly
|
|
2027
|
-
readonly
|
|
2028
|
-
readonly
|
|
2029
|
-
readonly
|
|
2030
|
-
readonly
|
|
2031
|
-
readonly
|
|
2032
|
-
readonly
|
|
2033
|
-
readonly
|
|
2200
|
+
readonly identitypublickeyincreation_fromJSON: (a: any) => [number, number, number];
|
|
2201
|
+
readonly identitypublickeyincreation_fromObject: (a: any) => [number, number, number];
|
|
2202
|
+
readonly identitypublickeyincreation_getHash: (a: number) => [number, number, number, number];
|
|
2203
|
+
readonly identitypublickeyincreation_get_contract_bounds: (a: number) => number;
|
|
2204
|
+
readonly identitypublickeyincreation_get_data: (a: number) => [number, number];
|
|
2205
|
+
readonly identitypublickeyincreation_get_key_id: (a: number) => number;
|
|
2206
|
+
readonly identitypublickeyincreation_get_key_type: (a: number) => [number, number];
|
|
2207
|
+
readonly identitypublickeyincreation_get_purpose: (a: number) => [number, number];
|
|
2208
|
+
readonly identitypublickeyincreation_get_read_only: (a: number) => number;
|
|
2209
|
+
readonly identitypublickeyincreation_get_security_level: (a: number) => [number, number];
|
|
2210
|
+
readonly identitypublickeyincreation_get_signature: (a: number) => [number, number];
|
|
2211
|
+
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];
|
|
2212
|
+
readonly identitypublickeyincreation_set_contract_bounds: (a: number, b: any) => [number, number];
|
|
2213
|
+
readonly identitypublickeyincreation_set_data: (a: number, b: number, c: number) => void;
|
|
2214
|
+
readonly identitypublickeyincreation_set_key_id: (a: number, b: number) => void;
|
|
2215
|
+
readonly identitypublickeyincreation_set_key_type: (a: number, b: any) => [number, number];
|
|
2216
|
+
readonly identitypublickeyincreation_set_purpose: (a: number, b: any) => [number, number];
|
|
2217
|
+
readonly identitypublickeyincreation_set_read_only: (a: number, b: number) => void;
|
|
2218
|
+
readonly identitypublickeyincreation_set_security_level: (a: number, b: any) => [number, number];
|
|
2219
|
+
readonly identitypublickeyincreation_set_signature: (a: number, b: number, c: number) => void;
|
|
2220
|
+
readonly identitypublickeyincreation_struct_name: () => [number, number];
|
|
2221
|
+
readonly identitypublickeyincreation_toIdentityPublicKey: (a: number) => [number, number, number];
|
|
2222
|
+
readonly identitypublickeyincreation_toJSON: (a: number) => [number, number, number];
|
|
2223
|
+
readonly identitypublickeyincreation_toObject: (a: number) => [number, number, number];
|
|
2224
|
+
readonly identitypublickeyincreation_type_name: (a: number) => [number, number];
|
|
2225
|
+
readonly outpoint_fromBase64: (a: number, b: number) => [number, number, number];
|
|
2226
|
+
readonly outpoint_fromBytes: (a: number, b: number) => number;
|
|
2227
|
+
readonly outpoint_fromHex: (a: number, b: number) => [number, number, number];
|
|
2228
|
+
readonly outpoint_getTXID: (a: number) => [number, number];
|
|
2229
|
+
readonly outpoint_getVOUT: (a: number) => number;
|
|
2230
|
+
readonly outpoint_new: (a: number, b: number, c: number) => [number, number, number];
|
|
2231
|
+
readonly outpoint_struct_name: () => [number, number];
|
|
2232
|
+
readonly outpoint_toBase64: (a: number) => [number, number];
|
|
2233
|
+
readonly outpoint_toBytes: (a: number) => [number, number];
|
|
2234
|
+
readonly outpoint_toHex: (a: number) => [number, number];
|
|
2235
|
+
readonly outpoint_type_name: (a: number) => [number, number];
|
|
2236
|
+
readonly platformaddresssigner_addKey: (a: number, b: number) => [number, number, number];
|
|
2237
|
+
readonly platformaddresssigner_getPrivateKeysBytes: (a: number) => [number, number, number];
|
|
2238
|
+
readonly platformaddresssigner_hasKey: (a: number, b: any) => [number, number, number];
|
|
2239
|
+
readonly platformaddresssigner_key_count: (a: number) => number;
|
|
2240
|
+
readonly platformaddresssigner_new: () => number;
|
|
2241
|
+
readonly platformaddresssigner_struct_name: () => [number, number];
|
|
2242
|
+
readonly platformaddresssigner_type_name: (a: number) => [number, number];
|
|
2034
2243
|
readonly statetransition_fromBase64: (a: number, b: number) => [number, number, number];
|
|
2035
2244
|
readonly statetransition_fromBytes: (a: number, b: number) => [number, number, number];
|
|
2036
2245
|
readonly statetransition_fromHex: (a: number, b: number) => [number, number, number];
|
|
@@ -2059,240 +2268,32 @@ export interface InitOutput {
|
|
|
2059
2268
|
readonly statetransition_toHex: (a: number) => [number, number, number];
|
|
2060
2269
|
readonly statetransition_type_name: (a: number) => [number, number];
|
|
2061
2270
|
readonly statetransition_verifyPublicKey: (a: number, b: number, c: number, d: number) => [number, number];
|
|
2062
|
-
readonly
|
|
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;
|
|
2140
|
-
readonly __wbg_blockbaseddistribution_free: (a: number, b: number) => void;
|
|
2141
|
-
readonly __wbg_changecontrolrules_free: (a: number, b: number) => void;
|
|
2142
|
-
readonly __wbg_distributionfunction_free: (a: number, b: number) => void;
|
|
2143
|
-
readonly __wbg_epochbaseddistribution_free: (a: number, b: number) => void;
|
|
2144
|
-
readonly __wbg_finalizedepochinfo_free: (a: number, b: number) => void;
|
|
2145
|
-
readonly __wbg_get_blockbaseddistribution_interval: (a: number) => bigint;
|
|
2146
|
-
readonly __wbg_get_epochbaseddistribution_interval: (a: number) => number;
|
|
2147
|
-
readonly __wbg_get_timebaseddistribution_interval: (a: number) => bigint;
|
|
2148
|
-
readonly __wbg_identitytokeninfo_free: (a: number, b: number) => void;
|
|
2149
|
-
readonly __wbg_rewarddistributiontype_free: (a: number, b: number) => void;
|
|
2150
|
-
readonly __wbg_set_blockbaseddistribution_interval: (a: number, b: bigint) => void;
|
|
2151
|
-
readonly __wbg_set_epochbaseddistribution_interval: (a: number, b: number) => void;
|
|
2152
|
-
readonly __wbg_timebaseddistribution_free: (a: number, b: number) => void;
|
|
2153
|
-
readonly __wbg_tokendistributionrules_free: (a: number, b: number) => void;
|
|
2154
|
-
readonly __wbg_tokenperpetualdistribution_free: (a: number, b: number) => void;
|
|
2155
|
-
readonly __wbg_tokenpreprogrammeddistribution_free: (a: number, b: number) => void;
|
|
2156
|
-
readonly actiontaker_getType: (a: number) => [number, number];
|
|
2157
|
-
readonly actiontaker_get_value: (a: number) => any;
|
|
2158
|
-
readonly actiontaker_new: (a: any) => [number, number, number];
|
|
2159
|
-
readonly actiontaker_set_value: (a: number, b: any) => [number, number];
|
|
2160
|
-
readonly actiontaker_struct_name: () => [number, number];
|
|
2161
|
-
readonly actiontaker_type_name: (a: number) => [number, number];
|
|
2162
|
-
readonly authorizedactiontakers_ContractOwner: () => number;
|
|
2163
|
-
readonly authorizedactiontakers_Group: (a: number) => number;
|
|
2164
|
-
readonly authorizedactiontakers_Identity: (a: any) => [number, number, number];
|
|
2165
|
-
readonly authorizedactiontakers_MainGroup: () => number;
|
|
2166
|
-
readonly authorizedactiontakers_NoOne: () => number;
|
|
2167
|
-
readonly authorizedactiontakers_getTakerType: (a: number) => [number, number];
|
|
2168
|
-
readonly authorizedactiontakers_getValue: (a: number) => any;
|
|
2169
|
-
readonly authorizedactiontakers_struct_name: () => [number, number];
|
|
2170
|
-
readonly authorizedactiontakers_type_name: (a: number) => [number, number];
|
|
2171
|
-
readonly blockbaseddistribution_get_function: (a: number) => number;
|
|
2172
|
-
readonly blockbaseddistribution_set_function: (a: number, b: number) => void;
|
|
2173
|
-
readonly blockbaseddistribution_struct_name: () => [number, number];
|
|
2174
|
-
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
|
-
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
|
-
readonly distributionfunction_FixedAmountDistribution: (a: bigint) => number;
|
|
2191
|
-
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;
|
|
2192
|
-
readonly distributionfunction_Linear: (a: bigint, b: bigint, c: number, d: bigint, e: bigint, f: number, g: bigint, h: number, i: bigint) => number;
|
|
2193
|
-
readonly distributionfunction_Logarithmic: (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;
|
|
2194
|
-
readonly distributionfunction_Polynomial: (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;
|
|
2195
|
-
readonly distributionfunction_Random: (a: bigint, b: bigint) => number;
|
|
2196
|
-
readonly distributionfunction_StepDecreasingAmount: (a: number, b: number, c: number, d: number, e: bigint, f: number, g: bigint, h: bigint, i: number, j: bigint) => number;
|
|
2197
|
-
readonly distributionfunction_Stepwise: (a: any) => [number, number, number];
|
|
2198
|
-
readonly distributionfunction_getFunctionName: (a: number) => [number, number];
|
|
2199
|
-
readonly distributionfunction_getFunctionValue: (a: number) => [number, number, number];
|
|
2200
|
-
readonly distributionfunction_struct_name: () => [number, number];
|
|
2201
|
-
readonly distributionfunction_type_name: (a: number) => [number, number];
|
|
2202
|
-
readonly epochbaseddistribution_get_function: (a: number) => number;
|
|
2203
|
-
readonly epochbaseddistribution_set_function: (a: number, b: number) => void;
|
|
2204
|
-
readonly epochbaseddistribution_struct_name: () => [number, number];
|
|
2205
|
-
readonly epochbaseddistribution_type_name: (a: number) => [number, number];
|
|
2206
|
-
readonly finalizedepochinfo_block_proposers: (a: number) => [number, number, number];
|
|
2207
|
-
readonly finalizedepochinfo_core_block_rewards: (a: number) => any;
|
|
2208
|
-
readonly finalizedepochinfo_fee_multiplier: (a: number) => number;
|
|
2209
|
-
readonly finalizedepochinfo_fee_multiplier_permille: (a: number) => bigint;
|
|
2210
|
-
readonly finalizedepochinfo_first_block_height: (a: number) => any;
|
|
2211
|
-
readonly finalizedepochinfo_first_block_time: (a: number) => any;
|
|
2212
|
-
readonly finalizedepochinfo_first_core_block_height: (a: number) => number;
|
|
2213
|
-
readonly finalizedepochinfo_fromJSON: (a: any) => [number, number, number];
|
|
2214
|
-
readonly finalizedepochinfo_fromObject: (a: any) => [number, number, number];
|
|
2215
|
-
readonly finalizedepochinfo_new: (a: bigint, b: bigint, c: bigint, d: number, e: number, f: bigint, g: bigint, h: bigint, i: bigint, j: any, k: bigint, l: number) => [number, number, number];
|
|
2216
|
-
readonly finalizedepochinfo_next_epoch_start_core_block_height: (a: number) => number;
|
|
2217
|
-
readonly finalizedepochinfo_protocol_version: (a: number) => number;
|
|
2218
|
-
readonly finalizedepochinfo_set_block_proposers: (a: number, b: any) => [number, number];
|
|
2219
|
-
readonly finalizedepochinfo_set_core_block_rewards: (a: number, b: bigint) => void;
|
|
2220
|
-
readonly finalizedepochinfo_set_fee_multiplier_permille: (a: number, b: bigint) => void;
|
|
2221
|
-
readonly finalizedepochinfo_set_first_block_height: (a: number, b: bigint) => void;
|
|
2222
|
-
readonly finalizedepochinfo_set_first_block_time: (a: number, b: bigint) => void;
|
|
2223
|
-
readonly finalizedepochinfo_set_first_core_block_height: (a: number, b: number) => void;
|
|
2224
|
-
readonly finalizedepochinfo_set_next_epoch_start_core_block_height: (a: number, b: number) => void;
|
|
2225
|
-
readonly finalizedepochinfo_set_protocol_version: (a: number, b: number) => void;
|
|
2226
|
-
readonly finalizedepochinfo_set_total_blocks_in_epoch: (a: number, b: bigint) => void;
|
|
2227
|
-
readonly finalizedepochinfo_set_total_created_storage_fees: (a: number, b: bigint) => void;
|
|
2228
|
-
readonly finalizedepochinfo_set_total_distributed_storage_fees: (a: number, b: bigint) => void;
|
|
2229
|
-
readonly finalizedepochinfo_set_total_processing_fees: (a: number, b: bigint) => void;
|
|
2230
|
-
readonly finalizedepochinfo_struct_name: (a: number) => [number, number];
|
|
2231
|
-
readonly finalizedepochinfo_toJSON: (a: number) => [number, number, number];
|
|
2232
|
-
readonly finalizedepochinfo_toObject: (a: number) => [number, number, number];
|
|
2233
|
-
readonly finalizedepochinfo_total_blocks_in_epoch: (a: number) => any;
|
|
2234
|
-
readonly finalizedepochinfo_total_created_storage_fees: (a: number) => any;
|
|
2235
|
-
readonly finalizedepochinfo_total_distributed_storage_fees: (a: number) => any;
|
|
2236
|
-
readonly finalizedepochinfo_total_processing_fees: (a: number) => any;
|
|
2237
|
-
readonly identitytokeninfo_frozen: (a: number) => number;
|
|
2238
|
-
readonly rewarddistributiontype_BlockBasedDistribution: (a: bigint, b: number) => number;
|
|
2239
|
-
readonly rewarddistributiontype_EpochBasedDistribution: (a: number, b: number) => number;
|
|
2240
|
-
readonly rewarddistributiontype_TimeBasedDistribution: (a: bigint, b: number) => number;
|
|
2241
|
-
readonly rewarddistributiontype_getDistribution: (a: number) => any;
|
|
2242
|
-
readonly rewarddistributiontype_struct_name: () => [number, number];
|
|
2243
|
-
readonly rewarddistributiontype_type_name: (a: number) => [number, number];
|
|
2244
|
-
readonly timebaseddistribution_get_function: (a: number) => number;
|
|
2245
|
-
readonly timebaseddistribution_set_function: (a: number, b: number) => void;
|
|
2246
|
-
readonly timebaseddistribution_struct_name: () => [number, number];
|
|
2247
|
-
readonly timebaseddistribution_type_name: (a: number) => [number, number];
|
|
2248
|
-
readonly tokenconfigurationchangeitem_NewTokensDestinationIdentityAdminGroupItem: (a: number) => number;
|
|
2249
|
-
readonly tokenconfigurationchangeitem_NewTokensDestinationIdentityControlGroupItem: (a: number) => number;
|
|
2250
|
-
readonly tokenconfigurationchangeitem_NewTokensDestinationIdentityItem: (a: any) => [number, number, number];
|
|
2251
|
-
readonly tokendistributionrules_get_change_direct_purchase_pricing_rules: (a: number) => number;
|
|
2252
|
-
readonly tokendistributionrules_get_minting_allow_choosing_destination: (a: number) => number;
|
|
2253
|
-
readonly tokendistributionrules_get_minting_allow_choosing_destination_rules: (a: number) => number;
|
|
2254
|
-
readonly tokendistributionrules_get_new_tokens_destination_identity: (a: number) => number;
|
|
2255
|
-
readonly tokendistributionrules_get_new_tokens_destination_identity_rules: (a: number) => number;
|
|
2256
|
-
readonly tokendistributionrules_get_perpetual_distribution: (a: number) => number;
|
|
2257
|
-
readonly tokendistributionrules_get_perpetual_distribution_rules: (a: number) => number;
|
|
2258
|
-
readonly tokendistributionrules_get_pre_programmed_distribution: (a: number) => number;
|
|
2259
|
-
readonly tokendistributionrules_new: (a: any, b: number, c: any, d: any, e: number, f: number, g: number, h: number) => [number, number, number];
|
|
2260
|
-
readonly tokendistributionrules_set_change_direct_purchase_pricing_rules: (a: number, b: number) => void;
|
|
2261
|
-
readonly tokendistributionrules_set_minting_allow_choosing_destination: (a: number, b: number) => void;
|
|
2262
|
-
readonly tokendistributionrules_set_minting_allow_choosing_destination_rules: (a: number, b: number) => void;
|
|
2263
|
-
readonly tokendistributionrules_set_new_tokens_destination_identity: (a: number, b: any) => [number, number];
|
|
2264
|
-
readonly tokendistributionrules_set_new_tokens_destination_identity_rules: (a: number, b: number) => void;
|
|
2265
|
-
readonly tokendistributionrules_set_perpetual_distribution: (a: number, b: any) => [number, number];
|
|
2266
|
-
readonly tokendistributionrules_set_perpetual_distribution_rules: (a: number, b: number) => void;
|
|
2267
|
-
readonly tokendistributionrules_set_pre_programmed_distribution: (a: number, b: any) => [number, number];
|
|
2268
|
-
readonly tokendistributionrules_struct_name: () => [number, number];
|
|
2269
|
-
readonly tokendistributionrules_type_name: (a: number) => [number, number];
|
|
2270
|
-
readonly tokenperpetualdistribution_distribution_type: (a: number) => number;
|
|
2271
|
-
readonly tokenperpetualdistribution_new: (a: number, b: number) => number;
|
|
2272
|
-
readonly tokenperpetualdistribution_recipient: (a: number) => number;
|
|
2273
|
-
readonly tokenperpetualdistribution_set_distribution_type: (a: number, b: number) => void;
|
|
2274
|
-
readonly tokenperpetualdistribution_set_recipient: (a: number, b: number) => void;
|
|
2275
|
-
readonly tokenperpetualdistribution_struct_name: () => [number, number];
|
|
2276
|
-
readonly tokenperpetualdistribution_type_name: (a: number) => [number, number];
|
|
2277
|
-
readonly tokenpreprogrammeddistribution_get_distributions: (a: number) => [number, number, number];
|
|
2278
|
-
readonly tokenpreprogrammeddistribution_new: (a: any) => [number, number, number];
|
|
2279
|
-
readonly tokenpreprogrammeddistribution_set_distributions: (a: number, b: any) => [number, number];
|
|
2280
|
-
readonly tokenpreprogrammeddistribution_struct_name: () => [number, number];
|
|
2281
|
-
readonly tokenpreprogrammeddistribution_type_name: (a: number) => [number, number];
|
|
2282
|
-
readonly finalizedepochinfo_type_name: (a: number) => [number, number];
|
|
2283
|
-
readonly __wbg_set_timebaseddistribution_interval: (a: number, b: bigint) => void;
|
|
2271
|
+
readonly __wbg_chainassetlockproof_free: (a: number, b: number) => void;
|
|
2284
2272
|
readonly __wbg_contenderwithserializeddocument_free: (a: number, b: number) => void;
|
|
2285
|
-
readonly
|
|
2273
|
+
readonly __wbg_documentbasetransition_free: (a: number, b: number) => void;
|
|
2286
2274
|
readonly __wbg_documentpurchasetransition_free: (a: number, b: number) => void;
|
|
2287
2275
|
readonly __wbg_documentreplacetransition_free: (a: number, b: number) => void;
|
|
2288
|
-
readonly
|
|
2289
|
-
readonly __wbg_groupstatetransitioninfo_free: (a: number, b: number) => void;
|
|
2276
|
+
readonly __wbg_documentupdatepricetransition_free: (a: number, b: number) => void;
|
|
2290
2277
|
readonly __wbg_identitycreatetransition_free: (a: number, b: number) => void;
|
|
2291
2278
|
readonly __wbg_identitytopuptransition_free: (a: number, b: number) => void;
|
|
2292
2279
|
readonly __wbg_instantassetlockproof_free: (a: number, b: number) => void;
|
|
2293
|
-
readonly
|
|
2294
|
-
readonly
|
|
2295
|
-
readonly
|
|
2280
|
+
readonly __wbg_masternodevotetransition_free: (a: number, b: number) => void;
|
|
2281
|
+
readonly __wbg_resourcevote_free: (a: number, b: number) => void;
|
|
2282
|
+
readonly __wbg_vote_free: (a: number, b: number) => void;
|
|
2283
|
+
readonly chainassetlockproof_createIdentityId: (a: number) => number;
|
|
2284
|
+
readonly chainassetlockproof_fromBytes: (a: number, b: number) => [number, number, number];
|
|
2285
|
+
readonly chainassetlockproof_fromJSON: (a: any) => [number, number, number];
|
|
2286
|
+
readonly chainassetlockproof_fromObject: (a: any) => [number, number, number];
|
|
2287
|
+
readonly chainassetlockproof_get_core_chain_locked_height: (a: number) => number;
|
|
2288
|
+
readonly chainassetlockproof_get_out_point: (a: number) => number;
|
|
2289
|
+
readonly chainassetlockproof_new: (a: number, b: number) => [number, number, number];
|
|
2290
|
+
readonly chainassetlockproof_set_core_chain_locked_height: (a: number, b: number) => void;
|
|
2291
|
+
readonly chainassetlockproof_set_out_point: (a: number, b: number) => void;
|
|
2292
|
+
readonly chainassetlockproof_struct_name: () => [number, number];
|
|
2293
|
+
readonly chainassetlockproof_toBytes: (a: number) => [number, number, number, number];
|
|
2294
|
+
readonly chainassetlockproof_toJSON: (a: number) => [number, number, number];
|
|
2295
|
+
readonly chainassetlockproof_toObject: (a: number) => [number, number, number];
|
|
2296
|
+
readonly chainassetlockproof_type_name: (a: number) => [number, number];
|
|
2296
2297
|
readonly contenderwithserializeddocument_fromJSON: (a: any) => [number, number, number];
|
|
2297
2298
|
readonly contenderwithserializeddocument_fromObject: (a: any) => [number, number, number];
|
|
2298
2299
|
readonly contenderwithserializeddocument_identity_id: (a: number) => number;
|
|
@@ -2301,20 +2302,19 @@ export interface InitOutput {
|
|
|
2301
2302
|
readonly contenderwithserializeddocument_toJSON: (a: number) => [number, number, number];
|
|
2302
2303
|
readonly contenderwithserializeddocument_toObject: (a: number) => [number, number, number];
|
|
2303
2304
|
readonly contenderwithserializeddocument_vote_tally: (a: number) => number;
|
|
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 documentcreatetransition_type_name: (a: number) => [number, number];
|
|
2305
|
+
readonly documentbasetransition_get_data_contract_id: (a: number) => number;
|
|
2306
|
+
readonly documentbasetransition_get_document_type_name: (a: number) => [number, number];
|
|
2307
|
+
readonly documentbasetransition_get_id: (a: number) => number;
|
|
2308
|
+
readonly documentbasetransition_get_identity_contract_nonce: (a: number) => bigint;
|
|
2309
|
+
readonly documentbasetransition_get_token_payment_info: (a: number) => number;
|
|
2310
|
+
readonly documentbasetransition_new: (a: any, b: bigint, c: number, d: number, e: any, f: any) => [number, number, number];
|
|
2311
|
+
readonly documentbasetransition_set_data_contract_id: (a: number, b: any) => [number, number];
|
|
2312
|
+
readonly documentbasetransition_set_document_type_name: (a: number, b: number, c: number) => void;
|
|
2313
|
+
readonly documentbasetransition_set_id: (a: number, b: any) => [number, number];
|
|
2314
|
+
readonly documentbasetransition_set_identity_contract_nonce: (a: number, b: bigint) => void;
|
|
2315
|
+
readonly documentbasetransition_set_token_payment_info: (a: number, b: number) => void;
|
|
2316
|
+
readonly documentbasetransition_struct_name: () => [number, number];
|
|
2317
|
+
readonly documentbasetransition_type_name: (a: number) => [number, number];
|
|
2318
2318
|
readonly documentpurchasetransition_fromDocumentTransition: (a: number) => [number, number, number];
|
|
2319
2319
|
readonly documentpurchasetransition_get_base: (a: number) => number;
|
|
2320
2320
|
readonly documentpurchasetransition_get_price: (a: number) => bigint;
|
|
@@ -2337,24 +2337,15 @@ export interface InitOutput {
|
|
|
2337
2337
|
readonly documentreplacetransition_struct_name: () => [number, number];
|
|
2338
2338
|
readonly documentreplacetransition_toDocumentTransition: (a: number) => number;
|
|
2339
2339
|
readonly documentreplacetransition_type_name: (a: number) => [number, number];
|
|
2340
|
-
readonly
|
|
2341
|
-
readonly
|
|
2342
|
-
readonly
|
|
2343
|
-
readonly
|
|
2344
|
-
readonly
|
|
2345
|
-
readonly
|
|
2346
|
-
readonly
|
|
2347
|
-
readonly
|
|
2348
|
-
readonly
|
|
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];
|
|
2340
|
+
readonly documentupdatepricetransition_fromDocumentTransition: (a: number) => [number, number, number];
|
|
2341
|
+
readonly documentupdatepricetransition_get_base: (a: number) => number;
|
|
2342
|
+
readonly documentupdatepricetransition_get_price: (a: number) => bigint;
|
|
2343
|
+
readonly documentupdatepricetransition_new: (a: number, b: bigint, c: bigint, d: any) => [number, number, number];
|
|
2344
|
+
readonly documentupdatepricetransition_set_base: (a: number, b: number) => void;
|
|
2345
|
+
readonly documentupdatepricetransition_set_price: (a: number, b: bigint) => void;
|
|
2346
|
+
readonly documentupdatepricetransition_struct_name: () => [number, number];
|
|
2347
|
+
readonly documentupdatepricetransition_toDocumentTransition: (a: number) => number;
|
|
2348
|
+
readonly documentupdatepricetransition_type_name: (a: number) => [number, number];
|
|
2358
2349
|
readonly identitycreatetransition_default: (a: any) => [number, number, number];
|
|
2359
2350
|
readonly identitycreatetransition_fromBase64: (a: number, b: number) => [number, number, number];
|
|
2360
2351
|
readonly identitycreatetransition_fromBytes: (a: number, b: number) => [number, number, number];
|
|
@@ -2422,634 +2413,81 @@ export interface InitOutput {
|
|
|
2422
2413
|
readonly instantassetlockproof_toJSON: (a: number) => [number, number, number];
|
|
2423
2414
|
readonly instantassetlockproof_toObject: (a: number) => [number, number, number];
|
|
2424
2415
|
readonly instantassetlockproof_type_name: (a: number) => [number, number];
|
|
2425
|
-
readonly
|
|
2426
|
-
readonly
|
|
2427
|
-
readonly
|
|
2428
|
-
readonly
|
|
2429
|
-
readonly
|
|
2430
|
-
readonly
|
|
2431
|
-
readonly
|
|
2432
|
-
readonly
|
|
2433
|
-
readonly
|
|
2434
|
-
readonly
|
|
2435
|
-
readonly
|
|
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
|
|
2416
|
+
readonly masternodevotetransition_fromBase64: (a: number, b: number) => [number, number, number];
|
|
2417
|
+
readonly masternodevotetransition_fromBytes: (a: number, b: number) => [number, number, number];
|
|
2418
|
+
readonly masternodevotetransition_fromHex: (a: number, b: number) => [number, number, number];
|
|
2419
|
+
readonly masternodevotetransition_fromJSON: (a: any) => [number, number, number];
|
|
2420
|
+
readonly masternodevotetransition_fromObject: (a: any) => [number, number, number];
|
|
2421
|
+
readonly masternodevotetransition_fromStateTransition: (a: number) => [number, number, number];
|
|
2422
|
+
readonly masternodevotetransition_getSignableBytes: (a: number) => [number, number, number, number];
|
|
2423
|
+
readonly masternodevotetransition_get_asset_lock_proof: (a: number) => number;
|
|
2424
|
+
readonly masternodevotetransition_get_modified_data_ids: (a: number) => [number, number];
|
|
2425
|
+
readonly masternodevotetransition_new: (a: any, b: any, c: number, d: bigint, e: number, f: number, g: number) => [number, number, number];
|
|
2426
|
+
readonly masternodevotetransition_nonce: (a: number) => bigint;
|
|
2427
|
+
readonly masternodevotetransition_pro_tx_hash: (a: number) => number;
|
|
2428
|
+
readonly masternodevotetransition_set_nonce: (a: number, b: bigint) => void;
|
|
2429
|
+
readonly masternodevotetransition_set_pro_tx_hash: (a: number, b: any) => [number, number];
|
|
2430
|
+
readonly masternodevotetransition_set_signature: (a: number, b: number, c: number) => void;
|
|
2431
|
+
readonly masternodevotetransition_set_signature_public_key_id: (a: number, b: number) => void;
|
|
2432
|
+
readonly masternodevotetransition_set_user_fee_increase: (a: number, b: number) => void;
|
|
2433
|
+
readonly masternodevotetransition_set_vote: (a: number, b: number) => void;
|
|
2434
|
+
readonly masternodevotetransition_set_voter_identity_id: (a: number, b: any) => [number, number];
|
|
2435
|
+
readonly masternodevotetransition_signature: (a: number) => [number, number];
|
|
2436
|
+
readonly masternodevotetransition_signature_public_key_id: (a: number) => number;
|
|
2437
|
+
readonly masternodevotetransition_struct_name: () => [number, number];
|
|
2438
|
+
readonly masternodevotetransition_toBase64: (a: number) => [number, number, number, number];
|
|
2439
|
+
readonly masternodevotetransition_toBytes: (a: number) => [number, number, number, number];
|
|
2440
|
+
readonly masternodevotetransition_toHex: (a: number) => [number, number, number, number];
|
|
2441
|
+
readonly masternodevotetransition_toJSON: (a: number) => [number, number, number];
|
|
2442
|
+
readonly masternodevotetransition_toObject: (a: number) => [number, number, number];
|
|
2443
|
+
readonly masternodevotetransition_toStateTransition: (a: number) => number;
|
|
2444
|
+
readonly masternodevotetransition_type_name: (a: number) => [number, number];
|
|
2445
|
+
readonly masternodevotetransition_vote: (a: number) => number;
|
|
2446
|
+
readonly masternodevotetransition_voter_identity_id: (a: number) => number;
|
|
2447
|
+
readonly resourcevote_choice: (a: number) => number;
|
|
2448
|
+
readonly resourcevote_fromJSON: (a: any) => [number, number, number];
|
|
2449
|
+
readonly resourcevote_fromObject: (a: any) => [number, number, number];
|
|
2450
|
+
readonly resourcevote_new: (a: number, b: number) => number;
|
|
2451
|
+
readonly resourcevote_set_choice: (a: number, b: number) => void;
|
|
2452
|
+
readonly resourcevote_set_vote_poll: (a: number, b: number) => void;
|
|
2453
|
+
readonly resourcevote_struct_name: () => [number, number];
|
|
2454
|
+
readonly resourcevote_toJSON: (a: number) => [number, number, number];
|
|
2455
|
+
readonly resourcevote_toObject: (a: number) => [number, number, number];
|
|
2456
|
+
readonly resourcevote_type_name: (a: number) => [number, number];
|
|
2457
|
+
readonly resourcevote_vote_poll: (a: number) => number;
|
|
2458
|
+
readonly vote_fromJSON: (a: any) => [number, number, number];
|
|
2459
|
+
readonly vote_fromObject: (a: any) => [number, number, number];
|
|
2460
|
+
readonly vote_resource_vote_choice: (a: number) => number;
|
|
2461
|
+
readonly vote_set_resource_vote_choice: (a: number, b: number) => void;
|
|
2462
|
+
readonly vote_set_vote_poll: (a: number, b: number) => void;
|
|
2463
|
+
readonly vote_struct_name: () => [number, number];
|
|
2464
|
+
readonly vote_toJSON: (a: number) => [number, number, number];
|
|
2465
|
+
readonly vote_toObject: (a: number) => [number, number, number];
|
|
2466
|
+
readonly vote_type_name: (a: number) => [number, number];
|
|
2467
|
+
readonly vote_vote_poll: (a: number) => number;
|
|
2468
|
+
readonly vote_new: (a: number, b: number) => number;
|
|
2469
|
+
readonly masternodevotetransition_get_user_fee_increase: (a: number) => number;
|
|
2470
|
+
readonly __wbg_batchedtransition_free: (a: number, b: number) => void;
|
|
2471
|
+
readonly __wbg_batchtransition_free: (a: number, b: number) => void;
|
|
2472
|
+
readonly __wbg_blockbaseddistribution_free: (a: number, b: number) => void;
|
|
2473
|
+
readonly __wbg_datacontract_free: (a: number, b: number) => void;
|
|
2452
2474
|
readonly __wbg_datacontractupdatetransition_free: (a: number, b: number) => void;
|
|
2453
|
-
readonly
|
|
2454
|
-
readonly
|
|
2455
|
-
readonly
|
|
2456
|
-
readonly
|
|
2457
|
-
readonly
|
|
2458
|
-
readonly
|
|
2459
|
-
readonly
|
|
2475
|
+
readonly __wbg_document_free: (a: number, b: number) => void;
|
|
2476
|
+
readonly __wbg_documenttransition_free: (a: number, b: number) => void;
|
|
2477
|
+
readonly __wbg_epochbaseddistribution_free: (a: number, b: number) => void;
|
|
2478
|
+
readonly __wbg_get_blockbaseddistribution_interval: (a: number) => bigint;
|
|
2479
|
+
readonly __wbg_get_epochbaseddistribution_interval: (a: number) => number;
|
|
2480
|
+
readonly __wbg_get_timebaseddistribution_interval: (a: number) => bigint;
|
|
2481
|
+
readonly __wbg_groupaction_free: (a: number, b: number) => void;
|
|
2482
|
+
readonly __wbg_groupactionevent_free: (a: number, b: number) => void;
|
|
2483
|
+
readonly __wbg_rewarddistributiontype_free: (a: number, b: number) => void;
|
|
2484
|
+
readonly __wbg_set_blockbaseddistribution_interval: (a: number, b: bigint) => void;
|
|
2485
|
+
readonly __wbg_set_epochbaseddistribution_interval: (a: number, b: number) => void;
|
|
2486
|
+
readonly __wbg_timebaseddistribution_free: (a: number, b: number) => void;
|
|
2487
|
+
readonly __wbg_tokenbasetransition_free: (a: number, b: number) => void;
|
|
2488
|
+
readonly __wbg_tokenburntransition_free: (a: number, b: number) => void;
|
|
2460
2489
|
readonly __wbg_tokendistributionrecipient_free: (a: number, b: number) => void;
|
|
2461
|
-
readonly
|
|
2462
|
-
readonly contractbounds_SingleContractDocumentType: (a: any, b: number, c: number) => [number, number, number];
|
|
2463
|
-
readonly contractbounds_contract_bounds_type: (a: number) => [number, number];
|
|
2464
|
-
readonly contractbounds_contract_bounds_type_number: (a: number) => number;
|
|
2465
|
-
readonly contractbounds_document_type_name: (a: number) => [number, number];
|
|
2466
|
-
readonly contractbounds_fromJSON: (a: any) => [number, number, number];
|
|
2467
|
-
readonly contractbounds_fromObject: (a: any) => [number, number, number];
|
|
2468
|
-
readonly contractbounds_id: (a: number) => number;
|
|
2469
|
-
readonly contractbounds_new: (a: any, b: number, c: number) => [number, number, number];
|
|
2470
|
-
readonly contractbounds_set_document_type_name: (a: number, b: number, c: number) => void;
|
|
2471
|
-
readonly contractbounds_set_id: (a: number, b: any) => [number, number];
|
|
2472
|
-
readonly contractbounds_struct_name: () => [number, number];
|
|
2473
|
-
readonly contractbounds_toJSON: (a: number) => [number, number, number];
|
|
2474
|
-
readonly contractbounds_toObject: (a: number) => [number, number, number];
|
|
2475
|
-
readonly contractbounds_type_name: (a: number) => [number, number];
|
|
2476
|
-
readonly datacontractupdatetransition_fromBase64: (a: number, b: number) => [number, number, number];
|
|
2477
|
-
readonly datacontractupdatetransition_fromBytes: (a: number, b: number) => [number, number, number];
|
|
2478
|
-
readonly datacontractupdatetransition_fromHex: (a: number, b: number) => [number, number, number];
|
|
2479
|
-
readonly datacontractupdatetransition_fromJSON: (a: any) => [number, number, number];
|
|
2480
|
-
readonly datacontractupdatetransition_fromObject: (a: any) => [number, number, number];
|
|
2481
|
-
readonly datacontractupdatetransition_fromStateTransition: (a: number) => [number, number, number];
|
|
2482
|
-
readonly datacontractupdatetransition_getDataContract: (a: number, b: number, c: any) => [number, number, number];
|
|
2483
|
-
readonly datacontractupdatetransition_get_feature_version: (a: number) => number;
|
|
2484
|
-
readonly datacontractupdatetransition_get_identity_nonce: (a: number) => bigint;
|
|
2485
|
-
readonly datacontractupdatetransition_new: (a: number, b: bigint, c: any) => [number, number, number];
|
|
2486
|
-
readonly datacontractupdatetransition_setDataContract: (a: number, b: number, c: any) => [number, number];
|
|
2487
|
-
readonly datacontractupdatetransition_struct_name: () => [number, number];
|
|
2488
|
-
readonly datacontractupdatetransition_toBase64: (a: number) => [number, number, number, number];
|
|
2489
|
-
readonly datacontractupdatetransition_toBytes: (a: number) => [number, number, number, number];
|
|
2490
|
-
readonly datacontractupdatetransition_toHex: (a: number) => [number, number, number, number];
|
|
2491
|
-
readonly datacontractupdatetransition_toJSON: (a: number) => [number, number, number];
|
|
2492
|
-
readonly datacontractupdatetransition_toObject: (a: number) => [number, number, number];
|
|
2493
|
-
readonly datacontractupdatetransition_toStateTransition: (a: number) => number;
|
|
2494
|
-
readonly datacontractupdatetransition_type_name: (a: number) => [number, number];
|
|
2495
|
-
readonly datacontractupdatetransition_verifyProtocolVersion: (a: number, b: number) => [number, number, number];
|
|
2496
|
-
readonly identity_addPublicKey: (a: number, b: number) => void;
|
|
2497
|
-
readonly identity_fromBase64: (a: number, b: number) => [number, number, number];
|
|
2498
|
-
readonly identity_fromBytes: (a: number, b: number) => [number, number, number];
|
|
2499
|
-
readonly identity_fromHex: (a: number, b: number) => [number, number, number];
|
|
2500
|
-
readonly identity_fromJSON: (a: any) => [number, number, number];
|
|
2501
|
-
readonly identity_fromObject: (a: any) => [number, number, number];
|
|
2502
|
-
readonly identity_getPublicKeyById: (a: number, b: number) => number;
|
|
2503
|
-
readonly identity_getPublicKeys: (a: number) => [number, number];
|
|
2504
|
-
readonly identity_get_balance: (a: number) => bigint;
|
|
2505
|
-
readonly identity_get_id: (a: number) => number;
|
|
2506
|
-
readonly identity_get_revision: (a: number) => bigint;
|
|
2507
|
-
readonly identity_new: (a: any) => [number, number, number];
|
|
2508
|
-
readonly identity_set_balance: (a: number, b: bigint) => void;
|
|
2509
|
-
readonly identity_set_id: (a: number, b: any) => [number, number];
|
|
2510
|
-
readonly identity_set_revision: (a: number, b: bigint) => void;
|
|
2511
|
-
readonly identity_struct_name: () => [number, number];
|
|
2512
|
-
readonly identity_toBase64: (a: number) => [number, number, number, number];
|
|
2513
|
-
readonly identity_toBytes: (a: number) => [number, number, number, number];
|
|
2514
|
-
readonly identity_toHex: (a: number) => [number, number, number, number];
|
|
2515
|
-
readonly identity_toJSON: (a: number) => [number, number, number];
|
|
2516
|
-
readonly identity_toObject: (a: number) => [number, number, number];
|
|
2517
|
-
readonly identity_type_name: (a: number) => [number, number];
|
|
2518
|
-
readonly identitypublickey_base64: (a: number) => [number, number, number, number];
|
|
2519
|
-
readonly identitypublickey_fromBase64: (a: number, b: number) => [number, number, number];
|
|
2520
|
-
readonly identitypublickey_fromBytes: (a: number, b: number) => [number, number, number];
|
|
2521
|
-
readonly identitypublickey_fromHex: (a: number, b: number) => [number, number, number];
|
|
2522
|
-
readonly identitypublickey_fromJSON: (a: any) => [number, number, number];
|
|
2523
|
-
readonly identitypublickey_fromObject: (a: any) => [number, number, number];
|
|
2524
|
-
readonly identitypublickey_getContractBounds: (a: number) => any;
|
|
2525
|
-
readonly identitypublickey_getPublicKeyHash: (a: number) => [number, number, number, number];
|
|
2526
|
-
readonly identitypublickey_get_data: (a: number) => [number, number];
|
|
2527
|
-
readonly identitypublickey_get_disabled_at: (a: number) => [number, bigint];
|
|
2528
|
-
readonly identitypublickey_get_key_id: (a: number) => number;
|
|
2529
|
-
readonly identitypublickey_get_key_type: (a: number) => [number, number];
|
|
2530
|
-
readonly identitypublickey_get_key_type_number: (a: number) => number;
|
|
2531
|
-
readonly identitypublickey_get_purpose: (a: number) => [number, number];
|
|
2532
|
-
readonly identitypublickey_get_purpose_number: (a: number) => number;
|
|
2533
|
-
readonly identitypublickey_get_read_only: (a: number) => number;
|
|
2534
|
-
readonly identitypublickey_get_security_level: (a: number) => [number, number];
|
|
2535
|
-
readonly identitypublickey_get_security_level_number: (a: number) => number;
|
|
2536
|
-
readonly identitypublickey_hex: (a: number) => [number, number, number, number];
|
|
2537
|
-
readonly identitypublickey_isMaster: (a: number) => number;
|
|
2538
|
-
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];
|
|
2539
|
-
readonly identitypublickey_set_data: (a: number, b: number, c: number) => [number, number];
|
|
2540
|
-
readonly identitypublickey_set_disabled_at: (a: number, b: bigint) => void;
|
|
2541
|
-
readonly identitypublickey_set_key_id: (a: number, b: number) => void;
|
|
2542
|
-
readonly identitypublickey_set_key_type: (a: number, b: any) => [number, number];
|
|
2543
|
-
readonly identitypublickey_set_key_type_number: (a: number, b: any) => [number, number];
|
|
2544
|
-
readonly identitypublickey_set_purpose: (a: number, b: any) => [number, number];
|
|
2545
|
-
readonly identitypublickey_set_purpose_number: (a: number, b: any) => [number, number];
|
|
2546
|
-
readonly identitypublickey_set_read_only: (a: number, b: number) => void;
|
|
2547
|
-
readonly identitypublickey_set_security_level: (a: number, b: any) => [number, number];
|
|
2548
|
-
readonly identitypublickey_set_security_level_number: (a: number, b: any) => [number, number];
|
|
2549
|
-
readonly identitypublickey_struct_name: () => [number, number];
|
|
2550
|
-
readonly identitypublickey_toBytes: (a: number) => [number, number, number, number];
|
|
2551
|
-
readonly identitypublickey_toJSON: (a: number) => [number, number, number];
|
|
2552
|
-
readonly identitypublickey_toObject: (a: number) => [number, number, number];
|
|
2553
|
-
readonly identitypublickey_type_name: (a: number) => [number, number];
|
|
2554
|
-
readonly identitypublickey_validatePrivateKey: (a: number, b: number, c: number, d: any) => [number, number, number];
|
|
2555
|
-
readonly identitysigner_addKey: (a: number, b: number) => [number, number];
|
|
2556
|
-
readonly identitysigner_addKeyFromWif: (a: number, b: number, c: number) => [number, number];
|
|
2557
|
-
readonly identitysigner_key_count: (a: number) => number;
|
|
2558
|
-
readonly identitysigner_new: () => number;
|
|
2559
|
-
readonly identitysigner_struct_name: () => [number, number];
|
|
2560
|
-
readonly platformaddressinput_address: (a: number) => number;
|
|
2561
|
-
readonly platformaddressinput_amount: (a: number) => any;
|
|
2562
|
-
readonly platformaddressinput_new: (a: any, b: number, c: any) => [number, number, number];
|
|
2563
|
-
readonly platformaddressinput_nonce: (a: number) => number;
|
|
2564
|
-
readonly platformaddressoutput_address: (a: number) => number;
|
|
2565
|
-
readonly platformaddressoutput_amount: (a: number) => any;
|
|
2566
|
-
readonly platformaddressoutput_new: (a: any, b: number) => [number, number, number];
|
|
2567
|
-
readonly platformaddresssigner_addKey: (a: number, b: number) => [number, number, number];
|
|
2568
|
-
readonly platformaddresssigner_getPrivateKeysBytes: (a: number) => [number, number, number];
|
|
2569
|
-
readonly platformaddresssigner_hasKey: (a: number, b: any) => [number, number, number];
|
|
2570
|
-
readonly platformaddresssigner_key_count: (a: number) => number;
|
|
2571
|
-
readonly platformaddresssigner_struct_name: () => [number, number];
|
|
2572
|
-
readonly publickey_compressed: (a: number) => number;
|
|
2573
|
-
readonly publickey_fromBytes: (a: number, b: number) => [number, number, number];
|
|
2574
|
-
readonly publickey_getPublicKeyHash: (a: number) => [number, number];
|
|
2575
|
-
readonly publickey_inner: (a: number) => [number, number];
|
|
2576
|
-
readonly publickey_new: (a: number, b: number, c: number) => [number, number, number];
|
|
2577
|
-
readonly publickey_set_compressed: (a: number, b: number) => void;
|
|
2578
|
-
readonly publickey_set_inner: (a: number, b: number, c: number) => [number, number];
|
|
2579
|
-
readonly publickey_struct_name: () => [number, number];
|
|
2580
|
-
readonly publickey_toBytes: (a: number) => [number, number];
|
|
2581
|
-
readonly publickey_type_name: (a: number) => [number, number];
|
|
2582
|
-
readonly tokendistributionrecipient_ContractOwner: () => number;
|
|
2583
|
-
readonly tokendistributionrecipient_EvonodesByParticipation: () => number;
|
|
2584
|
-
readonly tokendistributionrecipient_Identity: (a: any) => [number, number, number];
|
|
2585
|
-
readonly tokendistributionrecipient_getType: (a: number) => [number, number];
|
|
2586
|
-
readonly tokendistributionrecipient_getValue: (a: number) => any;
|
|
2587
|
-
readonly tokendistributionrecipient_struct_name: () => [number, number];
|
|
2588
|
-
readonly tokendistributionrecipient_type_name: (a: number) => [number, number];
|
|
2589
|
-
readonly platformaddresssigner_new: () => number;
|
|
2590
|
-
readonly tokenconfigurationchangeitem_noChangeItem: () => number;
|
|
2591
|
-
readonly __wbg_blockinfo_free: (a: number, b: number) => void;
|
|
2592
|
-
readonly __wbg_chainassetlockproof_free: (a: number, b: number) => void;
|
|
2593
|
-
readonly __wbg_consensuserror_free: (a: number, b: number) => void;
|
|
2594
|
-
readonly __wbg_contesteddocumentvotepollwinnerinfo_free: (a: number, b: number) => void;
|
|
2595
|
-
readonly __wbg_datacontractcreatetransition_free: (a: number, b: number) => void;
|
|
2596
|
-
readonly __wbg_documentbasetransition_free: (a: number, b: number) => void;
|
|
2597
|
-
readonly __wbg_documentupdatepricetransition_free: (a: number, b: number) => void;
|
|
2598
|
-
readonly __wbg_group_free: (a: number, b: number) => void;
|
|
2599
|
-
readonly __wbg_platformaddress_free: (a: number, b: number) => void;
|
|
2600
|
-
readonly __wbg_resourcevotechoice_free: (a: number, b: number) => void;
|
|
2601
|
-
readonly __wbg_tokencontractinfo_free: (a: number, b: number) => void;
|
|
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;
|
|
2610
|
-
readonly blockinfo_toJSON: (a: number) => [number, number, number];
|
|
2611
|
-
readonly blockinfo_toObject: (a: number) => [number, number, number];
|
|
2612
|
-
readonly chainassetlockproof_createIdentityId: (a: number) => number;
|
|
2613
|
-
readonly chainassetlockproof_fromBytes: (a: number, b: number) => [number, number, number];
|
|
2614
|
-
readonly chainassetlockproof_fromJSON: (a: any) => [number, number, number];
|
|
2615
|
-
readonly chainassetlockproof_fromObject: (a: any) => [number, number, number];
|
|
2616
|
-
readonly chainassetlockproof_get_core_chain_locked_height: (a: number) => number;
|
|
2617
|
-
readonly chainassetlockproof_get_out_point: (a: number) => number;
|
|
2618
|
-
readonly chainassetlockproof_new: (a: number, b: number) => [number, number, number];
|
|
2619
|
-
readonly chainassetlockproof_set_core_chain_locked_height: (a: number, b: number) => void;
|
|
2620
|
-
readonly chainassetlockproof_set_out_point: (a: number, b: number) => void;
|
|
2621
|
-
readonly chainassetlockproof_struct_name: () => [number, number];
|
|
2622
|
-
readonly chainassetlockproof_toBytes: (a: number) => [number, number, number, number];
|
|
2623
|
-
readonly chainassetlockproof_toJSON: (a: number) => [number, number, number];
|
|
2624
|
-
readonly chainassetlockproof_toObject: (a: number) => [number, number, number];
|
|
2625
|
-
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
|
-
readonly contesteddocumentvotepollwinnerinfo_fromJSON: (a: any) => [number, number, number];
|
|
2629
|
-
readonly contesteddocumentvotepollwinnerinfo_fromObject: (a: any) => [number, number, number];
|
|
2630
|
-
readonly contesteddocumentvotepollwinnerinfo_identity_id: (a: number) => number;
|
|
2631
|
-
readonly contesteddocumentvotepollwinnerinfo_isLocked: (a: number) => number;
|
|
2632
|
-
readonly contesteddocumentvotepollwinnerinfo_isNoWinner: (a: number) => number;
|
|
2633
|
-
readonly contesteddocumentvotepollwinnerinfo_isWonByIdentity: (a: number) => number;
|
|
2634
|
-
readonly contesteddocumentvotepollwinnerinfo_kind: (a: number) => [number, number];
|
|
2635
|
-
readonly contesteddocumentvotepollwinnerinfo_new: (a: number, b: number, c: number) => [number, number, number];
|
|
2636
|
-
readonly contesteddocumentvotepollwinnerinfo_toJSON: (a: number) => [number, number, number];
|
|
2637
|
-
readonly contesteddocumentvotepollwinnerinfo_toObject: (a: number) => [number, number, number];
|
|
2638
|
-
readonly datacontractcreatetransition_fromBase64: (a: number, b: number) => [number, number, number];
|
|
2639
|
-
readonly datacontractcreatetransition_fromBytes: (a: number, b: number) => [number, number, number];
|
|
2640
|
-
readonly datacontractcreatetransition_fromHex: (a: number, b: number) => [number, number, number];
|
|
2641
|
-
readonly datacontractcreatetransition_fromJSON: (a: any) => [number, number, number];
|
|
2642
|
-
readonly datacontractcreatetransition_fromObject: (a: any) => [number, number, number];
|
|
2643
|
-
readonly datacontractcreatetransition_fromStateTransition: (a: number) => [number, number, number];
|
|
2644
|
-
readonly datacontractcreatetransition_getDataContract: (a: number, b: any, c: number) => [number, number, number];
|
|
2645
|
-
readonly datacontractcreatetransition_get_feature_version: (a: number) => number;
|
|
2646
|
-
readonly datacontractcreatetransition_get_identity_nonce: (a: number) => bigint;
|
|
2647
|
-
readonly datacontractcreatetransition_new: (a: number, b: bigint, c: any) => [number, number, number];
|
|
2648
|
-
readonly datacontractcreatetransition_setDataContract: (a: number, b: number, c: any) => [number, number];
|
|
2649
|
-
readonly datacontractcreatetransition_struct_name: () => [number, number];
|
|
2650
|
-
readonly datacontractcreatetransition_toBase64: (a: number) => [number, number, number, number];
|
|
2651
|
-
readonly datacontractcreatetransition_toBytes: (a: number) => [number, number, number, number];
|
|
2652
|
-
readonly datacontractcreatetransition_toHex: (a: number) => [number, number, number, number];
|
|
2653
|
-
readonly datacontractcreatetransition_toJSON: (a: number) => [number, number, number];
|
|
2654
|
-
readonly datacontractcreatetransition_toObject: (a: number) => [number, number, number];
|
|
2655
|
-
readonly datacontractcreatetransition_toStateTransition: (a: number) => number;
|
|
2656
|
-
readonly datacontractcreatetransition_type_name: (a: number) => [number, number];
|
|
2657
|
-
readonly datacontractcreatetransition_verifyProtocolVersion: (a: number, b: number) => [number, number, number];
|
|
2658
|
-
readonly documentbasetransition_get_data_contract_id: (a: number) => number;
|
|
2659
|
-
readonly documentbasetransition_get_document_type_name: (a: number) => [number, number];
|
|
2660
|
-
readonly documentbasetransition_get_id: (a: number) => number;
|
|
2661
|
-
readonly documentbasetransition_get_identity_contract_nonce: (a: number) => bigint;
|
|
2662
|
-
readonly documentbasetransition_get_token_payment_info: (a: number) => number;
|
|
2663
|
-
readonly documentbasetransition_new: (a: any, b: bigint, c: number, d: number, e: any, f: any) => [number, number, number];
|
|
2664
|
-
readonly documentbasetransition_set_data_contract_id: (a: number, b: any) => [number, number];
|
|
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;
|
|
2816
|
-
readonly privateencryptednote_derivation_encryption_key_index: (a: number) => number;
|
|
2817
|
-
readonly privateencryptednote_new: (a: number, b: number, c: number, d: number) => number;
|
|
2818
|
-
readonly privateencryptednote_root_encryption_key_index: (a: number) => number;
|
|
2819
|
-
readonly privateencryptednote_set_derivation_encryption_key_index: (a: number, b: number) => void;
|
|
2820
|
-
readonly privateencryptednote_set_root_encryption_key_index: (a: number, b: number) => void;
|
|
2821
|
-
readonly privateencryptednote_set_value: (a: number, b: number, c: number) => void;
|
|
2822
|
-
readonly privateencryptednote_struct_name: () => [number, number];
|
|
2823
|
-
readonly privateencryptednote_type_name: (a: number) => [number, number];
|
|
2824
|
-
readonly privateencryptednote_value: (a: number) => [number, number];
|
|
2825
|
-
readonly sharedencryptednote_recipient_key_index: (a: number) => number;
|
|
2826
|
-
readonly sharedencryptednote_sender_key_index: (a: number) => number;
|
|
2827
|
-
readonly sharedencryptednote_set_recipient_key_index: (a: number, b: number) => void;
|
|
2828
|
-
readonly sharedencryptednote_set_sender_key_index: (a: number, b: number) => void;
|
|
2829
|
-
readonly sharedencryptednote_set_value: (a: number, b: number, c: number) => void;
|
|
2830
|
-
readonly sharedencryptednote_struct_name: () => [number, number];
|
|
2831
|
-
readonly sharedencryptednote_type_name: (a: number) => [number, number];
|
|
2832
|
-
readonly sharedencryptednote_value: (a: number) => [number, number];
|
|
2833
|
-
readonly tokenconfigupdatetransition_get_base: (a: number) => number;
|
|
2834
|
-
readonly tokenconfigupdatetransition_get_public_note: (a: number) => [number, number];
|
|
2835
|
-
readonly tokenconfigupdatetransition_get_update_token_configuration_item: (a: number) => number;
|
|
2836
|
-
readonly tokenconfigupdatetransition_new: (a: number, b: number, c: number, d: number) => [number, number, number];
|
|
2837
|
-
readonly tokenconfigupdatetransition_set_base: (a: number, b: number) => void;
|
|
2838
|
-
readonly tokenconfigupdatetransition_set_public_note: (a: number, b: number, c: number) => void;
|
|
2839
|
-
readonly tokenconfigupdatetransition_set_update_token_configuration_item: (a: number, b: number) => void;
|
|
2840
|
-
readonly tokenconfigupdatetransition_struct_name: () => [number, number];
|
|
2841
|
-
readonly tokenconfigupdatetransition_type_name: (a: number) => [number, number];
|
|
2842
|
-
readonly tokenconfiguration_calculateTokenId: (a: any, b: number) => [number, number, number];
|
|
2843
|
-
readonly tokenconfiguration_get_base_supply: (a: number) => bigint;
|
|
2844
|
-
readonly tokenconfiguration_get_conventions: (a: number) => number;
|
|
2845
|
-
readonly tokenconfiguration_get_conventions_change_rules: (a: number) => number;
|
|
2846
|
-
readonly tokenconfiguration_get_description: (a: number) => [number, number];
|
|
2847
|
-
readonly tokenconfiguration_get_destroy_frozen_funds_rules: (a: number) => number;
|
|
2848
|
-
readonly tokenconfiguration_get_distribution_rules: (a: number) => number;
|
|
2849
|
-
readonly tokenconfiguration_get_emergency_action_rules: (a: number) => number;
|
|
2850
|
-
readonly tokenconfiguration_get_freeze_rules: (a: number) => number;
|
|
2851
|
-
readonly tokenconfiguration_get_is_allowed_transfer_to_frozen_balance: (a: number) => number;
|
|
2852
|
-
readonly tokenconfiguration_get_keeps_history: (a: number) => number;
|
|
2853
|
-
readonly tokenconfiguration_get_main_control_group: (a: number) => number;
|
|
2854
|
-
readonly tokenconfiguration_get_main_control_group_can_be_modified: (a: number) => number;
|
|
2855
|
-
readonly tokenconfiguration_get_manual_burning_rules: (a: number) => number;
|
|
2856
|
-
readonly tokenconfiguration_get_manual_minting_rules: (a: number) => number;
|
|
2857
|
-
readonly tokenconfiguration_get_marketplace_rules: (a: number) => number;
|
|
2858
|
-
readonly tokenconfiguration_get_max_supply: (a: number) => [number, bigint];
|
|
2859
|
-
readonly tokenconfiguration_get_max_supply_change_rules: (a: number) => number;
|
|
2860
|
-
readonly tokenconfiguration_get_start_as_paused: (a: number) => number;
|
|
2861
|
-
readonly tokenconfiguration_get_unfreeze_rules: (a: number) => number;
|
|
2862
|
-
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;
|
|
2863
|
-
readonly tokenconfiguration_set_base_supply: (a: number, b: bigint) => void;
|
|
2864
|
-
readonly tokenconfiguration_set_conventions: (a: number, b: number) => void;
|
|
2865
|
-
readonly tokenconfiguration_set_conventions_change_rules: (a: number, b: number) => void;
|
|
2866
|
-
readonly tokenconfiguration_set_description: (a: number, b: number, c: number) => void;
|
|
2867
|
-
readonly tokenconfiguration_set_destroy_frozen_funds_rules: (a: number, b: number) => void;
|
|
2868
|
-
readonly tokenconfiguration_set_distribution_rules: (a: number, b: number) => void;
|
|
2869
|
-
readonly tokenconfiguration_set_emergency_action_rules: (a: number, b: number) => void;
|
|
2870
|
-
readonly tokenconfiguration_set_freeze_rules: (a: number, b: number) => void;
|
|
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];
|
|
2933
|
-
readonly tokentrademode_getValue: (a: number) => [number, number];
|
|
2934
|
-
readonly tokentrademode_struct_name: () => [number, number];
|
|
2935
|
-
readonly tokentrademode_type_name: (a: number) => [number, number];
|
|
2936
|
-
readonly tokentransfertransition_get_amount: (a: number) => bigint;
|
|
2937
|
-
readonly tokentransfertransition_get_base: (a: number) => number;
|
|
2938
|
-
readonly tokentransfertransition_get_private_encrypted_note: (a: number) => number;
|
|
2939
|
-
readonly tokentransfertransition_get_public_note: (a: number) => [number, number];
|
|
2940
|
-
readonly tokentransfertransition_get_shared_encrypted_note: (a: number) => number;
|
|
2941
|
-
readonly tokentransfertransition_new: (a: number, b: any, c: bigint, d: number, e: number, f: any, g: any) => [number, number, number];
|
|
2942
|
-
readonly tokentransfertransition_recipient_id: (a: number) => number;
|
|
2943
|
-
readonly tokentransfertransition_set_amount: (a: number, b: bigint) => void;
|
|
2944
|
-
readonly tokentransfertransition_set_base: (a: number, b: number) => void;
|
|
2945
|
-
readonly tokentransfertransition_set_private_encrypted_note: (a: number, b: any) => [number, number];
|
|
2946
|
-
readonly tokentransfertransition_set_public_note: (a: number, b: number, c: number) => void;
|
|
2947
|
-
readonly tokentransfertransition_set_recipient_id: (a: number, b: any) => [number, number];
|
|
2948
|
-
readonly tokentransfertransition_set_shared_encrypted_note: (a: number, b: any) => [number, number];
|
|
2949
|
-
readonly tokentransfertransition_struct_name: () => [number, number];
|
|
2950
|
-
readonly tokentransfertransition_type_name: (a: number) => [number, number];
|
|
2951
|
-
readonly tokentransition_getHistoricalDocumentId: (a: number, b: any) => [number, number, number];
|
|
2952
|
-
readonly tokentransition_getHistoricalDocumentTypeName: (a: number) => [number, number];
|
|
2953
|
-
readonly tokentransition_getTransition: (a: number) => any;
|
|
2954
|
-
readonly tokentransition_getTransitionType: (a: number) => [number, number];
|
|
2955
|
-
readonly tokentransition_getTransitionTypeNumber: (a: number) => number;
|
|
2956
|
-
readonly tokentransition_get_contract_id: (a: number) => number;
|
|
2957
|
-
readonly tokentransition_get_identity_contract_nonce: (a: number) => bigint;
|
|
2958
|
-
readonly tokentransition_get_token_id: (a: number) => number;
|
|
2959
|
-
readonly tokentransition_new: (a: any) => [number, number, number];
|
|
2960
|
-
readonly tokentransition_set_contract_id: (a: number, b: any) => [number, number];
|
|
2961
|
-
readonly tokentransition_set_identity_contract_nonce: (a: number, b: bigint) => void;
|
|
2962
|
-
readonly tokentransition_set_token_id: (a: number, b: any) => [number, number];
|
|
2963
|
-
readonly tokentransition_struct_name: () => [number, number];
|
|
2964
|
-
readonly tokentransition_type_name: (a: number) => [number, number];
|
|
2965
|
-
readonly __wbg_set_distributioninvertedlogarithmic_a: (a: number, b: bigint) => void;
|
|
2966
|
-
readonly __wbg_set_distributioninvertedlogarithmic_b: (a: number, b: bigint) => void;
|
|
2967
|
-
readonly __wbg_set_distributioninvertedlogarithmic_d: (a: number, b: bigint) => void;
|
|
2968
|
-
readonly __wbg_set_distributioninvertedlogarithmic_m: (a: number, b: bigint) => void;
|
|
2969
|
-
readonly __wbg_set_distributioninvertedlogarithmic_n: (a: number, b: bigint) => void;
|
|
2970
|
-
readonly __wbg_set_distributioninvertedlogarithmic_o: (a: number, b: bigint) => void;
|
|
2971
|
-
readonly __wbg_set_distributionlinear_a: (a: number, b: bigint) => void;
|
|
2972
|
-
readonly __wbg_set_distributionlinear_d: (a: number, b: bigint) => void;
|
|
2973
|
-
readonly __wbg_set_distributionlinear_startingAmount: (a: number, b: bigint) => void;
|
|
2974
|
-
readonly __wbg_set_distributionlogarithmic_a: (a: number, b: bigint) => void;
|
|
2975
|
-
readonly __wbg_set_distributionlogarithmic_b: (a: number, b: bigint) => void;
|
|
2976
|
-
readonly __wbg_set_distributionlogarithmic_d: (a: number, b: bigint) => void;
|
|
2977
|
-
readonly __wbg_set_distributionlogarithmic_m: (a: number, b: bigint) => void;
|
|
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];
|
|
3040
|
-
readonly __wbg_batchedtransition_free: (a: number, b: number) => void;
|
|
3041
|
-
readonly __wbg_batchtransition_free: (a: number, b: number) => void;
|
|
3042
|
-
readonly __wbg_datacontract_free: (a: number, b: number) => void;
|
|
3043
|
-
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
|
-
readonly __wbg_masternodevotetransition_free: (a: number, b: number) => void;
|
|
3049
|
-
readonly __wbg_tokendirectpurchasetransition_free: (a: number, b: number) => void;
|
|
3050
|
-
readonly __wbg_tokenpaymentinfo_free: (a: number, b: number) => void;
|
|
3051
|
-
readonly __wbg_tokenpricingschedule_free: (a: number, b: number) => void;
|
|
3052
|
-
readonly __wbg_tokensetpricefordirectpurchasetransition_free: (a: number, b: number) => void;
|
|
2490
|
+
readonly __wbg_tokenstatus_free: (a: number, b: number) => void;
|
|
3053
2491
|
readonly batchedtransition_data_contract_id: (a: number) => number;
|
|
3054
2492
|
readonly batchedtransition_new: (a: any) => [number, number, number];
|
|
3055
2493
|
readonly batchedtransition_set_data_contract_id: (a: number, b: any) => [number, number];
|
|
@@ -3082,6 +2520,10 @@ export interface InitOutput {
|
|
|
3082
2520
|
readonly batchtransition_toObject: (a: number) => [number, number, number];
|
|
3083
2521
|
readonly batchtransition_toStateTransition: (a: number) => number;
|
|
3084
2522
|
readonly batchtransition_type_name: (a: number) => [number, number];
|
|
2523
|
+
readonly blockbaseddistribution_get_function: (a: number) => number;
|
|
2524
|
+
readonly blockbaseddistribution_set_function: (a: number, b: number) => void;
|
|
2525
|
+
readonly blockbaseddistribution_struct_name: () => [number, number];
|
|
2526
|
+
readonly blockbaseddistribution_type_name: (a: number) => [number, number];
|
|
3085
2527
|
readonly datacontract_fromBase64: (a: number, b: number, c: number, d: any) => [number, number, number];
|
|
3086
2528
|
readonly datacontract_fromBytes: (a: number, b: number, c: number, d: any) => [number, number, number];
|
|
3087
2529
|
readonly datacontract_fromHex: (a: number, b: number, c: number, d: any) => [number, number, number];
|
|
@@ -3110,6 +2552,26 @@ export interface InitOutput {
|
|
|
3110
2552
|
readonly datacontract_toJSON: (a: number, b: any) => [number, number, number];
|
|
3111
2553
|
readonly datacontract_toObject: (a: number, b: any) => [number, number, number];
|
|
3112
2554
|
readonly datacontract_type_name: (a: number) => [number, number];
|
|
2555
|
+
readonly datacontractupdatetransition_fromBase64: (a: number, b: number) => [number, number, number];
|
|
2556
|
+
readonly datacontractupdatetransition_fromBytes: (a: number, b: number) => [number, number, number];
|
|
2557
|
+
readonly datacontractupdatetransition_fromHex: (a: number, b: number) => [number, number, number];
|
|
2558
|
+
readonly datacontractupdatetransition_fromJSON: (a: any) => [number, number, number];
|
|
2559
|
+
readonly datacontractupdatetransition_fromObject: (a: any) => [number, number, number];
|
|
2560
|
+
readonly datacontractupdatetransition_fromStateTransition: (a: number) => [number, number, number];
|
|
2561
|
+
readonly datacontractupdatetransition_getDataContract: (a: number, b: number, c: any) => [number, number, number];
|
|
2562
|
+
readonly datacontractupdatetransition_get_feature_version: (a: number) => number;
|
|
2563
|
+
readonly datacontractupdatetransition_get_identity_nonce: (a: number) => bigint;
|
|
2564
|
+
readonly datacontractupdatetransition_new: (a: number, b: bigint, c: any) => [number, number, number];
|
|
2565
|
+
readonly datacontractupdatetransition_setDataContract: (a: number, b: number, c: any) => [number, number];
|
|
2566
|
+
readonly datacontractupdatetransition_struct_name: () => [number, number];
|
|
2567
|
+
readonly datacontractupdatetransition_toBase64: (a: number) => [number, number, number, number];
|
|
2568
|
+
readonly datacontractupdatetransition_toBytes: (a: number) => [number, number, number, number];
|
|
2569
|
+
readonly datacontractupdatetransition_toHex: (a: number) => [number, number, number, number];
|
|
2570
|
+
readonly datacontractupdatetransition_toJSON: (a: number) => [number, number, number];
|
|
2571
|
+
readonly datacontractupdatetransition_toObject: (a: number) => [number, number, number];
|
|
2572
|
+
readonly datacontractupdatetransition_toStateTransition: (a: number) => number;
|
|
2573
|
+
readonly datacontractupdatetransition_type_name: (a: number) => [number, number];
|
|
2574
|
+
readonly datacontractupdatetransition_verifyProtocolVersion: (a: number, b: number) => [number, number, number];
|
|
3113
2575
|
readonly document_constructor: (a: any, b: number, c: number, d: bigint, e: any, f: any, g: any) => [number, number, number];
|
|
3114
2576
|
readonly document_fromBase64: (a: number, b: number, c: number, d: number, e: number, f: any) => [number, number, number];
|
|
3115
2577
|
readonly document_fromBytes: (a: number, b: number, c: number, d: number, e: number, f: any) => [number, number, number];
|
|
@@ -3156,13 +2618,6 @@ export interface InitOutput {
|
|
|
3156
2618
|
readonly document_toJSON: (a: number) => [number, number, number];
|
|
3157
2619
|
readonly document_toObject: (a: number) => [number, number, number];
|
|
3158
2620
|
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
2621
|
readonly documenttransition_get_action_type: (a: number) => [number, number];
|
|
3167
2622
|
readonly documenttransition_get_action_type_number: (a: number) => number;
|
|
3168
2623
|
readonly documenttransition_get_create_transition: (a: number) => [number, number, number];
|
|
@@ -3182,6 +2637,10 @@ export interface InitOutput {
|
|
|
3182
2637
|
readonly documenttransition_set_revision: (a: number, b: bigint) => void;
|
|
3183
2638
|
readonly documenttransition_struct_name: () => [number, number];
|
|
3184
2639
|
readonly documenttransition_type_name: (a: number) => [number, number];
|
|
2640
|
+
readonly epochbaseddistribution_get_function: (a: number) => number;
|
|
2641
|
+
readonly epochbaseddistribution_set_function: (a: number, b: number) => void;
|
|
2642
|
+
readonly epochbaseddistribution_struct_name: () => [number, number];
|
|
2643
|
+
readonly epochbaseddistribution_type_name: (a: number) => [number, number];
|
|
3185
2644
|
readonly groupaction_contract_id: (a: number) => number;
|
|
3186
2645
|
readonly groupaction_event: (a: number) => number;
|
|
3187
2646
|
readonly groupaction_fromJSON: (a: any) => [number, number, number];
|
|
@@ -3201,37 +2660,221 @@ export interface InitOutput {
|
|
|
3201
2660
|
readonly groupactionevent_toObject: (a: number) => [number, number, number];
|
|
3202
2661
|
readonly groupactionevent_tokenEvent: (a: number) => number;
|
|
3203
2662
|
readonly groupactionevent_variant: (a: number) => number;
|
|
3204
|
-
readonly
|
|
3205
|
-
readonly
|
|
3206
|
-
readonly
|
|
3207
|
-
readonly
|
|
3208
|
-
readonly
|
|
3209
|
-
readonly
|
|
3210
|
-
readonly
|
|
3211
|
-
readonly
|
|
3212
|
-
readonly
|
|
3213
|
-
readonly
|
|
3214
|
-
readonly
|
|
3215
|
-
readonly
|
|
3216
|
-
readonly
|
|
3217
|
-
readonly
|
|
3218
|
-
readonly
|
|
3219
|
-
readonly
|
|
3220
|
-
readonly
|
|
3221
|
-
readonly
|
|
3222
|
-
readonly
|
|
3223
|
-
readonly
|
|
3224
|
-
readonly
|
|
3225
|
-
readonly
|
|
3226
|
-
readonly
|
|
3227
|
-
readonly
|
|
3228
|
-
readonly
|
|
3229
|
-
readonly
|
|
3230
|
-
readonly
|
|
3231
|
-
readonly
|
|
3232
|
-
readonly
|
|
3233
|
-
readonly
|
|
3234
|
-
readonly
|
|
2663
|
+
readonly rewarddistributiontype_BlockBasedDistribution: (a: bigint, b: number) => number;
|
|
2664
|
+
readonly rewarddistributiontype_EpochBasedDistribution: (a: number, b: number) => number;
|
|
2665
|
+
readonly rewarddistributiontype_TimeBasedDistribution: (a: bigint, b: number) => number;
|
|
2666
|
+
readonly rewarddistributiontype_getDistribution: (a: number) => any;
|
|
2667
|
+
readonly rewarddistributiontype_struct_name: () => [number, number];
|
|
2668
|
+
readonly rewarddistributiontype_type_name: (a: number) => [number, number];
|
|
2669
|
+
readonly timebaseddistribution_get_function: (a: number) => number;
|
|
2670
|
+
readonly timebaseddistribution_set_function: (a: number, b: number) => void;
|
|
2671
|
+
readonly timebaseddistribution_struct_name: () => [number, number];
|
|
2672
|
+
readonly timebaseddistribution_type_name: (a: number) => [number, number];
|
|
2673
|
+
readonly tokenbasetransition_get_data_contract_id: (a: number) => number;
|
|
2674
|
+
readonly tokenbasetransition_get_identity_contract_nonce: (a: number) => bigint;
|
|
2675
|
+
readonly tokenbasetransition_get_token_contract_position: (a: number) => number;
|
|
2676
|
+
readonly tokenbasetransition_get_token_id: (a: number) => number;
|
|
2677
|
+
readonly tokenbasetransition_get_using_group_info: (a: number) => number;
|
|
2678
|
+
readonly tokenbasetransition_new: (a: bigint, b: number, c: any, d: any, e: any) => [number, number, number];
|
|
2679
|
+
readonly tokenbasetransition_set_data_contract_id: (a: number, b: any) => [number, number];
|
|
2680
|
+
readonly tokenbasetransition_set_identity_contract_nonce: (a: number, b: bigint) => void;
|
|
2681
|
+
readonly tokenbasetransition_set_token_contract_position: (a: number, b: number) => void;
|
|
2682
|
+
readonly tokenbasetransition_set_token_id: (a: number, b: any) => [number, number];
|
|
2683
|
+
readonly tokenbasetransition_set_using_group_info: (a: number, b: any) => [number, number];
|
|
2684
|
+
readonly tokenbasetransition_struct_name: () => [number, number];
|
|
2685
|
+
readonly tokenbasetransition_type_name: (a: number) => [number, number];
|
|
2686
|
+
readonly tokenburntransition_get_base: (a: number) => number;
|
|
2687
|
+
readonly tokenburntransition_get_burn_amount: (a: number) => bigint;
|
|
2688
|
+
readonly tokenburntransition_get_public_note: (a: number) => [number, number];
|
|
2689
|
+
readonly tokenburntransition_new: (a: number, b: bigint, c: number, d: number) => [number, number, number];
|
|
2690
|
+
readonly tokenburntransition_set_base: (a: number, b: number) => void;
|
|
2691
|
+
readonly tokenburntransition_set_burn_amount: (a: number, b: bigint) => void;
|
|
2692
|
+
readonly tokenburntransition_set_public_note: (a: number, b: number, c: number) => void;
|
|
2693
|
+
readonly tokenburntransition_struct_name: () => [number, number];
|
|
2694
|
+
readonly tokenburntransition_type_name: (a: number) => [number, number];
|
|
2695
|
+
readonly tokendistributionrecipient_ContractOwner: () => number;
|
|
2696
|
+
readonly tokendistributionrecipient_EvonodesByParticipation: () => number;
|
|
2697
|
+
readonly tokendistributionrecipient_Identity: (a: any) => [number, number, number];
|
|
2698
|
+
readonly tokendistributionrecipient_getType: (a: number) => [number, number];
|
|
2699
|
+
readonly tokendistributionrecipient_getValue: (a: number) => any;
|
|
2700
|
+
readonly tokendistributionrecipient_struct_name: () => [number, number];
|
|
2701
|
+
readonly tokendistributionrecipient_type_name: (a: number) => [number, number];
|
|
2702
|
+
readonly tokenstatus_paused: (a: number) => number;
|
|
2703
|
+
readonly groupactionevent_type_name: (a: number) => [number, number];
|
|
2704
|
+
readonly __wbg_set_timebaseddistribution_interval: (a: number, b: bigint) => void;
|
|
2705
|
+
readonly __wbg_distributionexponential_free: (a: number, b: number) => void;
|
|
2706
|
+
readonly __wbg_distributionfixedamount_free: (a: number, b: number) => void;
|
|
2707
|
+
readonly __wbg_distributioninvertedlogarithmic_free: (a: number, b: number) => void;
|
|
2708
|
+
readonly __wbg_distributionlinear_free: (a: number, b: number) => void;
|
|
2709
|
+
readonly __wbg_distributionlogarithmic_free: (a: number, b: number) => void;
|
|
2710
|
+
readonly __wbg_distributionpolynomial_free: (a: number, b: number) => void;
|
|
2711
|
+
readonly __wbg_distributionrandom_free: (a: number, b: number) => void;
|
|
2712
|
+
readonly __wbg_distributionstepdecreasingamount_free: (a: number, b: number) => void;
|
|
2713
|
+
readonly __wbg_get_distributionexponential_a: (a: number) => bigint;
|
|
2714
|
+
readonly __wbg_get_distributionexponential_b: (a: number) => bigint;
|
|
2715
|
+
readonly __wbg_get_distributionexponential_d: (a: number) => bigint;
|
|
2716
|
+
readonly __wbg_get_distributionexponential_m: (a: number) => bigint;
|
|
2717
|
+
readonly __wbg_get_distributionexponential_maxValue: (a: number) => [number, bigint];
|
|
2718
|
+
readonly __wbg_get_distributionexponential_minValue: (a: number) => [number, bigint];
|
|
2719
|
+
readonly __wbg_get_distributionexponential_n: (a: number) => bigint;
|
|
2720
|
+
readonly __wbg_get_distributionexponential_o: (a: number) => bigint;
|
|
2721
|
+
readonly __wbg_get_distributionexponential_startMoment: (a: number) => [number, bigint];
|
|
2722
|
+
readonly __wbg_get_distributionfixedamount_amount: (a: number) => bigint;
|
|
2723
|
+
readonly __wbg_get_distributioninvertedlogarithmic_a: (a: number) => bigint;
|
|
2724
|
+
readonly __wbg_get_distributioninvertedlogarithmic_b: (a: number) => bigint;
|
|
2725
|
+
readonly __wbg_get_distributioninvertedlogarithmic_d: (a: number) => bigint;
|
|
2726
|
+
readonly __wbg_get_distributioninvertedlogarithmic_m: (a: number) => bigint;
|
|
2727
|
+
readonly __wbg_get_distributioninvertedlogarithmic_maxValue: (a: number) => [number, bigint];
|
|
2728
|
+
readonly __wbg_get_distributioninvertedlogarithmic_minValue: (a: number) => [number, bigint];
|
|
2729
|
+
readonly __wbg_get_distributioninvertedlogarithmic_n: (a: number) => bigint;
|
|
2730
|
+
readonly __wbg_get_distributioninvertedlogarithmic_o: (a: number) => bigint;
|
|
2731
|
+
readonly __wbg_get_distributioninvertedlogarithmic_startMoment: (a: number) => [number, bigint];
|
|
2732
|
+
readonly __wbg_get_distributionlinear_a: (a: number) => bigint;
|
|
2733
|
+
readonly __wbg_get_distributionlinear_d: (a: number) => bigint;
|
|
2734
|
+
readonly __wbg_get_distributionlinear_maxValue: (a: number) => [number, bigint];
|
|
2735
|
+
readonly __wbg_get_distributionlinear_minValue: (a: number) => [number, bigint];
|
|
2736
|
+
readonly __wbg_get_distributionlinear_startStep: (a: number) => [number, bigint];
|
|
2737
|
+
readonly __wbg_get_distributionlinear_startingAmount: (a: number) => bigint;
|
|
2738
|
+
readonly __wbg_get_distributionlogarithmic_a: (a: number) => bigint;
|
|
2739
|
+
readonly __wbg_get_distributionlogarithmic_b: (a: number) => bigint;
|
|
2740
|
+
readonly __wbg_get_distributionlogarithmic_d: (a: number) => bigint;
|
|
2741
|
+
readonly __wbg_get_distributionlogarithmic_m: (a: number) => bigint;
|
|
2742
|
+
readonly __wbg_get_distributionlogarithmic_maxValue: (a: number) => [number, bigint];
|
|
2743
|
+
readonly __wbg_get_distributionlogarithmic_minValue: (a: number) => [number, bigint];
|
|
2744
|
+
readonly __wbg_get_distributionlogarithmic_n: (a: number) => bigint;
|
|
2745
|
+
readonly __wbg_get_distributionlogarithmic_o: (a: number) => bigint;
|
|
2746
|
+
readonly __wbg_get_distributionlogarithmic_startMoment: (a: number) => [number, bigint];
|
|
2747
|
+
readonly __wbg_get_distributionpolynomial_a: (a: number) => bigint;
|
|
2748
|
+
readonly __wbg_get_distributionpolynomial_b: (a: number) => bigint;
|
|
2749
|
+
readonly __wbg_get_distributionpolynomial_d: (a: number) => bigint;
|
|
2750
|
+
readonly __wbg_get_distributionpolynomial_m: (a: number) => bigint;
|
|
2751
|
+
readonly __wbg_get_distributionpolynomial_maxValue: (a: number) => [number, bigint];
|
|
2752
|
+
readonly __wbg_get_distributionpolynomial_minValue: (a: number) => [number, bigint];
|
|
2753
|
+
readonly __wbg_get_distributionpolynomial_n: (a: number) => bigint;
|
|
2754
|
+
readonly __wbg_get_distributionpolynomial_o: (a: number) => bigint;
|
|
2755
|
+
readonly __wbg_get_distributionpolynomial_startMoment: (a: number) => [number, bigint];
|
|
2756
|
+
readonly __wbg_get_distributionrandom_max: (a: number) => bigint;
|
|
2757
|
+
readonly __wbg_get_distributionrandom_min: (a: number) => bigint;
|
|
2758
|
+
readonly __wbg_get_distributionstepdecreasingamount_decreasePerIntervalDenominator: (a: number) => number;
|
|
2759
|
+
readonly __wbg_get_distributionstepdecreasingamount_decreasePerIntervalNumerator: (a: number) => number;
|
|
2760
|
+
readonly __wbg_get_distributionstepdecreasingamount_distributionStartAmount: (a: number) => bigint;
|
|
2761
|
+
readonly __wbg_get_distributionstepdecreasingamount_maxIntervalCount: (a: number) => number;
|
|
2762
|
+
readonly __wbg_get_distributionstepdecreasingamount_minValue: (a: number) => [number, bigint];
|
|
2763
|
+
readonly __wbg_get_distributionstepdecreasingamount_startDecreasingOffset: (a: number) => [number, bigint];
|
|
2764
|
+
readonly __wbg_get_distributionstepdecreasingamount_stepCount: (a: number) => number;
|
|
2765
|
+
readonly __wbg_get_distributionstepdecreasingamount_trailingDistributionIntervalAmount: (a: number) => bigint;
|
|
2766
|
+
readonly __wbg_privateencryptednote_free: (a: number, b: number) => void;
|
|
2767
|
+
readonly __wbg_set_distributionexponential_a: (a: number, b: bigint) => void;
|
|
2768
|
+
readonly __wbg_set_distributionexponential_b: (a: number, b: bigint) => void;
|
|
2769
|
+
readonly __wbg_set_distributionexponential_d: (a: number, b: bigint) => void;
|
|
2770
|
+
readonly __wbg_set_distributionexponential_m: (a: number, b: bigint) => void;
|
|
2771
|
+
readonly __wbg_set_distributionexponential_maxValue: (a: number, b: number, c: bigint) => void;
|
|
2772
|
+
readonly __wbg_set_distributionexponential_minValue: (a: number, b: number, c: bigint) => void;
|
|
2773
|
+
readonly __wbg_set_distributionexponential_n: (a: number, b: bigint) => void;
|
|
2774
|
+
readonly __wbg_set_distributionexponential_o: (a: number, b: bigint) => void;
|
|
2775
|
+
readonly __wbg_set_distributionexponential_startMoment: (a: number, b: number, c: bigint) => void;
|
|
2776
|
+
readonly __wbg_set_distributionfixedamount_amount: (a: number, b: bigint) => void;
|
|
2777
|
+
readonly __wbg_set_distributionrandom_max: (a: number, b: bigint) => void;
|
|
2778
|
+
readonly __wbg_set_distributionstepdecreasingamount_decreasePerIntervalDenominator: (a: number, b: number) => void;
|
|
2779
|
+
readonly __wbg_set_distributionstepdecreasingamount_decreasePerIntervalNumerator: (a: number, b: number) => void;
|
|
2780
|
+
readonly __wbg_set_distributionstepdecreasingamount_distributionStartAmount: (a: number, b: bigint) => void;
|
|
2781
|
+
readonly __wbg_set_distributionstepdecreasingamount_maxIntervalCount: (a: number, b: number) => void;
|
|
2782
|
+
readonly __wbg_set_distributionstepdecreasingamount_stepCount: (a: number, b: number) => void;
|
|
2783
|
+
readonly __wbg_set_distributionstepdecreasingamount_trailingDistributionIntervalAmount: (a: number, b: bigint) => void;
|
|
2784
|
+
readonly __wbg_sharedencryptednote_free: (a: number, b: number) => void;
|
|
2785
|
+
readonly __wbg_tokenclaimtransition_free: (a: number, b: number) => void;
|
|
2786
|
+
readonly __wbg_tokenconfigupdatetransition_free: (a: number, b: number) => void;
|
|
2787
|
+
readonly __wbg_tokenconfiguration_free: (a: number, b: number) => void;
|
|
2788
|
+
readonly __wbg_tokenconfigurationchangeitem_free: (a: number, b: number) => void;
|
|
2789
|
+
readonly __wbg_tokendirectpurchasetransition_free: (a: number, b: number) => void;
|
|
2790
|
+
readonly __wbg_tokenemergencyactiontransition_free: (a: number, b: number) => void;
|
|
2791
|
+
readonly __wbg_tokenminttransition_free: (a: number, b: number) => void;
|
|
2792
|
+
readonly __wbg_tokensetpricefordirectpurchasetransition_free: (a: number, b: number) => void;
|
|
2793
|
+
readonly __wbg_tokentransfertransition_free: (a: number, b: number) => void;
|
|
2794
|
+
readonly __wbg_tokentransition_free: (a: number, b: number) => void;
|
|
2795
|
+
readonly __wbg_tokenunfreezetransition_free: (a: number, b: number) => void;
|
|
2796
|
+
readonly privateencryptednote_derivation_encryption_key_index: (a: number) => number;
|
|
2797
|
+
readonly privateencryptednote_new: (a: number, b: number, c: number, d: number) => number;
|
|
2798
|
+
readonly privateencryptednote_root_encryption_key_index: (a: number) => number;
|
|
2799
|
+
readonly privateencryptednote_set_derivation_encryption_key_index: (a: number, b: number) => void;
|
|
2800
|
+
readonly privateencryptednote_set_root_encryption_key_index: (a: number, b: number) => void;
|
|
2801
|
+
readonly privateencryptednote_set_value: (a: number, b: number, c: number) => void;
|
|
2802
|
+
readonly privateencryptednote_struct_name: () => [number, number];
|
|
2803
|
+
readonly privateencryptednote_type_name: (a: number) => [number, number];
|
|
2804
|
+
readonly privateencryptednote_value: (a: number) => [number, number];
|
|
2805
|
+
readonly sharedencryptednote_recipient_key_index: (a: number) => number;
|
|
2806
|
+
readonly sharedencryptednote_sender_key_index: (a: number) => number;
|
|
2807
|
+
readonly sharedencryptednote_set_recipient_key_index: (a: number, b: number) => void;
|
|
2808
|
+
readonly sharedencryptednote_set_sender_key_index: (a: number, b: number) => void;
|
|
2809
|
+
readonly sharedencryptednote_set_value: (a: number, b: number, c: number) => void;
|
|
2810
|
+
readonly sharedencryptednote_struct_name: () => [number, number];
|
|
2811
|
+
readonly sharedencryptednote_type_name: (a: number) => [number, number];
|
|
2812
|
+
readonly sharedencryptednote_value: (a: number) => [number, number];
|
|
2813
|
+
readonly tokenclaimtransition_get_base: (a: number) => number;
|
|
2814
|
+
readonly tokenclaimtransition_get_distribution_type: (a: number) => [number, number];
|
|
2815
|
+
readonly tokenclaimtransition_get_public_note: (a: number) => [number, number];
|
|
2816
|
+
readonly tokenclaimtransition_new: (a: number, b: any, c: number, d: number) => [number, number, number];
|
|
2817
|
+
readonly tokenclaimtransition_set_base: (a: number, b: number) => void;
|
|
2818
|
+
readonly tokenclaimtransition_set_distribution_type: (a: number, b: any) => [number, number];
|
|
2819
|
+
readonly tokenclaimtransition_set_public_note: (a: number, b: number, c: number) => void;
|
|
2820
|
+
readonly tokenclaimtransition_struct_name: () => [number, number];
|
|
2821
|
+
readonly tokenclaimtransition_type_name: (a: number) => [number, number];
|
|
2822
|
+
readonly tokenconfigupdatetransition_get_base: (a: number) => number;
|
|
2823
|
+
readonly tokenconfigupdatetransition_get_public_note: (a: number) => [number, number];
|
|
2824
|
+
readonly tokenconfigupdatetransition_get_update_token_configuration_item: (a: number) => number;
|
|
2825
|
+
readonly tokenconfigupdatetransition_new: (a: number, b: number, c: number, d: number) => [number, number, number];
|
|
2826
|
+
readonly tokenconfigupdatetransition_set_base: (a: number, b: number) => void;
|
|
2827
|
+
readonly tokenconfigupdatetransition_set_public_note: (a: number, b: number, c: number) => void;
|
|
2828
|
+
readonly tokenconfigupdatetransition_set_update_token_configuration_item: (a: number, b: number) => void;
|
|
2829
|
+
readonly tokenconfigupdatetransition_struct_name: () => [number, number];
|
|
2830
|
+
readonly tokenconfigupdatetransition_type_name: (a: number) => [number, number];
|
|
2831
|
+
readonly tokenconfiguration_calculateTokenId: (a: any, b: number) => [number, number, number];
|
|
2832
|
+
readonly tokenconfiguration_get_base_supply: (a: number) => bigint;
|
|
2833
|
+
readonly tokenconfiguration_get_conventions: (a: number) => number;
|
|
2834
|
+
readonly tokenconfiguration_get_conventions_change_rules: (a: number) => number;
|
|
2835
|
+
readonly tokenconfiguration_get_description: (a: number) => [number, number];
|
|
2836
|
+
readonly tokenconfiguration_get_destroy_frozen_funds_rules: (a: number) => number;
|
|
2837
|
+
readonly tokenconfiguration_get_distribution_rules: (a: number) => number;
|
|
2838
|
+
readonly tokenconfiguration_get_emergency_action_rules: (a: number) => number;
|
|
2839
|
+
readonly tokenconfiguration_get_freeze_rules: (a: number) => number;
|
|
2840
|
+
readonly tokenconfiguration_get_is_allowed_transfer_to_frozen_balance: (a: number) => number;
|
|
2841
|
+
readonly tokenconfiguration_get_keeps_history: (a: number) => number;
|
|
2842
|
+
readonly tokenconfiguration_get_main_control_group: (a: number) => number;
|
|
2843
|
+
readonly tokenconfiguration_get_main_control_group_can_be_modified: (a: number) => number;
|
|
2844
|
+
readonly tokenconfiguration_get_manual_burning_rules: (a: number) => number;
|
|
2845
|
+
readonly tokenconfiguration_get_manual_minting_rules: (a: number) => number;
|
|
2846
|
+
readonly tokenconfiguration_get_marketplace_rules: (a: number) => number;
|
|
2847
|
+
readonly tokenconfiguration_get_max_supply: (a: number) => [number, bigint];
|
|
2848
|
+
readonly tokenconfiguration_get_max_supply_change_rules: (a: number) => number;
|
|
2849
|
+
readonly tokenconfiguration_get_start_as_paused: (a: number) => number;
|
|
2850
|
+
readonly tokenconfiguration_get_unfreeze_rules: (a: number) => number;
|
|
2851
|
+
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;
|
|
2852
|
+
readonly tokenconfiguration_set_base_supply: (a: number, b: bigint) => void;
|
|
2853
|
+
readonly tokenconfiguration_set_conventions: (a: number, b: number) => void;
|
|
2854
|
+
readonly tokenconfiguration_set_conventions_change_rules: (a: number, b: number) => void;
|
|
2855
|
+
readonly tokenconfiguration_set_description: (a: number, b: number, c: number) => void;
|
|
2856
|
+
readonly tokenconfiguration_set_destroy_frozen_funds_rules: (a: number, b: number) => void;
|
|
2857
|
+
readonly tokenconfiguration_set_distribution_rules: (a: number, b: number) => void;
|
|
2858
|
+
readonly tokenconfiguration_set_emergency_action_rules: (a: number, b: number) => void;
|
|
2859
|
+
readonly tokenconfiguration_set_freeze_rules: (a: number, b: number) => void;
|
|
2860
|
+
readonly tokenconfiguration_set_is_allowed_transfer_to_frozen_balance: (a: number, b: number) => void;
|
|
2861
|
+
readonly tokenconfiguration_set_keeps_history: (a: number, b: number) => void;
|
|
2862
|
+
readonly tokenconfiguration_set_main_control_group: (a: number, b: number) => void;
|
|
2863
|
+
readonly tokenconfiguration_set_main_control_group_can_be_modified: (a: number, b: number) => void;
|
|
2864
|
+
readonly tokenconfiguration_set_manual_burning_rules: (a: number, b: number) => void;
|
|
2865
|
+
readonly tokenconfiguration_set_manual_minting_rules: (a: number, b: number) => void;
|
|
2866
|
+
readonly tokenconfiguration_set_marketplace_rules: (a: number, b: number) => void;
|
|
2867
|
+
readonly tokenconfiguration_set_max_supply: (a: number, b: number, c: bigint) => void;
|
|
2868
|
+
readonly tokenconfiguration_set_max_supply_change_rules: (a: number, b: number) => void;
|
|
2869
|
+
readonly tokenconfiguration_set_start_as_paused: (a: number, b: number) => void;
|
|
2870
|
+
readonly tokenconfiguration_set_unfreeze_rules: (a: number, b: number) => void;
|
|
2871
|
+
readonly tokenconfiguration_struct_name: () => [number, number];
|
|
2872
|
+
readonly tokenconfiguration_type_name: (a: number) => [number, number];
|
|
2873
|
+
readonly tokenconfigurationchangeitem_MainControlGroupItem: (a: number) => number;
|
|
2874
|
+
readonly tokenconfigurationchangeitem_getItem: (a: number) => any;
|
|
2875
|
+
readonly tokenconfigurationchangeitem_getItemName: (a: number) => [number, number];
|
|
2876
|
+
readonly tokenconfigurationchangeitem_struct_name: () => [number, number];
|
|
2877
|
+
readonly tokenconfigurationchangeitem_type_name: (a: number) => [number, number];
|
|
3235
2878
|
readonly tokendirectpurchasetransition_get_base: (a: number) => number;
|
|
3236
2879
|
readonly tokendirectpurchasetransition_get_token_count: (a: number) => bigint;
|
|
3237
2880
|
readonly tokendirectpurchasetransition_get_total_agreed_price: (a: number) => bigint;
|
|
@@ -3241,6 +2884,251 @@ export interface InitOutput {
|
|
|
3241
2884
|
readonly tokendirectpurchasetransition_set_total_agreed_price: (a: number, b: bigint) => void;
|
|
3242
2885
|
readonly tokendirectpurchasetransition_struct_name: () => [number, number];
|
|
3243
2886
|
readonly tokendirectpurchasetransition_type_name: (a: number) => [number, number];
|
|
2887
|
+
readonly tokenemergencyactiontransition_get_base: (a: number) => number;
|
|
2888
|
+
readonly tokenemergencyactiontransition_get_emergency_action: (a: number) => [number, number];
|
|
2889
|
+
readonly tokenemergencyactiontransition_get_public_note: (a: number) => [number, number];
|
|
2890
|
+
readonly tokenemergencyactiontransition_new: (a: number, b: number, c: number, d: number) => number;
|
|
2891
|
+
readonly tokenemergencyactiontransition_set_base: (a: number, b: number) => void;
|
|
2892
|
+
readonly tokenemergencyactiontransition_set_emergency_action: (a: number, b: number) => void;
|
|
2893
|
+
readonly tokenemergencyactiontransition_set_public_note: (a: number, b: number, c: number) => void;
|
|
2894
|
+
readonly tokenemergencyactiontransition_struct_name: () => [number, number];
|
|
2895
|
+
readonly tokenemergencyactiontransition_type_name: (a: number) => [number, number];
|
|
2896
|
+
readonly tokenminttransition_getRecipientId: (a: number, b: number) => [number, number, number];
|
|
2897
|
+
readonly tokenminttransition_get_amount: (a: number) => bigint;
|
|
2898
|
+
readonly tokenminttransition_get_base: (a: number) => number;
|
|
2899
|
+
readonly tokenminttransition_get_public_note: (a: number) => [number, number];
|
|
2900
|
+
readonly tokenminttransition_issued_to_identity_id: (a: number) => number;
|
|
2901
|
+
readonly tokenminttransition_new: (a: number, b: any, c: bigint, d: number, e: number) => [number, number, number];
|
|
2902
|
+
readonly tokenminttransition_set_amount: (a: number, b: bigint) => void;
|
|
2903
|
+
readonly tokenminttransition_set_base: (a: number, b: number) => void;
|
|
2904
|
+
readonly tokenminttransition_set_issued_to_identity_id: (a: number, b: any) => [number, number];
|
|
2905
|
+
readonly tokenminttransition_set_public_note: (a: number, b: number, c: number) => void;
|
|
2906
|
+
readonly tokenminttransition_struct_name: () => [number, number];
|
|
2907
|
+
readonly tokenminttransition_type_name: (a: number) => [number, number];
|
|
2908
|
+
readonly tokensetpricefordirectpurchasetransition_get_base: (a: number) => number;
|
|
2909
|
+
readonly tokensetpricefordirectpurchasetransition_get_price: (a: number) => any;
|
|
2910
|
+
readonly tokensetpricefordirectpurchasetransition_get_public_note: (a: number) => [number, number];
|
|
2911
|
+
readonly tokensetpricefordirectpurchasetransition_new: (a: number, b: any, c: number, d: number) => [number, number, number];
|
|
2912
|
+
readonly tokensetpricefordirectpurchasetransition_set_base: (a: number, b: number) => void;
|
|
2913
|
+
readonly tokensetpricefordirectpurchasetransition_set_price: (a: number, b: any) => [number, number];
|
|
2914
|
+
readonly tokensetpricefordirectpurchasetransition_set_public_note: (a: number, b: number, c: number) => void;
|
|
2915
|
+
readonly tokensetpricefordirectpurchasetransition_struct_name: () => [number, number];
|
|
2916
|
+
readonly tokensetpricefordirectpurchasetransition_type_name: (a: number) => [number, number];
|
|
2917
|
+
readonly tokentransfertransition_get_amount: (a: number) => bigint;
|
|
2918
|
+
readonly tokentransfertransition_get_base: (a: number) => number;
|
|
2919
|
+
readonly tokentransfertransition_get_private_encrypted_note: (a: number) => number;
|
|
2920
|
+
readonly tokentransfertransition_get_public_note: (a: number) => [number, number];
|
|
2921
|
+
readonly tokentransfertransition_get_shared_encrypted_note: (a: number) => number;
|
|
2922
|
+
readonly tokentransfertransition_new: (a: number, b: any, c: bigint, d: number, e: number, f: any, g: any) => [number, number, number];
|
|
2923
|
+
readonly tokentransfertransition_recipient_id: (a: number) => number;
|
|
2924
|
+
readonly tokentransfertransition_set_amount: (a: number, b: bigint) => void;
|
|
2925
|
+
readonly tokentransfertransition_set_base: (a: number, b: number) => void;
|
|
2926
|
+
readonly tokentransfertransition_set_private_encrypted_note: (a: number, b: any) => [number, number];
|
|
2927
|
+
readonly tokentransfertransition_set_public_note: (a: number, b: number, c: number) => void;
|
|
2928
|
+
readonly tokentransfertransition_set_recipient_id: (a: number, b: any) => [number, number];
|
|
2929
|
+
readonly tokentransfertransition_set_shared_encrypted_note: (a: number, b: any) => [number, number];
|
|
2930
|
+
readonly tokentransfertransition_struct_name: () => [number, number];
|
|
2931
|
+
readonly tokentransfertransition_type_name: (a: number) => [number, number];
|
|
2932
|
+
readonly tokentransition_getHistoricalDocumentId: (a: number, b: any) => [number, number, number];
|
|
2933
|
+
readonly tokentransition_getHistoricalDocumentTypeName: (a: number) => [number, number];
|
|
2934
|
+
readonly tokentransition_getTransition: (a: number) => any;
|
|
2935
|
+
readonly tokentransition_getTransitionType: (a: number) => [number, number];
|
|
2936
|
+
readonly tokentransition_getTransitionTypeNumber: (a: number) => number;
|
|
2937
|
+
readonly tokentransition_get_contract_id: (a: number) => number;
|
|
2938
|
+
readonly tokentransition_get_identity_contract_nonce: (a: number) => bigint;
|
|
2939
|
+
readonly tokentransition_get_token_id: (a: number) => number;
|
|
2940
|
+
readonly tokentransition_new: (a: any) => [number, number, number];
|
|
2941
|
+
readonly tokentransition_set_contract_id: (a: number, b: any) => [number, number];
|
|
2942
|
+
readonly tokentransition_set_identity_contract_nonce: (a: number, b: bigint) => void;
|
|
2943
|
+
readonly tokentransition_set_token_id: (a: number, b: any) => [number, number];
|
|
2944
|
+
readonly tokentransition_struct_name: () => [number, number];
|
|
2945
|
+
readonly tokentransition_type_name: (a: number) => [number, number];
|
|
2946
|
+
readonly tokenunfreezetransition_get_base: (a: number) => number;
|
|
2947
|
+
readonly tokenunfreezetransition_get_frozen_identity_id: (a: number) => number;
|
|
2948
|
+
readonly tokenunfreezetransition_get_public_note: (a: number) => [number, number];
|
|
2949
|
+
readonly tokenunfreezetransition_new: (a: number, b: any, c: number, d: number) => [number, number, number];
|
|
2950
|
+
readonly tokenunfreezetransition_set_base: (a: number, b: number) => void;
|
|
2951
|
+
readonly tokenunfreezetransition_set_frozen_identity_id: (a: number, b: any) => [number, number];
|
|
2952
|
+
readonly tokenunfreezetransition_set_public_note: (a: number, b: number, c: number) => void;
|
|
2953
|
+
readonly tokenunfreezetransition_struct_name: () => [number, number];
|
|
2954
|
+
readonly tokenunfreezetransition_type_name: (a: number) => [number, number];
|
|
2955
|
+
readonly __wbg_set_distributioninvertedlogarithmic_a: (a: number, b: bigint) => void;
|
|
2956
|
+
readonly __wbg_set_distributioninvertedlogarithmic_b: (a: number, b: bigint) => void;
|
|
2957
|
+
readonly __wbg_set_distributioninvertedlogarithmic_d: (a: number, b: bigint) => void;
|
|
2958
|
+
readonly __wbg_set_distributioninvertedlogarithmic_m: (a: number, b: bigint) => void;
|
|
2959
|
+
readonly __wbg_set_distributioninvertedlogarithmic_n: (a: number, b: bigint) => void;
|
|
2960
|
+
readonly __wbg_set_distributioninvertedlogarithmic_o: (a: number, b: bigint) => void;
|
|
2961
|
+
readonly __wbg_set_distributionlinear_a: (a: number, b: bigint) => void;
|
|
2962
|
+
readonly __wbg_set_distributionlinear_d: (a: number, b: bigint) => void;
|
|
2963
|
+
readonly __wbg_set_distributionlinear_startingAmount: (a: number, b: bigint) => void;
|
|
2964
|
+
readonly __wbg_set_distributionlogarithmic_a: (a: number, b: bigint) => void;
|
|
2965
|
+
readonly __wbg_set_distributionlogarithmic_b: (a: number, b: bigint) => void;
|
|
2966
|
+
readonly __wbg_set_distributionlogarithmic_d: (a: number, b: bigint) => void;
|
|
2967
|
+
readonly __wbg_set_distributionlogarithmic_m: (a: number, b: bigint) => void;
|
|
2968
|
+
readonly __wbg_set_distributionlogarithmic_n: (a: number, b: bigint) => void;
|
|
2969
|
+
readonly __wbg_set_distributionlogarithmic_o: (a: number, b: bigint) => void;
|
|
2970
|
+
readonly __wbg_set_distributionpolynomial_a: (a: number, b: bigint) => void;
|
|
2971
|
+
readonly __wbg_set_distributionpolynomial_b: (a: number, b: bigint) => void;
|
|
2972
|
+
readonly __wbg_set_distributionpolynomial_d: (a: number, b: bigint) => void;
|
|
2973
|
+
readonly __wbg_set_distributionpolynomial_m: (a: number, b: bigint) => void;
|
|
2974
|
+
readonly __wbg_set_distributionpolynomial_n: (a: number, b: bigint) => void;
|
|
2975
|
+
readonly __wbg_set_distributionpolynomial_o: (a: number, b: bigint) => void;
|
|
2976
|
+
readonly __wbg_set_distributionrandom_min: (a: number, b: bigint) => void;
|
|
2977
|
+
readonly sharedencryptednote_new: (a: number, b: number, c: number, d: number) => number;
|
|
2978
|
+
readonly __wbg_set_distributioninvertedlogarithmic_maxValue: (a: number, b: number, c: bigint) => void;
|
|
2979
|
+
readonly __wbg_set_distributioninvertedlogarithmic_minValue: (a: number, b: number, c: bigint) => void;
|
|
2980
|
+
readonly __wbg_set_distributioninvertedlogarithmic_startMoment: (a: number, b: number, c: bigint) => void;
|
|
2981
|
+
readonly __wbg_set_distributionlinear_maxValue: (a: number, b: number, c: bigint) => void;
|
|
2982
|
+
readonly __wbg_set_distributionlinear_minValue: (a: number, b: number, c: bigint) => void;
|
|
2983
|
+
readonly __wbg_set_distributionlinear_startStep: (a: number, b: number, c: bigint) => void;
|
|
2984
|
+
readonly __wbg_set_distributionlogarithmic_maxValue: (a: number, b: number, c: bigint) => void;
|
|
2985
|
+
readonly __wbg_set_distributionlogarithmic_minValue: (a: number, b: number, c: bigint) => void;
|
|
2986
|
+
readonly __wbg_set_distributionlogarithmic_startMoment: (a: number, b: number, c: bigint) => void;
|
|
2987
|
+
readonly __wbg_set_distributionpolynomial_maxValue: (a: number, b: number, c: bigint) => void;
|
|
2988
|
+
readonly __wbg_set_distributionpolynomial_minValue: (a: number, b: number, c: bigint) => void;
|
|
2989
|
+
readonly __wbg_set_distributionpolynomial_startMoment: (a: number, b: number, c: bigint) => void;
|
|
2990
|
+
readonly __wbg_set_distributionstepdecreasingamount_minValue: (a: number, b: number, c: bigint) => void;
|
|
2991
|
+
readonly __wbg_set_distributionstepdecreasingamount_startDecreasingOffset: (a: number, b: number, c: bigint) => void;
|
|
2992
|
+
readonly __wbg_authorizedactiontakers_free: (a: number, b: number) => void;
|
|
2993
|
+
readonly __wbg_blockinfo_free: (a: number, b: number) => void;
|
|
2994
|
+
readonly __wbg_consensuserror_free: (a: number, b: number) => void;
|
|
2995
|
+
readonly __wbg_documentcreatetransition_free: (a: number, b: number) => void;
|
|
2996
|
+
readonly __wbg_documentdeletetransition_free: (a: number, b: number) => void;
|
|
2997
|
+
readonly __wbg_documenttransfertransition_free: (a: number, b: number) => void;
|
|
2998
|
+
readonly __wbg_identitycredittransfer_free: (a: number, b: number) => void;
|
|
2999
|
+
readonly __wbg_identitysigner_free: (a: number, b: number) => void;
|
|
3000
|
+
readonly __wbg_platformaddress_free: (a: number, b: number) => void;
|
|
3001
|
+
readonly __wbg_prefundedvotingbalance_free: (a: number, b: number) => void;
|
|
3002
|
+
readonly __wbg_privatekey_free: (a: number, b: number) => void;
|
|
3003
|
+
readonly __wbg_tokenfreezetransition_free: (a: number, b: number) => void;
|
|
3004
|
+
readonly __wbg_tokenpaymentinfo_free: (a: number, b: number) => void;
|
|
3005
|
+
readonly __wbg_wasmdpperror_free: (a: number, b: number) => void;
|
|
3006
|
+
readonly authorizedactiontakers_ContractOwner: () => number;
|
|
3007
|
+
readonly authorizedactiontakers_Group: (a: number) => number;
|
|
3008
|
+
readonly authorizedactiontakers_Identity: (a: any) => [number, number, number];
|
|
3009
|
+
readonly authorizedactiontakers_MainGroup: () => number;
|
|
3010
|
+
readonly authorizedactiontakers_NoOne: () => number;
|
|
3011
|
+
readonly authorizedactiontakers_getTakerType: (a: number) => [number, number];
|
|
3012
|
+
readonly authorizedactiontakers_getValue: (a: number) => any;
|
|
3013
|
+
readonly authorizedactiontakers_struct_name: () => [number, number];
|
|
3014
|
+
readonly authorizedactiontakers_type_name: (a: number) => [number, number];
|
|
3015
|
+
readonly blockinfo_core_height: (a: number) => number;
|
|
3016
|
+
readonly blockinfo_epoch_index: (a: number) => number;
|
|
3017
|
+
readonly blockinfo_fromJSON: (a: any) => [number, number, number];
|
|
3018
|
+
readonly blockinfo_fromObject: (a: any) => [number, number, number];
|
|
3019
|
+
readonly blockinfo_height: (a: number) => bigint;
|
|
3020
|
+
readonly blockinfo_new: (a: bigint, b: bigint, c: number, d: number) => [number, number, number];
|
|
3021
|
+
readonly blockinfo_time_ms: (a: number) => bigint;
|
|
3022
|
+
readonly blockinfo_toJSON: (a: number) => [number, number, number];
|
|
3023
|
+
readonly blockinfo_toObject: (a: number) => [number, number, number];
|
|
3024
|
+
readonly consensuserror_deserialize: (a: number, b: number) => [number, number, number];
|
|
3025
|
+
readonly consensuserror_message: (a: number) => [number, number];
|
|
3026
|
+
readonly documentcreatetransition_clearPrefundedVotingBalance: (a: number) => void;
|
|
3027
|
+
readonly documentcreatetransition_fromDocumentTransition: (a: number) => [number, number, number];
|
|
3028
|
+
readonly documentcreatetransition_get_base: (a: number) => number;
|
|
3029
|
+
readonly documentcreatetransition_get_data: (a: number) => [number, number, number];
|
|
3030
|
+
readonly documentcreatetransition_get_entropy: (a: number) => [number, number];
|
|
3031
|
+
readonly documentcreatetransition_get_prefunded_voting_balance: (a: number) => number;
|
|
3032
|
+
readonly documentcreatetransition_new: (a: number, b: bigint, c: any, d: any) => [number, number, number];
|
|
3033
|
+
readonly documentcreatetransition_set_base: (a: number, b: number) => void;
|
|
3034
|
+
readonly documentcreatetransition_set_data: (a: number, b: any) => [number, number];
|
|
3035
|
+
readonly documentcreatetransition_set_entropy: (a: number, b: number, c: number) => [number, number];
|
|
3036
|
+
readonly documentcreatetransition_set_prefunded_voting_balance: (a: number, b: number) => void;
|
|
3037
|
+
readonly documentcreatetransition_struct_name: () => [number, number];
|
|
3038
|
+
readonly documentcreatetransition_toDocumentTransition: (a: number) => number;
|
|
3039
|
+
readonly documentcreatetransition_type_name: (a: number) => [number, number];
|
|
3040
|
+
readonly documentdeletetransition_fromDocumentTransition: (a: number) => [number, number, number];
|
|
3041
|
+
readonly documentdeletetransition_get_base: (a: number) => number;
|
|
3042
|
+
readonly documentdeletetransition_new: (a: number, b: bigint, c: any) => [number, number, number];
|
|
3043
|
+
readonly documentdeletetransition_set_base: (a: number, b: number) => void;
|
|
3044
|
+
readonly documentdeletetransition_struct_name: () => [number, number];
|
|
3045
|
+
readonly documentdeletetransition_toDocumentTransition: (a: number) => number;
|
|
3046
|
+
readonly documentdeletetransition_type_name: (a: number) => [number, number];
|
|
3047
|
+
readonly documenttransfertransition_fromDocumentTransition: (a: number) => [number, number, number];
|
|
3048
|
+
readonly documenttransfertransition_get_base: (a: number) => number;
|
|
3049
|
+
readonly documenttransfertransition_get_recipient_owner_id: (a: number) => number;
|
|
3050
|
+
readonly documenttransfertransition_new: (a: number, b: bigint, c: any, d: any) => [number, number, number];
|
|
3051
|
+
readonly documenttransfertransition_set_base: (a: number, b: number) => void;
|
|
3052
|
+
readonly documenttransfertransition_set_recipient_owner_id: (a: number, b: any) => [number, number];
|
|
3053
|
+
readonly documenttransfertransition_struct_name: () => [number, number];
|
|
3054
|
+
readonly documenttransfertransition_toDocumentTransition: (a: number) => number;
|
|
3055
|
+
readonly documenttransfertransition_type_name: (a: number) => [number, number];
|
|
3056
|
+
readonly identitycredittransfer_fromBase64: (a: number, b: number) => [number, number, number];
|
|
3057
|
+
readonly identitycredittransfer_fromBytes: (a: number, b: number) => [number, number, number];
|
|
3058
|
+
readonly identitycredittransfer_fromHex: (a: number, b: number) => [number, number, number];
|
|
3059
|
+
readonly identitycredittransfer_fromStateTransition: (a: number) => [number, number, number];
|
|
3060
|
+
readonly identitycredittransfer_getSignableBytes: (a: number) => [number, number, number, number];
|
|
3061
|
+
readonly identitycredittransfer_get_amount: (a: number) => bigint;
|
|
3062
|
+
readonly identitycredittransfer_get_identity_id: (a: number) => number;
|
|
3063
|
+
readonly identitycredittransfer_get_nonce: (a: number) => bigint;
|
|
3064
|
+
readonly identitycredittransfer_get_recipient_id: (a: number) => number;
|
|
3065
|
+
readonly identitycredittransfer_get_signature: (a: number) => [number, number];
|
|
3066
|
+
readonly identitycredittransfer_get_signature_public_key_id: (a: number) => number;
|
|
3067
|
+
readonly identitycredittransfer_get_user_fee_increase: (a: number) => number;
|
|
3068
|
+
readonly identitycredittransfer_new: (a: bigint, b: any, c: any, d: bigint, e: number) => [number, number, number];
|
|
3069
|
+
readonly identitycredittransfer_set_amount: (a: number, b: bigint) => void;
|
|
3070
|
+
readonly identitycredittransfer_set_nonce: (a: number, b: bigint) => void;
|
|
3071
|
+
readonly identitycredittransfer_set_recipient_id: (a: number, b: any) => [number, number];
|
|
3072
|
+
readonly identitycredittransfer_set_sender_id: (a: number, b: any) => [number, number];
|
|
3073
|
+
readonly identitycredittransfer_set_signature: (a: number, b: number, c: number) => void;
|
|
3074
|
+
readonly identitycredittransfer_set_signature_public_key_id: (a: number, b: number) => void;
|
|
3075
|
+
readonly identitycredittransfer_set_user_fee_increase: (a: number, b: number) => void;
|
|
3076
|
+
readonly identitycredittransfer_struct_name: () => [number, number];
|
|
3077
|
+
readonly identitycredittransfer_toBase64: (a: number) => [number, number, number, number];
|
|
3078
|
+
readonly identitycredittransfer_toBytes: (a: number) => [number, number, number, number];
|
|
3079
|
+
readonly identitycredittransfer_toHex: (a: number) => [number, number, number, number];
|
|
3080
|
+
readonly identitycredittransfer_toStateTransition: (a: number) => number;
|
|
3081
|
+
readonly identitycredittransfer_type_name: (a: number) => [number, number];
|
|
3082
|
+
readonly identitycredittransfertransition_fromJSON: (a: any) => [number, number, number];
|
|
3083
|
+
readonly identitycredittransfertransition_fromObject: (a: any) => [number, number, number];
|
|
3084
|
+
readonly identitycredittransfertransition_toJSON: (a: number) => [number, number, number];
|
|
3085
|
+
readonly identitycredittransfertransition_toObject: (a: number) => [number, number, number];
|
|
3086
|
+
readonly identitysigner_addKey: (a: number, b: number) => [number, number];
|
|
3087
|
+
readonly identitysigner_addKeyFromWif: (a: number, b: number, c: number) => [number, number];
|
|
3088
|
+
readonly identitysigner_key_count: (a: number) => number;
|
|
3089
|
+
readonly identitysigner_new: () => number;
|
|
3090
|
+
readonly identitysigner_struct_name: () => [number, number];
|
|
3091
|
+
readonly identitysigner_type_name: (a: number) => [number, number];
|
|
3092
|
+
readonly platformaddress_addressType: (a: number) => [number, number];
|
|
3093
|
+
readonly platformaddress_fromBech32m: (a: number, b: number) => [number, number, number];
|
|
3094
|
+
readonly platformaddress_fromBytes: (a: number, b: number) => [number, number, number];
|
|
3095
|
+
readonly platformaddress_fromHex: (a: number, b: number) => [number, number, number];
|
|
3096
|
+
readonly platformaddress_fromP2pkhHash: (a: number, b: number) => [number, number, number];
|
|
3097
|
+
readonly platformaddress_fromP2shHash: (a: number, b: number) => [number, number, number];
|
|
3098
|
+
readonly platformaddress_hash: (a: number) => [number, number];
|
|
3099
|
+
readonly platformaddress_hashToHex: (a: number) => [number, number];
|
|
3100
|
+
readonly platformaddress_isP2pkh: (a: number) => number;
|
|
3101
|
+
readonly platformaddress_isP2sh: (a: number) => number;
|
|
3102
|
+
readonly platformaddress_new: (a: any) => [number, number, number];
|
|
3103
|
+
readonly platformaddress_struct_name: () => [number, number];
|
|
3104
|
+
readonly platformaddress_toBech32m: (a: number, b: number, c: number) => [number, number, number, number];
|
|
3105
|
+
readonly platformaddress_toBytes: (a: number) => [number, number];
|
|
3106
|
+
readonly platformaddress_toHex: (a: number) => [number, number];
|
|
3107
|
+
readonly platformaddress_type_name: (a: number) => [number, number];
|
|
3108
|
+
readonly prefundedvotingbalance_credits: (a: number) => bigint;
|
|
3109
|
+
readonly prefundedvotingbalance_indexName: (a: number) => [number, number];
|
|
3110
|
+
readonly prefundedvotingbalance_new: (a: number, b: number, c: bigint) => number;
|
|
3111
|
+
readonly prefundedvotingbalance_struct_name: () => [number, number];
|
|
3112
|
+
readonly prefundedvotingbalance_type_name: (a: number) => [number, number];
|
|
3113
|
+
readonly privatekey_WIF: (a: number) => [number, number];
|
|
3114
|
+
readonly privatekey_fromBytes: (a: number, b: number, c: any) => [number, number, number];
|
|
3115
|
+
readonly privatekey_fromHex: (a: number, b: number, c: any) => [number, number, number];
|
|
3116
|
+
readonly privatekey_fromWIF: (a: number, b: number) => [number, number, number];
|
|
3117
|
+
readonly privatekey_getPublicKey: (a: number) => number;
|
|
3118
|
+
readonly privatekey_getPublicKeyHash: (a: number) => [number, number];
|
|
3119
|
+
readonly privatekey_struct_name: () => [number, number];
|
|
3120
|
+
readonly privatekey_toBytes: (a: number) => [number, number];
|
|
3121
|
+
readonly privatekey_toHex: (a: number) => [number, number];
|
|
3122
|
+
readonly privatekey_type_name: (a: number) => [number, number];
|
|
3123
|
+
readonly tokenfreezetransition_get_base: (a: number) => number;
|
|
3124
|
+
readonly tokenfreezetransition_get_frozen_identity_id: (a: number) => number;
|
|
3125
|
+
readonly tokenfreezetransition_get_public_note: (a: number) => [number, number];
|
|
3126
|
+
readonly tokenfreezetransition_new: (a: number, b: any, c: number, d: number) => [number, number, number];
|
|
3127
|
+
readonly tokenfreezetransition_set_base: (a: number, b: number) => void;
|
|
3128
|
+
readonly tokenfreezetransition_set_frozen_identity_id: (a: number, b: any) => [number, number];
|
|
3129
|
+
readonly tokenfreezetransition_set_public_note: (a: number, b: number, c: number) => void;
|
|
3130
|
+
readonly tokenfreezetransition_struct_name: () => [number, number];
|
|
3131
|
+
readonly tokenfreezetransition_type_name: (a: number) => [number, number];
|
|
3244
3132
|
readonly tokenpaymentinfo_gas_fees_paid_by: (a: number) => [number, number];
|
|
3245
3133
|
readonly tokenpaymentinfo_maximum_token_cost: (a: number) => [number, bigint];
|
|
3246
3134
|
readonly tokenpaymentinfo_minimum_token_cost: (a: number) => [number, bigint];
|
|
@@ -3253,179 +3141,355 @@ export interface InitOutput {
|
|
|
3253
3141
|
readonly tokenpaymentinfo_struct_name: () => [number, number];
|
|
3254
3142
|
readonly tokenpaymentinfo_token_contract_position: (a: number) => number;
|
|
3255
3143
|
readonly tokenpaymentinfo_type_name: (a: number) => [number, number];
|
|
3144
|
+
readonly wasmdpperror_code: (a: number) => number;
|
|
3145
|
+
readonly wasmdpperror_kind: (a: number) => number;
|
|
3146
|
+
readonly wasmdpperror_message: (a: number) => [number, number];
|
|
3147
|
+
readonly wasmdpperror_name: (a: number) => [number, number];
|
|
3148
|
+
readonly tokenpaymentinfo_set_minimum_token_cost: (a: number, b: number, c: bigint) => void;
|
|
3149
|
+
readonly __wbg_contesteddocumentvotepollwinnerinfo_free: (a: number, b: number) => void;
|
|
3150
|
+
readonly __wbg_contractbounds_free: (a: number, b: number) => void;
|
|
3151
|
+
readonly __wbg_extendedepochinfo_free: (a: number, b: number) => void;
|
|
3152
|
+
readonly __wbg_identity_free: (a: number, b: number) => void;
|
|
3153
|
+
readonly __wbg_identityupdatetransition_free: (a: number, b: number) => void;
|
|
3154
|
+
readonly __wbg_publickey_free: (a: number, b: number) => void;
|
|
3155
|
+
readonly __wbg_resourcevotechoice_free: (a: number, b: number) => void;
|
|
3156
|
+
readonly __wbg_tokenconfigurationconvention_free: (a: number, b: number) => void;
|
|
3157
|
+
readonly __wbg_tokencontractinfo_free: (a: number, b: number) => void;
|
|
3158
|
+
readonly __wbg_votepoll_free: (a: number, b: number) => void;
|
|
3159
|
+
readonly contesteddocumentvotepollwinnerinfo_fromJSON: (a: any) => [number, number, number];
|
|
3160
|
+
readonly contesteddocumentvotepollwinnerinfo_fromObject: (a: any) => [number, number, number];
|
|
3161
|
+
readonly contesteddocumentvotepollwinnerinfo_identity_id: (a: number) => number;
|
|
3162
|
+
readonly contesteddocumentvotepollwinnerinfo_isLocked: (a: number) => number;
|
|
3163
|
+
readonly contesteddocumentvotepollwinnerinfo_isNoWinner: (a: number) => number;
|
|
3164
|
+
readonly contesteddocumentvotepollwinnerinfo_isWonByIdentity: (a: number) => number;
|
|
3165
|
+
readonly contesteddocumentvotepollwinnerinfo_kind: (a: number) => [number, number];
|
|
3166
|
+
readonly contesteddocumentvotepollwinnerinfo_new: (a: number, b: number, c: number) => [number, number, number];
|
|
3167
|
+
readonly contesteddocumentvotepollwinnerinfo_toJSON: (a: number) => [number, number, number];
|
|
3168
|
+
readonly contesteddocumentvotepollwinnerinfo_toObject: (a: number) => [number, number, number];
|
|
3169
|
+
readonly contractbounds_SingleContract: (a: any) => [number, number, number];
|
|
3170
|
+
readonly contractbounds_SingleContractDocumentType: (a: any, b: number, c: number) => [number, number, number];
|
|
3171
|
+
readonly contractbounds_contract_bounds_type: (a: number) => [number, number];
|
|
3172
|
+
readonly contractbounds_contract_bounds_type_number: (a: number) => number;
|
|
3173
|
+
readonly contractbounds_document_type_name: (a: number) => [number, number];
|
|
3174
|
+
readonly contractbounds_fromJSON: (a: any) => [number, number, number];
|
|
3175
|
+
readonly contractbounds_fromObject: (a: any) => [number, number, number];
|
|
3176
|
+
readonly contractbounds_id: (a: number) => number;
|
|
3177
|
+
readonly contractbounds_new: (a: any, b: number, c: number) => [number, number, number];
|
|
3178
|
+
readonly contractbounds_set_document_type_name: (a: number, b: number, c: number) => void;
|
|
3179
|
+
readonly contractbounds_set_id: (a: number, b: any) => [number, number];
|
|
3180
|
+
readonly contractbounds_struct_name: () => [number, number];
|
|
3181
|
+
readonly contractbounds_toJSON: (a: number) => [number, number, number];
|
|
3182
|
+
readonly contractbounds_toObject: (a: number) => [number, number, number];
|
|
3183
|
+
readonly contractbounds_type_name: (a: number) => [number, number];
|
|
3184
|
+
readonly extendedepochinfo_fee_multiplier: (a: number) => number;
|
|
3185
|
+
readonly extendedepochinfo_fee_multiplier_permille: (a: number) => bigint;
|
|
3186
|
+
readonly extendedepochinfo_first_block_height: (a: number) => any;
|
|
3187
|
+
readonly extendedepochinfo_first_block_time: (a: number) => any;
|
|
3188
|
+
readonly extendedepochinfo_first_core_block_height: (a: number) => number;
|
|
3189
|
+
readonly extendedepochinfo_fromJSON: (a: any) => [number, number, number];
|
|
3190
|
+
readonly extendedepochinfo_fromObject: (a: any) => [number, number, number];
|
|
3191
|
+
readonly extendedepochinfo_index: (a: number) => number;
|
|
3192
|
+
readonly extendedepochinfo_new: (a: number, b: bigint, c: bigint, d: number, e: bigint, f: number) => number;
|
|
3193
|
+
readonly extendedepochinfo_protocol_version: (a: number) => number;
|
|
3194
|
+
readonly extendedepochinfo_set_fee_multiplier_permille: (a: number, b: bigint) => void;
|
|
3195
|
+
readonly extendedepochinfo_set_first_block_height: (a: number, b: bigint) => void;
|
|
3196
|
+
readonly extendedepochinfo_set_first_block_time: (a: number, b: bigint) => void;
|
|
3197
|
+
readonly extendedepochinfo_set_first_core_block_height: (a: number, b: number) => void;
|
|
3198
|
+
readonly extendedepochinfo_set_index: (a: number, b: number) => void;
|
|
3199
|
+
readonly extendedepochinfo_set_protocol_version: (a: number, b: number) => void;
|
|
3200
|
+
readonly extendedepochinfo_struct_name: () => [number, number];
|
|
3201
|
+
readonly extendedepochinfo_toJSON: (a: number) => [number, number, number];
|
|
3202
|
+
readonly extendedepochinfo_toObject: (a: number) => [number, number, number];
|
|
3203
|
+
readonly extendedepochinfo_type_name: (a: number) => [number, number];
|
|
3204
|
+
readonly identity_addPublicKey: (a: number, b: number) => void;
|
|
3205
|
+
readonly identity_fromBase64: (a: number, b: number) => [number, number, number];
|
|
3206
|
+
readonly identity_fromBytes: (a: number, b: number) => [number, number, number];
|
|
3207
|
+
readonly identity_fromHex: (a: number, b: number) => [number, number, number];
|
|
3208
|
+
readonly identity_fromJSON: (a: any) => [number, number, number];
|
|
3209
|
+
readonly identity_fromObject: (a: any) => [number, number, number];
|
|
3210
|
+
readonly identity_getPublicKeyById: (a: number, b: number) => number;
|
|
3211
|
+
readonly identity_getPublicKeys: (a: number) => [number, number];
|
|
3212
|
+
readonly identity_get_balance: (a: number) => bigint;
|
|
3213
|
+
readonly identity_get_id: (a: number) => number;
|
|
3214
|
+
readonly identity_get_revision: (a: number) => bigint;
|
|
3215
|
+
readonly identity_new: (a: any) => [number, number, number];
|
|
3216
|
+
readonly identity_set_balance: (a: number, b: bigint) => void;
|
|
3217
|
+
readonly identity_set_id: (a: number, b: any) => [number, number];
|
|
3218
|
+
readonly identity_set_revision: (a: number, b: bigint) => void;
|
|
3219
|
+
readonly identity_struct_name: () => [number, number];
|
|
3220
|
+
readonly identity_toBase64: (a: number) => [number, number, number, number];
|
|
3221
|
+
readonly identity_toBytes: (a: number) => [number, number, number, number];
|
|
3222
|
+
readonly identity_toHex: (a: number) => [number, number, number, number];
|
|
3223
|
+
readonly identity_toJSON: (a: number) => [number, number, number];
|
|
3224
|
+
readonly identity_toObject: (a: number) => [number, number, number];
|
|
3225
|
+
readonly identity_type_name: (a: number) => [number, number];
|
|
3226
|
+
readonly identityupdatetransition_fromBase64: (a: number, b: number) => [number, number, number];
|
|
3227
|
+
readonly identityupdatetransition_fromBytes: (a: number, b: number) => [number, number, number];
|
|
3228
|
+
readonly identityupdatetransition_fromHex: (a: number, b: number) => [number, number, number];
|
|
3229
|
+
readonly identityupdatetransition_fromJSON: (a: any) => [number, number, number];
|
|
3230
|
+
readonly identityupdatetransition_fromObject: (a: any) => [number, number, number];
|
|
3231
|
+
readonly identityupdatetransition_fromStateTransition: (a: number) => [number, number, number];
|
|
3232
|
+
readonly identityupdatetransition_getModifiedDataIds: (a: number) => [number, number];
|
|
3233
|
+
readonly identityupdatetransition_getOptionalAssetLockProof: (a: number) => any;
|
|
3234
|
+
readonly identityupdatetransition_getPurposeRequirement: (a: number) => [number, number];
|
|
3235
|
+
readonly identityupdatetransition_getSignableBytes: (a: number) => [number, number, number, number];
|
|
3236
|
+
readonly identityupdatetransition_get_identity_identifier: (a: number) => number;
|
|
3237
|
+
readonly identityupdatetransition_get_nonce: (a: number) => bigint;
|
|
3238
|
+
readonly identityupdatetransition_get_public_key_ids_to_add: (a: number) => [number, number];
|
|
3239
|
+
readonly identityupdatetransition_get_public_key_ids_to_disable: (a: number) => [number, number];
|
|
3240
|
+
readonly identityupdatetransition_get_revision: (a: number) => bigint;
|
|
3241
|
+
readonly identityupdatetransition_get_signature: (a: number) => [number, number];
|
|
3242
|
+
readonly identityupdatetransition_get_signature_public_key_id: (a: number) => number;
|
|
3243
|
+
readonly identityupdatetransition_get_user_fee_increase: (a: number) => number;
|
|
3244
|
+
readonly identityupdatetransition_new: (a: any, b: bigint, c: bigint, d: any, e: number, f: number, g: number) => [number, number, number];
|
|
3245
|
+
readonly identityupdatetransition_set_identity_identifier: (a: number, b: any) => [number, number];
|
|
3246
|
+
readonly identityupdatetransition_set_nonce: (a: number, b: bigint) => void;
|
|
3247
|
+
readonly identityupdatetransition_set_public_key_ids_to_add: (a: number, b: any) => [number, number];
|
|
3248
|
+
readonly identityupdatetransition_set_public_key_ids_to_disable: (a: number, b: number, c: number) => void;
|
|
3249
|
+
readonly identityupdatetransition_set_revision: (a: number, b: bigint) => void;
|
|
3250
|
+
readonly identityupdatetransition_set_signature: (a: number, b: number, c: number) => void;
|
|
3251
|
+
readonly identityupdatetransition_set_signature_public_key_id: (a: number, b: number) => void;
|
|
3252
|
+
readonly identityupdatetransition_set_user_fee_increase: (a: number, b: number) => void;
|
|
3253
|
+
readonly identityupdatetransition_struct_name: () => [number, number];
|
|
3254
|
+
readonly identityupdatetransition_toBase64: (a: number) => [number, number, number, number];
|
|
3255
|
+
readonly identityupdatetransition_toBytes: (a: number) => [number, number, number, number];
|
|
3256
|
+
readonly identityupdatetransition_toHex: (a: number) => [number, number, number, number];
|
|
3257
|
+
readonly identityupdatetransition_toJSON: (a: number) => [number, number, number];
|
|
3258
|
+
readonly identityupdatetransition_toObject: (a: number) => [number, number, number];
|
|
3259
|
+
readonly identityupdatetransition_toStateTransition: (a: number) => number;
|
|
3260
|
+
readonly identityupdatetransition_type_name: (a: number) => [number, number];
|
|
3261
|
+
readonly publickey_compressed: (a: number) => number;
|
|
3262
|
+
readonly publickey_fromBytes: (a: number, b: number) => [number, number, number];
|
|
3263
|
+
readonly publickey_getPublicKeyHash: (a: number) => [number, number];
|
|
3264
|
+
readonly publickey_inner: (a: number) => [number, number];
|
|
3265
|
+
readonly publickey_new: (a: number, b: number, c: number) => [number, number, number];
|
|
3266
|
+
readonly publickey_set_compressed: (a: number, b: number) => void;
|
|
3267
|
+
readonly publickey_set_inner: (a: number, b: number, c: number) => [number, number];
|
|
3268
|
+
readonly publickey_struct_name: () => [number, number];
|
|
3269
|
+
readonly publickey_toBytes: (a: number) => [number, number];
|
|
3270
|
+
readonly publickey_type_name: (a: number) => [number, number];
|
|
3271
|
+
readonly resourcevotechoice_Abstain: () => number;
|
|
3272
|
+
readonly resourcevotechoice_Lock: () => number;
|
|
3273
|
+
readonly resourcevotechoice_TowardsIdentity: (a: any) => [number, number, number];
|
|
3274
|
+
readonly resourcevotechoice_fromJSON: (a: any) => [number, number, number];
|
|
3275
|
+
readonly resourcevotechoice_fromObject: (a: any) => [number, number, number];
|
|
3276
|
+
readonly resourcevotechoice_getType: (a: number) => [number, number];
|
|
3277
|
+
readonly resourcevotechoice_getValue: (a: number) => any;
|
|
3278
|
+
readonly resourcevotechoice_struct_name: () => [number, number];
|
|
3279
|
+
readonly resourcevotechoice_toJSON: (a: number) => [number, number, number];
|
|
3280
|
+
readonly resourcevotechoice_toObject: (a: number) => [number, number, number];
|
|
3281
|
+
readonly resourcevotechoice_type_name: (a: number) => [number, number];
|
|
3282
|
+
readonly tokenconfigurationchangeitem_ConventionsAdminGroupItem: (a: number) => number;
|
|
3283
|
+
readonly tokenconfigurationchangeitem_ConventionsControlGroupItem: (a: number) => number;
|
|
3284
|
+
readonly tokenconfigurationchangeitem_DestroyFrozenFundsAdminGroupItem: (a: number) => number;
|
|
3285
|
+
readonly tokenconfigurationchangeitem_DestroyFrozenFundsItem: (a: number) => number;
|
|
3286
|
+
readonly tokenconfigurationchangeitem_EmergencyActionAdminGroupItem: (a: number) => number;
|
|
3287
|
+
readonly tokenconfigurationchangeitem_EmergencyActionItem: (a: number) => number;
|
|
3288
|
+
readonly tokenconfigurationchangeitem_FreezeAdminGroupItem: (a: number) => number;
|
|
3289
|
+
readonly tokenconfigurationchangeitem_FreezeItem: (a: number) => number;
|
|
3290
|
+
readonly tokenconfigurationchangeitem_ManualBurningAdminGroupItem: (a: number) => number;
|
|
3291
|
+
readonly tokenconfigurationchangeitem_ManualBurningItem: (a: number) => number;
|
|
3292
|
+
readonly tokenconfigurationchangeitem_ManualMintingAdminGroupItem: (a: number) => number;
|
|
3293
|
+
readonly tokenconfigurationchangeitem_ManualMintingItem: (a: number) => number;
|
|
3294
|
+
readonly tokenconfigurationchangeitem_MaxSupplyAdminGroupItem: (a: number) => number;
|
|
3295
|
+
readonly tokenconfigurationchangeitem_MaxSupplyControlGroupItem: (a: number) => number;
|
|
3296
|
+
readonly tokenconfigurationchangeitem_MaxSupplyItem: (a: number, b: bigint) => number;
|
|
3297
|
+
readonly tokenconfigurationchangeitem_MintingAllowChoosingDestinationAdminGroupItem: (a: number) => number;
|
|
3298
|
+
readonly tokenconfigurationchangeitem_MintingAllowChoosingDestinationControlGroupItem: (a: number) => number;
|
|
3299
|
+
readonly tokenconfigurationchangeitem_MintingAllowChoosingDestinationItem: (a: number) => number;
|
|
3300
|
+
readonly tokenconfigurationchangeitem_PerpetualDistributionAdminGroupItem: (a: number) => number;
|
|
3301
|
+
readonly tokenconfigurationchangeitem_PerpetualDistributionConfigurationItem: (a: any) => number;
|
|
3302
|
+
readonly tokenconfigurationchangeitem_PerpetualDistributionControlGroupItem: (a: number) => number;
|
|
3303
|
+
readonly tokenconfigurationchangeitem_UnfreezeAdminGroupItem: (a: number) => number;
|
|
3304
|
+
readonly tokenconfigurationchangeitem_UnfreezeItem: (a: number) => number;
|
|
3305
|
+
readonly tokenconfigurationchangeitem_conventionsItem: (a: number) => number;
|
|
3306
|
+
readonly tokenconfigurationconvention_decimals: (a: number) => number;
|
|
3307
|
+
readonly tokenconfigurationconvention_localizations: (a: number) => [number, number, number];
|
|
3308
|
+
readonly tokenconfigurationconvention_new: (a: any, b: number) => [number, number, number];
|
|
3309
|
+
readonly tokenconfigurationconvention_set_decimals: (a: number, b: number) => void;
|
|
3310
|
+
readonly tokenconfigurationconvention_set_localizations: (a: number, b: any) => [number, number];
|
|
3311
|
+
readonly tokenconfigurationconvention_struct_name: () => [number, number];
|
|
3312
|
+
readonly tokenconfigurationconvention_type_name: (a: number) => [number, number];
|
|
3313
|
+
readonly tokencontractinfo_contract_id: (a: number) => number;
|
|
3314
|
+
readonly tokencontractinfo_token_contract_position: (a: number) => number;
|
|
3315
|
+
readonly votepoll_contract_id: (a: number) => number;
|
|
3316
|
+
readonly votepoll_document_type_name: (a: number) => [number, number];
|
|
3317
|
+
readonly votepoll_fromJSON: (a: any) => [number, number, number];
|
|
3318
|
+
readonly votepoll_fromObject: (a: any) => [number, number, number];
|
|
3319
|
+
readonly votepoll_index_name: (a: number) => [number, number];
|
|
3320
|
+
readonly votepoll_index_values: (a: number) => [number, number, number];
|
|
3321
|
+
readonly votepoll_new: (a: any, b: number, c: number, d: number, e: number, f: any) => [number, number, number];
|
|
3322
|
+
readonly votepoll_set_contract_id: (a: number, b: any) => [number, number];
|
|
3323
|
+
readonly votepoll_set_document_type_name: (a: number, b: number, c: number) => void;
|
|
3324
|
+
readonly votepoll_set_index_name: (a: number, b: number, c: number) => void;
|
|
3325
|
+
readonly votepoll_set_index_values: (a: number, b: any) => [number, number];
|
|
3326
|
+
readonly votepoll_struct_name: () => [number, number];
|
|
3327
|
+
readonly votepoll_toJSON: (a: number) => [number, number, number];
|
|
3328
|
+
readonly votepoll_toObject: (a: number) => [number, number, number];
|
|
3329
|
+
readonly votepoll_toString: (a: number) => [number, number];
|
|
3330
|
+
readonly votepoll_type_name: (a: number) => [number, number];
|
|
3331
|
+
readonly tokenconfigurationchangeitem_noChangeItem: () => number;
|
|
3332
|
+
readonly __wbg_actiontaker_free: (a: number, b: number) => void;
|
|
3333
|
+
readonly __wbg_changecontrolrules_free: (a: number, b: number) => void;
|
|
3334
|
+
readonly __wbg_distributionfunction_free: (a: number, b: number) => void;
|
|
3335
|
+
readonly __wbg_finalizedepochinfo_free: (a: number, b: number) => void;
|
|
3336
|
+
readonly __wbg_group_free: (a: number, b: number) => void;
|
|
3337
|
+
readonly __wbg_identitytokeninfo_free: (a: number, b: number) => void;
|
|
3338
|
+
readonly __wbg_tokendistributionrules_free: (a: number, b: number) => void;
|
|
3339
|
+
readonly __wbg_tokenmarketplacerules_free: (a: number, b: number) => void;
|
|
3340
|
+
readonly __wbg_tokenperpetualdistribution_free: (a: number, b: number) => void;
|
|
3341
|
+
readonly __wbg_tokenpreprogrammeddistribution_free: (a: number, b: number) => void;
|
|
3342
|
+
readonly __wbg_tokenpricingschedule_free: (a: number, b: number) => void;
|
|
3343
|
+
readonly __wbg_tokentrademode_free: (a: number, b: number) => void;
|
|
3344
|
+
readonly actiontaker_getType: (a: number) => [number, number];
|
|
3345
|
+
readonly actiontaker_get_value: (a: number) => any;
|
|
3346
|
+
readonly actiontaker_new: (a: any) => [number, number, number];
|
|
3347
|
+
readonly actiontaker_set_value: (a: number, b: any) => [number, number];
|
|
3348
|
+
readonly actiontaker_struct_name: () => [number, number];
|
|
3349
|
+
readonly actiontaker_type_name: (a: number) => [number, number];
|
|
3350
|
+
readonly changecontrolrules_canChangeAdminActionTakers: (a: number, b: number, c: any, d: number, e: any, f: number, g: any) => [number, number, number];
|
|
3351
|
+
readonly changecontrolrules_get_admin_action_takers: (a: number) => number;
|
|
3352
|
+
readonly changecontrolrules_get_authorized_to_make_change: (a: number) => number;
|
|
3353
|
+
readonly changecontrolrules_get_changing_admin_action_takers_to_no_one_allowed: (a: number) => number;
|
|
3354
|
+
readonly changecontrolrules_get_changing_authorized_action_takers_to_no_one_allowed: (a: number) => number;
|
|
3355
|
+
readonly changecontrolrules_get_self_changing_admin_action_takers_allowed: (a: number) => number;
|
|
3356
|
+
readonly changecontrolrules_new: (a: number, b: number, c: number, d: number, e: number) => number;
|
|
3357
|
+
readonly changecontrolrules_set_admin_action_takers: (a: number, b: number) => void;
|
|
3358
|
+
readonly changecontrolrules_set_authorized_to_make_change: (a: number, b: number) => void;
|
|
3359
|
+
readonly changecontrolrules_set_changing_admin_action_takers_to_no_one_allowed: (a: number, b: number) => void;
|
|
3360
|
+
readonly changecontrolrules_set_changing_authorized_action_takers_to_no_one_allowed: (a: number, b: number) => void;
|
|
3361
|
+
readonly changecontrolrules_set_self_changing_admin_action_takers_allowed: (a: number, b: number) => void;
|
|
3362
|
+
readonly changecontrolrules_struct_name: () => [number, number];
|
|
3363
|
+
readonly changecontrolrules_type_name: (a: number) => [number, number];
|
|
3364
|
+
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;
|
|
3365
|
+
readonly distributionfunction_FixedAmountDistribution: (a: bigint) => number;
|
|
3366
|
+
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;
|
|
3367
|
+
readonly distributionfunction_Linear: (a: bigint, b: bigint, c: number, d: bigint, e: bigint, f: number, g: bigint, h: number, i: bigint) => number;
|
|
3368
|
+
readonly distributionfunction_Logarithmic: (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;
|
|
3369
|
+
readonly distributionfunction_Polynomial: (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;
|
|
3370
|
+
readonly distributionfunction_Random: (a: bigint, b: bigint) => number;
|
|
3371
|
+
readonly distributionfunction_StepDecreasingAmount: (a: number, b: number, c: number, d: number, e: bigint, f: number, g: bigint, h: bigint, i: number, j: bigint) => number;
|
|
3372
|
+
readonly distributionfunction_Stepwise: (a: any) => [number, number, number];
|
|
3373
|
+
readonly distributionfunction_getFunctionName: (a: number) => [number, number];
|
|
3374
|
+
readonly distributionfunction_getFunctionValue: (a: number) => [number, number, number];
|
|
3375
|
+
readonly distributionfunction_struct_name: () => [number, number];
|
|
3376
|
+
readonly distributionfunction_type_name: (a: number) => [number, number];
|
|
3377
|
+
readonly finalizedepochinfo_block_proposers: (a: number) => [number, number, number];
|
|
3378
|
+
readonly finalizedepochinfo_core_block_rewards: (a: number) => any;
|
|
3379
|
+
readonly finalizedepochinfo_fee_multiplier: (a: number) => number;
|
|
3380
|
+
readonly finalizedepochinfo_fee_multiplier_permille: (a: number) => bigint;
|
|
3381
|
+
readonly finalizedepochinfo_first_block_height: (a: number) => any;
|
|
3382
|
+
readonly finalizedepochinfo_first_block_time: (a: number) => any;
|
|
3383
|
+
readonly finalizedepochinfo_first_core_block_height: (a: number) => number;
|
|
3384
|
+
readonly finalizedepochinfo_fromJSON: (a: any) => [number, number, number];
|
|
3385
|
+
readonly finalizedepochinfo_fromObject: (a: any) => [number, number, number];
|
|
3386
|
+
readonly finalizedepochinfo_new: (a: bigint, b: bigint, c: bigint, d: number, e: number, f: bigint, g: bigint, h: bigint, i: bigint, j: any, k: bigint, l: number) => [number, number, number];
|
|
3387
|
+
readonly finalizedepochinfo_next_epoch_start_core_block_height: (a: number) => number;
|
|
3388
|
+
readonly finalizedepochinfo_protocol_version: (a: number) => number;
|
|
3389
|
+
readonly finalizedepochinfo_set_block_proposers: (a: number, b: any) => [number, number];
|
|
3390
|
+
readonly finalizedepochinfo_set_core_block_rewards: (a: number, b: bigint) => void;
|
|
3391
|
+
readonly finalizedepochinfo_set_fee_multiplier_permille: (a: number, b: bigint) => void;
|
|
3392
|
+
readonly finalizedepochinfo_set_first_block_height: (a: number, b: bigint) => void;
|
|
3393
|
+
readonly finalizedepochinfo_set_first_block_time: (a: number, b: bigint) => void;
|
|
3394
|
+
readonly finalizedepochinfo_set_first_core_block_height: (a: number, b: number) => void;
|
|
3395
|
+
readonly finalizedepochinfo_set_next_epoch_start_core_block_height: (a: number, b: number) => void;
|
|
3396
|
+
readonly finalizedepochinfo_set_protocol_version: (a: number, b: number) => void;
|
|
3397
|
+
readonly finalizedepochinfo_set_total_blocks_in_epoch: (a: number, b: bigint) => void;
|
|
3398
|
+
readonly finalizedepochinfo_set_total_created_storage_fees: (a: number, b: bigint) => void;
|
|
3399
|
+
readonly finalizedepochinfo_set_total_distributed_storage_fees: (a: number, b: bigint) => void;
|
|
3400
|
+
readonly finalizedepochinfo_set_total_processing_fees: (a: number, b: bigint) => void;
|
|
3401
|
+
readonly finalizedepochinfo_struct_name: (a: number) => [number, number];
|
|
3402
|
+
readonly finalizedepochinfo_toJSON: (a: number) => [number, number, number];
|
|
3403
|
+
readonly finalizedepochinfo_toObject: (a: number) => [number, number, number];
|
|
3404
|
+
readonly finalizedepochinfo_total_blocks_in_epoch: (a: number) => any;
|
|
3405
|
+
readonly finalizedepochinfo_total_created_storage_fees: (a: number) => any;
|
|
3406
|
+
readonly finalizedepochinfo_total_distributed_storage_fees: (a: number) => any;
|
|
3407
|
+
readonly finalizedepochinfo_total_processing_fees: (a: number) => any;
|
|
3408
|
+
readonly group_fromJSON: (a: any) => [number, number, number];
|
|
3409
|
+
readonly group_fromObject: (a: any) => [number, number, number];
|
|
3410
|
+
readonly group_get_members: (a: number) => [number, number, number];
|
|
3411
|
+
readonly group_get_required_power: (a: number) => number;
|
|
3412
|
+
readonly group_new: (a: any, b: number) => [number, number, number];
|
|
3413
|
+
readonly group_setMemberRequiredPower: (a: number, b: any, c: number) => [number, number];
|
|
3414
|
+
readonly group_set_members: (a: number, b: any) => [number, number];
|
|
3415
|
+
readonly group_set_required_power: (a: number, b: number) => void;
|
|
3416
|
+
readonly group_struct_name: () => [number, number];
|
|
3417
|
+
readonly group_toJSON: (a: number) => [number, number, number];
|
|
3418
|
+
readonly group_type_name: (a: number) => [number, number];
|
|
3419
|
+
readonly identitytokeninfo_frozen: (a: number) => number;
|
|
3420
|
+
readonly tokenconfigurationchangeitem_MarketplaceTradeModeAdminGroupItem: (a: number) => number;
|
|
3421
|
+
readonly tokenconfigurationchangeitem_MarketplaceTradeModeControlGroupItem: (a: number) => number;
|
|
3422
|
+
readonly tokenconfigurationchangeitem_MarketplaceTradeModeItem: (a: number) => number;
|
|
3423
|
+
readonly tokenconfigurationchangeitem_NewTokensDestinationIdentityAdminGroupItem: (a: number) => number;
|
|
3424
|
+
readonly tokenconfigurationchangeitem_NewTokensDestinationIdentityControlGroupItem: (a: number) => number;
|
|
3425
|
+
readonly tokenconfigurationchangeitem_NewTokensDestinationIdentityItem: (a: any) => [number, number, number];
|
|
3426
|
+
readonly tokendistributionrules_get_change_direct_purchase_pricing_rules: (a: number) => number;
|
|
3427
|
+
readonly tokendistributionrules_get_minting_allow_choosing_destination: (a: number) => number;
|
|
3428
|
+
readonly tokendistributionrules_get_minting_allow_choosing_destination_rules: (a: number) => number;
|
|
3429
|
+
readonly tokendistributionrules_get_new_tokens_destination_identity: (a: number) => number;
|
|
3430
|
+
readonly tokendistributionrules_get_new_tokens_destination_identity_rules: (a: number) => number;
|
|
3431
|
+
readonly tokendistributionrules_get_perpetual_distribution: (a: number) => number;
|
|
3432
|
+
readonly tokendistributionrules_get_perpetual_distribution_rules: (a: number) => number;
|
|
3433
|
+
readonly tokendistributionrules_get_pre_programmed_distribution: (a: number) => number;
|
|
3434
|
+
readonly tokendistributionrules_new: (a: any, b: number, c: any, d: any, e: number, f: number, g: number, h: number) => [number, number, number];
|
|
3435
|
+
readonly tokendistributionrules_set_change_direct_purchase_pricing_rules: (a: number, b: number) => void;
|
|
3436
|
+
readonly tokendistributionrules_set_minting_allow_choosing_destination: (a: number, b: number) => void;
|
|
3437
|
+
readonly tokendistributionrules_set_minting_allow_choosing_destination_rules: (a: number, b: number) => void;
|
|
3438
|
+
readonly tokendistributionrules_set_new_tokens_destination_identity: (a: number, b: any) => [number, number];
|
|
3439
|
+
readonly tokendistributionrules_set_new_tokens_destination_identity_rules: (a: number, b: number) => void;
|
|
3440
|
+
readonly tokendistributionrules_set_perpetual_distribution: (a: number, b: any) => [number, number];
|
|
3441
|
+
readonly tokendistributionrules_set_perpetual_distribution_rules: (a: number, b: number) => void;
|
|
3442
|
+
readonly tokendistributionrules_set_pre_programmed_distribution: (a: number, b: any) => [number, number];
|
|
3443
|
+
readonly tokendistributionrules_struct_name: () => [number, number];
|
|
3444
|
+
readonly tokendistributionrules_type_name: (a: number) => [number, number];
|
|
3445
|
+
readonly tokenmarketplacerules_new: (a: number, b: number) => number;
|
|
3446
|
+
readonly tokenmarketplacerules_set_trade_mode: (a: number, b: number) => void;
|
|
3447
|
+
readonly tokenmarketplacerules_set_trade_mode_change_rules: (a: number, b: number) => void;
|
|
3448
|
+
readonly tokenmarketplacerules_struct_name: () => [number, number];
|
|
3449
|
+
readonly tokenmarketplacerules_trade_mode: (a: number) => number;
|
|
3450
|
+
readonly tokenmarketplacerules_trade_mode_change_rules: (a: number) => number;
|
|
3451
|
+
readonly tokenmarketplacerules_type_name: (a: number) => [number, number];
|
|
3452
|
+
readonly tokenperpetualdistribution_distribution_type: (a: number) => number;
|
|
3453
|
+
readonly tokenperpetualdistribution_new: (a: number, b: number) => number;
|
|
3454
|
+
readonly tokenperpetualdistribution_recipient: (a: number) => number;
|
|
3455
|
+
readonly tokenperpetualdistribution_set_distribution_type: (a: number, b: number) => void;
|
|
3456
|
+
readonly tokenperpetualdistribution_set_recipient: (a: number, b: number) => void;
|
|
3457
|
+
readonly tokenperpetualdistribution_struct_name: () => [number, number];
|
|
3458
|
+
readonly tokenperpetualdistribution_type_name: (a: number) => [number, number];
|
|
3459
|
+
readonly tokenpreprogrammeddistribution_get_distributions: (a: number) => [number, number, number];
|
|
3460
|
+
readonly tokenpreprogrammeddistribution_new: (a: any) => [number, number, number];
|
|
3461
|
+
readonly tokenpreprogrammeddistribution_set_distributions: (a: number, b: any) => [number, number];
|
|
3462
|
+
readonly tokenpreprogrammeddistribution_struct_name: () => [number, number];
|
|
3463
|
+
readonly tokenpreprogrammeddistribution_type_name: (a: number) => [number, number];
|
|
3256
3464
|
readonly tokenpricingschedule_SetPrices: (a: any) => [number, number, number];
|
|
3257
3465
|
readonly tokenpricingschedule_SinglePrice: (a: bigint) => number;
|
|
3258
3466
|
readonly tokenpricingschedule_getScheduleType: (a: number) => [number, number];
|
|
3259
3467
|
readonly tokenpricingschedule_getValue: (a: number) => [number, number, number];
|
|
3260
3468
|
readonly tokenpricingschedule_struct_name: () => [number, number];
|
|
3261
3469
|
readonly tokenpricingschedule_type_name: (a: number) => [number, number];
|
|
3262
|
-
readonly
|
|
3263
|
-
readonly
|
|
3264
|
-
readonly
|
|
3265
|
-
readonly
|
|
3266
|
-
readonly
|
|
3267
|
-
readonly
|
|
3268
|
-
readonly
|
|
3269
|
-
readonly
|
|
3270
|
-
readonly
|
|
3271
|
-
readonly
|
|
3272
|
-
readonly
|
|
3273
|
-
readonly
|
|
3274
|
-
readonly
|
|
3275
|
-
readonly
|
|
3276
|
-
readonly
|
|
3277
|
-
readonly
|
|
3278
|
-
readonly
|
|
3279
|
-
readonly
|
|
3280
|
-
readonly
|
|
3281
|
-
readonly
|
|
3282
|
-
readonly
|
|
3283
|
-
readonly
|
|
3284
|
-
readonly
|
|
3285
|
-
readonly assetlockproof_createIdentityId: (a: number) => [number, number, number];
|
|
3286
|
-
readonly assetlockproof_createInstantAssetLockProof: (a: number, b: number, c: number, d: number, e: number) => [number, number, number];
|
|
3287
|
-
readonly assetlockproof_fromBytes: (a: number, b: number) => [number, number, number];
|
|
3288
|
-
readonly assetlockproof_fromHex: (a: number, b: number) => [number, number, number];
|
|
3289
|
-
readonly assetlockproof_fromJSON: (a: any) => [number, number, number];
|
|
3290
|
-
readonly assetlockproof_fromObject: (a: any) => [number, number, number];
|
|
3291
|
-
readonly assetlockproof_getChainLockProof: (a: number) => number;
|
|
3292
|
-
readonly assetlockproof_getInstantLockProof: (a: number) => number;
|
|
3293
|
-
readonly assetlockproof_getLockType: (a: number) => [number, number];
|
|
3294
|
-
readonly assetlockproof_getOutPoint: (a: number) => number;
|
|
3295
|
-
readonly assetlockproof_new: (a: any) => [number, number, number];
|
|
3296
|
-
readonly assetlockproof_struct_name: () => [number, number];
|
|
3297
|
-
readonly assetlockproof_toBytes: (a: number) => [number, number, number, number];
|
|
3298
|
-
readonly assetlockproof_toHex: (a: number) => [number, number, number, number];
|
|
3299
|
-
readonly assetlockproof_toJSON: (a: number) => [number, number, number];
|
|
3300
|
-
readonly assetlockproof_toObject: (a: number) => [number, number, number];
|
|
3301
|
-
readonly assetlockproof_type_name: (a: number) => [number, number];
|
|
3302
|
-
readonly identifier_fromBase58: (a: number, b: number) => [number, number, number];
|
|
3303
|
-
readonly identifier_fromBase64: (a: number, b: number) => [number, number, number];
|
|
3304
|
-
readonly identifier_fromBytes: (a: number, b: number) => [number, number, number];
|
|
3305
|
-
readonly identifier_fromHex: (a: number, b: number) => [number, number, number];
|
|
3306
|
-
readonly identifier_new: (a: any) => [number, number, number];
|
|
3307
|
-
readonly identifier_struct_name: () => [number, number];
|
|
3308
|
-
readonly identifier_toBase58: (a: number) => [number, number];
|
|
3309
|
-
readonly identifier_toBase64: (a: number) => [number, number];
|
|
3310
|
-
readonly identifier_toBytes: (a: number) => [number, number];
|
|
3311
|
-
readonly identifier_toHex: (a: number) => [number, number];
|
|
3312
|
-
readonly identifier_type_name: (a: number) => [number, number];
|
|
3313
|
-
readonly identitypublickeyincreation_fromJSON: (a: any) => [number, number, number];
|
|
3314
|
-
readonly identitypublickeyincreation_fromObject: (a: any) => [number, number, number];
|
|
3315
|
-
readonly identitypublickeyincreation_getHash: (a: number) => [number, number, number, number];
|
|
3316
|
-
readonly identitypublickeyincreation_get_contract_bounds: (a: number) => number;
|
|
3317
|
-
readonly identitypublickeyincreation_get_data: (a: number) => [number, number];
|
|
3318
|
-
readonly identitypublickeyincreation_get_key_id: (a: number) => number;
|
|
3319
|
-
readonly identitypublickeyincreation_get_key_type: (a: number) => [number, number];
|
|
3320
|
-
readonly identitypublickeyincreation_get_purpose: (a: number) => [number, number];
|
|
3321
|
-
readonly identitypublickeyincreation_get_read_only: (a: number) => number;
|
|
3322
|
-
readonly identitypublickeyincreation_get_security_level: (a: number) => [number, number];
|
|
3323
|
-
readonly identitypublickeyincreation_get_signature: (a: number) => [number, number];
|
|
3324
|
-
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];
|
|
3325
|
-
readonly identitypublickeyincreation_set_contract_bounds: (a: number, b: any) => [number, number];
|
|
3326
|
-
readonly identitypublickeyincreation_set_data: (a: number, b: number, c: number) => void;
|
|
3327
|
-
readonly identitypublickeyincreation_set_key_id: (a: number, b: number) => void;
|
|
3328
|
-
readonly identitypublickeyincreation_set_key_type: (a: number, b: any) => [number, number];
|
|
3329
|
-
readonly identitypublickeyincreation_set_purpose: (a: number, b: any) => [number, number];
|
|
3330
|
-
readonly identitypublickeyincreation_set_read_only: (a: number, b: number) => void;
|
|
3331
|
-
readonly identitypublickeyincreation_set_security_level: (a: number, b: any) => [number, number];
|
|
3332
|
-
readonly identitypublickeyincreation_set_signature: (a: number, b: number, c: number) => void;
|
|
3333
|
-
readonly identitypublickeyincreation_struct_name: () => [number, number];
|
|
3334
|
-
readonly identitypublickeyincreation_toIdentityPublicKey: (a: number) => [number, number, number];
|
|
3335
|
-
readonly identitypublickeyincreation_toJSON: (a: number) => [number, number, number];
|
|
3336
|
-
readonly identitypublickeyincreation_toObject: (a: number) => [number, number, number];
|
|
3337
|
-
readonly identitypublickeyincreation_type_name: (a: number) => [number, number];
|
|
3338
|
-
readonly identityupdatetransition_fromBase64: (a: number, b: number) => [number, number, number];
|
|
3339
|
-
readonly identityupdatetransition_fromBytes: (a: number, b: number) => [number, number, number];
|
|
3340
|
-
readonly identityupdatetransition_fromHex: (a: number, b: number) => [number, number, number];
|
|
3341
|
-
readonly identityupdatetransition_fromJSON: (a: any) => [number, number, number];
|
|
3342
|
-
readonly identityupdatetransition_fromObject: (a: any) => [number, number, number];
|
|
3343
|
-
readonly identityupdatetransition_fromStateTransition: (a: number) => [number, number, number];
|
|
3344
|
-
readonly identityupdatetransition_getModifiedDataIds: (a: number) => [number, number];
|
|
3345
|
-
readonly identityupdatetransition_getOptionalAssetLockProof: (a: number) => any;
|
|
3346
|
-
readonly identityupdatetransition_getPurposeRequirement: (a: number) => [number, number];
|
|
3347
|
-
readonly identityupdatetransition_getSignableBytes: (a: number) => [number, number, number, number];
|
|
3348
|
-
readonly identityupdatetransition_get_identity_identifier: (a: number) => number;
|
|
3349
|
-
readonly identityupdatetransition_get_nonce: (a: number) => bigint;
|
|
3350
|
-
readonly identityupdatetransition_get_public_key_ids_to_add: (a: number) => [number, number];
|
|
3351
|
-
readonly identityupdatetransition_get_public_key_ids_to_disable: (a: number) => [number, number];
|
|
3352
|
-
readonly identityupdatetransition_get_revision: (a: number) => bigint;
|
|
3353
|
-
readonly identityupdatetransition_get_signature: (a: number) => [number, number];
|
|
3354
|
-
readonly identityupdatetransition_get_signature_public_key_id: (a: number) => number;
|
|
3355
|
-
readonly identityupdatetransition_get_user_fee_increase: (a: number) => number;
|
|
3356
|
-
readonly identityupdatetransition_new: (a: any, b: bigint, c: bigint, d: any, e: number, f: number, g: number) => [number, number, number];
|
|
3357
|
-
readonly identityupdatetransition_set_identity_identifier: (a: number, b: any) => [number, number];
|
|
3358
|
-
readonly identityupdatetransition_set_nonce: (a: number, b: bigint) => void;
|
|
3359
|
-
readonly identityupdatetransition_set_public_key_ids_to_add: (a: number, b: any) => [number, number];
|
|
3360
|
-
readonly identityupdatetransition_set_public_key_ids_to_disable: (a: number, b: number, c: number) => void;
|
|
3361
|
-
readonly identityupdatetransition_set_revision: (a: number, b: bigint) => void;
|
|
3362
|
-
readonly identityupdatetransition_set_signature: (a: number, b: number, c: number) => void;
|
|
3363
|
-
readonly identityupdatetransition_set_signature_public_key_id: (a: number, b: number) => void;
|
|
3364
|
-
readonly identityupdatetransition_set_user_fee_increase: (a: number, b: number) => void;
|
|
3365
|
-
readonly identityupdatetransition_struct_name: () => [number, number];
|
|
3366
|
-
readonly identityupdatetransition_toBase64: (a: number) => [number, number, number, number];
|
|
3367
|
-
readonly identityupdatetransition_toBytes: (a: number) => [number, number, number, number];
|
|
3368
|
-
readonly identityupdatetransition_toHex: (a: number) => [number, number, number, number];
|
|
3369
|
-
readonly identityupdatetransition_toJSON: (a: number) => [number, number, number];
|
|
3370
|
-
readonly identityupdatetransition_toObject: (a: number) => [number, number, number];
|
|
3371
|
-
readonly identityupdatetransition_toStateTransition: (a: number) => number;
|
|
3372
|
-
readonly identityupdatetransition_type_name: (a: number) => [number, number];
|
|
3373
|
-
readonly tokenbasetransition_get_data_contract_id: (a: number) => number;
|
|
3374
|
-
readonly tokenbasetransition_get_identity_contract_nonce: (a: number) => bigint;
|
|
3375
|
-
readonly tokenbasetransition_get_token_contract_position: (a: number) => number;
|
|
3376
|
-
readonly tokenbasetransition_get_token_id: (a: number) => number;
|
|
3377
|
-
readonly tokenbasetransition_get_using_group_info: (a: number) => number;
|
|
3378
|
-
readonly tokenbasetransition_new: (a: bigint, b: number, c: any, d: any, e: any) => [number, number, number];
|
|
3379
|
-
readonly tokenbasetransition_set_data_contract_id: (a: number, b: any) => [number, number];
|
|
3380
|
-
readonly tokenbasetransition_set_identity_contract_nonce: (a: number, b: bigint) => void;
|
|
3381
|
-
readonly tokenbasetransition_set_token_contract_position: (a: number, b: number) => void;
|
|
3382
|
-
readonly tokenbasetransition_set_token_id: (a: number, b: any) => [number, number];
|
|
3383
|
-
readonly tokenbasetransition_set_using_group_info: (a: number, b: any) => [number, number];
|
|
3384
|
-
readonly tokenbasetransition_struct_name: () => [number, number];
|
|
3385
|
-
readonly tokenbasetransition_type_name: (a: number) => [number, number];
|
|
3386
|
-
readonly tokenburntransition_get_base: (a: number) => number;
|
|
3387
|
-
readonly tokenburntransition_get_burn_amount: (a: number) => bigint;
|
|
3388
|
-
readonly tokenburntransition_get_public_note: (a: number) => [number, number];
|
|
3389
|
-
readonly tokenburntransition_new: (a: number, b: bigint, c: number, d: number) => [number, number, number];
|
|
3390
|
-
readonly tokenburntransition_set_base: (a: number, b: number) => void;
|
|
3391
|
-
readonly tokenburntransition_set_burn_amount: (a: number, b: bigint) => void;
|
|
3392
|
-
readonly tokenburntransition_set_public_note: (a: number, b: number, c: number) => void;
|
|
3393
|
-
readonly tokenburntransition_struct_name: () => [number, number];
|
|
3394
|
-
readonly tokenburntransition_type_name: (a: number) => [number, number];
|
|
3395
|
-
readonly tokenclaimtransition_get_base: (a: number) => number;
|
|
3396
|
-
readonly tokenclaimtransition_get_distribution_type: (a: number) => [number, number];
|
|
3397
|
-
readonly tokenclaimtransition_get_public_note: (a: number) => [number, number];
|
|
3398
|
-
readonly tokenclaimtransition_new: (a: number, b: any, c: number, d: number) => [number, number, number];
|
|
3399
|
-
readonly tokenclaimtransition_set_base: (a: number, b: number) => void;
|
|
3400
|
-
readonly tokenclaimtransition_set_distribution_type: (a: number, b: any) => [number, number];
|
|
3401
|
-
readonly tokenclaimtransition_set_public_note: (a: number, b: number, c: number) => void;
|
|
3402
|
-
readonly tokenclaimtransition_struct_name: () => [number, number];
|
|
3403
|
-
readonly tokenclaimtransition_type_name: (a: number) => [number, number];
|
|
3404
|
-
readonly tokenconfigurationlocalization_fromJSON: (a: any) => [number, number, number];
|
|
3405
|
-
readonly tokenconfigurationlocalization_fromObject: (a: any) => [number, number, number];
|
|
3406
|
-
readonly tokenconfigurationlocalization_get_plural_form: (a: number) => [number, number];
|
|
3407
|
-
readonly tokenconfigurationlocalization_get_should_capitalize: (a: number) => number;
|
|
3408
|
-
readonly tokenconfigurationlocalization_get_singular_form: (a: number) => [number, number];
|
|
3409
|
-
readonly tokenconfigurationlocalization_new: (a: number, b: number, c: number, d: number, e: number) => number;
|
|
3410
|
-
readonly tokenconfigurationlocalization_set_plural_form: (a: number, b: number, c: number) => void;
|
|
3411
|
-
readonly tokenconfigurationlocalization_set_should_capitalize: (a: number, b: number) => void;
|
|
3412
|
-
readonly tokenconfigurationlocalization_set_singular_form: (a: number, b: number, c: number) => void;
|
|
3413
|
-
readonly tokenconfigurationlocalization_struct_name: () => [number, number];
|
|
3414
|
-
readonly tokenconfigurationlocalization_toJSON: (a: number) => [number, number, number];
|
|
3415
|
-
readonly tokenconfigurationlocalization_toObject: (a: number) => [number, number, number];
|
|
3416
|
-
readonly tokenconfigurationlocalization_type_name: (a: number) => [number, number];
|
|
3417
|
-
readonly tokenstatus_paused: (a: number) => number;
|
|
3418
|
-
readonly tokenunfreezetransition_get_base: (a: number) => number;
|
|
3419
|
-
readonly tokenunfreezetransition_get_frozen_identity_id: (a: number) => number;
|
|
3420
|
-
readonly tokenunfreezetransition_get_public_note: (a: number) => [number, number];
|
|
3421
|
-
readonly tokenunfreezetransition_new: (a: number, b: any, c: number, d: number) => [number, number, number];
|
|
3422
|
-
readonly tokenunfreezetransition_set_base: (a: number, b: number) => void;
|
|
3423
|
-
readonly tokenunfreezetransition_set_frozen_identity_id: (a: number, b: any) => [number, number];
|
|
3424
|
-
readonly tokenunfreezetransition_set_public_note: (a: number, b: number, c: number) => void;
|
|
3425
|
-
readonly tokenunfreezetransition_struct_name: () => [number, number];
|
|
3426
|
-
readonly tokenunfreezetransition_type_name: (a: number) => [number, number];
|
|
3427
|
-
readonly identifier_toJSON: (a: number) => [number, number];
|
|
3428
|
-
readonly identifier_toString: (a: number) => [number, number];
|
|
3470
|
+
readonly tokentrademode_getValue: (a: number) => [number, number];
|
|
3471
|
+
readonly tokentrademode_struct_name: () => [number, number];
|
|
3472
|
+
readonly tokentrademode_type_name: (a: number) => [number, number];
|
|
3473
|
+
readonly finalizedepochinfo_type_name: (a: number) => [number, number];
|
|
3474
|
+
readonly group_toObject: (a: number) => [number, number, number];
|
|
3475
|
+
readonly tokentrademode_NotTradeable: () => number;
|
|
3476
|
+
readonly __wbg_platformaddressinput_free: (a: number, b: number) => void;
|
|
3477
|
+
readonly __wbg_platformaddressoutput_free: (a: number, b: number) => void;
|
|
3478
|
+
readonly __wbg_tokenevent_free: (a: number, b: number) => void;
|
|
3479
|
+
readonly platformaddressinput_address: (a: number) => number;
|
|
3480
|
+
readonly platformaddressinput_amount: (a: number) => any;
|
|
3481
|
+
readonly platformaddressinput_new: (a: any, b: number, c: any) => [number, number, number];
|
|
3482
|
+
readonly platformaddressinput_nonce: (a: number) => number;
|
|
3483
|
+
readonly platformaddressoutput_address: (a: number) => number;
|
|
3484
|
+
readonly platformaddressoutput_amount: (a: number) => any;
|
|
3485
|
+
readonly platformaddressoutput_new: (a: any, b: number) => [number, number, number];
|
|
3486
|
+
readonly tokenevent_fromJSON: (a: any) => [number, number, number];
|
|
3487
|
+
readonly tokenevent_fromObject: (a: any) => [number, number, number];
|
|
3488
|
+
readonly tokenevent_struct_name: (a: number) => [number, number];
|
|
3489
|
+
readonly tokenevent_toJSON: (a: number) => [number, number, number];
|
|
3490
|
+
readonly tokenevent_toObject: (a: number) => [number, number, number];
|
|
3491
|
+
readonly tokenevent_variant: (a: number) => number;
|
|
3492
|
+
readonly tokenevent_type_name: (a: number) => [number, number];
|
|
3429
3493
|
readonly rustsecp256k1_v0_10_0_context_create: (a: number) => number;
|
|
3430
3494
|
readonly rustsecp256k1_v0_10_0_context_destroy: (a: number) => void;
|
|
3431
3495
|
readonly rustsecp256k1_v0_10_0_default_error_callback_fn: (a: number, b: number) => void;
|