@sentio/sdk 2.45.1 → 2.45.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/aptos/builtin/0x1.d.ts +101 -101
- package/lib/aptos/builtin/0x3.d.ts +17 -17
- package/lib/aptos/builtin/0x4.d.ts +26 -26
- package/lib/sui/builtin/0x1.d.ts +1 -1
- package/lib/sui/builtin/0x2.d.ts +15 -15
- package/lib/sui/builtin/0x3.d.ts +4 -4
- package/package.json +8 -8
- package/src/aptos/builtin/0x1.ts +101 -101
- package/src/aptos/builtin/0x3.ts +17 -17
- package/src/aptos/builtin/0x4.ts +26 -26
- package/src/sui/builtin/0x1.ts +1 -1
- package/src/sui/builtin/0x2.ts +15 -15
- package/src/sui/builtin/0x3.ts +4 -4
package/src/aptos/builtin/0x1.ts
CHANGED
@@ -430,7 +430,7 @@ export namespace code {
|
|
430
430
|
|
431
431
|
export interface PublishPackage {
|
432
432
|
code_address: MoveAddressType;
|
433
|
-
is_upgrade:
|
433
|
+
is_upgrade: boolean;
|
434
434
|
}
|
435
435
|
|
436
436
|
export namespace PublishPackage {
|
@@ -696,7 +696,7 @@ export namespace coin {
|
|
696
696
|
}
|
697
697
|
|
698
698
|
export interface BurnCapability<T0> {
|
699
|
-
dummy_field:
|
699
|
+
dummy_field: boolean;
|
700
700
|
}
|
701
701
|
|
702
702
|
export namespace BurnCapability {
|
@@ -828,7 +828,7 @@ export namespace coin {
|
|
828
828
|
|
829
829
|
export interface CoinStore<T0> {
|
830
830
|
coin: coin.Coin<T0>;
|
831
|
-
frozen:
|
831
|
+
frozen: boolean;
|
832
832
|
deposit_events: event.EventHandle<coin.DepositEvent>;
|
833
833
|
withdraw_events: event.EventHandle<coin.WithdrawEvent>;
|
834
834
|
}
|
@@ -910,7 +910,7 @@ export namespace coin {
|
|
910
910
|
}
|
911
911
|
|
912
912
|
export interface FreezeCapability<T0> {
|
913
|
-
dummy_field:
|
913
|
+
dummy_field: boolean;
|
914
914
|
}
|
915
915
|
|
916
916
|
export namespace FreezeCapability {
|
@@ -928,7 +928,7 @@ export namespace coin {
|
|
928
928
|
}
|
929
929
|
|
930
930
|
export interface MigrationFlag {
|
931
|
-
dummy_field:
|
931
|
+
dummy_field: boolean;
|
932
932
|
}
|
933
933
|
|
934
934
|
export namespace MigrationFlag {
|
@@ -942,7 +942,7 @@ export namespace coin {
|
|
942
942
|
}
|
943
943
|
|
944
944
|
export interface MintCapability<T0> {
|
945
|
-
dummy_field:
|
945
|
+
dummy_field: boolean;
|
946
946
|
}
|
947
947
|
|
948
948
|
export namespace MintCapability {
|
@@ -1027,7 +1027,7 @@ export namespace coin {
|
|
1027
1027
|
}
|
1028
1028
|
|
1029
1029
|
export interface SupplyConfig {
|
1030
|
-
allow_upgrades:
|
1030
|
+
allow_upgrades: boolean;
|
1031
1031
|
}
|
1032
1032
|
|
1033
1033
|
export namespace SupplyConfig {
|
@@ -1503,7 +1503,7 @@ export namespace jwks {
|
|
1503
1503
|
}
|
1504
1504
|
|
1505
1505
|
export interface PatchRemoveAll {
|
1506
|
-
dummy_field:
|
1506
|
+
dummy_field: boolean;
|
1507
1507
|
}
|
1508
1508
|
|
1509
1509
|
export namespace PatchRemoveAll {
|
@@ -3484,7 +3484,7 @@ export class object_ extends AptosBaseProcessor {
|
|
3484
3484
|
export namespace object_ {
|
3485
3485
|
export interface ConstructorRef {
|
3486
3486
|
self: MoveAddressType;
|
3487
|
-
can_delete:
|
3487
|
+
can_delete: boolean;
|
3488
3488
|
}
|
3489
3489
|
|
3490
3490
|
export namespace ConstructorRef {
|
@@ -3595,7 +3595,7 @@ export namespace object_ {
|
|
3595
3595
|
export interface ObjectCore {
|
3596
3596
|
guid_creation_num: bigint;
|
3597
3597
|
owner: MoveAddressType;
|
3598
|
-
allow_ungated_transfer:
|
3598
|
+
allow_ungated_transfer: boolean;
|
3599
3599
|
transfer_events: event.EventHandle<object_.TransferEvent>;
|
3600
3600
|
}
|
3601
3601
|
|
@@ -3610,7 +3610,7 @@ export namespace object_ {
|
|
3610
3610
|
}
|
3611
3611
|
|
3612
3612
|
export interface ObjectGroup {
|
3613
|
-
dummy_field:
|
3613
|
+
dummy_field: boolean;
|
3614
3614
|
}
|
3615
3615
|
|
3616
3616
|
export namespace ObjectGroup {
|
@@ -3700,7 +3700,7 @@ export namespace object_ {
|
|
3700
3700
|
}
|
3701
3701
|
|
3702
3702
|
export interface Untransferable {
|
3703
|
-
dummy_field:
|
3703
|
+
dummy_field: boolean;
|
3704
3704
|
}
|
3705
3705
|
|
3706
3706
|
export namespace Untransferable {
|
@@ -3977,7 +3977,7 @@ export namespace voting {
|
|
3977
3977
|
early_resolution_vote_threshold: option.Option<bigint>;
|
3978
3978
|
yes_votes: bigint;
|
3979
3979
|
no_votes: bigint;
|
3980
|
-
is_resolved:
|
3980
|
+
is_resolved: boolean;
|
3981
3981
|
resolution_time_secs: bigint;
|
3982
3982
|
}
|
3983
3983
|
|
@@ -4041,7 +4041,7 @@ export namespace voting {
|
|
4041
4041
|
proposal_id: bigint;
|
4042
4042
|
yes_votes: bigint;
|
4043
4043
|
no_votes: bigint;
|
4044
|
-
resolved_early:
|
4044
|
+
resolved_early: boolean;
|
4045
4045
|
}
|
4046
4046
|
|
4047
4047
|
export namespace ResolveProposal {
|
@@ -4884,7 +4884,7 @@ export namespace genesis {
|
|
4884
4884
|
export interface ValidatorConfigurationWithCommission {
|
4885
4885
|
validator_config: genesis.ValidatorConfiguration;
|
4886
4886
|
commission_percentage: bigint;
|
4887
|
-
join_during_genesis:
|
4887
|
+
join_during_genesis: boolean;
|
4888
4888
|
}
|
4889
4889
|
|
4890
4890
|
export namespace ValidatorConfigurationWithCommission {
|
@@ -4959,7 +4959,7 @@ export class version extends AptosBaseProcessor {
|
|
4959
4959
|
|
4960
4960
|
export namespace version {
|
4961
4961
|
export interface SetVersionCapability {
|
4962
|
-
dummy_field:
|
4962
|
+
dummy_field: boolean;
|
4963
4963
|
}
|
4964
4964
|
|
4965
4965
|
export namespace SetVersionCapability {
|
@@ -6744,7 +6744,7 @@ export class aptos_coin extends AptosBaseProcessor {
|
|
6744
6744
|
|
6745
6745
|
export namespace aptos_coin {
|
6746
6746
|
export interface AptosCoin {
|
6747
|
-
dummy_field:
|
6747
|
+
dummy_field: boolean;
|
6748
6748
|
}
|
6749
6749
|
|
6750
6750
|
export namespace AptosCoin {
|
@@ -6866,7 +6866,7 @@ export class bit_vector extends AptosBaseProcessor {
|
|
6866
6866
|
export namespace bit_vector {
|
6867
6867
|
export interface BitVector {
|
6868
6868
|
length: bigint;
|
6869
|
-
bit_field:
|
6869
|
+
bit_field: boolean[];
|
6870
6870
|
}
|
6871
6871
|
|
6872
6872
|
export namespace BitVector {
|
@@ -7020,7 +7020,7 @@ export namespace randomness {
|
|
7020
7020
|
}
|
7021
7021
|
|
7022
7022
|
export interface RandomnessGeneratedEvent {
|
7023
|
-
dummy_field:
|
7023
|
+
dummy_field: boolean;
|
7024
7024
|
}
|
7025
7025
|
|
7026
7026
|
export namespace RandomnessGeneratedEvent {
|
@@ -7345,7 +7345,7 @@ export namespace storage_gas {
|
|
7345
7345
|
|
7346
7346
|
export namespace chain_status {
|
7347
7347
|
export interface GenesisEndMarker {
|
7348
|
-
dummy_field:
|
7348
|
+
dummy_field: boolean;
|
7349
7349
|
}
|
7350
7350
|
|
7351
7351
|
export namespace GenesisEndMarker {
|
@@ -7625,8 +7625,8 @@ export namespace managed_coin {
|
|
7625
7625
|
}
|
7626
7626
|
|
7627
7627
|
export interface InitializePayload<T0 = any>
|
7628
|
-
extends TypedFunctionPayload<[string, string, number,
|
7629
|
-
arguments_decoded: [string, string, number,
|
7628
|
+
extends TypedFunctionPayload<[string, string, number, boolean]> {
|
7629
|
+
arguments_decoded: [string, string, number, boolean];
|
7630
7630
|
type_arguments: [string];
|
7631
7631
|
}
|
7632
7632
|
|
@@ -7846,7 +7846,7 @@ export namespace string_utils {
|
|
7846
7846
|
}
|
7847
7847
|
|
7848
7848
|
export interface NIL {
|
7849
|
-
dummy_field:
|
7849
|
+
dummy_field: boolean;
|
7850
7850
|
}
|
7851
7851
|
|
7852
7852
|
export namespace NIL {
|
@@ -8157,7 +8157,7 @@ export class aptos_account extends AptosBaseProcessor {
|
|
8157
8157
|
export namespace aptos_account {
|
8158
8158
|
export interface DirectCoinTransferConfigUpdated {
|
8159
8159
|
account: MoveAddressType;
|
8160
|
-
new_allow_direct_transfers:
|
8160
|
+
new_allow_direct_transfers: boolean;
|
8161
8161
|
}
|
8162
8162
|
|
8163
8163
|
export namespace DirectCoinTransferConfigUpdated {
|
@@ -8180,7 +8180,7 @@ export namespace aptos_account {
|
|
8180
8180
|
}
|
8181
8181
|
|
8182
8182
|
export interface DirectCoinTransferConfigUpdatedEvent {
|
8183
|
-
new_allow_direct_transfers:
|
8183
|
+
new_allow_direct_transfers: boolean;
|
8184
8184
|
}
|
8185
8185
|
|
8186
8186
|
export namespace DirectCoinTransferConfigUpdatedEvent {
|
@@ -8203,7 +8203,7 @@ export namespace aptos_account {
|
|
8203
8203
|
}
|
8204
8204
|
|
8205
8205
|
export interface DirectTransferConfig {
|
8206
|
-
allow_arbitrary_coin_transfers:
|
8206
|
+
allow_arbitrary_coin_transfers: boolean;
|
8207
8207
|
update_coin_transfer_events: event.EventHandle<aptos_account.DirectCoinTransferConfigUpdatedEvent>;
|
8208
8208
|
}
|
8209
8209
|
|
@@ -8244,8 +8244,8 @@ export namespace aptos_account {
|
|
8244
8244
|
}
|
8245
8245
|
|
8246
8246
|
export interface SetAllowDirectCoinTransfersPayload
|
8247
|
-
extends TypedFunctionPayload<[
|
8248
|
-
arguments_decoded: [
|
8247
|
+
extends TypedFunctionPayload<[boolean]> {
|
8248
|
+
arguments_decoded: [boolean];
|
8249
8249
|
type_arguments: [];
|
8250
8250
|
}
|
8251
8251
|
|
@@ -8264,7 +8264,7 @@ export namespace aptos_account {
|
|
8264
8264
|
|
8265
8265
|
export namespace bn254_algebra {
|
8266
8266
|
export interface FormatFq12LscLsb {
|
8267
|
-
dummy_field:
|
8267
|
+
dummy_field: boolean;
|
8268
8268
|
}
|
8269
8269
|
|
8270
8270
|
export namespace FormatFq12LscLsb {
|
@@ -8280,7 +8280,7 @@ export namespace bn254_algebra {
|
|
8280
8280
|
}
|
8281
8281
|
|
8282
8282
|
export interface FormatFqLsb {
|
8283
|
-
dummy_field:
|
8283
|
+
dummy_field: boolean;
|
8284
8284
|
}
|
8285
8285
|
|
8286
8286
|
export namespace FormatFqLsb {
|
@@ -8294,7 +8294,7 @@ export namespace bn254_algebra {
|
|
8294
8294
|
}
|
8295
8295
|
|
8296
8296
|
export interface FormatFqMsb {
|
8297
|
-
dummy_field:
|
8297
|
+
dummy_field: boolean;
|
8298
8298
|
}
|
8299
8299
|
|
8300
8300
|
export namespace FormatFqMsb {
|
@@ -8308,7 +8308,7 @@ export namespace bn254_algebra {
|
|
8308
8308
|
}
|
8309
8309
|
|
8310
8310
|
export interface FormatFrLsb {
|
8311
|
-
dummy_field:
|
8311
|
+
dummy_field: boolean;
|
8312
8312
|
}
|
8313
8313
|
|
8314
8314
|
export namespace FormatFrLsb {
|
@@ -8322,7 +8322,7 @@ export namespace bn254_algebra {
|
|
8322
8322
|
}
|
8323
8323
|
|
8324
8324
|
export interface FormatFrMsb {
|
8325
|
-
dummy_field:
|
8325
|
+
dummy_field: boolean;
|
8326
8326
|
}
|
8327
8327
|
|
8328
8328
|
export namespace FormatFrMsb {
|
@@ -8336,7 +8336,7 @@ export namespace bn254_algebra {
|
|
8336
8336
|
}
|
8337
8337
|
|
8338
8338
|
export interface FormatG1Compr {
|
8339
|
-
dummy_field:
|
8339
|
+
dummy_field: boolean;
|
8340
8340
|
}
|
8341
8341
|
|
8342
8342
|
export namespace FormatG1Compr {
|
@@ -8350,7 +8350,7 @@ export namespace bn254_algebra {
|
|
8350
8350
|
}
|
8351
8351
|
|
8352
8352
|
export interface FormatG1Uncompr {
|
8353
|
-
dummy_field:
|
8353
|
+
dummy_field: boolean;
|
8354
8354
|
}
|
8355
8355
|
|
8356
8356
|
export namespace FormatG1Uncompr {
|
@@ -8366,7 +8366,7 @@ export namespace bn254_algebra {
|
|
8366
8366
|
}
|
8367
8367
|
|
8368
8368
|
export interface FormatG2Compr {
|
8369
|
-
dummy_field:
|
8369
|
+
dummy_field: boolean;
|
8370
8370
|
}
|
8371
8371
|
|
8372
8372
|
export namespace FormatG2Compr {
|
@@ -8380,7 +8380,7 @@ export namespace bn254_algebra {
|
|
8380
8380
|
}
|
8381
8381
|
|
8382
8382
|
export interface FormatG2Uncompr {
|
8383
|
-
dummy_field:
|
8383
|
+
dummy_field: boolean;
|
8384
8384
|
}
|
8385
8385
|
|
8386
8386
|
export namespace FormatG2Uncompr {
|
@@ -8396,7 +8396,7 @@ export namespace bn254_algebra {
|
|
8396
8396
|
}
|
8397
8397
|
|
8398
8398
|
export interface FormatGt {
|
8399
|
-
dummy_field:
|
8399
|
+
dummy_field: boolean;
|
8400
8400
|
}
|
8401
8401
|
|
8402
8402
|
export namespace FormatGt {
|
@@ -8410,7 +8410,7 @@ export namespace bn254_algebra {
|
|
8410
8410
|
}
|
8411
8411
|
|
8412
8412
|
export interface Fq {
|
8413
|
-
dummy_field:
|
8413
|
+
dummy_field: boolean;
|
8414
8414
|
}
|
8415
8415
|
|
8416
8416
|
export namespace Fq {
|
@@ -8424,7 +8424,7 @@ export namespace bn254_algebra {
|
|
8424
8424
|
}
|
8425
8425
|
|
8426
8426
|
export interface Fq12 {
|
8427
|
-
dummy_field:
|
8427
|
+
dummy_field: boolean;
|
8428
8428
|
}
|
8429
8429
|
|
8430
8430
|
export namespace Fq12 {
|
@@ -8438,7 +8438,7 @@ export namespace bn254_algebra {
|
|
8438
8438
|
}
|
8439
8439
|
|
8440
8440
|
export interface Fr {
|
8441
|
-
dummy_field:
|
8441
|
+
dummy_field: boolean;
|
8442
8442
|
}
|
8443
8443
|
|
8444
8444
|
export namespace Fr {
|
@@ -8452,7 +8452,7 @@ export namespace bn254_algebra {
|
|
8452
8452
|
}
|
8453
8453
|
|
8454
8454
|
export interface G1 {
|
8455
|
-
dummy_field:
|
8455
|
+
dummy_field: boolean;
|
8456
8456
|
}
|
8457
8457
|
|
8458
8458
|
export namespace G1 {
|
@@ -8466,7 +8466,7 @@ export namespace bn254_algebra {
|
|
8466
8466
|
}
|
8467
8467
|
|
8468
8468
|
export interface G2 {
|
8469
|
-
dummy_field:
|
8469
|
+
dummy_field: boolean;
|
8470
8470
|
}
|
8471
8471
|
|
8472
8472
|
export namespace G2 {
|
@@ -8480,7 +8480,7 @@ export namespace bn254_algebra {
|
|
8480
8480
|
}
|
8481
8481
|
|
8482
8482
|
export interface Gt {
|
8483
|
-
dummy_field:
|
8483
|
+
dummy_field: boolean;
|
8484
8484
|
}
|
8485
8485
|
|
8486
8486
|
export namespace Gt {
|
@@ -9380,7 +9380,7 @@ export namespace fungible_asset {
|
|
9380
9380
|
|
9381
9381
|
export interface Frozen {
|
9382
9382
|
store: MoveAddressType;
|
9383
|
-
frozen:
|
9383
|
+
frozen: boolean;
|
9384
9384
|
}
|
9385
9385
|
|
9386
9386
|
export namespace Frozen {
|
@@ -9399,7 +9399,7 @@ export namespace fungible_asset {
|
|
9399
9399
|
}
|
9400
9400
|
|
9401
9401
|
export interface FrozenEvent {
|
9402
|
-
frozen:
|
9402
|
+
frozen: boolean;
|
9403
9403
|
}
|
9404
9404
|
|
9405
9405
|
export namespace FrozenEvent {
|
@@ -9453,7 +9453,7 @@ export namespace fungible_asset {
|
|
9453
9453
|
export interface FungibleStore {
|
9454
9454
|
metadata: object_.Object<fungible_asset.Metadata>;
|
9455
9455
|
balance: bigint;
|
9456
|
-
frozen:
|
9456
|
+
frozen: boolean;
|
9457
9457
|
}
|
9458
9458
|
|
9459
9459
|
export namespace FungibleStore {
|
@@ -9560,7 +9560,7 @@ export namespace fungible_asset {
|
|
9560
9560
|
}
|
9561
9561
|
|
9562
9562
|
export interface Untransferable {
|
9563
|
-
dummy_field:
|
9563
|
+
dummy_field: boolean;
|
9564
9564
|
}
|
9565
9565
|
|
9566
9566
|
export namespace Untransferable {
|
@@ -9633,7 +9633,7 @@ export namespace staking_config {
|
|
9633
9633
|
minimum_stake: bigint;
|
9634
9634
|
maximum_stake: bigint;
|
9635
9635
|
recurring_lockup_duration_secs: bigint;
|
9636
|
-
allow_validator_set_change:
|
9636
|
+
allow_validator_set_change: boolean;
|
9637
9637
|
rewards_rate: bigint;
|
9638
9638
|
rewards_rate_denominator: bigint;
|
9639
9639
|
voting_power_increase_limit: bigint;
|
@@ -10676,7 +10676,7 @@ export namespace delegation_pool {
|
|
10676
10676
|
}
|
10677
10677
|
|
10678
10678
|
export interface DelegationPoolAllowlisting {
|
10679
|
-
allowlist: smart_table.SmartTable<MoveAddressType,
|
10679
|
+
allowlist: smart_table.SmartTable<MoveAddressType, boolean>;
|
10680
10680
|
}
|
10681
10681
|
|
10682
10682
|
export namespace DelegationPoolAllowlisting {
|
@@ -11039,7 +11039,7 @@ export namespace delegation_pool {
|
|
11039
11039
|
proposal_id: bigint;
|
11040
11040
|
delegation_pool: MoveAddressType;
|
11041
11041
|
num_votes: bigint;
|
11042
|
-
should_pass:
|
11042
|
+
should_pass: boolean;
|
11043
11043
|
}
|
11044
11044
|
|
11045
11045
|
export namespace Vote {
|
@@ -11084,7 +11084,7 @@ export namespace delegation_pool {
|
|
11084
11084
|
proposal_id: bigint;
|
11085
11085
|
delegation_pool: MoveAddressType;
|
11086
11086
|
num_votes: bigint;
|
11087
|
-
should_pass:
|
11087
|
+
should_pass: boolean;
|
11088
11088
|
}
|
11089
11089
|
|
11090
11090
|
export namespace VoteEvent {
|
@@ -11185,9 +11185,9 @@ export namespace delegation_pool {
|
|
11185
11185
|
|
11186
11186
|
export interface CreateProposalPayload
|
11187
11187
|
extends TypedFunctionPayload<
|
11188
|
-
[MoveAddressType, string, string, string,
|
11188
|
+
[MoveAddressType, string, string, string, boolean]
|
11189
11189
|
> {
|
11190
|
-
arguments_decoded: [MoveAddressType, string, string, string,
|
11190
|
+
arguments_decoded: [MoveAddressType, string, string, string, boolean];
|
11191
11191
|
type_arguments: [];
|
11192
11192
|
}
|
11193
11193
|
|
@@ -11276,8 +11276,8 @@ export namespace delegation_pool {
|
|
11276
11276
|
}
|
11277
11277
|
|
11278
11278
|
export interface VotePayload
|
11279
|
-
extends TypedFunctionPayload<[MoveAddressType, bigint, bigint,
|
11280
|
-
arguments_decoded: [MoveAddressType, bigint, bigint,
|
11279
|
+
extends TypedFunctionPayload<[MoveAddressType, bigint, bigint, boolean]> {
|
11280
|
+
arguments_decoded: [MoveAddressType, bigint, bigint, boolean];
|
11281
11281
|
type_arguments: [];
|
11282
11282
|
}
|
11283
11283
|
|
@@ -11390,7 +11390,7 @@ export namespace keyless_account {
|
|
11390
11390
|
}
|
11391
11391
|
|
11392
11392
|
export interface Group {
|
11393
|
-
dummy_field:
|
11393
|
+
dummy_field: boolean;
|
11394
11394
|
}
|
11395
11395
|
|
11396
11396
|
export namespace Group {
|
@@ -11462,7 +11462,7 @@ export namespace reconfiguration {
|
|
11462
11462
|
}
|
11463
11463
|
|
11464
11464
|
export interface DisableReconfiguration {
|
11465
|
-
dummy_field:
|
11465
|
+
dummy_field: boolean;
|
11466
11466
|
}
|
11467
11467
|
|
11468
11468
|
export namespace DisableReconfiguration {
|
@@ -12158,7 +12158,7 @@ export namespace aptos_governance {
|
|
12158
12158
|
voter: MoveAddressType;
|
12159
12159
|
stake_pool: MoveAddressType;
|
12160
12160
|
num_votes: bigint;
|
12161
|
-
should_pass:
|
12161
|
+
should_pass: boolean;
|
12162
12162
|
}
|
12163
12163
|
|
12164
12164
|
export namespace Vote {
|
@@ -12181,7 +12181,7 @@ export namespace aptos_governance {
|
|
12181
12181
|
voter: MoveAddressType;
|
12182
12182
|
stake_pool: MoveAddressType;
|
12183
12183
|
num_votes: bigint;
|
12184
|
-
should_pass:
|
12184
|
+
should_pass: boolean;
|
12185
12185
|
}
|
12186
12186
|
|
12187
12187
|
export namespace VoteEvent {
|
@@ -12200,7 +12200,7 @@ export namespace aptos_governance {
|
|
12200
12200
|
}
|
12201
12201
|
|
12202
12202
|
export interface VotingRecords {
|
12203
|
-
votes: table.Table<aptos_governance.RecordKey,
|
12203
|
+
votes: table.Table<aptos_governance.RecordKey, boolean>;
|
12204
12204
|
}
|
12205
12205
|
|
12206
12206
|
export namespace VotingRecords {
|
@@ -12236,14 +12236,14 @@ export namespace aptos_governance {
|
|
12236
12236
|
}
|
12237
12237
|
|
12238
12238
|
export interface BatchPartialVotePayload
|
12239
|
-
extends TypedFunctionPayload<[MoveAddressType[], bigint, bigint,
|
12240
|
-
arguments_decoded: [MoveAddressType[], bigint, bigint,
|
12239
|
+
extends TypedFunctionPayload<[MoveAddressType[], bigint, bigint, boolean]> {
|
12240
|
+
arguments_decoded: [MoveAddressType[], bigint, bigint, boolean];
|
12241
12241
|
type_arguments: [];
|
12242
12242
|
}
|
12243
12243
|
|
12244
12244
|
export interface BatchVotePayload
|
12245
|
-
extends TypedFunctionPayload<[MoveAddressType[], bigint,
|
12246
|
-
arguments_decoded: [MoveAddressType[], bigint,
|
12245
|
+
extends TypedFunctionPayload<[MoveAddressType[], bigint, boolean]> {
|
12246
|
+
arguments_decoded: [MoveAddressType[], bigint, boolean];
|
12247
12247
|
type_arguments: [];
|
12248
12248
|
}
|
12249
12249
|
|
@@ -12255,9 +12255,9 @@ export namespace aptos_governance {
|
|
12255
12255
|
|
12256
12256
|
export interface CreateProposalV2Payload
|
12257
12257
|
extends TypedFunctionPayload<
|
12258
|
-
[MoveAddressType, string, string, string,
|
12258
|
+
[MoveAddressType, string, string, string, boolean]
|
12259
12259
|
> {
|
12260
|
-
arguments_decoded: [MoveAddressType, string, string, string,
|
12260
|
+
arguments_decoded: [MoveAddressType, string, string, string, boolean];
|
12261
12261
|
type_arguments: [];
|
12262
12262
|
}
|
12263
12263
|
|
@@ -12273,8 +12273,8 @@ export namespace aptos_governance {
|
|
12273
12273
|
}
|
12274
12274
|
|
12275
12275
|
export interface PartialVotePayload
|
12276
|
-
extends TypedFunctionPayload<[MoveAddressType, bigint, bigint,
|
12277
|
-
arguments_decoded: [MoveAddressType, bigint, bigint,
|
12276
|
+
extends TypedFunctionPayload<[MoveAddressType, bigint, bigint, boolean]> {
|
12277
|
+
arguments_decoded: [MoveAddressType, bigint, bigint, boolean];
|
12278
12278
|
type_arguments: [];
|
12279
12279
|
}
|
12280
12280
|
|
@@ -12284,15 +12284,15 @@ export namespace aptos_governance {
|
|
12284
12284
|
}
|
12285
12285
|
|
12286
12286
|
export interface VotePayload
|
12287
|
-
extends TypedFunctionPayload<[MoveAddressType, bigint,
|
12288
|
-
arguments_decoded: [MoveAddressType, bigint,
|
12287
|
+
extends TypedFunctionPayload<[MoveAddressType, bigint, boolean]> {
|
12288
|
+
arguments_decoded: [MoveAddressType, bigint, boolean];
|
12289
12289
|
type_arguments: [];
|
12290
12290
|
}
|
12291
12291
|
}
|
12292
12292
|
|
12293
12293
|
export namespace bls12381_algebra {
|
12294
12294
|
export interface FormatFq12LscLsb {
|
12295
|
-
dummy_field:
|
12295
|
+
dummy_field: boolean;
|
12296
12296
|
}
|
12297
12297
|
|
12298
12298
|
export namespace FormatFq12LscLsb {
|
@@ -12308,7 +12308,7 @@ export namespace bls12381_algebra {
|
|
12308
12308
|
}
|
12309
12309
|
|
12310
12310
|
export interface FormatFrLsb {
|
12311
|
-
dummy_field:
|
12311
|
+
dummy_field: boolean;
|
12312
12312
|
}
|
12313
12313
|
|
12314
12314
|
export namespace FormatFrLsb {
|
@@ -12322,7 +12322,7 @@ export namespace bls12381_algebra {
|
|
12322
12322
|
}
|
12323
12323
|
|
12324
12324
|
export interface FormatFrMsb {
|
12325
|
-
dummy_field:
|
12325
|
+
dummy_field: boolean;
|
12326
12326
|
}
|
12327
12327
|
|
12328
12328
|
export namespace FormatFrMsb {
|
@@ -12336,7 +12336,7 @@ export namespace bls12381_algebra {
|
|
12336
12336
|
}
|
12337
12337
|
|
12338
12338
|
export interface FormatG1Compr {
|
12339
|
-
dummy_field:
|
12339
|
+
dummy_field: boolean;
|
12340
12340
|
}
|
12341
12341
|
|
12342
12342
|
export namespace FormatG1Compr {
|
@@ -12350,7 +12350,7 @@ export namespace bls12381_algebra {
|
|
12350
12350
|
}
|
12351
12351
|
|
12352
12352
|
export interface FormatG1Uncompr {
|
12353
|
-
dummy_field:
|
12353
|
+
dummy_field: boolean;
|
12354
12354
|
}
|
12355
12355
|
|
12356
12356
|
export namespace FormatG1Uncompr {
|
@@ -12366,7 +12366,7 @@ export namespace bls12381_algebra {
|
|
12366
12366
|
}
|
12367
12367
|
|
12368
12368
|
export interface FormatG2Compr {
|
12369
|
-
dummy_field:
|
12369
|
+
dummy_field: boolean;
|
12370
12370
|
}
|
12371
12371
|
|
12372
12372
|
export namespace FormatG2Compr {
|
@@ -12380,7 +12380,7 @@ export namespace bls12381_algebra {
|
|
12380
12380
|
}
|
12381
12381
|
|
12382
12382
|
export interface FormatG2Uncompr {
|
12383
|
-
dummy_field:
|
12383
|
+
dummy_field: boolean;
|
12384
12384
|
}
|
12385
12385
|
|
12386
12386
|
export namespace FormatG2Uncompr {
|
@@ -12396,7 +12396,7 @@ export namespace bls12381_algebra {
|
|
12396
12396
|
}
|
12397
12397
|
|
12398
12398
|
export interface FormatGt {
|
12399
|
-
dummy_field:
|
12399
|
+
dummy_field: boolean;
|
12400
12400
|
}
|
12401
12401
|
|
12402
12402
|
export namespace FormatGt {
|
@@ -12410,7 +12410,7 @@ export namespace bls12381_algebra {
|
|
12410
12410
|
}
|
12411
12411
|
|
12412
12412
|
export interface Fq12 {
|
12413
|
-
dummy_field:
|
12413
|
+
dummy_field: boolean;
|
12414
12414
|
}
|
12415
12415
|
|
12416
12416
|
export namespace Fq12 {
|
@@ -12424,7 +12424,7 @@ export namespace bls12381_algebra {
|
|
12424
12424
|
}
|
12425
12425
|
|
12426
12426
|
export interface Fr {
|
12427
|
-
dummy_field:
|
12427
|
+
dummy_field: boolean;
|
12428
12428
|
}
|
12429
12429
|
|
12430
12430
|
export namespace Fr {
|
@@ -12438,7 +12438,7 @@ export namespace bls12381_algebra {
|
|
12438
12438
|
}
|
12439
12439
|
|
12440
12440
|
export interface G1 {
|
12441
|
-
dummy_field:
|
12441
|
+
dummy_field: boolean;
|
12442
12442
|
}
|
12443
12443
|
|
12444
12444
|
export namespace G1 {
|
@@ -12452,7 +12452,7 @@ export namespace bls12381_algebra {
|
|
12452
12452
|
}
|
12453
12453
|
|
12454
12454
|
export interface G2 {
|
12455
|
-
dummy_field:
|
12455
|
+
dummy_field: boolean;
|
12456
12456
|
}
|
12457
12457
|
|
12458
12458
|
export namespace G2 {
|
@@ -12466,7 +12466,7 @@ export namespace bls12381_algebra {
|
|
12466
12466
|
}
|
12467
12467
|
|
12468
12468
|
export interface Gt {
|
12469
|
-
dummy_field:
|
12469
|
+
dummy_field: boolean;
|
12470
12470
|
}
|
12471
12471
|
|
12472
12472
|
export namespace Gt {
|
@@ -12480,7 +12480,7 @@ export namespace bls12381_algebra {
|
|
12480
12480
|
}
|
12481
12481
|
|
12482
12482
|
export interface HashG1XmdSha256SswuRo {
|
12483
|
-
dummy_field:
|
12483
|
+
dummy_field: boolean;
|
12484
12484
|
}
|
12485
12485
|
|
12486
12486
|
export namespace HashG1XmdSha256SswuRo {
|
@@ -12496,7 +12496,7 @@ export namespace bls12381_algebra {
|
|
12496
12496
|
}
|
12497
12497
|
|
12498
12498
|
export interface HashG2XmdSha256SswuRo {
|
12499
|
-
dummy_field:
|
12499
|
+
dummy_field: boolean;
|
12500
12500
|
}
|
12501
12501
|
|
12502
12502
|
export namespace HashG2XmdSha256SswuRo {
|
@@ -13704,7 +13704,7 @@ export namespace multisig_account {
|
|
13704
13704
|
export interface MultisigTransaction {
|
13705
13705
|
payload: option.Option<string>;
|
13706
13706
|
payload_hash: option.Option<string>;
|
13707
|
-
votes: simple_map.SimpleMap<MoveAddressType,
|
13707
|
+
votes: simple_map.SimpleMap<MoveAddressType, boolean>;
|
13708
13708
|
creator: MoveAddressType;
|
13709
13709
|
creation_time_secs: bigint;
|
13710
13710
|
}
|
@@ -13930,7 +13930,7 @@ export namespace multisig_account {
|
|
13930
13930
|
multisig_account: MoveAddressType;
|
13931
13931
|
owner: MoveAddressType;
|
13932
13932
|
sequence_number: bigint;
|
13933
|
-
approved:
|
13933
|
+
approved: boolean;
|
13934
13934
|
}
|
13935
13935
|
|
13936
13936
|
export namespace Vote {
|
@@ -13951,7 +13951,7 @@ export namespace multisig_account {
|
|
13951
13951
|
export interface VoteEvent {
|
13952
13952
|
owner: MoveAddressType;
|
13953
13953
|
sequence_number: bigint;
|
13954
|
-
approved:
|
13954
|
+
approved: boolean;
|
13955
13955
|
}
|
13956
13956
|
|
13957
13957
|
export namespace VoteEvent {
|
@@ -14158,20 +14158,20 @@ export namespace multisig_account {
|
|
14158
14158
|
}
|
14159
14159
|
|
14160
14160
|
export interface VoteTransactionPayload
|
14161
|
-
extends TypedFunctionPayload<[MoveAddressType, bigint,
|
14162
|
-
arguments_decoded: [MoveAddressType, bigint,
|
14161
|
+
extends TypedFunctionPayload<[MoveAddressType, bigint, boolean]> {
|
14162
|
+
arguments_decoded: [MoveAddressType, bigint, boolean];
|
14163
14163
|
type_arguments: [];
|
14164
14164
|
}
|
14165
14165
|
|
14166
14166
|
export interface VoteTransactionsPayload
|
14167
|
-
extends TypedFunctionPayload<[MoveAddressType, bigint, bigint,
|
14168
|
-
arguments_decoded: [MoveAddressType, bigint, bigint,
|
14167
|
+
extends TypedFunctionPayload<[MoveAddressType, bigint, bigint, boolean]> {
|
14168
|
+
arguments_decoded: [MoveAddressType, bigint, bigint, boolean];
|
14169
14169
|
type_arguments: [];
|
14170
14170
|
}
|
14171
14171
|
|
14172
14172
|
export interface VoteTransanctionPayload
|
14173
|
-
extends TypedFunctionPayload<[MoveAddressType, bigint,
|
14174
|
-
arguments_decoded: [MoveAddressType, bigint,
|
14173
|
+
extends TypedFunctionPayload<[MoveAddressType, bigint, boolean]> {
|
14174
|
+
arguments_decoded: [MoveAddressType, bigint, boolean];
|
14175
14175
|
type_arguments: [];
|
14176
14176
|
}
|
14177
14177
|
}
|
@@ -15199,7 +15199,7 @@ export namespace staking_contract {
|
|
15199
15199
|
}
|
15200
15200
|
|
15201
15201
|
export interface StakingGroupContainer {
|
15202
|
-
dummy_field:
|
15202
|
+
dummy_field: boolean;
|
15203
15203
|
}
|
15204
15204
|
|
15205
15205
|
export namespace StakingGroupContainer {
|
@@ -15609,7 +15609,7 @@ export class randomness_config extends AptosBaseProcessor {
|
|
15609
15609
|
|
15610
15610
|
export namespace randomness_config {
|
15611
15611
|
export interface ConfigOff {
|
15612
|
-
dummy_field:
|
15612
|
+
dummy_field: boolean;
|
15613
15613
|
}
|
15614
15614
|
|
15615
15615
|
export namespace ConfigOff {
|
@@ -15765,7 +15765,7 @@ export class governance_proposal extends AptosBaseProcessor {
|
|
15765
15765
|
|
15766
15766
|
export namespace governance_proposal {
|
15767
15767
|
export interface GovernanceProposal {
|
15768
|
-
dummy_field:
|
15768
|
+
dummy_field: boolean;
|
15769
15769
|
}
|
15770
15770
|
|
15771
15771
|
export namespace GovernanceProposal {
|
@@ -15983,7 +15983,7 @@ export class jwk_consensus_config extends AptosBaseProcessor {
|
|
15983
15983
|
|
15984
15984
|
export namespace jwk_consensus_config {
|
15985
15985
|
export interface ConfigOff {
|
15986
|
-
dummy_field:
|
15986
|
+
dummy_field: boolean;
|
15987
15987
|
}
|
15988
15988
|
|
15989
15989
|
export namespace ConfigOff {
|
@@ -16255,7 +16255,7 @@ export namespace reconfiguration_state {
|
|
16255
16255
|
}
|
16256
16256
|
|
16257
16257
|
export interface StateInactive {
|
16258
|
-
dummy_field:
|
16258
|
+
dummy_field: boolean;
|
16259
16259
|
}
|
16260
16260
|
|
16261
16261
|
export namespace StateInactive {
|
@@ -16665,7 +16665,7 @@ export class randomness_api_v0_config extends AptosBaseProcessor {
|
|
16665
16665
|
|
16666
16666
|
export namespace randomness_api_v0_config {
|
16667
16667
|
export interface AllowCustomMaxGasFlag {
|
16668
|
-
value:
|
16668
|
+
value: boolean;
|
16669
16669
|
}
|
16670
16670
|
|
16671
16671
|
export namespace AllowCustomMaxGasFlag {
|