@dashevo/wasm-dpp2 3.0.0-dev.6 → 3.0.0-dev.8
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 +1384 -1189
- package/dist/dpp.js +1 -1
- package/dist/raw/wasm_dpp2.d.ts +1384 -1189
- package/dist/raw/wasm_dpp2.js +445 -37
- package/dist/raw/wasm_dpp2.no_url.js +445 -37
- package/dist/raw/wasm_dpp2_bg.wasm +0 -0
- package/dist/raw/wasm_dpp2_bg.wasm.d.ts +1192 -1163
- package/package.json +1 -1
package/dist/raw/wasm_dpp2.d.ts
CHANGED
|
@@ -715,6 +715,44 @@ export class ExtendedEpochInfo {
|
|
|
715
715
|
index: number;
|
|
716
716
|
readonly __type: string;
|
|
717
717
|
}
|
|
718
|
+
/**
|
|
719
|
+
* Defines how fees are paid in address-based state transitions.
|
|
720
|
+
*
|
|
721
|
+
* Fee strategy is a sequence of steps that determine which inputs or outputs
|
|
722
|
+
* should be reduced to cover the transaction fee.
|
|
723
|
+
*/
|
|
724
|
+
export class FeeStrategyStep {
|
|
725
|
+
private constructor();
|
|
726
|
+
free(): void;
|
|
727
|
+
/**
|
|
728
|
+
* Creates a step that reduces the output at the given index by the fee amount.
|
|
729
|
+
*
|
|
730
|
+
* The output amount will be reduced to cover the fee.
|
|
731
|
+
*
|
|
732
|
+
* @param index - The index of the output address to reduce
|
|
733
|
+
*/
|
|
734
|
+
static reduceOutput(index: number): FeeStrategyStep;
|
|
735
|
+
/**
|
|
736
|
+
* Creates a step that deducts the fee from the input at the given index.
|
|
737
|
+
*
|
|
738
|
+
* The input must have remaining balance after its contribution to outputs.
|
|
739
|
+
*
|
|
740
|
+
* @param index - The index of the input address to deduct fee from
|
|
741
|
+
*/
|
|
742
|
+
static deductFromInput(index: number): FeeStrategyStep;
|
|
743
|
+
/**
|
|
744
|
+
* Returns true if this step reduces an output.
|
|
745
|
+
*/
|
|
746
|
+
readonly isReduceOutput: boolean;
|
|
747
|
+
/**
|
|
748
|
+
* Returns true if this step deducts from an input.
|
|
749
|
+
*/
|
|
750
|
+
readonly isDeductFromInput: boolean;
|
|
751
|
+
/**
|
|
752
|
+
* Returns the index associated with this step.
|
|
753
|
+
*/
|
|
754
|
+
readonly index: number;
|
|
755
|
+
}
|
|
718
756
|
export class FinalizedEpochInfo {
|
|
719
757
|
free(): void;
|
|
720
758
|
static fromObject(obj: any): FinalizedEpochInfo;
|
|
@@ -794,6 +832,11 @@ export class Identifier {
|
|
|
794
832
|
static fromBytes(bytes: Uint8Array): Identifier;
|
|
795
833
|
static fromBase58(base58: string): Identifier;
|
|
796
834
|
static fromBase64(base64: string): Identifier;
|
|
835
|
+
/**
|
|
836
|
+
* Returns the identifier as a Base58 string.
|
|
837
|
+
* This is the default string representation for JavaScript.
|
|
838
|
+
*/
|
|
839
|
+
toString(): string;
|
|
797
840
|
constructor(identifier: Identifier | Uint8Array | string);
|
|
798
841
|
toHex(): string;
|
|
799
842
|
/**
|
|
@@ -815,7 +858,7 @@ export class Identity {
|
|
|
815
858
|
static fromObject(js_value: any): Identity;
|
|
816
859
|
addPublicKey(public_key: IdentityPublicKey): void;
|
|
817
860
|
getPublicKeys(): IdentityPublicKey[];
|
|
818
|
-
getPublicKeyById(key_id: number): IdentityPublicKey;
|
|
861
|
+
getPublicKeyById(key_id: number): IdentityPublicKey | undefined;
|
|
819
862
|
constructor(js_identifier: Identifier | Uint8Array | string);
|
|
820
863
|
toHex(): string;
|
|
821
864
|
toJSON(): any;
|
|
@@ -999,6 +1042,39 @@ export class IdentityPublicKeyInCreation {
|
|
|
999
1042
|
data: Uint8Array;
|
|
1000
1043
|
readonly __type: string;
|
|
1001
1044
|
}
|
|
1045
|
+
/**
|
|
1046
|
+
* A signer for identity-based state transitions.
|
|
1047
|
+
*
|
|
1048
|
+
* This signer holds private keys mapped by their public key hash (for ECDSA_HASH160 keys)
|
|
1049
|
+
* and can sign state transitions that require identity keys.
|
|
1050
|
+
*/
|
|
1051
|
+
export class IdentitySigner {
|
|
1052
|
+
free(): void;
|
|
1053
|
+
/**
|
|
1054
|
+
* Adds a private key from WIF format.
|
|
1055
|
+
*
|
|
1056
|
+
* @param wif - The private key in WIF format
|
|
1057
|
+
*/
|
|
1058
|
+
addKeyFromWif(wif: string): void;
|
|
1059
|
+
/**
|
|
1060
|
+
* Creates a new empty IdentitySigner.
|
|
1061
|
+
*/
|
|
1062
|
+
constructor();
|
|
1063
|
+
/**
|
|
1064
|
+
* Adds a private key to the signer.
|
|
1065
|
+
*
|
|
1066
|
+
* The public key hash is derived automatically from the private key using
|
|
1067
|
+
* Hash160(compressed_public_key) where Hash160 = RIPEMD160(SHA256(x)).
|
|
1068
|
+
*
|
|
1069
|
+
* @param privateKey - The PrivateKey object
|
|
1070
|
+
*/
|
|
1071
|
+
addKey(private_key: PrivateKey): void;
|
|
1072
|
+
static readonly __struct: string;
|
|
1073
|
+
/**
|
|
1074
|
+
* Returns the number of keys in this signer.
|
|
1075
|
+
*/
|
|
1076
|
+
readonly keyCount: number;
|
|
1077
|
+
}
|
|
1002
1078
|
export class IdentityTokenInfo {
|
|
1003
1079
|
private constructor();
|
|
1004
1080
|
free(): void;
|
|
@@ -1208,6 +1284,96 @@ export class PlatformAddress {
|
|
|
1208
1284
|
readonly isP2pkh: boolean;
|
|
1209
1285
|
readonly __type: string;
|
|
1210
1286
|
}
|
|
1287
|
+
/**
|
|
1288
|
+
* Represents an input address for address-based state transitions.
|
|
1289
|
+
*
|
|
1290
|
+
* An input specifies a Platform address that will spend credits,
|
|
1291
|
+
* along with its current nonce and the amount to spend.
|
|
1292
|
+
*/
|
|
1293
|
+
export class PlatformAddressInput {
|
|
1294
|
+
free(): void;
|
|
1295
|
+
/**
|
|
1296
|
+
* Creates a new PlatformAddressInput.
|
|
1297
|
+
*
|
|
1298
|
+
* @param address - The Platform address (PlatformAddress, Uint8Array, or bech32m string)
|
|
1299
|
+
* @param nonce - The current nonce of the address (will be incremented for the transaction)
|
|
1300
|
+
* @param amount - The amount of credits to spend from this address
|
|
1301
|
+
*/
|
|
1302
|
+
constructor(address: PlatformAddressLike, nonce: number, amount: bigint);
|
|
1303
|
+
/**
|
|
1304
|
+
* Returns the nonce.
|
|
1305
|
+
*/
|
|
1306
|
+
readonly nonce: number;
|
|
1307
|
+
/**
|
|
1308
|
+
* Returns the amount.
|
|
1309
|
+
*/
|
|
1310
|
+
readonly amount: bigint;
|
|
1311
|
+
/**
|
|
1312
|
+
* Returns the Platform address.
|
|
1313
|
+
*/
|
|
1314
|
+
readonly address: PlatformAddress;
|
|
1315
|
+
}
|
|
1316
|
+
/**
|
|
1317
|
+
* Represents an output address for address-based state transitions.
|
|
1318
|
+
*
|
|
1319
|
+
* An output specifies a Platform address that will receive credits,
|
|
1320
|
+
* along with an optional amount to receive. When amount is None,
|
|
1321
|
+
* the system distributes funds automatically (used for asset lock funding).
|
|
1322
|
+
*/
|
|
1323
|
+
export class PlatformAddressOutput {
|
|
1324
|
+
free(): void;
|
|
1325
|
+
/**
|
|
1326
|
+
* Creates a new PlatformAddressOutput with a specific amount.
|
|
1327
|
+
*
|
|
1328
|
+
* @param address - The Platform address (PlatformAddress, Uint8Array, or bech32m string)
|
|
1329
|
+
* @param amount - The amount of credits to send to this address (optional for asset lock funding)
|
|
1330
|
+
*/
|
|
1331
|
+
constructor(address: PlatformAddressLike, amount?: bigint | null);
|
|
1332
|
+
/**
|
|
1333
|
+
* Returns the amount, or undefined if not specified.
|
|
1334
|
+
*/
|
|
1335
|
+
readonly amount: bigint | undefined;
|
|
1336
|
+
/**
|
|
1337
|
+
* Returns the Platform address.
|
|
1338
|
+
*/
|
|
1339
|
+
readonly address: PlatformAddress;
|
|
1340
|
+
}
|
|
1341
|
+
/**
|
|
1342
|
+
* A signer for Platform address-based state transitions.
|
|
1343
|
+
*
|
|
1344
|
+
* This signer holds private keys for Platform addresses and can sign
|
|
1345
|
+
* state transitions that spend from those addresses.
|
|
1346
|
+
*/
|
|
1347
|
+
export class PlatformAddressSigner {
|
|
1348
|
+
free(): void;
|
|
1349
|
+
/**
|
|
1350
|
+
* Returns all private keys as an array of {addressHash: Uint8Array, privateKey: Uint8Array}.
|
|
1351
|
+
* This is used internally for cross-package access.
|
|
1352
|
+
*/
|
|
1353
|
+
getPrivateKeysBytes(): Array<any>;
|
|
1354
|
+
/**
|
|
1355
|
+
* Creates a new empty PlatformAddressSigner.
|
|
1356
|
+
*/
|
|
1357
|
+
constructor();
|
|
1358
|
+
/**
|
|
1359
|
+
* Adds a private key and derives the Platform address from it.
|
|
1360
|
+
*
|
|
1361
|
+
* The address is derived as: P2PKH(Hash160(compressed_public_key))
|
|
1362
|
+
*
|
|
1363
|
+
* @param privateKey - The PrivateKey object
|
|
1364
|
+
* @returns The derived Platform address
|
|
1365
|
+
*/
|
|
1366
|
+
addKey(private_key: PrivateKey): PlatformAddress;
|
|
1367
|
+
/**
|
|
1368
|
+
* Returns true if this signer has a key for the given address.
|
|
1369
|
+
*/
|
|
1370
|
+
hasKey(address: PlatformAddressLike): boolean;
|
|
1371
|
+
static readonly __struct: string;
|
|
1372
|
+
/**
|
|
1373
|
+
* Returns the number of keys in this signer.
|
|
1374
|
+
*/
|
|
1375
|
+
readonly keyCount: number;
|
|
1376
|
+
}
|
|
1211
1377
|
export class PrefundedVotingBalance {
|
|
1212
1378
|
free(): void;
|
|
1213
1379
|
constructor(index_name: string, credits: bigint);
|
|
@@ -1432,9 +1598,6 @@ export class TokenConfigurationChangeItem {
|
|
|
1432
1598
|
static PerpetualDistributionConfigurationItem(js_perpetual_distribution_value: any): TokenConfigurationChangeItem;
|
|
1433
1599
|
static PerpetualDistributionAdminGroupItem(action_taker: AuthorizedActionTakers): TokenConfigurationChangeItem;
|
|
1434
1600
|
static PerpetualDistributionControlGroupItem(action_taker: AuthorizedActionTakers): TokenConfigurationChangeItem;
|
|
1435
|
-
static NewTokensDestinationIdentityItem(js_identity_id: Identifier | Uint8Array | string): TokenConfigurationChangeItem;
|
|
1436
|
-
static NewTokensDestinationIdentityAdminGroupItem(action_taker: AuthorizedActionTakers): TokenConfigurationChangeItem;
|
|
1437
|
-
static NewTokensDestinationIdentityControlGroupItem(action_taker: AuthorizedActionTakers): TokenConfigurationChangeItem;
|
|
1438
1601
|
static MintingAllowChoosingDestinationItem(flag: boolean): TokenConfigurationChangeItem;
|
|
1439
1602
|
static MintingAllowChoosingDestinationAdminGroupItem(action_taker: AuthorizedActionTakers): TokenConfigurationChangeItem;
|
|
1440
1603
|
static MintingAllowChoosingDestinationControlGroupItem(action_taker: AuthorizedActionTakers): TokenConfigurationChangeItem;
|
|
@@ -1442,10 +1605,13 @@ export class TokenConfigurationChangeItem {
|
|
|
1442
1605
|
static FreezeAdminGroupItem(action_taker: AuthorizedActionTakers): TokenConfigurationChangeItem;
|
|
1443
1606
|
static UnfreezeItem(action_taker: AuthorizedActionTakers): TokenConfigurationChangeItem;
|
|
1444
1607
|
static UnfreezeAdminGroupItem(action_taker: AuthorizedActionTakers): TokenConfigurationChangeItem;
|
|
1445
|
-
static
|
|
1608
|
+
static NewTokensDestinationIdentityItem(js_identity_id: Identifier | Uint8Array | string): TokenConfigurationChangeItem;
|
|
1609
|
+
static NewTokensDestinationIdentityAdminGroupItem(action_taker: AuthorizedActionTakers): TokenConfigurationChangeItem;
|
|
1610
|
+
static NewTokensDestinationIdentityControlGroupItem(action_taker: AuthorizedActionTakers): TokenConfigurationChangeItem;
|
|
1611
|
+
static noChangeItem(): TokenConfigurationChangeItem;
|
|
1446
1612
|
getItemName(): string;
|
|
1447
1613
|
getItem(): any;
|
|
1448
|
-
static
|
|
1614
|
+
static MainControlGroupItem(group_contract_position?: number | null): TokenConfigurationChangeItem;
|
|
1449
1615
|
static readonly __struct: string;
|
|
1450
1616
|
readonly __type: string;
|
|
1451
1617
|
}
|
|
@@ -1753,20 +1919,16 @@ export type InitInput = RequestInfo | URL | Response | BufferSource | WebAssembl
|
|
|
1753
1919
|
|
|
1754
1920
|
export interface InitOutput {
|
|
1755
1921
|
readonly memory: WebAssembly.Memory;
|
|
1756
|
-
readonly __wbg_consensuserror_free: (a: number, b: number) => void;
|
|
1757
1922
|
readonly __wbg_corescript_free: (a: number, b: number) => void;
|
|
1758
|
-
readonly
|
|
1759
|
-
readonly
|
|
1760
|
-
readonly
|
|
1761
|
-
readonly
|
|
1762
|
-
readonly
|
|
1763
|
-
readonly
|
|
1764
|
-
readonly
|
|
1765
|
-
readonly
|
|
1766
|
-
readonly
|
|
1767
|
-
readonly __wbg_tokentrademode_free: (a: number, b: number) => void;
|
|
1768
|
-
readonly consensuserror_deserialize: (a: number, b: number) => [number, number, number];
|
|
1769
|
-
readonly consensuserror_message: (a: number) => [number, number];
|
|
1923
|
+
readonly __wbg_identitycredittransfer_free: (a: number, b: number) => void;
|
|
1924
|
+
readonly __wbg_identitycreditwithdrawaltransition_free: (a: number, b: number) => void;
|
|
1925
|
+
readonly __wbg_partialidentity_free: (a: number, b: number) => void;
|
|
1926
|
+
readonly __wbg_resourcevote_free: (a: number, b: number) => void;
|
|
1927
|
+
readonly __wbg_statetransition_free: (a: number, b: number) => void;
|
|
1928
|
+
readonly __wbg_tokenconfigurationconvention_free: (a: number, b: number) => void;
|
|
1929
|
+
readonly __wbg_tokenkeepshistoryrules_free: (a: number, b: number) => void;
|
|
1930
|
+
readonly __wbg_vote_free: (a: number, b: number) => void;
|
|
1931
|
+
readonly __wbg_votepoll_free: (a: number, b: number) => void;
|
|
1770
1932
|
readonly corescript_fromBytes: (a: number, b: number) => number;
|
|
1771
1933
|
readonly corescript_newP2PKH: (a: number, b: number) => number;
|
|
1772
1934
|
readonly corescript_newP2SH: (a: number, b: number) => number;
|
|
@@ -1778,183 +1940,86 @@ export interface InitOutput {
|
|
|
1778
1940
|
readonly corescript_toHex: (a: number) => [number, number];
|
|
1779
1941
|
readonly corescript_toString: (a: number) => [number, number];
|
|
1780
1942
|
readonly corescript_type_name: (a: number) => [number, number];
|
|
1781
|
-
readonly
|
|
1782
|
-
readonly
|
|
1783
|
-
readonly
|
|
1784
|
-
readonly
|
|
1785
|
-
readonly
|
|
1786
|
-
readonly
|
|
1787
|
-
readonly
|
|
1788
|
-
readonly
|
|
1789
|
-
readonly
|
|
1790
|
-
readonly
|
|
1791
|
-
readonly
|
|
1792
|
-
readonly
|
|
1793
|
-
readonly
|
|
1794
|
-
readonly
|
|
1795
|
-
readonly
|
|
1796
|
-
readonly
|
|
1797
|
-
readonly
|
|
1798
|
-
readonly
|
|
1799
|
-
readonly
|
|
1800
|
-
readonly
|
|
1801
|
-
readonly
|
|
1802
|
-
readonly
|
|
1803
|
-
readonly
|
|
1804
|
-
readonly
|
|
1805
|
-
readonly
|
|
1806
|
-
readonly
|
|
1807
|
-
readonly
|
|
1808
|
-
readonly
|
|
1809
|
-
readonly
|
|
1810
|
-
readonly
|
|
1811
|
-
readonly
|
|
1812
|
-
readonly
|
|
1813
|
-
readonly
|
|
1814
|
-
readonly
|
|
1815
|
-
readonly
|
|
1816
|
-
readonly
|
|
1817
|
-
readonly
|
|
1818
|
-
readonly
|
|
1819
|
-
readonly
|
|
1820
|
-
readonly
|
|
1821
|
-
readonly
|
|
1822
|
-
readonly
|
|
1823
|
-
readonly
|
|
1824
|
-
readonly
|
|
1825
|
-
readonly
|
|
1826
|
-
readonly
|
|
1827
|
-
readonly
|
|
1828
|
-
readonly
|
|
1829
|
-
readonly
|
|
1830
|
-
readonly
|
|
1831
|
-
readonly
|
|
1832
|
-
readonly
|
|
1833
|
-
readonly
|
|
1834
|
-
readonly
|
|
1835
|
-
readonly
|
|
1836
|
-
readonly
|
|
1837
|
-
readonly
|
|
1838
|
-
readonly
|
|
1839
|
-
readonly
|
|
1840
|
-
readonly
|
|
1841
|
-
readonly
|
|
1842
|
-
readonly
|
|
1843
|
-
readonly
|
|
1844
|
-
readonly
|
|
1845
|
-
readonly
|
|
1846
|
-
readonly
|
|
1847
|
-
readonly
|
|
1848
|
-
readonly
|
|
1849
|
-
readonly
|
|
1850
|
-
readonly
|
|
1851
|
-
readonly
|
|
1852
|
-
readonly
|
|
1853
|
-
readonly
|
|
1854
|
-
readonly
|
|
1855
|
-
readonly
|
|
1856
|
-
readonly
|
|
1857
|
-
readonly
|
|
1858
|
-
readonly
|
|
1859
|
-
readonly
|
|
1860
|
-
readonly
|
|
1861
|
-
readonly platformaddress_toBytes: (a: number) => [number, number];
|
|
1862
|
-
readonly platformaddress_toHex: (a: number) => [number, number];
|
|
1863
|
-
readonly platformaddress_type_name: (a: number) => [number, number];
|
|
1864
|
-
readonly prefundedvotingbalance_credits: (a: number) => bigint;
|
|
1865
|
-
readonly prefundedvotingbalance_indexName: (a: number) => [number, number];
|
|
1866
|
-
readonly prefundedvotingbalance_new: (a: number, b: number, c: bigint) => number;
|
|
1867
|
-
readonly prefundedvotingbalance_struct_name: () => [number, number];
|
|
1868
|
-
readonly prefundedvotingbalance_type_name: (a: number) => [number, number];
|
|
1869
|
-
readonly tokenpaymentinfo_gas_fees_paid_by: (a: number) => [number, number];
|
|
1870
|
-
readonly tokenpaymentinfo_maximum_token_cost: (a: number) => [number, bigint];
|
|
1871
|
-
readonly tokenpaymentinfo_minimum_token_cost: (a: number) => [number, bigint];
|
|
1872
|
-
readonly tokenpaymentinfo_new: (a: any, b: number, c: number, d: bigint, e: number, f: bigint, g: any) => [number, number, number];
|
|
1873
|
-
readonly tokenpaymentinfo_payment_token_contract_id: (a: number) => number;
|
|
1874
|
-
readonly tokenpaymentinfo_set_gas_fees_paid_by: (a: number, b: any) => [number, number];
|
|
1875
|
-
readonly tokenpaymentinfo_set_maximum_token_cost: (a: number, b: number, c: bigint) => void;
|
|
1876
|
-
readonly tokenpaymentinfo_set_payment_token_contract_id: (a: number, b: any) => [number, number];
|
|
1877
|
-
readonly tokenpaymentinfo_set_token_contract_position: (a: number, b: number) => void;
|
|
1878
|
-
readonly tokenpaymentinfo_struct_name: () => [number, number];
|
|
1879
|
-
readonly tokenpaymentinfo_token_contract_position: (a: number) => number;
|
|
1880
|
-
readonly tokenpaymentinfo_type_name: (a: number) => [number, number];
|
|
1881
|
-
readonly tokentrademode_getValue: (a: number) => [number, number];
|
|
1882
|
-
readonly tokentrademode_struct_name: () => [number, number];
|
|
1883
|
-
readonly tokentrademode_type_name: (a: number) => [number, number];
|
|
1884
|
-
readonly tokenpaymentinfo_set_minimum_token_cost: (a: number, b: number, c: bigint) => void;
|
|
1885
|
-
readonly tokentrademode_NotTradeable: () => number;
|
|
1886
|
-
readonly __wbg_extendedepochinfo_free: (a: number, b: number) => void;
|
|
1887
|
-
readonly __wbg_identifier_free: (a: number, b: number) => void;
|
|
1888
|
-
readonly __wbg_outpoint_free: (a: number, b: number) => void;
|
|
1889
|
-
readonly __wbg_privateencryptednote_free: (a: number, b: number) => void;
|
|
1890
|
-
readonly __wbg_privatekey_free: (a: number, b: number) => void;
|
|
1891
|
-
readonly __wbg_resourcevote_free: (a: number, b: number) => void;
|
|
1892
|
-
readonly __wbg_sharedencryptednote_free: (a: number, b: number) => void;
|
|
1893
|
-
readonly __wbg_tokenclaimtransition_free: (a: number, b: number) => void;
|
|
1894
|
-
readonly __wbg_tokenfreezetransition_free: (a: number, b: number) => void;
|
|
1895
|
-
readonly __wbg_tokentransfertransition_free: (a: number, b: number) => void;
|
|
1896
|
-
readonly __wbg_votepoll_free: (a: number, b: number) => void;
|
|
1897
|
-
readonly extendedepochinfo_fee_multiplier: (a: number) => number;
|
|
1898
|
-
readonly extendedepochinfo_fee_multiplier_permille: (a: number) => bigint;
|
|
1899
|
-
readonly extendedepochinfo_first_block_height: (a: number) => any;
|
|
1900
|
-
readonly extendedepochinfo_first_block_time: (a: number) => any;
|
|
1901
|
-
readonly extendedepochinfo_first_core_block_height: (a: number) => number;
|
|
1902
|
-
readonly extendedepochinfo_fromJSON: (a: any) => [number, number, number];
|
|
1903
|
-
readonly extendedepochinfo_fromObject: (a: any) => [number, number, number];
|
|
1904
|
-
readonly extendedepochinfo_index: (a: number) => number;
|
|
1905
|
-
readonly extendedepochinfo_new: (a: number, b: bigint, c: bigint, d: number, e: bigint, f: number) => number;
|
|
1906
|
-
readonly extendedepochinfo_protocol_version: (a: number) => number;
|
|
1907
|
-
readonly extendedepochinfo_set_fee_multiplier_permille: (a: number, b: bigint) => void;
|
|
1908
|
-
readonly extendedepochinfo_set_first_block_height: (a: number, b: bigint) => void;
|
|
1909
|
-
readonly extendedepochinfo_set_first_block_time: (a: number, b: bigint) => void;
|
|
1910
|
-
readonly extendedepochinfo_set_first_core_block_height: (a: number, b: number) => void;
|
|
1911
|
-
readonly extendedepochinfo_set_index: (a: number, b: number) => void;
|
|
1912
|
-
readonly extendedepochinfo_set_protocol_version: (a: number, b: number) => void;
|
|
1913
|
-
readonly extendedepochinfo_struct_name: () => [number, number];
|
|
1914
|
-
readonly extendedepochinfo_toJSON: (a: number) => [number, number, number];
|
|
1915
|
-
readonly extendedepochinfo_toObject: (a: number) => [number, number, number];
|
|
1916
|
-
readonly extendedepochinfo_type_name: (a: number) => [number, number];
|
|
1917
|
-
readonly identifier_fromBase58: (a: number, b: number) => [number, number, number];
|
|
1918
|
-
readonly identifier_fromBase64: (a: number, b: number) => [number, number, number];
|
|
1919
|
-
readonly identifier_fromBytes: (a: number, b: number) => [number, number, number];
|
|
1920
|
-
readonly identifier_fromHex: (a: number, b: number) => [number, number, number];
|
|
1921
|
-
readonly identifier_new: (a: any) => [number, number, number];
|
|
1922
|
-
readonly identifier_struct_name: () => [number, number];
|
|
1923
|
-
readonly identifier_toBase58: (a: number) => [number, number];
|
|
1924
|
-
readonly identifier_toBase64: (a: number) => [number, number];
|
|
1925
|
-
readonly identifier_toBytes: (a: number) => [number, number];
|
|
1926
|
-
readonly identifier_toHex: (a: number) => [number, number];
|
|
1927
|
-
readonly identifier_type_name: (a: number) => [number, number];
|
|
1928
|
-
readonly outpoint_fromBase64: (a: number, b: number) => [number, number, number];
|
|
1929
|
-
readonly outpoint_fromBytes: (a: number, b: number) => number;
|
|
1930
|
-
readonly outpoint_fromHex: (a: number, b: number) => [number, number, number];
|
|
1931
|
-
readonly outpoint_getTXID: (a: number) => [number, number];
|
|
1932
|
-
readonly outpoint_getVOUT: (a: number) => number;
|
|
1933
|
-
readonly outpoint_new: (a: number, b: number, c: number) => [number, number, number];
|
|
1934
|
-
readonly outpoint_struct_name: () => [number, number];
|
|
1935
|
-
readonly outpoint_toBase64: (a: number) => [number, number];
|
|
1936
|
-
readonly outpoint_toBytes: (a: number) => [number, number];
|
|
1937
|
-
readonly outpoint_toHex: (a: number) => [number, number];
|
|
1938
|
-
readonly outpoint_type_name: (a: number) => [number, number];
|
|
1939
|
-
readonly privateencryptednote_derivation_encryption_key_index: (a: number) => number;
|
|
1940
|
-
readonly privateencryptednote_new: (a: number, b: number, c: number, d: number) => number;
|
|
1941
|
-
readonly privateencryptednote_root_encryption_key_index: (a: number) => number;
|
|
1942
|
-
readonly privateencryptednote_set_derivation_encryption_key_index: (a: number, b: number) => void;
|
|
1943
|
-
readonly privateencryptednote_set_root_encryption_key_index: (a: number, b: number) => void;
|
|
1944
|
-
readonly privateencryptednote_set_value: (a: number, b: number, c: number) => void;
|
|
1945
|
-
readonly privateencryptednote_struct_name: () => [number, number];
|
|
1946
|
-
readonly privateencryptednote_type_name: (a: number) => [number, number];
|
|
1947
|
-
readonly privateencryptednote_value: (a: number) => [number, number];
|
|
1948
|
-
readonly privatekey_WIF: (a: number) => [number, number];
|
|
1949
|
-
readonly privatekey_fromBytes: (a: number, b: number, c: any) => [number, number, number];
|
|
1950
|
-
readonly privatekey_fromHex: (a: number, b: number, c: any) => [number, number, number];
|
|
1951
|
-
readonly privatekey_fromWIF: (a: number, b: number) => [number, number, number];
|
|
1952
|
-
readonly privatekey_getPublicKey: (a: number) => number;
|
|
1953
|
-
readonly privatekey_getPublicKeyHash: (a: number) => [number, number];
|
|
1954
|
-
readonly privatekey_struct_name: () => [number, number];
|
|
1955
|
-
readonly privatekey_toBytes: (a: number) => [number, number];
|
|
1956
|
-
readonly privatekey_toHex: (a: number) => [number, number];
|
|
1957
|
-
readonly privatekey_type_name: (a: number) => [number, number];
|
|
1943
|
+
readonly identitycredittransfer_fromBase64: (a: number, b: number) => [number, number, number];
|
|
1944
|
+
readonly identitycredittransfer_fromBytes: (a: number, b: number) => [number, number, number];
|
|
1945
|
+
readonly identitycredittransfer_fromHex: (a: number, b: number) => [number, number, number];
|
|
1946
|
+
readonly identitycredittransfer_fromStateTransition: (a: number) => [number, number, number];
|
|
1947
|
+
readonly identitycredittransfer_getSignableBytes: (a: number) => [number, number, number, number];
|
|
1948
|
+
readonly identitycredittransfer_get_amount: (a: number) => bigint;
|
|
1949
|
+
readonly identitycredittransfer_get_identity_id: (a: number) => number;
|
|
1950
|
+
readonly identitycredittransfer_get_nonce: (a: number) => bigint;
|
|
1951
|
+
readonly identitycredittransfer_get_recipient_id: (a: number) => number;
|
|
1952
|
+
readonly identitycredittransfer_get_signature: (a: number) => [number, number];
|
|
1953
|
+
readonly identitycredittransfer_get_signature_public_key_id: (a: number) => number;
|
|
1954
|
+
readonly identitycredittransfer_get_user_fee_increase: (a: number) => number;
|
|
1955
|
+
readonly identitycredittransfer_new: (a: bigint, b: any, c: any, d: bigint, e: number) => [number, number, number];
|
|
1956
|
+
readonly identitycredittransfer_set_amount: (a: number, b: bigint) => void;
|
|
1957
|
+
readonly identitycredittransfer_set_nonce: (a: number, b: bigint) => void;
|
|
1958
|
+
readonly identitycredittransfer_set_recipient_id: (a: number, b: any) => [number, number];
|
|
1959
|
+
readonly identitycredittransfer_set_sender_id: (a: number, b: any) => [number, number];
|
|
1960
|
+
readonly identitycredittransfer_set_signature: (a: number, b: number, c: number) => void;
|
|
1961
|
+
readonly identitycredittransfer_set_signature_public_key_id: (a: number, b: number) => void;
|
|
1962
|
+
readonly identitycredittransfer_set_user_fee_increase: (a: number, b: number) => void;
|
|
1963
|
+
readonly identitycredittransfer_struct_name: () => [number, number];
|
|
1964
|
+
readonly identitycredittransfer_toBase64: (a: number) => [number, number, number, number];
|
|
1965
|
+
readonly identitycredittransfer_toBytes: (a: number) => [number, number, number, number];
|
|
1966
|
+
readonly identitycredittransfer_toHex: (a: number) => [number, number, number, number];
|
|
1967
|
+
readonly identitycredittransfer_toStateTransition: (a: number) => number;
|
|
1968
|
+
readonly identitycredittransfer_type_name: (a: number) => [number, number];
|
|
1969
|
+
readonly identitycredittransfertransition_fromJSON: (a: any) => [number, number, number];
|
|
1970
|
+
readonly identitycredittransfertransition_fromObject: (a: any) => [number, number, number];
|
|
1971
|
+
readonly identitycredittransfertransition_toJSON: (a: number) => [number, number, number];
|
|
1972
|
+
readonly identitycredittransfertransition_toObject: (a: number) => [number, number, number];
|
|
1973
|
+
readonly identitycreditwithdrawaltransition_fromBase64: (a: number, b: number) => [number, number, number];
|
|
1974
|
+
readonly identitycreditwithdrawaltransition_fromBytes: (a: number, b: number) => [number, number, number];
|
|
1975
|
+
readonly identitycreditwithdrawaltransition_fromHex: (a: number, b: number) => [number, number, number];
|
|
1976
|
+
readonly identitycreditwithdrawaltransition_fromJSON: (a: any) => [number, number, number];
|
|
1977
|
+
readonly identitycreditwithdrawaltransition_fromObject: (a: any) => [number, number, number];
|
|
1978
|
+
readonly identitycreditwithdrawaltransition_fromStateTransition: (a: number) => [number, number, number];
|
|
1979
|
+
readonly identitycreditwithdrawaltransition_getModifiedDataIds: (a: number) => [number, number];
|
|
1980
|
+
readonly identitycreditwithdrawaltransition_getOptionalAssetLockProof: (a: number) => any;
|
|
1981
|
+
readonly identitycreditwithdrawaltransition_getPurposeRequirement: (a: number) => [number, number];
|
|
1982
|
+
readonly identitycreditwithdrawaltransition_getSignableBytes: (a: number) => [number, number, number, number];
|
|
1983
|
+
readonly identitycreditwithdrawaltransition_get_amount: (a: number) => bigint;
|
|
1984
|
+
readonly identitycreditwithdrawaltransition_get_core_fee_per_byte: (a: number) => number;
|
|
1985
|
+
readonly identitycreditwithdrawaltransition_get_identity_id: (a: number) => number;
|
|
1986
|
+
readonly identitycreditwithdrawaltransition_get_nonce: (a: number) => bigint;
|
|
1987
|
+
readonly identitycreditwithdrawaltransition_get_output_script: (a: number) => number;
|
|
1988
|
+
readonly identitycreditwithdrawaltransition_get_pooling: (a: number) => [number, number];
|
|
1989
|
+
readonly identitycreditwithdrawaltransition_get_signature: (a: number) => [number, number];
|
|
1990
|
+
readonly identitycreditwithdrawaltransition_get_signature_public_key_id: (a: number) => number;
|
|
1991
|
+
readonly identitycreditwithdrawaltransition_get_user_fee_increase: (a: number) => number;
|
|
1992
|
+
readonly identitycreditwithdrawaltransition_new: (a: any, b: bigint, c: number, d: any, e: any, f: number, g: bigint, h: number) => [number, number, number];
|
|
1993
|
+
readonly identitycreditwithdrawaltransition_set_amount: (a: number, b: bigint) => void;
|
|
1994
|
+
readonly identitycreditwithdrawaltransition_set_core_fee_per_byte: (a: number, b: number) => void;
|
|
1995
|
+
readonly identitycreditwithdrawaltransition_set_identity_id: (a: number, b: any) => [number, number];
|
|
1996
|
+
readonly identitycreditwithdrawaltransition_set_nonce: (a: number, b: bigint) => void;
|
|
1997
|
+
readonly identitycreditwithdrawaltransition_set_output_script: (a: number, b: any) => [number, number];
|
|
1998
|
+
readonly identitycreditwithdrawaltransition_set_pooling: (a: number, b: any) => [number, number];
|
|
1999
|
+
readonly identitycreditwithdrawaltransition_set_signature: (a: number, b: number, c: number) => void;
|
|
2000
|
+
readonly identitycreditwithdrawaltransition_set_signature_public_key_id: (a: number, b: number) => void;
|
|
2001
|
+
readonly identitycreditwithdrawaltransition_set_user_fee_increase: (a: number, b: number) => void;
|
|
2002
|
+
readonly identitycreditwithdrawaltransition_struct_name: () => [number, number];
|
|
2003
|
+
readonly identitycreditwithdrawaltransition_toBase64: (a: number) => [number, number, number, number];
|
|
2004
|
+
readonly identitycreditwithdrawaltransition_toBytes: (a: number) => [number, number, number, number];
|
|
2005
|
+
readonly identitycreditwithdrawaltransition_toHex: (a: number) => [number, number, number, number];
|
|
2006
|
+
readonly identitycreditwithdrawaltransition_toJSON: (a: number) => [number, number, number];
|
|
2007
|
+
readonly identitycreditwithdrawaltransition_toObject: (a: number) => [number, number, number];
|
|
2008
|
+
readonly identitycreditwithdrawaltransition_toStateTransition: (a: number) => number;
|
|
2009
|
+
readonly identitycreditwithdrawaltransition_type_name: (a: number) => [number, number];
|
|
2010
|
+
readonly partialidentity_balance: (a: number) => [number, bigint];
|
|
2011
|
+
readonly partialidentity_id: (a: number) => number;
|
|
2012
|
+
readonly partialidentity_loaded_public_keys: (a: number) => [number, number, number];
|
|
2013
|
+
readonly partialidentity_new: (a: any, b: any, c: number, d: bigint, e: number, f: bigint, g: number) => [number, number, number];
|
|
2014
|
+
readonly partialidentity_not_found_public_keys: (a: number) => any;
|
|
2015
|
+
readonly partialidentity_revision: (a: number) => [number, bigint];
|
|
2016
|
+
readonly partialidentity_set_balance: (a: number, b: number, c: bigint) => void;
|
|
2017
|
+
readonly partialidentity_set_id: (a: number, b: any) => [number, number];
|
|
2018
|
+
readonly partialidentity_set_loaded_public_keys: (a: number, b: any) => [number, number];
|
|
2019
|
+
readonly partialidentity_set_not_found_public_keys: (a: number, b: number) => [number, number];
|
|
2020
|
+
readonly partialidentity_set_revision: (a: number, b: number, c: bigint) => void;
|
|
2021
|
+
readonly partialidentity_toJSON: (a: number) => [number, number, number];
|
|
2022
|
+
readonly partialidentity_toObject: (a: number) => [number, number, number];
|
|
1958
2023
|
readonly resourcevote_choice: (a: number) => number;
|
|
1959
2024
|
readonly resourcevote_fromJSON: (a: any) => [number, number, number];
|
|
1960
2025
|
readonly resourcevote_fromObject: (a: any) => [number, number, number];
|
|
@@ -1966,47 +2031,93 @@ export interface InitOutput {
|
|
|
1966
2031
|
readonly resourcevote_toObject: (a: number) => [number, number, number];
|
|
1967
2032
|
readonly resourcevote_type_name: (a: number) => [number, number];
|
|
1968
2033
|
readonly resourcevote_vote_poll: (a: number) => number;
|
|
1969
|
-
readonly
|
|
1970
|
-
readonly
|
|
1971
|
-
readonly
|
|
1972
|
-
readonly
|
|
1973
|
-
readonly
|
|
1974
|
-
readonly
|
|
1975
|
-
readonly
|
|
1976
|
-
readonly
|
|
1977
|
-
readonly
|
|
1978
|
-
readonly
|
|
1979
|
-
readonly
|
|
1980
|
-
readonly
|
|
1981
|
-
readonly
|
|
1982
|
-
readonly
|
|
1983
|
-
readonly
|
|
1984
|
-
readonly
|
|
1985
|
-
readonly
|
|
1986
|
-
readonly
|
|
1987
|
-
readonly
|
|
1988
|
-
readonly
|
|
1989
|
-
readonly
|
|
1990
|
-
readonly
|
|
1991
|
-
readonly
|
|
1992
|
-
readonly
|
|
1993
|
-
readonly
|
|
1994
|
-
readonly
|
|
1995
|
-
readonly
|
|
1996
|
-
readonly
|
|
1997
|
-
readonly
|
|
1998
|
-
readonly
|
|
1999
|
-
readonly
|
|
2000
|
-
readonly
|
|
2001
|
-
readonly
|
|
2002
|
-
readonly
|
|
2003
|
-
readonly
|
|
2004
|
-
readonly
|
|
2005
|
-
readonly
|
|
2006
|
-
readonly
|
|
2007
|
-
readonly
|
|
2008
|
-
readonly
|
|
2009
|
-
readonly
|
|
2034
|
+
readonly statetransition_fromBase64: (a: number, b: number) => [number, number, number];
|
|
2035
|
+
readonly statetransition_fromBytes: (a: number, b: number) => [number, number, number];
|
|
2036
|
+
readonly statetransition_fromHex: (a: number, b: number) => [number, number, number];
|
|
2037
|
+
readonly statetransition_getActionType: (a: number) => [number, number];
|
|
2038
|
+
readonly statetransition_getActionTypeNumber: (a: number) => number;
|
|
2039
|
+
readonly statetransition_getIdentityContractNonce: (a: number) => [number, bigint];
|
|
2040
|
+
readonly statetransition_getIdentityNonce: (a: number) => [number, bigint];
|
|
2041
|
+
readonly statetransition_getKeyLevelRequirement: (a: number, b: any) => [number, number, number, number];
|
|
2042
|
+
readonly statetransition_getOwnerId: (a: number) => number;
|
|
2043
|
+
readonly statetransition_getPurposeRequirement: (a: number) => [number, number];
|
|
2044
|
+
readonly statetransition_get_signature: (a: number) => [number, number];
|
|
2045
|
+
readonly statetransition_get_signature_public_key_id: (a: number) => number;
|
|
2046
|
+
readonly statetransition_get_user_fee_increase: (a: number) => number;
|
|
2047
|
+
readonly statetransition_hash: (a: number, b: number) => [number, number, number, number];
|
|
2048
|
+
readonly statetransition_setIdentityContractNonce: (a: number, b: bigint) => [number, number];
|
|
2049
|
+
readonly statetransition_setIdentityNonce: (a: number, b: bigint) => [number, number];
|
|
2050
|
+
readonly statetransition_setOwnerId: (a: number, b: any) => [number, number];
|
|
2051
|
+
readonly statetransition_set_signature: (a: number, b: number, c: number) => number;
|
|
2052
|
+
readonly statetransition_set_signature_public_key_id: (a: number, b: number) => void;
|
|
2053
|
+
readonly statetransition_set_user_fee_increase: (a: number, b: number) => void;
|
|
2054
|
+
readonly statetransition_sign: (a: number, b: number, c: number) => [number, number, number, number];
|
|
2055
|
+
readonly statetransition_signByPrivateKey: (a: number, b: number, c: number, d: any) => [number, number, number, number];
|
|
2056
|
+
readonly statetransition_struct_name: () => [number, number];
|
|
2057
|
+
readonly statetransition_toBase64: (a: number) => [number, number, number];
|
|
2058
|
+
readonly statetransition_toBytes: (a: number) => [number, number, number];
|
|
2059
|
+
readonly statetransition_toHex: (a: number) => [number, number, number];
|
|
2060
|
+
readonly statetransition_type_name: (a: number) => [number, number];
|
|
2061
|
+
readonly statetransition_verifyPublicKey: (a: number, b: number, c: number, d: number) => [number, number];
|
|
2062
|
+
readonly tokenconfigurationchangeitem_ConventionsAdminGroupItem: (a: number) => number;
|
|
2063
|
+
readonly tokenconfigurationchangeitem_ConventionsControlGroupItem: (a: number) => number;
|
|
2064
|
+
readonly tokenconfigurationchangeitem_DestroyFrozenFundsAdminGroupItem: (a: number) => number;
|
|
2065
|
+
readonly tokenconfigurationchangeitem_DestroyFrozenFundsItem: (a: number) => number;
|
|
2066
|
+
readonly tokenconfigurationchangeitem_EmergencyActionAdminGroupItem: (a: number) => number;
|
|
2067
|
+
readonly tokenconfigurationchangeitem_EmergencyActionItem: (a: number) => number;
|
|
2068
|
+
readonly tokenconfigurationchangeitem_FreezeAdminGroupItem: (a: number) => number;
|
|
2069
|
+
readonly tokenconfigurationchangeitem_FreezeItem: (a: number) => number;
|
|
2070
|
+
readonly tokenconfigurationchangeitem_ManualBurningAdminGroupItem: (a: number) => number;
|
|
2071
|
+
readonly tokenconfigurationchangeitem_ManualBurningItem: (a: number) => number;
|
|
2072
|
+
readonly tokenconfigurationchangeitem_ManualMintingAdminGroupItem: (a: number) => number;
|
|
2073
|
+
readonly tokenconfigurationchangeitem_ManualMintingItem: (a: number) => number;
|
|
2074
|
+
readonly tokenconfigurationchangeitem_MarketplaceTradeModeAdminGroupItem: (a: number) => number;
|
|
2075
|
+
readonly tokenconfigurationchangeitem_MarketplaceTradeModeControlGroupItem: (a: number) => number;
|
|
2076
|
+
readonly tokenconfigurationchangeitem_MarketplaceTradeModeItem: (a: number) => number;
|
|
2077
|
+
readonly tokenconfigurationchangeitem_MaxSupplyAdminGroupItem: (a: number) => number;
|
|
2078
|
+
readonly tokenconfigurationchangeitem_MaxSupplyControlGroupItem: (a: number) => number;
|
|
2079
|
+
readonly tokenconfigurationchangeitem_MaxSupplyItem: (a: number, b: bigint) => number;
|
|
2080
|
+
readonly tokenconfigurationchangeitem_MintingAllowChoosingDestinationAdminGroupItem: (a: number) => number;
|
|
2081
|
+
readonly tokenconfigurationchangeitem_MintingAllowChoosingDestinationControlGroupItem: (a: number) => number;
|
|
2082
|
+
readonly tokenconfigurationchangeitem_MintingAllowChoosingDestinationItem: (a: number) => number;
|
|
2083
|
+
readonly tokenconfigurationchangeitem_PerpetualDistributionAdminGroupItem: (a: number) => number;
|
|
2084
|
+
readonly tokenconfigurationchangeitem_PerpetualDistributionConfigurationItem: (a: any) => number;
|
|
2085
|
+
readonly tokenconfigurationchangeitem_PerpetualDistributionControlGroupItem: (a: number) => number;
|
|
2086
|
+
readonly tokenconfigurationchangeitem_UnfreezeAdminGroupItem: (a: number) => number;
|
|
2087
|
+
readonly tokenconfigurationchangeitem_UnfreezeItem: (a: number) => number;
|
|
2088
|
+
readonly tokenconfigurationchangeitem_conventionsItem: (a: number) => number;
|
|
2089
|
+
readonly tokenconfigurationconvention_decimals: (a: number) => number;
|
|
2090
|
+
readonly tokenconfigurationconvention_localizations: (a: number) => [number, number, number];
|
|
2091
|
+
readonly tokenconfigurationconvention_new: (a: any, b: number) => [number, number, number];
|
|
2092
|
+
readonly tokenconfigurationconvention_set_decimals: (a: number, b: number) => void;
|
|
2093
|
+
readonly tokenconfigurationconvention_set_localizations: (a: number, b: any) => [number, number];
|
|
2094
|
+
readonly tokenconfigurationconvention_struct_name: () => [number, number];
|
|
2095
|
+
readonly tokenconfigurationconvention_type_name: (a: number) => [number, number];
|
|
2096
|
+
readonly tokenkeepshistoryrules_get_keeps_burning_history: (a: number) => number;
|
|
2097
|
+
readonly tokenkeepshistoryrules_get_keeps_direct_pricing_history: (a: number) => number;
|
|
2098
|
+
readonly tokenkeepshistoryrules_get_keeps_direct_purchase_history: (a: number) => number;
|
|
2099
|
+
readonly tokenkeepshistoryrules_get_keeps_freezing_history: (a: number) => number;
|
|
2100
|
+
readonly tokenkeepshistoryrules_get_keeps_minting_history: (a: number) => number;
|
|
2101
|
+
readonly tokenkeepshistoryrules_get_keeps_transfer_history: (a: number) => number;
|
|
2102
|
+
readonly tokenkeepshistoryrules_new: (a: number, b: number, c: number, d: number, e: number, f: number) => number;
|
|
2103
|
+
readonly tokenkeepshistoryrules_set_keeps_burning_history: (a: number, b: number) => void;
|
|
2104
|
+
readonly tokenkeepshistoryrules_set_keeps_direct_pricing_history: (a: number, b: number) => void;
|
|
2105
|
+
readonly tokenkeepshistoryrules_set_keeps_direct_purchase_history: (a: number, b: number) => void;
|
|
2106
|
+
readonly tokenkeepshistoryrules_set_keeps_freezing_history: (a: number, b: number) => void;
|
|
2107
|
+
readonly tokenkeepshistoryrules_set_keeps_minting_history: (a: number, b: number) => void;
|
|
2108
|
+
readonly tokenkeepshistoryrules_set_keeps_transfer_history: (a: number, b: number) => void;
|
|
2109
|
+
readonly tokenkeepshistoryrules_struct_name: () => [number, number];
|
|
2110
|
+
readonly tokenkeepshistoryrules_type_name: (a: number) => [number, number];
|
|
2111
|
+
readonly vote_fromJSON: (a: any) => [number, number, number];
|
|
2112
|
+
readonly vote_fromObject: (a: any) => [number, number, number];
|
|
2113
|
+
readonly vote_resource_vote_choice: (a: number) => number;
|
|
2114
|
+
readonly vote_set_resource_vote_choice: (a: number, b: number) => void;
|
|
2115
|
+
readonly vote_set_vote_poll: (a: number, b: number) => void;
|
|
2116
|
+
readonly vote_struct_name: () => [number, number];
|
|
2117
|
+
readonly vote_toJSON: (a: number) => [number, number, number];
|
|
2118
|
+
readonly vote_toObject: (a: number) => [number, number, number];
|
|
2119
|
+
readonly vote_type_name: (a: number) => [number, number];
|
|
2120
|
+
readonly vote_vote_poll: (a: number) => number;
|
|
2010
2121
|
readonly votepoll_contract_id: (a: number) => number;
|
|
2011
2122
|
readonly votepoll_document_type_name: (a: number) => [number, number];
|
|
2012
2123
|
readonly votepoll_fromJSON: (a: any) => [number, number, number];
|
|
@@ -2023,210 +2134,58 @@ export interface InitOutput {
|
|
|
2023
2134
|
readonly votepoll_toObject: (a: number) => [number, number, number];
|
|
2024
2135
|
readonly votepoll_toString: (a: number) => [number, number];
|
|
2025
2136
|
readonly votepoll_type_name: (a: number) => [number, number];
|
|
2026
|
-
readonly
|
|
2027
|
-
readonly
|
|
2028
|
-
readonly
|
|
2029
|
-
readonly __wbg_blockinfo_free: (a: number, b: number) => void;
|
|
2030
|
-
readonly __wbg_contesteddocumentvotepollwinnerinfo_free: (a: number, b: number) => void;
|
|
2031
|
-
readonly __wbg_document_free: (a: number, b: number) => void;
|
|
2032
|
-
readonly __wbg_documentbasetransition_free: (a: number, b: number) => void;
|
|
2033
|
-
readonly __wbg_documentdeletetransition_free: (a: number, b: number) => void;
|
|
2034
|
-
readonly __wbg_documentreplacetransition_free: (a: number, b: number) => void;
|
|
2035
|
-
readonly __wbg_tokencontractinfo_free: (a: number, b: number) => void;
|
|
2036
|
-
readonly __wbg_wasmdpperror_free: (a: number, b: number) => void;
|
|
2037
|
-
readonly assetlockproof_createChainAssetLockProof: (a: number, b: number) => [number, number, number];
|
|
2038
|
-
readonly assetlockproof_createIdentityId: (a: number) => [number, number, number];
|
|
2039
|
-
readonly assetlockproof_createInstantAssetLockProof: (a: number, b: number, c: number, d: number, e: number) => [number, number, number];
|
|
2040
|
-
readonly assetlockproof_fromBytes: (a: number, b: number) => [number, number, number];
|
|
2041
|
-
readonly assetlockproof_fromHex: (a: number, b: number) => [number, number, number];
|
|
2042
|
-
readonly assetlockproof_fromJSON: (a: any) => [number, number, number];
|
|
2043
|
-
readonly assetlockproof_fromObject: (a: any) => [number, number, number];
|
|
2044
|
-
readonly assetlockproof_getChainLockProof: (a: number) => number;
|
|
2045
|
-
readonly assetlockproof_getInstantLockProof: (a: number) => number;
|
|
2046
|
-
readonly assetlockproof_getLockType: (a: number) => [number, number];
|
|
2047
|
-
readonly assetlockproof_getOutPoint: (a: number) => number;
|
|
2048
|
-
readonly assetlockproof_new: (a: any) => [number, number, number];
|
|
2049
|
-
readonly assetlockproof_struct_name: () => [number, number];
|
|
2050
|
-
readonly assetlockproof_toBytes: (a: number) => [number, number, number, number];
|
|
2051
|
-
readonly assetlockproof_toHex: (a: number) => [number, number, number, number];
|
|
2052
|
-
readonly assetlockproof_toJSON: (a: number) => [number, number, number];
|
|
2053
|
-
readonly assetlockproof_toObject: (a: number) => [number, number, number];
|
|
2054
|
-
readonly assetlockproof_type_name: (a: number) => [number, number];
|
|
2055
|
-
readonly blockinfo_core_height: (a: number) => number;
|
|
2056
|
-
readonly blockinfo_epoch_index: (a: number) => number;
|
|
2057
|
-
readonly blockinfo_fromJSON: (a: any) => [number, number, number];
|
|
2058
|
-
readonly blockinfo_fromObject: (a: any) => [number, number, number];
|
|
2059
|
-
readonly blockinfo_height: (a: number) => bigint;
|
|
2060
|
-
readonly blockinfo_new: (a: bigint, b: bigint, c: number, d: number) => [number, number, number];
|
|
2061
|
-
readonly blockinfo_time_ms: (a: number) => bigint;
|
|
2062
|
-
readonly blockinfo_toJSON: (a: number) => [number, number, number];
|
|
2063
|
-
readonly blockinfo_toObject: (a: number) => [number, number, number];
|
|
2064
|
-
readonly contesteddocumentvotepollwinnerinfo_fromJSON: (a: any) => [number, number, number];
|
|
2065
|
-
readonly contesteddocumentvotepollwinnerinfo_fromObject: (a: any) => [number, number, number];
|
|
2066
|
-
readonly contesteddocumentvotepollwinnerinfo_identity_id: (a: number) => number;
|
|
2067
|
-
readonly contesteddocumentvotepollwinnerinfo_isLocked: (a: number) => number;
|
|
2068
|
-
readonly contesteddocumentvotepollwinnerinfo_isNoWinner: (a: number) => number;
|
|
2069
|
-
readonly contesteddocumentvotepollwinnerinfo_isWonByIdentity: (a: number) => number;
|
|
2070
|
-
readonly contesteddocumentvotepollwinnerinfo_kind: (a: number) => [number, number];
|
|
2071
|
-
readonly contesteddocumentvotepollwinnerinfo_new: (a: number, b: number, c: number) => [number, number, number];
|
|
2072
|
-
readonly contesteddocumentvotepollwinnerinfo_toJSON: (a: number) => [number, number, number];
|
|
2073
|
-
readonly contesteddocumentvotepollwinnerinfo_toObject: (a: number) => [number, number, number];
|
|
2074
|
-
readonly document_constructor: (a: any, b: number, c: number, d: bigint, e: any, f: any, g: any) => [number, number, number];
|
|
2075
|
-
readonly document_fromBase64: (a: number, b: number, c: number, d: number, e: number, f: any) => [number, number, number];
|
|
2076
|
-
readonly document_fromBytes: (a: number, b: number, c: number, d: number, e: number, f: any) => [number, number, number];
|
|
2077
|
-
readonly document_fromHex: (a: number, b: number, c: number, d: number, e: number, f: any) => [number, number, number];
|
|
2078
|
-
readonly document_fromJSON: (a: any) => [number, number, number];
|
|
2079
|
-
readonly document_fromObject: (a: any) => [number, number, number];
|
|
2080
|
-
readonly document_generateId: (a: number, b: number, c: any, d: any, e: number, f: number) => [number, number, number, number];
|
|
2081
|
-
readonly document_get_created_at: (a: number) => [number, bigint];
|
|
2082
|
-
readonly document_get_created_at_block_height: (a: number) => [number, bigint];
|
|
2083
|
-
readonly document_get_created_at_core_block_height: (a: number) => number;
|
|
2084
|
-
readonly document_get_data_contract_id: (a: number) => number;
|
|
2085
|
-
readonly document_get_document_type_name: (a: number) => [number, number];
|
|
2086
|
-
readonly document_get_entropy: (a: number) => [number, number];
|
|
2087
|
-
readonly document_get_id: (a: number) => number;
|
|
2088
|
-
readonly document_get_owner_id: (a: number) => number;
|
|
2089
|
-
readonly document_get_properties: (a: number) => [number, number, number];
|
|
2090
|
-
readonly document_get_revision: (a: number) => [number, bigint];
|
|
2091
|
-
readonly document_get_transferred_at: (a: number) => [number, bigint];
|
|
2092
|
-
readonly document_get_transferred_at_block_height: (a: number) => [number, bigint];
|
|
2093
|
-
readonly document_get_transferred_at_core_block_height: (a: number) => number;
|
|
2094
|
-
readonly document_get_updated_at: (a: number) => [number, bigint];
|
|
2095
|
-
readonly document_get_updated_at_block_height: (a: number) => [number, bigint];
|
|
2096
|
-
readonly document_get_updated_at_core_block_height: (a: number) => number;
|
|
2097
|
-
readonly document_set_created_at: (a: number, b: number, c: bigint) => void;
|
|
2098
|
-
readonly document_set_created_at_block_height: (a: number, b: number, c: bigint) => void;
|
|
2099
|
-
readonly document_set_created_at_core_block_height: (a: number, b: number) => void;
|
|
2100
|
-
readonly document_set_document_type_name: (a: number, b: number, c: number) => void;
|
|
2101
|
-
readonly document_set_entropy: (a: number, b: any) => [number, number];
|
|
2102
|
-
readonly document_set_id: (a: number, b: any) => [number, number];
|
|
2103
|
-
readonly document_set_js_data_contract_id: (a: number, b: any) => [number, number];
|
|
2104
|
-
readonly document_set_owner_id: (a: number, b: any) => [number, number];
|
|
2105
|
-
readonly document_set_properties: (a: number, b: any) => [number, number];
|
|
2106
|
-
readonly document_set_revision: (a: number, b: number, c: bigint) => void;
|
|
2107
|
-
readonly document_set_transferred_at: (a: number, b: number, c: bigint) => void;
|
|
2108
|
-
readonly document_set_transferred_at_block_height: (a: number, b: number, c: bigint) => void;
|
|
2109
|
-
readonly document_set_transferred_at_core_block_height: (a: number, b: number) => void;
|
|
2110
|
-
readonly document_set_updated_at: (a: number, b: number, c: bigint) => void;
|
|
2111
|
-
readonly document_set_updated_at_block_height: (a: number, b: number, c: bigint) => void;
|
|
2112
|
-
readonly document_set_updated_at_core_block_height: (a: number, b: number) => void;
|
|
2113
|
-
readonly document_struct_name: () => [number, number];
|
|
2114
|
-
readonly document_toBase64: (a: number, b: number, c: any) => [number, number, number, number];
|
|
2115
|
-
readonly document_toBytes: (a: number, b: number, c: any) => [number, number, number, number];
|
|
2116
|
-
readonly document_toHex: (a: number, b: number, c: any) => [number, number, number, number];
|
|
2117
|
-
readonly document_toJSON: (a: number) => [number, number, number];
|
|
2118
|
-
readonly document_toObject: (a: number) => [number, number, number];
|
|
2119
|
-
readonly document_type_name: (a: number) => [number, number];
|
|
2120
|
-
readonly documentbasetransition_get_data_contract_id: (a: number) => number;
|
|
2121
|
-
readonly documentbasetransition_get_document_type_name: (a: number) => [number, number];
|
|
2122
|
-
readonly documentbasetransition_get_id: (a: number) => number;
|
|
2123
|
-
readonly documentbasetransition_get_identity_contract_nonce: (a: number) => bigint;
|
|
2124
|
-
readonly documentbasetransition_get_token_payment_info: (a: number) => number;
|
|
2125
|
-
readonly documentbasetransition_new: (a: any, b: bigint, c: number, d: number, e: any, f: any) => [number, number, number];
|
|
2126
|
-
readonly documentbasetransition_set_data_contract_id: (a: number, b: any) => [number, number];
|
|
2127
|
-
readonly documentbasetransition_set_document_type_name: (a: number, b: number, c: number) => void;
|
|
2128
|
-
readonly documentbasetransition_set_id: (a: number, b: any) => [number, number];
|
|
2129
|
-
readonly documentbasetransition_set_identity_contract_nonce: (a: number, b: bigint) => void;
|
|
2130
|
-
readonly documentbasetransition_set_token_payment_info: (a: number, b: number) => void;
|
|
2131
|
-
readonly documentbasetransition_struct_name: () => [number, number];
|
|
2132
|
-
readonly documentbasetransition_type_name: (a: number) => [number, number];
|
|
2133
|
-
readonly documentdeletetransition_fromDocumentTransition: (a: number) => [number, number, number];
|
|
2134
|
-
readonly documentdeletetransition_get_base: (a: number) => number;
|
|
2135
|
-
readonly documentdeletetransition_new: (a: number, b: bigint, c: any) => [number, number, number];
|
|
2136
|
-
readonly documentdeletetransition_set_base: (a: number, b: number) => void;
|
|
2137
|
-
readonly documentdeletetransition_struct_name: () => [number, number];
|
|
2138
|
-
readonly documentdeletetransition_toDocumentTransition: (a: number) => number;
|
|
2139
|
-
readonly documentdeletetransition_type_name: (a: number) => [number, number];
|
|
2140
|
-
readonly documentreplacetransition_fromDocumentTransition: (a: number) => [number, number, number];
|
|
2141
|
-
readonly documentreplacetransition_get_base: (a: number) => number;
|
|
2142
|
-
readonly documentreplacetransition_get_data: (a: number) => [number, number, number];
|
|
2143
|
-
readonly documentreplacetransition_get_revision: (a: number) => bigint;
|
|
2144
|
-
readonly documentreplacetransition_new: (a: number, b: bigint, c: any) => [number, number, number];
|
|
2145
|
-
readonly documentreplacetransition_set_base: (a: number, b: number) => void;
|
|
2146
|
-
readonly documentreplacetransition_set_data: (a: number, b: any) => [number, number];
|
|
2147
|
-
readonly documentreplacetransition_set_revision: (a: number, b: bigint) => void;
|
|
2148
|
-
readonly documentreplacetransition_struct_name: () => [number, number];
|
|
2149
|
-
readonly documentreplacetransition_toDocumentTransition: (a: number) => number;
|
|
2150
|
-
readonly documentreplacetransition_type_name: (a: number) => [number, number];
|
|
2151
|
-
readonly tokencontractinfo_contract_id: (a: number) => number;
|
|
2152
|
-
readonly tokencontractinfo_token_contract_position: (a: number) => number;
|
|
2153
|
-
readonly wasmdpperror_code: (a: number) => number;
|
|
2154
|
-
readonly wasmdpperror_kind: (a: number) => number;
|
|
2155
|
-
readonly wasmdpperror_message: (a: number) => [number, number];
|
|
2156
|
-
readonly wasmdpperror_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;
|
|
2157
2140
|
readonly __wbg_blockbaseddistribution_free: (a: number, b: number) => void;
|
|
2158
|
-
readonly
|
|
2159
|
-
readonly __wbg_datacontractcreatetransition_free: (a: number, b: number) => void;
|
|
2141
|
+
readonly __wbg_changecontrolrules_free: (a: number, b: number) => void;
|
|
2160
2142
|
readonly __wbg_distributionfunction_free: (a: number, b: number) => void;
|
|
2161
2143
|
readonly __wbg_epochbaseddistribution_free: (a: number, b: number) => void;
|
|
2144
|
+
readonly __wbg_finalizedepochinfo_free: (a: number, b: number) => void;
|
|
2162
2145
|
readonly __wbg_get_blockbaseddistribution_interval: (a: number) => bigint;
|
|
2163
2146
|
readonly __wbg_get_epochbaseddistribution_interval: (a: number) => number;
|
|
2164
2147
|
readonly __wbg_get_timebaseddistribution_interval: (a: number) => bigint;
|
|
2165
2148
|
readonly __wbg_identitytokeninfo_free: (a: number, b: number) => void;
|
|
2166
|
-
readonly __wbg_identityupdatetransition_free: (a: number, b: number) => void;
|
|
2167
2149
|
readonly __wbg_rewarddistributiontype_free: (a: number, b: number) => void;
|
|
2168
2150
|
readonly __wbg_set_blockbaseddistribution_interval: (a: number, b: bigint) => void;
|
|
2169
2151
|
readonly __wbg_set_epochbaseddistribution_interval: (a: number, b: number) => void;
|
|
2170
2152
|
readonly __wbg_timebaseddistribution_free: (a: number, b: number) => void;
|
|
2171
|
-
readonly __wbg_tokenconfiguration_free: (a: number, b: number) => void;
|
|
2172
|
-
readonly __wbg_tokendistributionrecipient_free: (a: number, b: number) => void;
|
|
2173
2153
|
readonly __wbg_tokendistributionrules_free: (a: number, b: number) => void;
|
|
2174
|
-
readonly __wbg_tokenkeepshistoryrules_free: (a: number, b: number) => void;
|
|
2175
|
-
readonly __wbg_tokenmarketplacerules_free: (a: number, b: number) => void;
|
|
2176
|
-
readonly __wbg_tokenminttransition_free: (a: number, b: number) => void;
|
|
2177
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];
|
|
2178
2171
|
readonly blockbaseddistribution_get_function: (a: number) => number;
|
|
2179
2172
|
readonly blockbaseddistribution_set_function: (a: number, b: number) => void;
|
|
2180
2173
|
readonly blockbaseddistribution_struct_name: () => [number, number];
|
|
2181
2174
|
readonly blockbaseddistribution_type_name: (a: number) => [number, number];
|
|
2182
|
-
readonly
|
|
2183
|
-
readonly
|
|
2184
|
-
readonly
|
|
2185
|
-
readonly
|
|
2186
|
-
readonly
|
|
2187
|
-
readonly
|
|
2188
|
-
readonly
|
|
2189
|
-
readonly
|
|
2190
|
-
readonly
|
|
2191
|
-
readonly
|
|
2192
|
-
readonly
|
|
2193
|
-
readonly
|
|
2194
|
-
readonly
|
|
2195
|
-
readonly
|
|
2196
|
-
readonly datacontract_setConfig: (a: number, b: any, c: any) => [number, number];
|
|
2197
|
-
readonly datacontract_setSchemas: (a: number, b: any, c: number, d: number, e: any) => [number, number];
|
|
2198
|
-
readonly datacontract_set_groups: (a: number, b: any) => [number, number];
|
|
2199
|
-
readonly datacontract_set_id: (a: number, b: any) => [number, number];
|
|
2200
|
-
readonly datacontract_set_owner_id: (a: number, b: any) => [number, number];
|
|
2201
|
-
readonly datacontract_set_tokens: (a: number, b: any) => [number, number];
|
|
2202
|
-
readonly datacontract_set_version: (a: number, b: number) => void;
|
|
2203
|
-
readonly datacontract_struct_name: () => [number, number];
|
|
2204
|
-
readonly datacontract_toBase64: (a: number, b: any) => [number, number, number, number];
|
|
2205
|
-
readonly datacontract_toBytes: (a: number, b: any) => [number, number, number, number];
|
|
2206
|
-
readonly datacontract_toHex: (a: number, b: any) => [number, number, number, number];
|
|
2207
|
-
readonly datacontract_toJSON: (a: number, b: any) => [number, number, number];
|
|
2208
|
-
readonly datacontract_toObject: (a: number, b: any) => [number, number, number];
|
|
2209
|
-
readonly datacontract_type_name: (a: number) => [number, number];
|
|
2210
|
-
readonly datacontractcreatetransition_fromBase64: (a: number, b: number) => [number, number, number];
|
|
2211
|
-
readonly datacontractcreatetransition_fromBytes: (a: number, b: number) => [number, number, number];
|
|
2212
|
-
readonly datacontractcreatetransition_fromHex: (a: number, b: number) => [number, number, number];
|
|
2213
|
-
readonly datacontractcreatetransition_fromJSON: (a: any) => [number, number, number];
|
|
2214
|
-
readonly datacontractcreatetransition_fromObject: (a: any) => [number, number, number];
|
|
2215
|
-
readonly datacontractcreatetransition_fromStateTransition: (a: number) => [number, number, number];
|
|
2216
|
-
readonly datacontractcreatetransition_getDataContract: (a: number, b: any, c: number) => [number, number, number];
|
|
2217
|
-
readonly datacontractcreatetransition_get_feature_version: (a: number) => number;
|
|
2218
|
-
readonly datacontractcreatetransition_get_identity_nonce: (a: number) => bigint;
|
|
2219
|
-
readonly datacontractcreatetransition_new: (a: number, b: bigint, c: any) => [number, number, number];
|
|
2220
|
-
readonly datacontractcreatetransition_setDataContract: (a: number, b: number, c: any) => [number, number];
|
|
2221
|
-
readonly datacontractcreatetransition_struct_name: () => [number, number];
|
|
2222
|
-
readonly datacontractcreatetransition_toBase64: (a: number) => [number, number, number, number];
|
|
2223
|
-
readonly datacontractcreatetransition_toBytes: (a: number) => [number, number, number, number];
|
|
2224
|
-
readonly datacontractcreatetransition_toHex: (a: number) => [number, number, number, number];
|
|
2225
|
-
readonly datacontractcreatetransition_toJSON: (a: number) => [number, number, number];
|
|
2226
|
-
readonly datacontractcreatetransition_toObject: (a: number) => [number, number, number];
|
|
2227
|
-
readonly datacontractcreatetransition_toStateTransition: (a: number) => number;
|
|
2228
|
-
readonly datacontractcreatetransition_type_name: (a: number) => [number, number];
|
|
2229
|
-
readonly datacontractcreatetransition_verifyProtocolVersion: (a: number, b: number) => [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];
|
|
2230
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;
|
|
2231
2190
|
readonly distributionfunction_FixedAmountDistribution: (a: bigint) => number;
|
|
2232
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;
|
|
@@ -2244,42 +2203,38 @@ export interface InitOutput {
|
|
|
2244
2203
|
readonly epochbaseddistribution_set_function: (a: number, b: number) => void;
|
|
2245
2204
|
readonly epochbaseddistribution_struct_name: () => [number, number];
|
|
2246
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;
|
|
2247
2237
|
readonly identitytokeninfo_frozen: (a: number) => number;
|
|
2248
|
-
readonly identityupdatetransition_fromBase64: (a: number, b: number) => [number, number, number];
|
|
2249
|
-
readonly identityupdatetransition_fromBytes: (a: number, b: number) => [number, number, number];
|
|
2250
|
-
readonly identityupdatetransition_fromHex: (a: number, b: number) => [number, number, number];
|
|
2251
|
-
readonly identityupdatetransition_fromJSON: (a: any) => [number, number, number];
|
|
2252
|
-
readonly identityupdatetransition_fromObject: (a: any) => [number, number, number];
|
|
2253
|
-
readonly identityupdatetransition_fromStateTransition: (a: number) => [number, number, number];
|
|
2254
|
-
readonly identityupdatetransition_getModifiedDataIds: (a: number) => [number, number];
|
|
2255
|
-
readonly identityupdatetransition_getOptionalAssetLockProof: (a: number) => any;
|
|
2256
|
-
readonly identityupdatetransition_getPurposeRequirement: (a: number) => [number, number];
|
|
2257
|
-
readonly identityupdatetransition_getSignableBytes: (a: number) => [number, number, number, number];
|
|
2258
|
-
readonly identityupdatetransition_get_identity_identifier: (a: number) => number;
|
|
2259
|
-
readonly identityupdatetransition_get_nonce: (a: number) => bigint;
|
|
2260
|
-
readonly identityupdatetransition_get_public_key_ids_to_add: (a: number) => [number, number];
|
|
2261
|
-
readonly identityupdatetransition_get_public_key_ids_to_disable: (a: number) => [number, number];
|
|
2262
|
-
readonly identityupdatetransition_get_revision: (a: number) => bigint;
|
|
2263
|
-
readonly identityupdatetransition_get_signature: (a: number) => [number, number];
|
|
2264
|
-
readonly identityupdatetransition_get_signature_public_key_id: (a: number) => number;
|
|
2265
|
-
readonly identityupdatetransition_get_user_fee_increase: (a: number) => number;
|
|
2266
|
-
readonly identityupdatetransition_new: (a: any, b: bigint, c: bigint, d: any, e: number, f: number, g: number) => [number, number, number];
|
|
2267
|
-
readonly identityupdatetransition_set_identity_identifier: (a: number, b: any) => [number, number];
|
|
2268
|
-
readonly identityupdatetransition_set_nonce: (a: number, b: bigint) => void;
|
|
2269
|
-
readonly identityupdatetransition_set_public_key_ids_to_add: (a: number, b: any) => [number, number];
|
|
2270
|
-
readonly identityupdatetransition_set_public_key_ids_to_disable: (a: number, b: number, c: number) => void;
|
|
2271
|
-
readonly identityupdatetransition_set_revision: (a: number, b: bigint) => void;
|
|
2272
|
-
readonly identityupdatetransition_set_signature: (a: number, b: number, c: number) => void;
|
|
2273
|
-
readonly identityupdatetransition_set_signature_public_key_id: (a: number, b: number) => void;
|
|
2274
|
-
readonly identityupdatetransition_set_user_fee_increase: (a: number, b: number) => void;
|
|
2275
|
-
readonly identityupdatetransition_struct_name: () => [number, number];
|
|
2276
|
-
readonly identityupdatetransition_toBase64: (a: number) => [number, number, number, number];
|
|
2277
|
-
readonly identityupdatetransition_toBytes: (a: number) => [number, number, number, number];
|
|
2278
|
-
readonly identityupdatetransition_toHex: (a: number) => [number, number, number, number];
|
|
2279
|
-
readonly identityupdatetransition_toJSON: (a: number) => [number, number, number];
|
|
2280
|
-
readonly identityupdatetransition_toObject: (a: number) => [number, number, number];
|
|
2281
|
-
readonly identityupdatetransition_toStateTransition: (a: number) => number;
|
|
2282
|
-
readonly identityupdatetransition_type_name: (a: number) => [number, number];
|
|
2283
2238
|
readonly rewarddistributiontype_BlockBasedDistribution: (a: bigint, b: number) => number;
|
|
2284
2239
|
readonly rewarddistributiontype_EpochBasedDistribution: (a: number, b: number) => number;
|
|
2285
2240
|
readonly rewarddistributiontype_TimeBasedDistribution: (a: bigint, b: number) => number;
|
|
@@ -2290,85 +2245,9 @@ export interface InitOutput {
|
|
|
2290
2245
|
readonly timebaseddistribution_set_function: (a: number, b: number) => void;
|
|
2291
2246
|
readonly timebaseddistribution_struct_name: () => [number, number];
|
|
2292
2247
|
readonly timebaseddistribution_type_name: (a: number) => [number, number];
|
|
2293
|
-
readonly tokenconfiguration_calculateTokenId: (a: any, b: number) => [number, number, number];
|
|
2294
|
-
readonly tokenconfiguration_get_base_supply: (a: number) => bigint;
|
|
2295
|
-
readonly tokenconfiguration_get_conventions: (a: number) => number;
|
|
2296
|
-
readonly tokenconfiguration_get_conventions_change_rules: (a: number) => number;
|
|
2297
|
-
readonly tokenconfiguration_get_description: (a: number) => [number, number];
|
|
2298
|
-
readonly tokenconfiguration_get_destroy_frozen_funds_rules: (a: number) => number;
|
|
2299
|
-
readonly tokenconfiguration_get_distribution_rules: (a: number) => number;
|
|
2300
|
-
readonly tokenconfiguration_get_emergency_action_rules: (a: number) => number;
|
|
2301
|
-
readonly tokenconfiguration_get_freeze_rules: (a: number) => number;
|
|
2302
|
-
readonly tokenconfiguration_get_is_allowed_transfer_to_frozen_balance: (a: number) => number;
|
|
2303
|
-
readonly tokenconfiguration_get_keeps_history: (a: number) => number;
|
|
2304
|
-
readonly tokenconfiguration_get_main_control_group: (a: number) => number;
|
|
2305
|
-
readonly tokenconfiguration_get_main_control_group_can_be_modified: (a: number) => number;
|
|
2306
|
-
readonly tokenconfiguration_get_manual_burning_rules: (a: number) => number;
|
|
2307
|
-
readonly tokenconfiguration_get_manual_minting_rules: (a: number) => number;
|
|
2308
|
-
readonly tokenconfiguration_get_marketplace_rules: (a: number) => number;
|
|
2309
|
-
readonly tokenconfiguration_get_max_supply: (a: number) => [number, bigint];
|
|
2310
|
-
readonly tokenconfiguration_get_max_supply_change_rules: (a: number) => number;
|
|
2311
|
-
readonly tokenconfiguration_get_start_as_paused: (a: number) => number;
|
|
2312
|
-
readonly tokenconfiguration_get_unfreeze_rules: (a: number) => number;
|
|
2313
|
-
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;
|
|
2314
|
-
readonly tokenconfiguration_set_base_supply: (a: number, b: bigint) => void;
|
|
2315
|
-
readonly tokenconfiguration_set_conventions: (a: number, b: number) => void;
|
|
2316
|
-
readonly tokenconfiguration_set_conventions_change_rules: (a: number, b: number) => void;
|
|
2317
|
-
readonly tokenconfiguration_set_description: (a: number, b: number, c: number) => void;
|
|
2318
|
-
readonly tokenconfiguration_set_destroy_frozen_funds_rules: (a: number, b: number) => void;
|
|
2319
|
-
readonly tokenconfiguration_set_distribution_rules: (a: number, b: number) => void;
|
|
2320
|
-
readonly tokenconfiguration_set_emergency_action_rules: (a: number, b: number) => void;
|
|
2321
|
-
readonly tokenconfiguration_set_freeze_rules: (a: number, b: number) => void;
|
|
2322
|
-
readonly tokenconfiguration_set_is_allowed_transfer_to_frozen_balance: (a: number, b: number) => void;
|
|
2323
|
-
readonly tokenconfiguration_set_keeps_history: (a: number, b: number) => void;
|
|
2324
|
-
readonly tokenconfiguration_set_main_control_group: (a: number, b: number) => void;
|
|
2325
|
-
readonly tokenconfiguration_set_main_control_group_can_be_modified: (a: number, b: number) => void;
|
|
2326
|
-
readonly tokenconfiguration_set_manual_burning_rules: (a: number, b: number) => void;
|
|
2327
|
-
readonly tokenconfiguration_set_manual_minting_rules: (a: number, b: number) => void;
|
|
2328
|
-
readonly tokenconfiguration_set_marketplace_rules: (a: number, b: number) => void;
|
|
2329
|
-
readonly tokenconfiguration_set_max_supply: (a: number, b: number, c: bigint) => void;
|
|
2330
|
-
readonly tokenconfiguration_set_max_supply_change_rules: (a: number, b: number) => void;
|
|
2331
|
-
readonly tokenconfiguration_set_start_as_paused: (a: number, b: number) => void;
|
|
2332
|
-
readonly tokenconfiguration_set_unfreeze_rules: (a: number, b: number) => void;
|
|
2333
|
-
readonly tokenconfiguration_struct_name: () => [number, number];
|
|
2334
|
-
readonly tokenconfiguration_type_name: (a: number) => [number, number];
|
|
2335
|
-
readonly tokenconfigurationchangeitem_ConventionsAdminGroupItem: (a: number) => number;
|
|
2336
|
-
readonly tokenconfigurationchangeitem_ConventionsControlGroupItem: (a: number) => number;
|
|
2337
|
-
readonly tokenconfigurationchangeitem_DestroyFrozenFundsAdminGroupItem: (a: number) => number;
|
|
2338
|
-
readonly tokenconfigurationchangeitem_DestroyFrozenFundsItem: (a: number) => number;
|
|
2339
|
-
readonly tokenconfigurationchangeitem_EmergencyActionAdminGroupItem: (a: number) => number;
|
|
2340
|
-
readonly tokenconfigurationchangeitem_EmergencyActionItem: (a: number) => number;
|
|
2341
|
-
readonly tokenconfigurationchangeitem_FreezeAdminGroupItem: (a: number) => number;
|
|
2342
|
-
readonly tokenconfigurationchangeitem_FreezeItem: (a: number) => number;
|
|
2343
|
-
readonly tokenconfigurationchangeitem_ManualBurningAdminGroupItem: (a: number) => number;
|
|
2344
|
-
readonly tokenconfigurationchangeitem_ManualBurningItem: (a: number) => number;
|
|
2345
|
-
readonly tokenconfigurationchangeitem_ManualMintingAdminGroupItem: (a: number) => number;
|
|
2346
|
-
readonly tokenconfigurationchangeitem_ManualMintingItem: (a: number) => number;
|
|
2347
|
-
readonly tokenconfigurationchangeitem_MarketplaceTradeModeAdminGroupItem: (a: number) => number;
|
|
2348
|
-
readonly tokenconfigurationchangeitem_MarketplaceTradeModeControlGroupItem: (a: number) => number;
|
|
2349
|
-
readonly tokenconfigurationchangeitem_MarketplaceTradeModeItem: (a: number) => number;
|
|
2350
|
-
readonly tokenconfigurationchangeitem_MaxSupplyAdminGroupItem: (a: number) => number;
|
|
2351
|
-
readonly tokenconfigurationchangeitem_MaxSupplyControlGroupItem: (a: number) => number;
|
|
2352
|
-
readonly tokenconfigurationchangeitem_MaxSupplyItem: (a: number, b: bigint) => number;
|
|
2353
|
-
readonly tokenconfigurationchangeitem_MintingAllowChoosingDestinationAdminGroupItem: (a: number) => number;
|
|
2354
|
-
readonly tokenconfigurationchangeitem_MintingAllowChoosingDestinationControlGroupItem: (a: number) => number;
|
|
2355
|
-
readonly tokenconfigurationchangeitem_MintingAllowChoosingDestinationItem: (a: number) => number;
|
|
2356
2248
|
readonly tokenconfigurationchangeitem_NewTokensDestinationIdentityAdminGroupItem: (a: number) => number;
|
|
2357
2249
|
readonly tokenconfigurationchangeitem_NewTokensDestinationIdentityControlGroupItem: (a: number) => number;
|
|
2358
2250
|
readonly tokenconfigurationchangeitem_NewTokensDestinationIdentityItem: (a: any) => [number, number, number];
|
|
2359
|
-
readonly tokenconfigurationchangeitem_PerpetualDistributionAdminGroupItem: (a: number) => number;
|
|
2360
|
-
readonly tokenconfigurationchangeitem_PerpetualDistributionConfigurationItem: (a: any) => number;
|
|
2361
|
-
readonly tokenconfigurationchangeitem_PerpetualDistributionControlGroupItem: (a: number) => number;
|
|
2362
|
-
readonly tokenconfigurationchangeitem_UnfreezeAdminGroupItem: (a: number) => number;
|
|
2363
|
-
readonly tokenconfigurationchangeitem_UnfreezeItem: (a: number) => number;
|
|
2364
|
-
readonly tokenconfigurationchangeitem_conventionsItem: (a: number) => number;
|
|
2365
|
-
readonly tokendistributionrecipient_ContractOwner: () => number;
|
|
2366
|
-
readonly tokendistributionrecipient_EvonodesByParticipation: () => number;
|
|
2367
|
-
readonly tokendistributionrecipient_Identity: (a: any) => [number, number, number];
|
|
2368
|
-
readonly tokendistributionrecipient_getType: (a: number) => [number, number];
|
|
2369
|
-
readonly tokendistributionrecipient_getValue: (a: number) => any;
|
|
2370
|
-
readonly tokendistributionrecipient_struct_name: () => [number, number];
|
|
2371
|
-
readonly tokendistributionrecipient_type_name: (a: number) => [number, number];
|
|
2372
2251
|
readonly tokendistributionrules_get_change_direct_purchase_pricing_rules: (a: number) => number;
|
|
2373
2252
|
readonly tokendistributionrules_get_minting_allow_choosing_destination: (a: number) => number;
|
|
2374
2253
|
readonly tokendistributionrules_get_minting_allow_choosing_destination_rules: (a: number) => number;
|
|
@@ -2388,40 +2267,6 @@ export interface InitOutput {
|
|
|
2388
2267
|
readonly tokendistributionrules_set_pre_programmed_distribution: (a: number, b: any) => [number, number];
|
|
2389
2268
|
readonly tokendistributionrules_struct_name: () => [number, number];
|
|
2390
2269
|
readonly tokendistributionrules_type_name: (a: number) => [number, number];
|
|
2391
|
-
readonly tokenkeepshistoryrules_get_keeps_burning_history: (a: number) => number;
|
|
2392
|
-
readonly tokenkeepshistoryrules_get_keeps_direct_pricing_history: (a: number) => number;
|
|
2393
|
-
readonly tokenkeepshistoryrules_get_keeps_direct_purchase_history: (a: number) => number;
|
|
2394
|
-
readonly tokenkeepshistoryrules_get_keeps_freezing_history: (a: number) => number;
|
|
2395
|
-
readonly tokenkeepshistoryrules_get_keeps_minting_history: (a: number) => number;
|
|
2396
|
-
readonly tokenkeepshistoryrules_get_keeps_transfer_history: (a: number) => number;
|
|
2397
|
-
readonly tokenkeepshistoryrules_new: (a: number, b: number, c: number, d: number, e: number, f: number) => number;
|
|
2398
|
-
readonly tokenkeepshistoryrules_set_keeps_burning_history: (a: number, b: number) => void;
|
|
2399
|
-
readonly tokenkeepshistoryrules_set_keeps_direct_pricing_history: (a: number, b: number) => void;
|
|
2400
|
-
readonly tokenkeepshistoryrules_set_keeps_direct_purchase_history: (a: number, b: number) => void;
|
|
2401
|
-
readonly tokenkeepshistoryrules_set_keeps_freezing_history: (a: number, b: number) => void;
|
|
2402
|
-
readonly tokenkeepshistoryrules_set_keeps_minting_history: (a: number, b: number) => void;
|
|
2403
|
-
readonly tokenkeepshistoryrules_set_keeps_transfer_history: (a: number, b: number) => void;
|
|
2404
|
-
readonly tokenkeepshistoryrules_struct_name: () => [number, number];
|
|
2405
|
-
readonly tokenkeepshistoryrules_type_name: (a: number) => [number, number];
|
|
2406
|
-
readonly tokenmarketplacerules_new: (a: number, b: number) => number;
|
|
2407
|
-
readonly tokenmarketplacerules_set_trade_mode: (a: number, b: number) => void;
|
|
2408
|
-
readonly tokenmarketplacerules_set_trade_mode_change_rules: (a: number, b: number) => void;
|
|
2409
|
-
readonly tokenmarketplacerules_struct_name: () => [number, number];
|
|
2410
|
-
readonly tokenmarketplacerules_trade_mode: (a: number) => number;
|
|
2411
|
-
readonly tokenmarketplacerules_trade_mode_change_rules: (a: number) => number;
|
|
2412
|
-
readonly tokenmarketplacerules_type_name: (a: number) => [number, number];
|
|
2413
|
-
readonly tokenminttransition_getRecipientId: (a: number, b: number) => [number, number, number];
|
|
2414
|
-
readonly tokenminttransition_get_amount: (a: number) => bigint;
|
|
2415
|
-
readonly tokenminttransition_get_base: (a: number) => number;
|
|
2416
|
-
readonly tokenminttransition_get_public_note: (a: number) => [number, number];
|
|
2417
|
-
readonly tokenminttransition_issued_to_identity_id: (a: number) => number;
|
|
2418
|
-
readonly tokenminttransition_new: (a: number, b: any, c: bigint, d: number, e: number) => [number, number, number];
|
|
2419
|
-
readonly tokenminttransition_set_amount: (a: number, b: bigint) => void;
|
|
2420
|
-
readonly tokenminttransition_set_base: (a: number, b: number) => void;
|
|
2421
|
-
readonly tokenminttransition_set_issued_to_identity_id: (a: number, b: any) => [number, number];
|
|
2422
|
-
readonly tokenminttransition_set_public_note: (a: number, b: number, c: number) => void;
|
|
2423
|
-
readonly tokenminttransition_struct_name: () => [number, number];
|
|
2424
|
-
readonly tokenminttransition_type_name: (a: number) => [number, number];
|
|
2425
2270
|
readonly tokenperpetualdistribution_distribution_type: (a: number) => number;
|
|
2426
2271
|
readonly tokenperpetualdistribution_new: (a: number, b: number) => number;
|
|
2427
2272
|
readonly tokenperpetualdistribution_recipient: (a: number) => number;
|
|
@@ -2429,168 +2274,225 @@ export interface InitOutput {
|
|
|
2429
2274
|
readonly tokenperpetualdistribution_set_recipient: (a: number, b: number) => void;
|
|
2430
2275
|
readonly tokenperpetualdistribution_struct_name: () => [number, number];
|
|
2431
2276
|
readonly tokenperpetualdistribution_type_name: (a: number) => [number, number];
|
|
2432
|
-
readonly __wbg_set_timebaseddistribution_interval: (a: number, b: bigint) => void;
|
|
2433
|
-
readonly __wbg_actiontaker_free: (a: number, b: number) => void;
|
|
2434
|
-
readonly __wbg_authorizedactiontakers_free: (a: number, b: number) => void;
|
|
2435
|
-
readonly __wbg_changecontrolrules_free: (a: number, b: number) => void;
|
|
2436
|
-
readonly __wbg_finalizedepochinfo_free: (a: number, b: number) => void;
|
|
2437
|
-
readonly __wbg_tokenpreprogrammeddistribution_free: (a: number, b: number) => void;
|
|
2438
|
-
readonly __wbg_tokenpricingschedule_free: (a: number, b: number) => void;
|
|
2439
|
-
readonly actiontaker_getType: (a: number) => [number, number];
|
|
2440
|
-
readonly actiontaker_get_value: (a: number) => any;
|
|
2441
|
-
readonly actiontaker_new: (a: any) => [number, number, number];
|
|
2442
|
-
readonly actiontaker_set_value: (a: number, b: any) => [number, number];
|
|
2443
|
-
readonly actiontaker_struct_name: () => [number, number];
|
|
2444
|
-
readonly actiontaker_type_name: (a: number) => [number, number];
|
|
2445
|
-
readonly authorizedactiontakers_ContractOwner: () => number;
|
|
2446
|
-
readonly authorizedactiontakers_Group: (a: number) => number;
|
|
2447
|
-
readonly authorizedactiontakers_Identity: (a: any) => [number, number, number];
|
|
2448
|
-
readonly authorizedactiontakers_MainGroup: () => number;
|
|
2449
|
-
readonly authorizedactiontakers_NoOne: () => number;
|
|
2450
|
-
readonly authorizedactiontakers_getTakerType: (a: number) => [number, number];
|
|
2451
|
-
readonly authorizedactiontakers_getValue: (a: number) => any;
|
|
2452
|
-
readonly authorizedactiontakers_struct_name: () => [number, number];
|
|
2453
|
-
readonly authorizedactiontakers_type_name: (a: number) => [number, number];
|
|
2454
|
-
readonly changecontrolrules_canChangeAdminActionTakers: (a: number, b: number, c: any, d: number, e: any, f: number, g: any) => [number, number, number];
|
|
2455
|
-
readonly changecontrolrules_get_admin_action_takers: (a: number) => number;
|
|
2456
|
-
readonly changecontrolrules_get_authorized_to_make_change: (a: number) => number;
|
|
2457
|
-
readonly changecontrolrules_get_changing_admin_action_takers_to_no_one_allowed: (a: number) => number;
|
|
2458
|
-
readonly changecontrolrules_get_changing_authorized_action_takers_to_no_one_allowed: (a: number) => number;
|
|
2459
|
-
readonly changecontrolrules_get_self_changing_admin_action_takers_allowed: (a: number) => number;
|
|
2460
|
-
readonly changecontrolrules_new: (a: number, b: number, c: number, d: number, e: number) => number;
|
|
2461
|
-
readonly changecontrolrules_set_admin_action_takers: (a: number, b: number) => void;
|
|
2462
|
-
readonly changecontrolrules_set_authorized_to_make_change: (a: number, b: number) => void;
|
|
2463
|
-
readonly changecontrolrules_set_changing_admin_action_takers_to_no_one_allowed: (a: number, b: number) => void;
|
|
2464
|
-
readonly changecontrolrules_set_changing_authorized_action_takers_to_no_one_allowed: (a: number, b: number) => void;
|
|
2465
|
-
readonly changecontrolrules_set_self_changing_admin_action_takers_allowed: (a: number, b: number) => void;
|
|
2466
|
-
readonly changecontrolrules_struct_name: () => [number, number];
|
|
2467
|
-
readonly changecontrolrules_type_name: (a: number) => [number, number];
|
|
2468
|
-
readonly finalizedepochinfo_block_proposers: (a: number) => [number, number, number];
|
|
2469
|
-
readonly finalizedepochinfo_core_block_rewards: (a: number) => any;
|
|
2470
|
-
readonly finalizedepochinfo_fee_multiplier: (a: number) => number;
|
|
2471
|
-
readonly finalizedepochinfo_fee_multiplier_permille: (a: number) => bigint;
|
|
2472
|
-
readonly finalizedepochinfo_first_block_height: (a: number) => any;
|
|
2473
|
-
readonly finalizedepochinfo_first_block_time: (a: number) => any;
|
|
2474
|
-
readonly finalizedepochinfo_first_core_block_height: (a: number) => number;
|
|
2475
|
-
readonly finalizedepochinfo_fromJSON: (a: any) => [number, number, number];
|
|
2476
|
-
readonly finalizedepochinfo_fromObject: (a: any) => [number, number, number];
|
|
2477
|
-
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];
|
|
2478
|
-
readonly finalizedepochinfo_next_epoch_start_core_block_height: (a: number) => number;
|
|
2479
|
-
readonly finalizedepochinfo_protocol_version: (a: number) => number;
|
|
2480
|
-
readonly finalizedepochinfo_set_block_proposers: (a: number, b: any) => [number, number];
|
|
2481
|
-
readonly finalizedepochinfo_set_core_block_rewards: (a: number, b: bigint) => void;
|
|
2482
|
-
readonly finalizedepochinfo_set_fee_multiplier_permille: (a: number, b: bigint) => void;
|
|
2483
|
-
readonly finalizedepochinfo_set_first_block_height: (a: number, b: bigint) => void;
|
|
2484
|
-
readonly finalizedepochinfo_set_first_block_time: (a: number, b: bigint) => void;
|
|
2485
|
-
readonly finalizedepochinfo_set_first_core_block_height: (a: number, b: number) => void;
|
|
2486
|
-
readonly finalizedepochinfo_set_next_epoch_start_core_block_height: (a: number, b: number) => void;
|
|
2487
|
-
readonly finalizedepochinfo_set_protocol_version: (a: number, b: number) => void;
|
|
2488
|
-
readonly finalizedepochinfo_set_total_blocks_in_epoch: (a: number, b: bigint) => void;
|
|
2489
|
-
readonly finalizedepochinfo_set_total_created_storage_fees: (a: number, b: bigint) => void;
|
|
2490
|
-
readonly finalizedepochinfo_set_total_distributed_storage_fees: (a: number, b: bigint) => void;
|
|
2491
|
-
readonly finalizedepochinfo_set_total_processing_fees: (a: number, b: bigint) => void;
|
|
2492
|
-
readonly finalizedepochinfo_struct_name: (a: number) => [number, number];
|
|
2493
|
-
readonly finalizedepochinfo_toJSON: (a: number) => [number, number, number];
|
|
2494
|
-
readonly finalizedepochinfo_toObject: (a: number) => [number, number, number];
|
|
2495
|
-
readonly finalizedepochinfo_total_blocks_in_epoch: (a: number) => any;
|
|
2496
|
-
readonly finalizedepochinfo_total_created_storage_fees: (a: number) => any;
|
|
2497
|
-
readonly finalizedepochinfo_total_distributed_storage_fees: (a: number) => any;
|
|
2498
|
-
readonly finalizedepochinfo_total_processing_fees: (a: number) => any;
|
|
2499
2277
|
readonly tokenpreprogrammeddistribution_get_distributions: (a: number) => [number, number, number];
|
|
2500
2278
|
readonly tokenpreprogrammeddistribution_new: (a: any) => [number, number, number];
|
|
2501
2279
|
readonly tokenpreprogrammeddistribution_set_distributions: (a: number, b: any) => [number, number];
|
|
2502
2280
|
readonly tokenpreprogrammeddistribution_struct_name: () => [number, number];
|
|
2503
2281
|
readonly tokenpreprogrammeddistribution_type_name: (a: number) => [number, number];
|
|
2504
|
-
readonly tokenpricingschedule_SetPrices: (a: any) => [number, number, number];
|
|
2505
|
-
readonly tokenpricingschedule_SinglePrice: (a: bigint) => number;
|
|
2506
|
-
readonly tokenpricingschedule_getScheduleType: (a: number) => [number, number];
|
|
2507
|
-
readonly tokenpricingschedule_getValue: (a: number) => [number, number, number];
|
|
2508
|
-
readonly tokenpricingschedule_struct_name: () => [number, number];
|
|
2509
|
-
readonly tokenpricingschedule_type_name: (a: number) => [number, number];
|
|
2510
2282
|
readonly finalizedepochinfo_type_name: (a: number) => [number, number];
|
|
2511
|
-
readonly
|
|
2512
|
-
readonly
|
|
2513
|
-
readonly
|
|
2514
|
-
readonly
|
|
2515
|
-
readonly
|
|
2516
|
-
readonly
|
|
2517
|
-
readonly
|
|
2518
|
-
readonly
|
|
2519
|
-
readonly
|
|
2520
|
-
readonly
|
|
2521
|
-
readonly
|
|
2522
|
-
readonly
|
|
2523
|
-
readonly
|
|
2524
|
-
readonly
|
|
2525
|
-
readonly
|
|
2526
|
-
readonly
|
|
2527
|
-
readonly
|
|
2528
|
-
readonly
|
|
2529
|
-
readonly
|
|
2530
|
-
readonly
|
|
2531
|
-
readonly
|
|
2532
|
-
readonly
|
|
2533
|
-
readonly
|
|
2534
|
-
readonly
|
|
2535
|
-
readonly
|
|
2536
|
-
readonly
|
|
2537
|
-
readonly
|
|
2538
|
-
readonly
|
|
2539
|
-
readonly
|
|
2540
|
-
readonly
|
|
2541
|
-
readonly
|
|
2542
|
-
readonly
|
|
2543
|
-
readonly
|
|
2544
|
-
readonly
|
|
2545
|
-
readonly
|
|
2546
|
-
readonly
|
|
2547
|
-
readonly
|
|
2548
|
-
readonly
|
|
2549
|
-
readonly
|
|
2550
|
-
readonly
|
|
2551
|
-
readonly
|
|
2552
|
-
readonly
|
|
2553
|
-
readonly
|
|
2554
|
-
readonly
|
|
2555
|
-
readonly
|
|
2556
|
-
readonly
|
|
2557
|
-
readonly
|
|
2558
|
-
readonly
|
|
2559
|
-
readonly
|
|
2560
|
-
readonly
|
|
2561
|
-
readonly
|
|
2562
|
-
readonly
|
|
2563
|
-
readonly
|
|
2564
|
-
readonly
|
|
2565
|
-
readonly
|
|
2566
|
-
readonly
|
|
2567
|
-
readonly
|
|
2568
|
-
readonly
|
|
2569
|
-
readonly
|
|
2570
|
-
readonly
|
|
2571
|
-
readonly
|
|
2283
|
+
readonly __wbg_set_timebaseddistribution_interval: (a: number, b: bigint) => void;
|
|
2284
|
+
readonly __wbg_contenderwithserializeddocument_free: (a: number, b: number) => void;
|
|
2285
|
+
readonly __wbg_documentcreatetransition_free: (a: number, b: number) => void;
|
|
2286
|
+
readonly __wbg_documentpurchasetransition_free: (a: number, b: number) => void;
|
|
2287
|
+
readonly __wbg_documentreplacetransition_free: (a: number, b: number) => void;
|
|
2288
|
+
readonly __wbg_documenttransfertransition_free: (a: number, b: number) => void;
|
|
2289
|
+
readonly __wbg_groupstatetransitioninfo_free: (a: number, b: number) => void;
|
|
2290
|
+
readonly __wbg_identitycreatetransition_free: (a: number, b: number) => void;
|
|
2291
|
+
readonly __wbg_identitytopuptransition_free: (a: number, b: number) => void;
|
|
2292
|
+
readonly __wbg_instantassetlockproof_free: (a: number, b: number) => void;
|
|
2293
|
+
readonly __wbg_outpoint_free: (a: number, b: number) => void;
|
|
2294
|
+
readonly __wbg_prefundedvotingbalance_free: (a: number, b: number) => void;
|
|
2295
|
+
readonly __wbg_privatekey_free: (a: number, b: number) => void;
|
|
2296
|
+
readonly contenderwithserializeddocument_fromJSON: (a: any) => [number, number, number];
|
|
2297
|
+
readonly contenderwithserializeddocument_fromObject: (a: any) => [number, number, number];
|
|
2298
|
+
readonly contenderwithserializeddocument_identity_id: (a: number) => number;
|
|
2299
|
+
readonly contenderwithserializeddocument_new: (a: any, b: number, c: number, d: number) => [number, number, number];
|
|
2300
|
+
readonly contenderwithserializeddocument_serialized_document: (a: number) => any;
|
|
2301
|
+
readonly contenderwithserializeddocument_toJSON: (a: number) => [number, number, number];
|
|
2302
|
+
readonly contenderwithserializeddocument_toObject: (a: number) => [number, number, number];
|
|
2303
|
+
readonly contenderwithserializeddocument_vote_tally: (a: number) => number;
|
|
2304
|
+
readonly documentcreatetransition_clearPrefundedVotingBalance: (a: number) => void;
|
|
2305
|
+
readonly documentcreatetransition_fromDocumentTransition: (a: number) => [number, number, number];
|
|
2306
|
+
readonly documentcreatetransition_get_base: (a: number) => number;
|
|
2307
|
+
readonly documentcreatetransition_get_data: (a: number) => [number, number, number];
|
|
2308
|
+
readonly documentcreatetransition_get_entropy: (a: number) => [number, number];
|
|
2309
|
+
readonly documentcreatetransition_get_prefunded_voting_balance: (a: number) => number;
|
|
2310
|
+
readonly documentcreatetransition_new: (a: number, b: bigint, c: any, d: any) => [number, number, number];
|
|
2311
|
+
readonly documentcreatetransition_set_base: (a: number, b: number) => void;
|
|
2312
|
+
readonly documentcreatetransition_set_data: (a: number, b: any) => [number, number];
|
|
2313
|
+
readonly documentcreatetransition_set_entropy: (a: number, b: number, c: number) => [number, number];
|
|
2314
|
+
readonly documentcreatetransition_set_prefunded_voting_balance: (a: number, b: number) => void;
|
|
2315
|
+
readonly documentcreatetransition_struct_name: () => [number, number];
|
|
2316
|
+
readonly documentcreatetransition_toDocumentTransition: (a: number) => number;
|
|
2317
|
+
readonly documentcreatetransition_type_name: (a: number) => [number, number];
|
|
2318
|
+
readonly documentpurchasetransition_fromDocumentTransition: (a: number) => [number, number, number];
|
|
2319
|
+
readonly documentpurchasetransition_get_base: (a: number) => number;
|
|
2320
|
+
readonly documentpurchasetransition_get_price: (a: number) => bigint;
|
|
2321
|
+
readonly documentpurchasetransition_get_revision: (a: number) => bigint;
|
|
2322
|
+
readonly documentpurchasetransition_new: (a: number, b: bigint, c: bigint, d: any) => [number, number, number];
|
|
2323
|
+
readonly documentpurchasetransition_set_base: (a: number, b: number) => void;
|
|
2324
|
+
readonly documentpurchasetransition_set_price: (a: number, b: bigint) => void;
|
|
2325
|
+
readonly documentpurchasetransition_set_revision: (a: number, b: bigint) => void;
|
|
2326
|
+
readonly documentpurchasetransition_struct_name: () => [number, number];
|
|
2327
|
+
readonly documentpurchasetransition_toDocumentTransition: (a: number) => number;
|
|
2328
|
+
readonly documentpurchasetransition_type_name: (a: number) => [number, number];
|
|
2329
|
+
readonly documentreplacetransition_fromDocumentTransition: (a: number) => [number, number, number];
|
|
2330
|
+
readonly documentreplacetransition_get_base: (a: number) => number;
|
|
2331
|
+
readonly documentreplacetransition_get_data: (a: number) => [number, number, number];
|
|
2332
|
+
readonly documentreplacetransition_get_revision: (a: number) => bigint;
|
|
2333
|
+
readonly documentreplacetransition_new: (a: number, b: bigint, c: any) => [number, number, number];
|
|
2334
|
+
readonly documentreplacetransition_set_base: (a: number, b: number) => void;
|
|
2335
|
+
readonly documentreplacetransition_set_data: (a: number, b: any) => [number, number];
|
|
2336
|
+
readonly documentreplacetransition_set_revision: (a: number, b: bigint) => void;
|
|
2337
|
+
readonly documentreplacetransition_struct_name: () => [number, number];
|
|
2338
|
+
readonly documentreplacetransition_toDocumentTransition: (a: number) => number;
|
|
2339
|
+
readonly documentreplacetransition_type_name: (a: number) => [number, number];
|
|
2340
|
+
readonly documenttransfertransition_fromDocumentTransition: (a: number) => [number, number, number];
|
|
2341
|
+
readonly documenttransfertransition_get_base: (a: number) => number;
|
|
2342
|
+
readonly documenttransfertransition_get_recipient_owner_id: (a: number) => number;
|
|
2343
|
+
readonly documenttransfertransition_new: (a: number, b: bigint, c: any, d: any) => [number, number, number];
|
|
2344
|
+
readonly documenttransfertransition_set_base: (a: number, b: number) => void;
|
|
2345
|
+
readonly documenttransfertransition_set_recipient_owner_id: (a: number, b: any) => [number, number];
|
|
2346
|
+
readonly documenttransfertransition_struct_name: () => [number, number];
|
|
2347
|
+
readonly documenttransfertransition_toDocumentTransition: (a: number) => number;
|
|
2348
|
+
readonly documenttransfertransition_type_name: (a: number) => [number, number];
|
|
2349
|
+
readonly groupstatetransitioninfo_get_action_id: (a: number) => number;
|
|
2350
|
+
readonly groupstatetransitioninfo_get_action_is_proposer: (a: number) => number;
|
|
2351
|
+
readonly groupstatetransitioninfo_get_group_contract_position: (a: number) => number;
|
|
2352
|
+
readonly groupstatetransitioninfo_new: (a: number, b: any, c: number) => [number, number, number];
|
|
2353
|
+
readonly groupstatetransitioninfo_set_action_id: (a: number, b: any) => [number, number];
|
|
2354
|
+
readonly groupstatetransitioninfo_set_action_is_proposer: (a: number, b: number) => void;
|
|
2355
|
+
readonly groupstatetransitioninfo_set_group_contract_position: (a: number, b: number) => void;
|
|
2356
|
+
readonly groupstatetransitioninfo_struct_name: () => [number, number];
|
|
2357
|
+
readonly groupstatetransitioninfo_type_name: (a: number) => [number, number];
|
|
2358
|
+
readonly identitycreatetransition_default: (a: any) => [number, number, number];
|
|
2359
|
+
readonly identitycreatetransition_fromBase64: (a: number, b: number) => [number, number, number];
|
|
2360
|
+
readonly identitycreatetransition_fromBytes: (a: number, b: number) => [number, number, number];
|
|
2361
|
+
readonly identitycreatetransition_fromHex: (a: number, b: number) => [number, number, number];
|
|
2362
|
+
readonly identitycreatetransition_fromJSON: (a: any) => [number, number, number];
|
|
2363
|
+
readonly identitycreatetransition_fromObject: (a: any) => [number, number, number];
|
|
2364
|
+
readonly identitycreatetransition_fromStateTransition: (a: number) => [number, number, number];
|
|
2365
|
+
readonly identitycreatetransition_getIdentifier: (a: number) => number;
|
|
2366
|
+
readonly identitycreatetransition_getSignableBytes: (a: number) => [number, number, number, number];
|
|
2367
|
+
readonly identitycreatetransition_get_asset_lock_proof: (a: number) => number;
|
|
2368
|
+
readonly identitycreatetransition_get_public_keys: (a: number) => [number, number];
|
|
2369
|
+
readonly identitycreatetransition_get_signature: (a: number) => [number, number];
|
|
2370
|
+
readonly identitycreatetransition_get_user_fee_increase: (a: number) => number;
|
|
2371
|
+
readonly identitycreatetransition_new: (a: any, b: number, c: number, d: number, e: number) => [number, number, number];
|
|
2372
|
+
readonly identitycreatetransition_set_asset_lock_proof: (a: number, b: number) => [number, number];
|
|
2373
|
+
readonly identitycreatetransition_set_public_keys: (a: number, b: any) => [number, number];
|
|
2374
|
+
readonly identitycreatetransition_set_signature: (a: number, b: number, c: number) => void;
|
|
2375
|
+
readonly identitycreatetransition_set_user_fee_increase: (a: number, b: number) => void;
|
|
2376
|
+
readonly identitycreatetransition_struct_name: () => [number, number];
|
|
2377
|
+
readonly identitycreatetransition_toBase64: (a: number) => [number, number, number, number];
|
|
2378
|
+
readonly identitycreatetransition_toBytes: (a: number) => [number, number, number, number];
|
|
2379
|
+
readonly identitycreatetransition_toHex: (a: number) => [number, number, number, number];
|
|
2380
|
+
readonly identitycreatetransition_toJSON: (a: number) => [number, number, number];
|
|
2381
|
+
readonly identitycreatetransition_toObject: (a: number) => [number, number, number];
|
|
2382
|
+
readonly identitycreatetransition_toStateTransition: (a: number) => number;
|
|
2383
|
+
readonly identitycreatetransition_type_name: (a: number) => [number, number];
|
|
2384
|
+
readonly identitytopuptransition_fromBase64: (a: number, b: number) => [number, number, number];
|
|
2385
|
+
readonly identitytopuptransition_fromBytes: (a: number, b: number) => [number, number, number];
|
|
2386
|
+
readonly identitytopuptransition_fromHex: (a: number, b: number) => [number, number, number];
|
|
2387
|
+
readonly identitytopuptransition_fromJSON: (a: any) => [number, number, number];
|
|
2388
|
+
readonly identitytopuptransition_fromObject: (a: any) => [number, number, number];
|
|
2389
|
+
readonly identitytopuptransition_fromStateTransition: (a: number) => [number, number, number];
|
|
2390
|
+
readonly identitytopuptransition_getModifiedDataIds: (a: number) => [number, number];
|
|
2391
|
+
readonly identitytopuptransition_getOptionalAssetLockProof: (a: number) => any;
|
|
2392
|
+
readonly identitytopuptransition_getSignableBytes: (a: number) => [number, number, number, number];
|
|
2393
|
+
readonly identitytopuptransition_get_asset_lock_proof: (a: number) => number;
|
|
2394
|
+
readonly identitytopuptransition_get_identity_identifier: (a: number) => number;
|
|
2395
|
+
readonly identitytopuptransition_get_signature: (a: number) => [number, number];
|
|
2396
|
+
readonly identitytopuptransition_get_user_fee_increase: (a: number) => number;
|
|
2397
|
+
readonly identitytopuptransition_new: (a: number, b: any, c: number) => [number, number, number];
|
|
2398
|
+
readonly identitytopuptransition_set_asset_lock_proof: (a: number, b: number) => [number, number];
|
|
2399
|
+
readonly identitytopuptransition_set_identity_identifier: (a: number, b: any) => [number, number];
|
|
2400
|
+
readonly identitytopuptransition_set_signature: (a: number, b: number, c: number) => void;
|
|
2401
|
+
readonly identitytopuptransition_set_user_fee_increase: (a: number, b: number) => void;
|
|
2402
|
+
readonly identitytopuptransition_struct_name: () => [number, number];
|
|
2403
|
+
readonly identitytopuptransition_toBase64: (a: number) => [number, number, number, number];
|
|
2404
|
+
readonly identitytopuptransition_toBytes: (a: number) => [number, number, number, number];
|
|
2405
|
+
readonly identitytopuptransition_toHex: (a: number) => [number, number, number, number];
|
|
2406
|
+
readonly identitytopuptransition_toJSON: (a: number) => [number, number, number];
|
|
2407
|
+
readonly identitytopuptransition_toObject: (a: number) => [number, number, number];
|
|
2408
|
+
readonly identitytopuptransition_toStateTransition: (a: number) => number;
|
|
2409
|
+
readonly identitytopuptransition_type_name: (a: number) => [number, number];
|
|
2410
|
+
readonly instantassetlockproof_createIdentityId: (a: number) => [number, number, number];
|
|
2411
|
+
readonly instantassetlockproof_fromJSON: (a: any) => [number, number, number];
|
|
2412
|
+
readonly instantassetlockproof_fromObject: (a: any) => [number, number, number];
|
|
2413
|
+
readonly instantassetlockproof_getOutPoint: (a: number) => number;
|
|
2414
|
+
readonly instantassetlockproof_getOutput: (a: number) => [number, number];
|
|
2415
|
+
readonly instantassetlockproof_getTransaction: (a: number) => [number, number];
|
|
2416
|
+
readonly instantassetlockproof_get_instant_lock: (a: number) => [number, number];
|
|
2417
|
+
readonly instantassetlockproof_get_output_index: (a: number) => number;
|
|
2418
|
+
readonly instantassetlockproof_new: (a: number, b: number, c: number, d: number, e: number) => [number, number, number];
|
|
2419
|
+
readonly instantassetlockproof_set_instant_lock: (a: number, b: number, c: number) => [number, number];
|
|
2420
|
+
readonly instantassetlockproof_set_output_index: (a: number, b: number) => void;
|
|
2421
|
+
readonly instantassetlockproof_struct_name: () => [number, number];
|
|
2422
|
+
readonly instantassetlockproof_toJSON: (a: number) => [number, number, number];
|
|
2423
|
+
readonly instantassetlockproof_toObject: (a: number) => [number, number, number];
|
|
2424
|
+
readonly instantassetlockproof_type_name: (a: number) => [number, number];
|
|
2425
|
+
readonly outpoint_fromBase64: (a: number, b: number) => [number, number, number];
|
|
2426
|
+
readonly outpoint_fromBytes: (a: number, b: number) => number;
|
|
2427
|
+
readonly outpoint_fromHex: (a: number, b: number) => [number, number, number];
|
|
2428
|
+
readonly outpoint_getTXID: (a: number) => [number, number];
|
|
2429
|
+
readonly outpoint_getVOUT: (a: number) => number;
|
|
2430
|
+
readonly outpoint_new: (a: number, b: number, c: number) => [number, number, number];
|
|
2431
|
+
readonly outpoint_struct_name: () => [number, number];
|
|
2432
|
+
readonly outpoint_toBase64: (a: number) => [number, number];
|
|
2433
|
+
readonly outpoint_toBytes: (a: number) => [number, number];
|
|
2434
|
+
readonly outpoint_toHex: (a: number) => [number, number];
|
|
2435
|
+
readonly outpoint_type_name: (a: number) => [number, number];
|
|
2436
|
+
readonly prefundedvotingbalance_credits: (a: number) => bigint;
|
|
2437
|
+
readonly prefundedvotingbalance_indexName: (a: number) => [number, number];
|
|
2438
|
+
readonly prefundedvotingbalance_new: (a: number, b: number, c: bigint) => number;
|
|
2439
|
+
readonly prefundedvotingbalance_struct_name: () => [number, number];
|
|
2440
|
+
readonly prefundedvotingbalance_type_name: (a: number) => [number, number];
|
|
2441
|
+
readonly privatekey_WIF: (a: number) => [number, number];
|
|
2442
|
+
readonly privatekey_fromBytes: (a: number, b: number, c: any) => [number, number, number];
|
|
2443
|
+
readonly privatekey_fromHex: (a: number, b: number, c: any) => [number, number, number];
|
|
2444
|
+
readonly privatekey_fromWIF: (a: number, b: number) => [number, number, number];
|
|
2445
|
+
readonly privatekey_getPublicKey: (a: number) => number;
|
|
2446
|
+
readonly privatekey_getPublicKeyHash: (a: number) => [number, number];
|
|
2447
|
+
readonly privatekey_struct_name: () => [number, number];
|
|
2448
|
+
readonly privatekey_toBytes: (a: number) => [number, number];
|
|
2449
|
+
readonly privatekey_toHex: (a: number) => [number, number];
|
|
2450
|
+
readonly privatekey_type_name: (a: number) => [number, number];
|
|
2451
|
+
readonly __wbg_contractbounds_free: (a: number, b: number) => void;
|
|
2452
|
+
readonly __wbg_datacontractupdatetransition_free: (a: number, b: number) => void;
|
|
2572
2453
|
readonly __wbg_identity_free: (a: number, b: number) => void;
|
|
2573
2454
|
readonly __wbg_identitypublickey_free: (a: number, b: number) => void;
|
|
2574
|
-
readonly
|
|
2455
|
+
readonly __wbg_identitysigner_free: (a: number, b: number) => void;
|
|
2456
|
+
readonly __wbg_platformaddressinput_free: (a: number, b: number) => void;
|
|
2457
|
+
readonly __wbg_platformaddressoutput_free: (a: number, b: number) => void;
|
|
2458
|
+
readonly __wbg_platformaddresssigner_free: (a: number, b: number) => void;
|
|
2575
2459
|
readonly __wbg_publickey_free: (a: number, b: number) => void;
|
|
2576
|
-
readonly
|
|
2577
|
-
readonly
|
|
2578
|
-
readonly
|
|
2579
|
-
readonly
|
|
2580
|
-
readonly
|
|
2581
|
-
readonly
|
|
2582
|
-
readonly
|
|
2583
|
-
readonly
|
|
2584
|
-
readonly
|
|
2585
|
-
readonly
|
|
2586
|
-
readonly
|
|
2587
|
-
readonly
|
|
2588
|
-
readonly
|
|
2589
|
-
readonly
|
|
2590
|
-
readonly
|
|
2591
|
-
readonly
|
|
2592
|
-
readonly
|
|
2593
|
-
readonly
|
|
2460
|
+
readonly __wbg_tokendistributionrecipient_free: (a: number, b: number) => void;
|
|
2461
|
+
readonly contractbounds_SingleContract: (a: any) => [number, number, number];
|
|
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];
|
|
2594
2496
|
readonly identity_addPublicKey: (a: number, b: number) => void;
|
|
2595
2497
|
readonly identity_fromBase64: (a: number, b: number) => [number, number, number];
|
|
2596
2498
|
readonly identity_fromBytes: (a: number, b: number) => [number, number, number];
|
|
@@ -2650,19 +2552,23 @@ export interface InitOutput {
|
|
|
2650
2552
|
readonly identitypublickey_toObject: (a: number) => [number, number, number];
|
|
2651
2553
|
readonly identitypublickey_type_name: (a: number) => [number, number];
|
|
2652
2554
|
readonly identitypublickey_validatePrivateKey: (a: number, b: number, c: number, d: any) => [number, number, number];
|
|
2653
|
-
readonly
|
|
2654
|
-
readonly
|
|
2655
|
-
readonly
|
|
2656
|
-
readonly
|
|
2657
|
-
readonly
|
|
2658
|
-
readonly
|
|
2659
|
-
readonly
|
|
2660
|
-
readonly
|
|
2661
|
-
readonly
|
|
2662
|
-
readonly
|
|
2663
|
-
readonly
|
|
2664
|
-
readonly
|
|
2665
|
-
readonly
|
|
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];
|
|
2666
2572
|
readonly publickey_compressed: (a: number) => number;
|
|
2667
2573
|
readonly publickey_fromBytes: (a: number, b: number) => [number, number, number];
|
|
2668
2574
|
readonly publickey_getPublicKeyHash: (a: number) => [number, number];
|
|
@@ -2673,58 +2579,36 @@ export interface InitOutput {
|
|
|
2673
2579
|
readonly publickey_struct_name: () => [number, number];
|
|
2674
2580
|
readonly publickey_toBytes: (a: number) => [number, number];
|
|
2675
2581
|
readonly publickey_type_name: (a: number) => [number, number];
|
|
2676
|
-
readonly
|
|
2677
|
-
readonly
|
|
2678
|
-
readonly
|
|
2679
|
-
readonly
|
|
2680
|
-
readonly
|
|
2681
|
-
readonly
|
|
2682
|
-
readonly
|
|
2683
|
-
readonly
|
|
2684
|
-
readonly
|
|
2685
|
-
readonly
|
|
2686
|
-
readonly __wbg_set_distributioninvertedlogarithmic_m: (a: number, b: bigint) => void;
|
|
2687
|
-
readonly __wbg_set_distributioninvertedlogarithmic_n: (a: number, b: bigint) => void;
|
|
2688
|
-
readonly __wbg_set_distributioninvertedlogarithmic_o: (a: number, b: bigint) => void;
|
|
2689
|
-
readonly __wbg_set_distributionlinear_a: (a: number, b: bigint) => void;
|
|
2690
|
-
readonly __wbg_set_distributionlinear_d: (a: number, b: bigint) => void;
|
|
2691
|
-
readonly __wbg_set_distributionlinear_startingAmount: (a: number, b: bigint) => void;
|
|
2692
|
-
readonly __wbg_set_distributionlogarithmic_a: (a: number, b: bigint) => void;
|
|
2693
|
-
readonly __wbg_set_distributionlogarithmic_b: (a: number, b: bigint) => void;
|
|
2694
|
-
readonly __wbg_set_distributionlogarithmic_d: (a: number, b: bigint) => void;
|
|
2695
|
-
readonly __wbg_set_distributionlogarithmic_m: (a: number, b: bigint) => void;
|
|
2696
|
-
readonly __wbg_set_distributionlogarithmic_n: (a: number, b: bigint) => void;
|
|
2697
|
-
readonly __wbg_set_distributionlogarithmic_o: (a: number, b: bigint) => void;
|
|
2698
|
-
readonly __wbg_set_distributionpolynomial_a: (a: number, b: bigint) => void;
|
|
2699
|
-
readonly __wbg_set_distributionpolynomial_b: (a: number, b: bigint) => void;
|
|
2700
|
-
readonly __wbg_set_distributionpolynomial_d: (a: number, b: bigint) => void;
|
|
2701
|
-
readonly __wbg_set_distributionpolynomial_m: (a: number, b: bigint) => void;
|
|
2702
|
-
readonly __wbg_set_distributionpolynomial_n: (a: number, b: bigint) => void;
|
|
2703
|
-
readonly __wbg_set_distributionpolynomial_o: (a: number, b: bigint) => void;
|
|
2704
|
-
readonly __wbg_set_distributionrandom_min: (a: number, b: bigint) => void;
|
|
2705
|
-
readonly __wbg_set_distributioninvertedlogarithmic_maxValue: (a: number, b: number, c: bigint) => void;
|
|
2706
|
-
readonly __wbg_set_distributioninvertedlogarithmic_minValue: (a: number, b: number, c: bigint) => void;
|
|
2707
|
-
readonly __wbg_set_distributioninvertedlogarithmic_startMoment: (a: number, b: number, c: bigint) => void;
|
|
2708
|
-
readonly __wbg_set_distributionlinear_maxValue: (a: number, b: number, c: bigint) => void;
|
|
2709
|
-
readonly __wbg_set_distributionlinear_minValue: (a: number, b: number, c: bigint) => void;
|
|
2710
|
-
readonly __wbg_set_distributionlinear_startStep: (a: number, b: number, c: bigint) => void;
|
|
2711
|
-
readonly __wbg_set_distributionlogarithmic_maxValue: (a: number, b: number, c: bigint) => void;
|
|
2712
|
-
readonly __wbg_set_distributionlogarithmic_minValue: (a: number, b: number, c: bigint) => void;
|
|
2713
|
-
readonly __wbg_set_distributionlogarithmic_startMoment: (a: number, b: number, c: bigint) => void;
|
|
2714
|
-
readonly __wbg_set_distributionpolynomial_maxValue: (a: number, b: number, c: bigint) => void;
|
|
2715
|
-
readonly __wbg_set_distributionpolynomial_minValue: (a: number, b: number, c: bigint) => void;
|
|
2716
|
-
readonly __wbg_set_distributionpolynomial_startMoment: (a: number, b: number, c: bigint) => void;
|
|
2717
|
-
readonly __wbg_set_distributionstepdecreasingamount_minValue: (a: number, b: number, c: bigint) => void;
|
|
2718
|
-
readonly __wbg_set_distributionstepdecreasingamount_startDecreasingOffset: (a: number, b: number, c: bigint) => void;
|
|
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;
|
|
2719
2592
|
readonly __wbg_chainassetlockproof_free: (a: number, b: number) => void;
|
|
2720
|
-
readonly
|
|
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;
|
|
2721
2598
|
readonly __wbg_group_free: (a: number, b: number) => void;
|
|
2722
|
-
readonly
|
|
2723
|
-
readonly __wbg_identitypublickeyincreation_free: (a: number, b: number) => void;
|
|
2724
|
-
readonly __wbg_identitytopuptransition_free: (a: number, b: number) => void;
|
|
2725
|
-
readonly __wbg_masternodevotetransition_free: (a: number, b: number) => void;
|
|
2599
|
+
readonly __wbg_platformaddress_free: (a: number, b: number) => void;
|
|
2726
2600
|
readonly __wbg_resourcevotechoice_free: (a: number, b: number) => void;
|
|
2727
|
-
readonly
|
|
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];
|
|
2728
2612
|
readonly chainassetlockproof_createIdentityId: (a: number) => number;
|
|
2729
2613
|
readonly chainassetlockproof_fromBytes: (a: number, b: number) => [number, number, number];
|
|
2730
2614
|
readonly chainassetlockproof_fromJSON: (a: any) => [number, number, number];
|
|
@@ -2739,21 +2623,60 @@ export interface InitOutput {
|
|
|
2739
2623
|
readonly chainassetlockproof_toJSON: (a: number) => [number, number, number];
|
|
2740
2624
|
readonly chainassetlockproof_toObject: (a: number) => [number, number, number];
|
|
2741
2625
|
readonly chainassetlockproof_type_name: (a: number) => [number, number];
|
|
2742
|
-
readonly
|
|
2743
|
-
readonly
|
|
2744
|
-
readonly
|
|
2745
|
-
readonly
|
|
2746
|
-
readonly
|
|
2747
|
-
readonly
|
|
2748
|
-
readonly
|
|
2749
|
-
readonly
|
|
2750
|
-
readonly
|
|
2751
|
-
readonly
|
|
2752
|
-
readonly
|
|
2753
|
-
readonly
|
|
2754
|
-
readonly
|
|
2755
|
-
readonly
|
|
2756
|
-
readonly
|
|
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];
|
|
2757
2680
|
readonly group_fromJSON: (a: any) => [number, number, number];
|
|
2758
2681
|
readonly group_fromObject: (a: any) => [number, number, number];
|
|
2759
2682
|
readonly group_get_members: (a: number) => [number, number, number];
|
|
@@ -2765,114 +2688,22 @@ export interface InitOutput {
|
|
|
2765
2688
|
readonly group_struct_name: () => [number, number];
|
|
2766
2689
|
readonly group_toJSON: (a: number) => [number, number, number];
|
|
2767
2690
|
readonly group_type_name: (a: number) => [number, number];
|
|
2768
|
-
readonly
|
|
2769
|
-
readonly
|
|
2770
|
-
readonly
|
|
2771
|
-
readonly
|
|
2772
|
-
readonly
|
|
2773
|
-
readonly
|
|
2774
|
-
readonly
|
|
2775
|
-
readonly
|
|
2776
|
-
readonly
|
|
2777
|
-
readonly
|
|
2778
|
-
readonly
|
|
2779
|
-
readonly
|
|
2780
|
-
readonly
|
|
2781
|
-
readonly
|
|
2782
|
-
readonly
|
|
2783
|
-
readonly
|
|
2784
|
-
readonly identitycreatetransition_set_signature: (a: number, b: number, c: number) => void;
|
|
2785
|
-
readonly identitycreatetransition_set_user_fee_increase: (a: number, b: number) => void;
|
|
2786
|
-
readonly identitycreatetransition_struct_name: () => [number, number];
|
|
2787
|
-
readonly identitycreatetransition_toBase64: (a: number) => [number, number, number, number];
|
|
2788
|
-
readonly identitycreatetransition_toBytes: (a: number) => [number, number, number, number];
|
|
2789
|
-
readonly identitycreatetransition_toHex: (a: number) => [number, number, number, number];
|
|
2790
|
-
readonly identitycreatetransition_toJSON: (a: number) => [number, number, number];
|
|
2791
|
-
readonly identitycreatetransition_toObject: (a: number) => [number, number, number];
|
|
2792
|
-
readonly identitycreatetransition_toStateTransition: (a: number) => number;
|
|
2793
|
-
readonly identitycreatetransition_type_name: (a: number) => [number, number];
|
|
2794
|
-
readonly identitypublickeyincreation_fromJSON: (a: any) => [number, number, number];
|
|
2795
|
-
readonly identitypublickeyincreation_fromObject: (a: any) => [number, number, number];
|
|
2796
|
-
readonly identitypublickeyincreation_getHash: (a: number) => [number, number, number, number];
|
|
2797
|
-
readonly identitypublickeyincreation_get_contract_bounds: (a: number) => number;
|
|
2798
|
-
readonly identitypublickeyincreation_get_data: (a: number) => [number, number];
|
|
2799
|
-
readonly identitypublickeyincreation_get_key_id: (a: number) => number;
|
|
2800
|
-
readonly identitypublickeyincreation_get_key_type: (a: number) => [number, number];
|
|
2801
|
-
readonly identitypublickeyincreation_get_purpose: (a: number) => [number, number];
|
|
2802
|
-
readonly identitypublickeyincreation_get_read_only: (a: number) => number;
|
|
2803
|
-
readonly identitypublickeyincreation_get_security_level: (a: number) => [number, number];
|
|
2804
|
-
readonly identitypublickeyincreation_get_signature: (a: number) => [number, number];
|
|
2805
|
-
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];
|
|
2806
|
-
readonly identitypublickeyincreation_set_contract_bounds: (a: number, b: any) => [number, number];
|
|
2807
|
-
readonly identitypublickeyincreation_set_data: (a: number, b: number, c: number) => void;
|
|
2808
|
-
readonly identitypublickeyincreation_set_key_id: (a: number, b: number) => void;
|
|
2809
|
-
readonly identitypublickeyincreation_set_key_type: (a: number, b: any) => [number, number];
|
|
2810
|
-
readonly identitypublickeyincreation_set_purpose: (a: number, b: any) => [number, number];
|
|
2811
|
-
readonly identitypublickeyincreation_set_read_only: (a: number, b: number) => void;
|
|
2812
|
-
readonly identitypublickeyincreation_set_security_level: (a: number, b: any) => [number, number];
|
|
2813
|
-
readonly identitypublickeyincreation_set_signature: (a: number, b: number, c: number) => void;
|
|
2814
|
-
readonly identitypublickeyincreation_struct_name: () => [number, number];
|
|
2815
|
-
readonly identitypublickeyincreation_toIdentityPublicKey: (a: number) => [number, number, number];
|
|
2816
|
-
readonly identitypublickeyincreation_toJSON: (a: number) => [number, number, number];
|
|
2817
|
-
readonly identitypublickeyincreation_toObject: (a: number) => [number, number, number];
|
|
2818
|
-
readonly identitypublickeyincreation_type_name: (a: number) => [number, number];
|
|
2819
|
-
readonly identitytopuptransition_fromBase64: (a: number, b: number) => [number, number, number];
|
|
2820
|
-
readonly identitytopuptransition_fromBytes: (a: number, b: number) => [number, number, number];
|
|
2821
|
-
readonly identitytopuptransition_fromHex: (a: number, b: number) => [number, number, number];
|
|
2822
|
-
readonly identitytopuptransition_fromJSON: (a: any) => [number, number, number];
|
|
2823
|
-
readonly identitytopuptransition_fromObject: (a: any) => [number, number, number];
|
|
2824
|
-
readonly identitytopuptransition_fromStateTransition: (a: number) => [number, number, number];
|
|
2825
|
-
readonly identitytopuptransition_getModifiedDataIds: (a: number) => [number, number];
|
|
2826
|
-
readonly identitytopuptransition_getOptionalAssetLockProof: (a: number) => any;
|
|
2827
|
-
readonly identitytopuptransition_getSignableBytes: (a: number) => [number, number, number, number];
|
|
2828
|
-
readonly identitytopuptransition_get_asset_lock_proof: (a: number) => number;
|
|
2829
|
-
readonly identitytopuptransition_get_identity_identifier: (a: number) => number;
|
|
2830
|
-
readonly identitytopuptransition_get_signature: (a: number) => [number, number];
|
|
2831
|
-
readonly identitytopuptransition_get_user_fee_increase: (a: number) => number;
|
|
2832
|
-
readonly identitytopuptransition_new: (a: number, b: any, c: number) => [number, number, number];
|
|
2833
|
-
readonly identitytopuptransition_set_asset_lock_proof: (a: number, b: number) => [number, number];
|
|
2834
|
-
readonly identitytopuptransition_set_identity_identifier: (a: number, b: any) => [number, number];
|
|
2835
|
-
readonly identitytopuptransition_set_signature: (a: number, b: number, c: number) => void;
|
|
2836
|
-
readonly identitytopuptransition_set_user_fee_increase: (a: number, b: number) => void;
|
|
2837
|
-
readonly identitytopuptransition_struct_name: () => [number, number];
|
|
2838
|
-
readonly identitytopuptransition_toBase64: (a: number) => [number, number, number, number];
|
|
2839
|
-
readonly identitytopuptransition_toBytes: (a: number) => [number, number, number, number];
|
|
2840
|
-
readonly identitytopuptransition_toHex: (a: number) => [number, number, number, number];
|
|
2841
|
-
readonly identitytopuptransition_toJSON: (a: number) => [number, number, number];
|
|
2842
|
-
readonly identitytopuptransition_toObject: (a: number) => [number, number, number];
|
|
2843
|
-
readonly identitytopuptransition_toStateTransition: (a: number) => number;
|
|
2844
|
-
readonly identitytopuptransition_type_name: (a: number) => [number, number];
|
|
2845
|
-
readonly masternodevotetransition_fromBase64: (a: number, b: number) => [number, number, number];
|
|
2846
|
-
readonly masternodevotetransition_fromBytes: (a: number, b: number) => [number, number, number];
|
|
2847
|
-
readonly masternodevotetransition_fromHex: (a: number, b: number) => [number, number, number];
|
|
2848
|
-
readonly masternodevotetransition_fromJSON: (a: any) => [number, number, number];
|
|
2849
|
-
readonly masternodevotetransition_fromObject: (a: any) => [number, number, number];
|
|
2850
|
-
readonly masternodevotetransition_fromStateTransition: (a: number) => [number, number, number];
|
|
2851
|
-
readonly masternodevotetransition_getSignableBytes: (a: number) => [number, number, number, number];
|
|
2852
|
-
readonly masternodevotetransition_get_asset_lock_proof: (a: number) => number;
|
|
2853
|
-
readonly masternodevotetransition_get_modified_data_ids: (a: number) => [number, number];
|
|
2854
|
-
readonly masternodevotetransition_new: (a: any, b: any, c: number, d: bigint, e: number, f: number, g: number) => [number, number, number];
|
|
2855
|
-
readonly masternodevotetransition_nonce: (a: number) => bigint;
|
|
2856
|
-
readonly masternodevotetransition_pro_tx_hash: (a: number) => number;
|
|
2857
|
-
readonly masternodevotetransition_set_nonce: (a: number, b: bigint) => void;
|
|
2858
|
-
readonly masternodevotetransition_set_pro_tx_hash: (a: number, b: any) => [number, number];
|
|
2859
|
-
readonly masternodevotetransition_set_signature: (a: number, b: number, c: number) => void;
|
|
2860
|
-
readonly masternodevotetransition_set_signature_public_key_id: (a: number, b: number) => void;
|
|
2861
|
-
readonly masternodevotetransition_set_user_fee_increase: (a: number, b: number) => void;
|
|
2862
|
-
readonly masternodevotetransition_set_vote: (a: number, b: number) => void;
|
|
2863
|
-
readonly masternodevotetransition_set_voter_identity_id: (a: number, b: any) => [number, number];
|
|
2864
|
-
readonly masternodevotetransition_signature: (a: number) => [number, number];
|
|
2865
|
-
readonly masternodevotetransition_signature_public_key_id: (a: number) => number;
|
|
2866
|
-
readonly masternodevotetransition_struct_name: () => [number, number];
|
|
2867
|
-
readonly masternodevotetransition_toBase64: (a: number) => [number, number, number, number];
|
|
2868
|
-
readonly masternodevotetransition_toBytes: (a: number) => [number, number, number, number];
|
|
2869
|
-
readonly masternodevotetransition_toHex: (a: number) => [number, number, number, number];
|
|
2870
|
-
readonly masternodevotetransition_toJSON: (a: number) => [number, number, number];
|
|
2871
|
-
readonly masternodevotetransition_toObject: (a: number) => [number, number, number];
|
|
2872
|
-
readonly masternodevotetransition_toStateTransition: (a: number) => number;
|
|
2873
|
-
readonly masternodevotetransition_type_name: (a: number) => [number, number];
|
|
2874
|
-
readonly masternodevotetransition_vote: (a: number) => number;
|
|
2875
|
-
readonly masternodevotetransition_voter_identity_id: (a: 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];
|
|
2876
2707
|
readonly resourcevotechoice_Abstain: () => number;
|
|
2877
2708
|
readonly resourcevotechoice_Lock: () => number;
|
|
2878
2709
|
readonly resourcevotechoice_TowardsIdentity: (a: any) => [number, number, number];
|
|
@@ -2884,58 +2715,121 @@ export interface InitOutput {
|
|
|
2884
2715
|
readonly resourcevotechoice_toJSON: (a: number) => [number, number, number];
|
|
2885
2716
|
readonly resourcevotechoice_toObject: (a: number) => [number, number, number];
|
|
2886
2717
|
readonly resourcevotechoice_type_name: (a: number) => [number, number];
|
|
2887
|
-
readonly
|
|
2888
|
-
readonly
|
|
2889
|
-
readonly
|
|
2890
|
-
readonly
|
|
2891
|
-
readonly
|
|
2892
|
-
readonly
|
|
2893
|
-
readonly vote_set_vote_poll: (a: number, b: number) => void;
|
|
2894
|
-
readonly vote_struct_name: () => [number, number];
|
|
2895
|
-
readonly vote_toJSON: (a: number) => [number, number, number];
|
|
2896
|
-
readonly vote_toObject: (a: number) => [number, number, number];
|
|
2897
|
-
readonly vote_type_name: (a: number) => [number, number];
|
|
2898
|
-
readonly vote_vote_poll: (a: 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];
|
|
2899
2724
|
readonly group_toObject: (a: number) => [number, number, number];
|
|
2900
|
-
readonly
|
|
2901
|
-
readonly
|
|
2902
|
-
readonly
|
|
2903
|
-
readonly
|
|
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;
|
|
2904
2805
|
readonly __wbg_tokenconfigupdatetransition_free: (a: number, b: number) => void;
|
|
2806
|
+
readonly __wbg_tokenconfiguration_free: (a: number, b: number) => void;
|
|
2905
2807
|
readonly __wbg_tokenconfigurationchangeitem_free: (a: number, b: number) => void;
|
|
2906
|
-
readonly
|
|
2907
|
-
readonly
|
|
2908
|
-
readonly
|
|
2909
|
-
readonly
|
|
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;
|
|
2910
2815
|
readonly __wbg_tokentransition_free: (a: number, b: number) => void;
|
|
2911
|
-
readonly
|
|
2912
|
-
readonly
|
|
2913
|
-
readonly
|
|
2914
|
-
readonly
|
|
2915
|
-
readonly
|
|
2916
|
-
readonly
|
|
2917
|
-
readonly
|
|
2918
|
-
readonly
|
|
2919
|
-
readonly
|
|
2920
|
-
readonly
|
|
2921
|
-
readonly
|
|
2922
|
-
readonly
|
|
2923
|
-
readonly
|
|
2924
|
-
readonly
|
|
2925
|
-
readonly
|
|
2926
|
-
readonly
|
|
2927
|
-
readonly
|
|
2928
|
-
readonly groupaction_token_contract_position: (a: number) => number;
|
|
2929
|
-
readonly groupaction_type_name: (a: number) => [number, number];
|
|
2930
|
-
readonly tokenburntransition_get_base: (a: number) => number;
|
|
2931
|
-
readonly tokenburntransition_get_burn_amount: (a: number) => bigint;
|
|
2932
|
-
readonly tokenburntransition_get_public_note: (a: number) => [number, number];
|
|
2933
|
-
readonly tokenburntransition_new: (a: number, b: bigint, c: number, d: number) => [number, number, number];
|
|
2934
|
-
readonly tokenburntransition_set_base: (a: number, b: number) => void;
|
|
2935
|
-
readonly tokenburntransition_set_burn_amount: (a: number, b: bigint) => void;
|
|
2936
|
-
readonly tokenburntransition_set_public_note: (a: number, b: number, c: number) => void;
|
|
2937
|
-
readonly tokenburntransition_struct_name: () => [number, number];
|
|
2938
|
-
readonly tokenburntransition_type_name: (a: number) => [number, number];
|
|
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];
|
|
2939
2833
|
readonly tokenconfigupdatetransition_get_base: (a: number) => number;
|
|
2940
2834
|
readonly tokenconfigupdatetransition_get_public_note: (a: number) => [number, number];
|
|
2941
2835
|
readonly tokenconfigupdatetransition_get_update_token_configuration_item: (a: number) => number;
|
|
@@ -2945,78 +2839,217 @@ export interface InitOutput {
|
|
|
2945
2839
|
readonly tokenconfigupdatetransition_set_update_token_configuration_item: (a: number, b: number) => void;
|
|
2946
2840
|
readonly tokenconfigupdatetransition_struct_name: () => [number, number];
|
|
2947
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];
|
|
2948
2884
|
readonly tokenconfigurationchangeitem_getItem: (a: number) => any;
|
|
2949
2885
|
readonly tokenconfigurationchangeitem_getItemName: (a: number) => [number, number];
|
|
2950
|
-
readonly tokenconfigurationchangeitem_noChangeItem: () => number;
|
|
2951
2886
|
readonly tokenconfigurationchangeitem_struct_name: () => [number, number];
|
|
2952
2887
|
readonly tokenconfigurationchangeitem_type_name: (a: number) => [number, number];
|
|
2953
|
-
readonly
|
|
2954
|
-
readonly
|
|
2955
|
-
readonly
|
|
2956
|
-
readonly
|
|
2957
|
-
readonly
|
|
2958
|
-
readonly
|
|
2959
|
-
readonly
|
|
2960
|
-
readonly
|
|
2961
|
-
readonly
|
|
2962
|
-
readonly
|
|
2963
|
-
readonly
|
|
2964
|
-
readonly
|
|
2965
|
-
readonly
|
|
2966
|
-
readonly
|
|
2967
|
-
readonly
|
|
2968
|
-
readonly
|
|
2969
|
-
readonly
|
|
2970
|
-
readonly
|
|
2971
|
-
readonly
|
|
2972
|
-
readonly
|
|
2973
|
-
readonly
|
|
2974
|
-
readonly
|
|
2975
|
-
readonly
|
|
2976
|
-
readonly
|
|
2977
|
-
readonly
|
|
2978
|
-
readonly
|
|
2979
|
-
readonly
|
|
2980
|
-
readonly
|
|
2981
|
-
readonly
|
|
2982
|
-
readonly
|
|
2983
|
-
readonly
|
|
2984
|
-
readonly
|
|
2985
|
-
readonly
|
|
2986
|
-
readonly
|
|
2987
|
-
readonly
|
|
2988
|
-
readonly
|
|
2989
|
-
readonly
|
|
2990
|
-
readonly
|
|
2991
|
-
readonly
|
|
2992
|
-
readonly
|
|
2993
|
-
readonly
|
|
2994
|
-
readonly
|
|
2995
|
-
readonly
|
|
2996
|
-
readonly
|
|
2997
|
-
readonly
|
|
2998
|
-
readonly
|
|
2999
|
-
readonly
|
|
3000
|
-
readonly
|
|
3001
|
-
readonly
|
|
3002
|
-
readonly
|
|
3003
|
-
readonly
|
|
3004
|
-
readonly
|
|
3005
|
-
readonly
|
|
3006
|
-
readonly
|
|
3007
|
-
readonly
|
|
3008
|
-
readonly
|
|
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;
|
|
3009
3041
|
readonly __wbg_batchtransition_free: (a: number, b: number) => void;
|
|
3010
|
-
readonly
|
|
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;
|
|
3011
3045
|
readonly __wbg_documenttransition_free: (a: number, b: number) => void;
|
|
3046
|
+
readonly __wbg_groupaction_free: (a: number, b: number) => void;
|
|
3012
3047
|
readonly __wbg_groupactionevent_free: (a: number, b: number) => void;
|
|
3013
|
-
readonly
|
|
3014
|
-
readonly
|
|
3015
|
-
readonly
|
|
3016
|
-
readonly
|
|
3017
|
-
readonly
|
|
3018
|
-
readonly __wbg_tokenemergencyactiontransition_free: (a: number, b: number) => void;
|
|
3019
|
-
readonly __wbg_tokenevent_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;
|
|
3020
3053
|
readonly batchedtransition_data_contract_id: (a: number) => number;
|
|
3021
3054
|
readonly batchedtransition_new: (a: any) => [number, number, number];
|
|
3022
3055
|
readonly batchedtransition_set_data_contract_id: (a: number, b: any) => [number, number];
|
|
@@ -3049,149 +3082,294 @@ export interface InitOutput {
|
|
|
3049
3082
|
readonly batchtransition_toObject: (a: number) => [number, number, number];
|
|
3050
3083
|
readonly batchtransition_toStateTransition: (a: number) => number;
|
|
3051
3084
|
readonly batchtransition_type_name: (a: number) => [number, number];
|
|
3052
|
-
readonly
|
|
3053
|
-
readonly
|
|
3054
|
-
readonly
|
|
3055
|
-
readonly
|
|
3056
|
-
readonly
|
|
3057
|
-
readonly
|
|
3058
|
-
readonly
|
|
3059
|
-
readonly
|
|
3060
|
-
readonly
|
|
3061
|
-
readonly
|
|
3062
|
-
readonly
|
|
3063
|
-
readonly
|
|
3064
|
-
readonly
|
|
3065
|
-
readonly
|
|
3066
|
-
readonly
|
|
3067
|
-
readonly
|
|
3068
|
-
readonly
|
|
3069
|
-
readonly
|
|
3070
|
-
readonly
|
|
3071
|
-
readonly
|
|
3072
|
-
readonly
|
|
3073
|
-
readonly
|
|
3074
|
-
readonly
|
|
3075
|
-
readonly
|
|
3076
|
-
readonly
|
|
3077
|
-
readonly
|
|
3078
|
-
readonly
|
|
3079
|
-
readonly
|
|
3080
|
-
readonly
|
|
3081
|
-
readonly
|
|
3082
|
-
readonly
|
|
3083
|
-
readonly
|
|
3084
|
-
readonly
|
|
3085
|
-
readonly
|
|
3086
|
-
readonly
|
|
3087
|
-
readonly
|
|
3088
|
-
readonly
|
|
3089
|
-
readonly
|
|
3090
|
-
readonly
|
|
3091
|
-
readonly
|
|
3092
|
-
readonly
|
|
3093
|
-
readonly
|
|
3094
|
-
readonly
|
|
3095
|
-
readonly
|
|
3096
|
-
readonly
|
|
3097
|
-
readonly
|
|
3098
|
-
readonly
|
|
3099
|
-
readonly
|
|
3100
|
-
readonly
|
|
3101
|
-
readonly
|
|
3102
|
-
readonly
|
|
3103
|
-
readonly
|
|
3104
|
-
readonly
|
|
3105
|
-
readonly
|
|
3106
|
-
readonly
|
|
3107
|
-
readonly
|
|
3108
|
-
readonly
|
|
3109
|
-
readonly
|
|
3110
|
-
readonly
|
|
3111
|
-
readonly
|
|
3112
|
-
readonly
|
|
3113
|
-
readonly
|
|
3114
|
-
readonly
|
|
3115
|
-
readonly
|
|
3116
|
-
readonly
|
|
3117
|
-
readonly
|
|
3118
|
-
readonly
|
|
3119
|
-
readonly
|
|
3120
|
-
readonly
|
|
3121
|
-
readonly
|
|
3122
|
-
readonly
|
|
3123
|
-
readonly
|
|
3124
|
-
readonly
|
|
3125
|
-
readonly
|
|
3126
|
-
readonly
|
|
3127
|
-
readonly
|
|
3128
|
-
readonly
|
|
3129
|
-
readonly
|
|
3130
|
-
readonly
|
|
3131
|
-
readonly
|
|
3132
|
-
readonly
|
|
3133
|
-
readonly
|
|
3134
|
-
readonly
|
|
3135
|
-
readonly
|
|
3136
|
-
readonly
|
|
3137
|
-
readonly
|
|
3138
|
-
readonly
|
|
3139
|
-
readonly
|
|
3140
|
-
readonly
|
|
3141
|
-
readonly
|
|
3142
|
-
readonly
|
|
3143
|
-
readonly
|
|
3144
|
-
readonly
|
|
3145
|
-
readonly
|
|
3146
|
-
readonly
|
|
3147
|
-
readonly
|
|
3148
|
-
readonly
|
|
3149
|
-
readonly
|
|
3150
|
-
readonly
|
|
3151
|
-
readonly
|
|
3152
|
-
readonly
|
|
3153
|
-
readonly
|
|
3154
|
-
readonly
|
|
3155
|
-
readonly
|
|
3156
|
-
readonly
|
|
3157
|
-
readonly
|
|
3158
|
-
readonly
|
|
3159
|
-
readonly
|
|
3160
|
-
readonly
|
|
3161
|
-
readonly
|
|
3162
|
-
readonly
|
|
3163
|
-
readonly
|
|
3164
|
-
readonly
|
|
3165
|
-
readonly
|
|
3166
|
-
readonly
|
|
3167
|
-
readonly
|
|
3168
|
-
readonly
|
|
3169
|
-
readonly
|
|
3170
|
-
readonly
|
|
3171
|
-
readonly
|
|
3172
|
-
readonly
|
|
3173
|
-
readonly
|
|
3174
|
-
readonly
|
|
3175
|
-
readonly
|
|
3176
|
-
readonly
|
|
3177
|
-
readonly
|
|
3178
|
-
readonly
|
|
3179
|
-
readonly
|
|
3180
|
-
readonly
|
|
3181
|
-
readonly
|
|
3182
|
-
readonly
|
|
3183
|
-
readonly
|
|
3184
|
-
readonly
|
|
3185
|
-
readonly
|
|
3186
|
-
readonly
|
|
3187
|
-
readonly
|
|
3188
|
-
readonly
|
|
3189
|
-
readonly
|
|
3190
|
-
readonly
|
|
3191
|
-
readonly
|
|
3192
|
-
readonly
|
|
3193
|
-
readonly
|
|
3194
|
-
readonly
|
|
3085
|
+
readonly datacontract_fromBase64: (a: number, b: number, c: number, d: any) => [number, number, number];
|
|
3086
|
+
readonly datacontract_fromBytes: (a: number, b: number, c: number, d: any) => [number, number, number];
|
|
3087
|
+
readonly datacontract_fromHex: (a: number, b: number, c: number, d: any) => [number, number, number];
|
|
3088
|
+
readonly datacontract_fromJSON: (a: any, b: number, c: any) => [number, number, number];
|
|
3089
|
+
readonly datacontract_fromObject: (a: any, b: number, c: any) => [number, number, number];
|
|
3090
|
+
readonly datacontract_from_js_values: (a: any, b: bigint, c: any, d: number, e: any, f: number, g: any) => [number, number, number];
|
|
3091
|
+
readonly datacontract_generateId: (a: any, b: bigint) => [number, number, number];
|
|
3092
|
+
readonly datacontract_getConfig: (a: number) => [number, number, number];
|
|
3093
|
+
readonly datacontract_getSchemas: (a: number) => [number, number, number];
|
|
3094
|
+
readonly datacontract_get_groups: (a: number) => [number, number, number];
|
|
3095
|
+
readonly datacontract_get_id: (a: number) => number;
|
|
3096
|
+
readonly datacontract_get_owner_id: (a: number) => number;
|
|
3097
|
+
readonly datacontract_get_tokens: (a: number) => [number, number, number];
|
|
3098
|
+
readonly datacontract_get_version: (a: number) => number;
|
|
3099
|
+
readonly datacontract_setConfig: (a: number, b: any, c: any) => [number, number];
|
|
3100
|
+
readonly datacontract_setSchemas: (a: number, b: any, c: number, d: number, e: any) => [number, number];
|
|
3101
|
+
readonly datacontract_set_groups: (a: number, b: any) => [number, number];
|
|
3102
|
+
readonly datacontract_set_id: (a: number, b: any) => [number, number];
|
|
3103
|
+
readonly datacontract_set_owner_id: (a: number, b: any) => [number, number];
|
|
3104
|
+
readonly datacontract_set_tokens: (a: number, b: any) => [number, number];
|
|
3105
|
+
readonly datacontract_set_version: (a: number, b: number) => void;
|
|
3106
|
+
readonly datacontract_struct_name: () => [number, number];
|
|
3107
|
+
readonly datacontract_toBase64: (a: number, b: any) => [number, number, number, number];
|
|
3108
|
+
readonly datacontract_toBytes: (a: number, b: any) => [number, number, number, number];
|
|
3109
|
+
readonly datacontract_toHex: (a: number, b: any) => [number, number, number, number];
|
|
3110
|
+
readonly datacontract_toJSON: (a: number, b: any) => [number, number, number];
|
|
3111
|
+
readonly datacontract_toObject: (a: number, b: any) => [number, number, number];
|
|
3112
|
+
readonly datacontract_type_name: (a: number) => [number, number];
|
|
3113
|
+
readonly document_constructor: (a: any, b: number, c: number, d: bigint, e: any, f: any, g: any) => [number, number, number];
|
|
3114
|
+
readonly document_fromBase64: (a: number, b: number, c: number, d: number, e: number, f: any) => [number, number, number];
|
|
3115
|
+
readonly document_fromBytes: (a: number, b: number, c: number, d: number, e: number, f: any) => [number, number, number];
|
|
3116
|
+
readonly document_fromHex: (a: number, b: number, c: number, d: number, e: number, f: any) => [number, number, number];
|
|
3117
|
+
readonly document_fromJSON: (a: any) => [number, number, number];
|
|
3118
|
+
readonly document_fromObject: (a: any) => [number, number, number];
|
|
3119
|
+
readonly document_generateId: (a: number, b: number, c: any, d: any, e: number, f: number) => [number, number, number, number];
|
|
3120
|
+
readonly document_get_created_at: (a: number) => [number, bigint];
|
|
3121
|
+
readonly document_get_created_at_block_height: (a: number) => [number, bigint];
|
|
3122
|
+
readonly document_get_created_at_core_block_height: (a: number) => number;
|
|
3123
|
+
readonly document_get_data_contract_id: (a: number) => number;
|
|
3124
|
+
readonly document_get_document_type_name: (a: number) => [number, number];
|
|
3125
|
+
readonly document_get_entropy: (a: number) => [number, number];
|
|
3126
|
+
readonly document_get_id: (a: number) => number;
|
|
3127
|
+
readonly document_get_owner_id: (a: number) => number;
|
|
3128
|
+
readonly document_get_properties: (a: number) => [number, number, number];
|
|
3129
|
+
readonly document_get_revision: (a: number) => [number, bigint];
|
|
3130
|
+
readonly document_get_transferred_at: (a: number) => [number, bigint];
|
|
3131
|
+
readonly document_get_transferred_at_block_height: (a: number) => [number, bigint];
|
|
3132
|
+
readonly document_get_transferred_at_core_block_height: (a: number) => number;
|
|
3133
|
+
readonly document_get_updated_at: (a: number) => [number, bigint];
|
|
3134
|
+
readonly document_get_updated_at_block_height: (a: number) => [number, bigint];
|
|
3135
|
+
readonly document_get_updated_at_core_block_height: (a: number) => number;
|
|
3136
|
+
readonly document_set_created_at: (a: number, b: number, c: bigint) => void;
|
|
3137
|
+
readonly document_set_created_at_block_height: (a: number, b: number, c: bigint) => void;
|
|
3138
|
+
readonly document_set_created_at_core_block_height: (a: number, b: number) => void;
|
|
3139
|
+
readonly document_set_document_type_name: (a: number, b: number, c: number) => void;
|
|
3140
|
+
readonly document_set_entropy: (a: number, b: any) => [number, number];
|
|
3141
|
+
readonly document_set_id: (a: number, b: any) => [number, number];
|
|
3142
|
+
readonly document_set_js_data_contract_id: (a: number, b: any) => [number, number];
|
|
3143
|
+
readonly document_set_owner_id: (a: number, b: any) => [number, number];
|
|
3144
|
+
readonly document_set_properties: (a: number, b: any) => [number, number];
|
|
3145
|
+
readonly document_set_revision: (a: number, b: number, c: bigint) => void;
|
|
3146
|
+
readonly document_set_transferred_at: (a: number, b: number, c: bigint) => void;
|
|
3147
|
+
readonly document_set_transferred_at_block_height: (a: number, b: number, c: bigint) => void;
|
|
3148
|
+
readonly document_set_transferred_at_core_block_height: (a: number, b: number) => void;
|
|
3149
|
+
readonly document_set_updated_at: (a: number, b: number, c: bigint) => void;
|
|
3150
|
+
readonly document_set_updated_at_block_height: (a: number, b: number, c: bigint) => void;
|
|
3151
|
+
readonly document_set_updated_at_core_block_height: (a: number, b: number) => void;
|
|
3152
|
+
readonly document_struct_name: () => [number, number];
|
|
3153
|
+
readonly document_toBase64: (a: number, b: number, c: any) => [number, number, number, number];
|
|
3154
|
+
readonly document_toBytes: (a: number, b: number, c: any) => [number, number, number, number];
|
|
3155
|
+
readonly document_toHex: (a: number, b: number, c: any) => [number, number, number, number];
|
|
3156
|
+
readonly document_toJSON: (a: number) => [number, number, number];
|
|
3157
|
+
readonly document_toObject: (a: number) => [number, number, number];
|
|
3158
|
+
readonly document_type_name: (a: number) => [number, number];
|
|
3159
|
+
readonly documentdeletetransition_fromDocumentTransition: (a: number) => [number, number, number];
|
|
3160
|
+
readonly documentdeletetransition_get_base: (a: number) => number;
|
|
3161
|
+
readonly documentdeletetransition_new: (a: number, b: bigint, c: any) => [number, number, number];
|
|
3162
|
+
readonly documentdeletetransition_set_base: (a: number, b: number) => void;
|
|
3163
|
+
readonly documentdeletetransition_struct_name: () => [number, number];
|
|
3164
|
+
readonly documentdeletetransition_toDocumentTransition: (a: number) => number;
|
|
3165
|
+
readonly documentdeletetransition_type_name: (a: number) => [number, number];
|
|
3166
|
+
readonly documenttransition_get_action_type: (a: number) => [number, number];
|
|
3167
|
+
readonly documenttransition_get_action_type_number: (a: number) => number;
|
|
3168
|
+
readonly documenttransition_get_create_transition: (a: number) => [number, number, number];
|
|
3169
|
+
readonly documenttransition_get_data_contract_id: (a: number) => number;
|
|
3170
|
+
readonly documenttransition_get_delete_transition: (a: number) => [number, number, number];
|
|
3171
|
+
readonly documenttransition_get_document_type_name: (a: number) => [number, number];
|
|
3172
|
+
readonly documenttransition_get_entropy: (a: number) => [number, number];
|
|
3173
|
+
readonly documenttransition_get_id: (a: number) => number;
|
|
3174
|
+
readonly documenttransition_get_identity_contract_nonce: (a: number) => bigint;
|
|
3175
|
+
readonly documenttransition_get_purchase_transition: (a: number) => [number, number, number];
|
|
3176
|
+
readonly documenttransition_get_replace_transition: (a: number) => [number, number, number];
|
|
3177
|
+
readonly documenttransition_get_revision: (a: number) => [number, bigint];
|
|
3178
|
+
readonly documenttransition_get_transfer_transition: (a: number) => [number, number, number];
|
|
3179
|
+
readonly documenttransition_get_update_price_transition: (a: number) => [number, number, number];
|
|
3180
|
+
readonly documenttransition_set_data_contract_id: (a: number, b: any) => [number, number];
|
|
3181
|
+
readonly documenttransition_set_identity_contract_nonce: (a: number, b: bigint) => void;
|
|
3182
|
+
readonly documenttransition_set_revision: (a: number, b: bigint) => void;
|
|
3183
|
+
readonly documenttransition_struct_name: () => [number, number];
|
|
3184
|
+
readonly documenttransition_type_name: (a: number) => [number, number];
|
|
3185
|
+
readonly groupaction_contract_id: (a: number) => number;
|
|
3186
|
+
readonly groupaction_event: (a: number) => number;
|
|
3187
|
+
readonly groupaction_fromJSON: (a: any) => [number, number, number];
|
|
3188
|
+
readonly groupaction_fromObject: (a: any) => [number, number, number];
|
|
3189
|
+
readonly groupaction_proposer_id: (a: number) => number;
|
|
3190
|
+
readonly groupaction_struct_name: () => [number, number];
|
|
3191
|
+
readonly groupaction_toJSON: (a: number) => [number, number, number];
|
|
3192
|
+
readonly groupaction_toObject: (a: number) => [number, number, number];
|
|
3193
|
+
readonly groupaction_token_contract_position: (a: number) => number;
|
|
3194
|
+
readonly groupaction_type_name: (a: number) => [number, number];
|
|
3195
|
+
readonly groupactionevent_eventName: (a: number) => [number, number];
|
|
3196
|
+
readonly groupactionevent_fromJSON: (a: any) => [number, number, number];
|
|
3197
|
+
readonly groupactionevent_fromObject: (a: any) => [number, number, number];
|
|
3198
|
+
readonly groupactionevent_publicNote: (a: number) => [number, number];
|
|
3199
|
+
readonly groupactionevent_struct_name: (a: number) => [number, number];
|
|
3200
|
+
readonly groupactionevent_toJSON: (a: number) => [number, number, number];
|
|
3201
|
+
readonly groupactionevent_toObject: (a: number) => [number, number, number];
|
|
3202
|
+
readonly groupactionevent_tokenEvent: (a: number) => number;
|
|
3203
|
+
readonly groupactionevent_variant: (a: number) => number;
|
|
3204
|
+
readonly masternodevotetransition_fromBase64: (a: number, b: number) => [number, number, number];
|
|
3205
|
+
readonly masternodevotetransition_fromBytes: (a: number, b: number) => [number, number, number];
|
|
3206
|
+
readonly masternodevotetransition_fromHex: (a: number, b: number) => [number, number, number];
|
|
3207
|
+
readonly masternodevotetransition_fromJSON: (a: any) => [number, number, number];
|
|
3208
|
+
readonly masternodevotetransition_fromObject: (a: any) => [number, number, number];
|
|
3209
|
+
readonly masternodevotetransition_fromStateTransition: (a: number) => [number, number, number];
|
|
3210
|
+
readonly masternodevotetransition_getSignableBytes: (a: number) => [number, number, number, number];
|
|
3211
|
+
readonly masternodevotetransition_get_asset_lock_proof: (a: number) => number;
|
|
3212
|
+
readonly masternodevotetransition_get_modified_data_ids: (a: number) => [number, number];
|
|
3213
|
+
readonly masternodevotetransition_new: (a: any, b: any, c: number, d: bigint, e: number, f: number, g: number) => [number, number, number];
|
|
3214
|
+
readonly masternodevotetransition_nonce: (a: number) => bigint;
|
|
3215
|
+
readonly masternodevotetransition_pro_tx_hash: (a: number) => number;
|
|
3216
|
+
readonly masternodevotetransition_set_nonce: (a: number, b: bigint) => void;
|
|
3217
|
+
readonly masternodevotetransition_set_pro_tx_hash: (a: number, b: any) => [number, number];
|
|
3218
|
+
readonly masternodevotetransition_set_signature: (a: number, b: number, c: number) => void;
|
|
3219
|
+
readonly masternodevotetransition_set_signature_public_key_id: (a: number, b: number) => void;
|
|
3220
|
+
readonly masternodevotetransition_set_user_fee_increase: (a: number, b: number) => void;
|
|
3221
|
+
readonly masternodevotetransition_set_vote: (a: number, b: number) => void;
|
|
3222
|
+
readonly masternodevotetransition_set_voter_identity_id: (a: number, b: any) => [number, number];
|
|
3223
|
+
readonly masternodevotetransition_signature: (a: number) => [number, number];
|
|
3224
|
+
readonly masternodevotetransition_signature_public_key_id: (a: number) => number;
|
|
3225
|
+
readonly masternodevotetransition_struct_name: () => [number, number];
|
|
3226
|
+
readonly masternodevotetransition_toBase64: (a: number) => [number, number, number, number];
|
|
3227
|
+
readonly masternodevotetransition_toBytes: (a: number) => [number, number, number, number];
|
|
3228
|
+
readonly masternodevotetransition_toHex: (a: number) => [number, number, number, number];
|
|
3229
|
+
readonly masternodevotetransition_toJSON: (a: number) => [number, number, number];
|
|
3230
|
+
readonly masternodevotetransition_toObject: (a: number) => [number, number, number];
|
|
3231
|
+
readonly masternodevotetransition_toStateTransition: (a: number) => number;
|
|
3232
|
+
readonly masternodevotetransition_type_name: (a: number) => [number, number];
|
|
3233
|
+
readonly masternodevotetransition_vote: (a: number) => number;
|
|
3234
|
+
readonly masternodevotetransition_voter_identity_id: (a: number) => number;
|
|
3235
|
+
readonly tokendirectpurchasetransition_get_base: (a: number) => number;
|
|
3236
|
+
readonly tokendirectpurchasetransition_get_token_count: (a: number) => bigint;
|
|
3237
|
+
readonly tokendirectpurchasetransition_get_total_agreed_price: (a: number) => bigint;
|
|
3238
|
+
readonly tokendirectpurchasetransition_new: (a: number, b: bigint, c: bigint) => number;
|
|
3239
|
+
readonly tokendirectpurchasetransition_set_base: (a: number, b: number) => void;
|
|
3240
|
+
readonly tokendirectpurchasetransition_set_token_count: (a: number, b: bigint) => void;
|
|
3241
|
+
readonly tokendirectpurchasetransition_set_total_agreed_price: (a: number, b: bigint) => void;
|
|
3242
|
+
readonly tokendirectpurchasetransition_struct_name: () => [number, number];
|
|
3243
|
+
readonly tokendirectpurchasetransition_type_name: (a: number) => [number, number];
|
|
3244
|
+
readonly tokenpaymentinfo_gas_fees_paid_by: (a: number) => [number, number];
|
|
3245
|
+
readonly tokenpaymentinfo_maximum_token_cost: (a: number) => [number, bigint];
|
|
3246
|
+
readonly tokenpaymentinfo_minimum_token_cost: (a: number) => [number, bigint];
|
|
3247
|
+
readonly tokenpaymentinfo_new: (a: any, b: number, c: number, d: bigint, e: number, f: bigint, g: any) => [number, number, number];
|
|
3248
|
+
readonly tokenpaymentinfo_payment_token_contract_id: (a: number) => number;
|
|
3249
|
+
readonly tokenpaymentinfo_set_gas_fees_paid_by: (a: number, b: any) => [number, number];
|
|
3250
|
+
readonly tokenpaymentinfo_set_maximum_token_cost: (a: number, b: number, c: bigint) => void;
|
|
3251
|
+
readonly tokenpaymentinfo_set_payment_token_contract_id: (a: number, b: any) => [number, number];
|
|
3252
|
+
readonly tokenpaymentinfo_set_token_contract_position: (a: number, b: number) => void;
|
|
3253
|
+
readonly tokenpaymentinfo_struct_name: () => [number, number];
|
|
3254
|
+
readonly tokenpaymentinfo_token_contract_position: (a: number) => number;
|
|
3255
|
+
readonly tokenpaymentinfo_type_name: (a: number) => [number, number];
|
|
3256
|
+
readonly tokenpricingschedule_SetPrices: (a: any) => [number, number, number];
|
|
3257
|
+
readonly tokenpricingschedule_SinglePrice: (a: bigint) => number;
|
|
3258
|
+
readonly tokenpricingschedule_getScheduleType: (a: number) => [number, number];
|
|
3259
|
+
readonly tokenpricingschedule_getValue: (a: number) => [number, number, number];
|
|
3260
|
+
readonly tokenpricingschedule_struct_name: () => [number, number];
|
|
3261
|
+
readonly tokenpricingschedule_type_name: (a: number) => [number, number];
|
|
3262
|
+
readonly tokensetpricefordirectpurchasetransition_get_base: (a: number) => number;
|
|
3263
|
+
readonly tokensetpricefordirectpurchasetransition_get_price: (a: number) => any;
|
|
3264
|
+
readonly tokensetpricefordirectpurchasetransition_get_public_note: (a: number) => [number, number];
|
|
3265
|
+
readonly tokensetpricefordirectpurchasetransition_new: (a: number, b: any, c: number, d: number) => [number, number, number];
|
|
3266
|
+
readonly tokensetpricefordirectpurchasetransition_set_base: (a: number, b: number) => void;
|
|
3267
|
+
readonly tokensetpricefordirectpurchasetransition_set_price: (a: number, b: any) => [number, number];
|
|
3268
|
+
readonly tokensetpricefordirectpurchasetransition_set_public_note: (a: number, b: number, c: number) => void;
|
|
3269
|
+
readonly tokensetpricefordirectpurchasetransition_struct_name: () => [number, number];
|
|
3270
|
+
readonly tokensetpricefordirectpurchasetransition_type_name: (a: number) => [number, number];
|
|
3271
|
+
readonly groupactionevent_type_name: (a: number) => [number, number];
|
|
3272
|
+
readonly tokenpaymentinfo_set_minimum_token_cost: (a: number, b: number, c: bigint) => void;
|
|
3273
|
+
readonly masternodevotetransition_get_user_fee_increase: (a: number) => number;
|
|
3274
|
+
readonly __wbg_assetlockproof_free: (a: number, b: number) => void;
|
|
3275
|
+
readonly __wbg_identifier_free: (a: number, b: number) => void;
|
|
3276
|
+
readonly __wbg_identitypublickeyincreation_free: (a: number, b: number) => void;
|
|
3277
|
+
readonly __wbg_identityupdatetransition_free: (a: number, b: number) => void;
|
|
3278
|
+
readonly __wbg_tokenbasetransition_free: (a: number, b: number) => void;
|
|
3279
|
+
readonly __wbg_tokenburntransition_free: (a: number, b: number) => void;
|
|
3280
|
+
readonly __wbg_tokenclaimtransition_free: (a: number, b: number) => void;
|
|
3281
|
+
readonly __wbg_tokenconfigurationlocalization_free: (a: number, b: number) => void;
|
|
3282
|
+
readonly __wbg_tokenstatus_free: (a: number, b: number) => void;
|
|
3283
|
+
readonly __wbg_tokenunfreezetransition_free: (a: number, b: number) => void;
|
|
3284
|
+
readonly assetlockproof_createChainAssetLockProof: (a: number, b: number) => [number, number, number];
|
|
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];
|
|
3195
3373
|
readonly tokenbasetransition_get_data_contract_id: (a: number) => number;
|
|
3196
3374
|
readonly tokenbasetransition_get_identity_contract_nonce: (a: number) => bigint;
|
|
3197
3375
|
readonly tokenbasetransition_get_token_contract_position: (a: number) => number;
|
|
@@ -3205,32 +3383,49 @@ export interface InitOutput {
|
|
|
3205
3383
|
readonly tokenbasetransition_set_using_group_info: (a: number, b: any) => [number, number];
|
|
3206
3384
|
readonly tokenbasetransition_struct_name: () => [number, number];
|
|
3207
3385
|
readonly tokenbasetransition_type_name: (a: number) => [number, number];
|
|
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
|
|
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];
|
|
3234
3429
|
readonly rustsecp256k1_v0_10_0_context_create: (a: number) => number;
|
|
3235
3430
|
readonly rustsecp256k1_v0_10_0_context_destroy: (a: number) => void;
|
|
3236
3431
|
readonly rustsecp256k1_v0_10_0_default_error_callback_fn: (a: number, b: number) => void;
|