@@ -64,19 +64,16 @@ export abstract class AuthorizedActionTakers {
64
64
static decode ( bc : BinCode ) : AuthorizedActionTakers ;
65
65
}
66
66
namespace AuthorizedActionTakers {
67
- /**
68
- * default
69
- *
70
- * @function
71
- */
72
- /** @function */
67
+ /** default */
68
+ const NoOne : ( ) => AuthorizedActionTakers ;
69
+ const ContractOwner : ( ) => AuthorizedActionTakers ;
73
70
/** @function */
74
71
interface Identity extends AuthorizedActionTakers {
75
72
[ 0 ] : Identifier ;
76
73
}
77
74
/** @ignore */
78
75
const Identity : ( f0 : Identifier ) => AuthorizedActionTakers . Identity ;
79
- /** @function */
76
+ const MainGroup : ( ) => AuthorizedActionTakers ;
80
77
/** @function */
81
78
interface Group extends AuthorizedActionTakers {
82
79
[ 0 ] : GroupContractPosition ;
@@ -2183,15 +2180,12 @@ export abstract class KeyType {
2183
2180
static decode ( bc : BinCode ) : KeyType ;
2184
2181
}
2185
2182
namespace KeyType {
2186
- /**
2187
- * default
2188
- *
2189
- * @function
2190
- */
2191
- /** @function */
2192
- /** @function */
2193
- /** @function */
2194
- /** @function */
2183
+ /** default */
2184
+ const ECDSA_SECP256K1 : ( ) => KeyType ;
2185
+ const BLS12_381 : ( ) => KeyType ;
2186
+ const ECDSA_HASH160 : ( ) => KeyType ;
2187
+ const BIP13_SCRIPT_HASH : ( ) => KeyType ;
2188
+ const EDDSA_25519_HASH160 : ( ) => KeyType ;
2195
2189
}
2196
2190
2197
2191
/** platform_version_path_bounds "dpp.state_transition_serialization_versions.masternode_vote_state_transition" */
@@ -2271,13 +2265,10 @@ export abstract class Pooling {
2271
2265
static decode ( bc : BinCode ) : Pooling ;
2272
2266
}
2273
2267
namespace Pooling {
2274
- /**
2275
- * default
2276
- *
2277
- * @function
2278
- */
2279
- /** @function */
2280
- /** @function */
2268
+ /** default */
2269
+ const Never : ( ) => Pooling ;
2270
+ const IfAvailable : ( ) => Pooling ;
2271
+ const Standard : ( ) => Pooling ;
2281
2272
}
2282
2273
2283
2274
export type PrivateEncryptedNote = [ RootEncryptionKeyIndex , DerivationEncryptionKeyIndex , Uint8Array ] ;
@@ -2301,39 +2292,20 @@ namespace Purpose {
2301
2292
/**
2302
2293
* at least one authentication key must be registered for all security levels
2303
2294
* default
2304
- *
2305
- * @function
2306
- */
2307
- /**
2308
- * this key cannot be used for signing documents
2309
- *
2310
- * @function
2311
- */
2312
- /**
2313
- * this key cannot be used for signing documents
2314
- *
2315
- * @function
2316
- */
2317
- /**
2318
- * this key is used to sign credit transfer and withdrawal state transitions
2319
- *
2320
- * @function
2321
- */
2322
- /**
2323
- * this key cannot be used for signing documents
2324
- *
2325
- * @function
2326
- */
2327
- /**
2328
- * this key cannot be used for signing documents
2329
- *
2330
- * @function
2331
- */
2332
- /**
2333
- * this key is used to prove ownership of a masternode or evonode
2334
- *
2335
- * @function
2336
2295
*/
2296
+ const AUTHENTICATION : ( ) => Purpose ;
2297
+ /** this key cannot be used for signing documents */
2298
+ const ENCRYPTION : ( ) => Purpose ;
2299
+ /** this key cannot be used for signing documents */
2300
+ const DECRYPTION : ( ) => Purpose ;
2301
+ /** this key is used to sign credit transfer and withdrawal state transitions */
2302
+ const TRANSFER : ( ) => Purpose ;
2303
+ /** this key cannot be used for signing documents */
2304
+ const SYSTEM : ( ) => Purpose ;
2305
+ /** this key cannot be used for signing documents */
2306
+ const VOTING : ( ) => Purpose ;
2307
+ /** this key is used to prove ownership of a masternode or evonode */
2308
+ const OWNER : ( ) => Purpose ;
2337
2309
}
2338
2310
2339
2311
/**
@@ -2557,11 +2529,8 @@ namespace Value {
2557
2529
}
2558
2530
/** @ignore */
2559
2531
const Bool : ( f0 : boolean ) => Value . Bool ;
2560
- /**
2561
- * Null
2562
- *
2563
- * @function
2564
- */
2532
+ /** Null */
2533
+ const Null : ( ) => Value ;
2565
2534
/**
2566
2535
* An array
2567
2536
*
@@ -2653,12 +2622,9 @@ namespace ResourceVoteChoice {
2653
2622
}
2654
2623
/** @ignore */
2655
2624
const TowardsIdentity : ( f0 : Identifier ) => ResourceVoteChoice . TowardsIdentity ;
2656
- /**
2657
- * default
2658
- *
2659
- * @function
2660
- */
2661
- /** @function */
2625
+ /** default */
2626
+ const Abstain : ( ) => ResourceVoteChoice ;
2627
+ const Lock : ( ) => ResourceVoteChoice ;
2662
2628
}
2663
2629
2664
2630
interface ResourceVoteV0 {
@@ -2776,14 +2742,11 @@ export abstract class SecurityLevel {
2776
2742
static decode ( bc : BinCode ) : SecurityLevel ;
2777
2743
}
2778
2744
namespace SecurityLevel {
2779
- /** @function */
2780
- /** @function */
2781
- /**
2782
- * default
2783
- *
2784
- * @function
2785
- */
2786
- /** @function */
2745
+ const MASTER : ( ) => SecurityLevel ;
2746
+ const CRITICAL : ( ) => SecurityLevel ;
2747
+ /** default */
2748
+ const HIGH : ( ) => SecurityLevel ;
2749
+ const MEDIUM : ( ) => SecurityLevel ;
2787
2750
}
2788
2751
2789
2752
export type SenderKeyIndex = number ;
@@ -2880,9 +2843,9 @@ export abstract class StorageKeyRequirements {
2880
2843
static decode ( bc : BinCode ) : StorageKeyRequirements ;
2881
2844
}
2882
2845
namespace StorageKeyRequirements {
2883
- /** @function */
2884
- /** @function */
2885
- /** @function */
2846
+ const Unique : ( ) => StorageKeyRequirements ;
2847
+ const Multiple : ( ) => StorageKeyRequirements ;
2848
+ const MultipleReferenceToLatest : ( ) => StorageKeyRequirements ;
2886
2849
}
2887
2850
2888
2851
export type TimestampMillis = bigint ;
@@ -3099,11 +3062,8 @@ export abstract class TokenConfigurationChangeItem {
3099
3062
static decode ( bc : BinCode ) : TokenConfigurationChangeItem ;
3100
3063
}
3101
3064
namespace TokenConfigurationChangeItem {
3102
- /**
3103
- * default
3104
- *
3105
- * @function
3106
- */
3065
+ /** default */
3066
+ const TokenConfigurationNoChange : ( ) => TokenConfigurationChangeItem ;
3107
3067
/** @function */
3108
3068
interface Conventions extends TokenConfigurationChangeItem {
3109
3069
[ 0 ] : TokenConfigurationConvention ;
@@ -3469,9 +3429,8 @@ namespace TokenDistributionRecipient {
3469
3429
/**
3470
3430
* Distribute to the contract Owner
3471
3431
* default
3472
- *
3473
- * @function
3474
3432
*/
3433
+ const ContractOwner : ( ) => TokenDistributionRecipient ;
3475
3434
/**
3476
3435
* Distribute to a single identity
3477
3436
*
@@ -3485,9 +3444,8 @@ namespace TokenDistributionRecipient {
3485
3444
/**
3486
3445
* Distribute tokens by participation
3487
3446
* This distribution can only happen when choosing epoch based distribution
3488
- *
3489
- * @function
3490
3447
*/
3448
+ const EvonodesByParticipation : ( ) => TokenDistributionRecipient ;
3491
3449
}
3492
3450
3493
3451
/** @ignore */
@@ -3557,14 +3515,10 @@ namespace TokenDistributionType {
3557
3515
/**
3558
3516
* A pre-programmed distribution scheduled for a specific time.
3559
3517
* default
3560
- *
3561
- * @function
3562
- */
3563
- /**
3564
- * A perpetual distribution that occurs at regular intervals.
3565
- *
3566
- * @function
3567
3518
*/
3519
+ const PreProgrammed : ( ) => TokenDistributionType ;
3520
+ /** A perpetual distribution that occurs at regular intervals. */
3521
+ const Perpetual : ( ) => TokenDistributionType ;
3568
3522
}
3569
3523
3570
3524
/** @ignore */
@@ -3582,12 +3536,9 @@ export abstract class TokenEmergencyAction {
3582
3536
static decode ( bc : BinCode ) : TokenEmergencyAction ;
3583
3537
}
3584
3538
namespace TokenEmergencyAction {
3585
- /**
3586
- * default
3587
- *
3588
- * @function
3589
- */
3590
- /** @function */
3539
+ /** default */
3540
+ const Pause : ( ) => TokenEmergencyAction ;
3541
+ const Resume : ( ) => TokenEmergencyAction ;
3591
3542
}
3592
3543
3593
3544
/** @ignore */
0 commit comments