@sentio/sdk 2.45.1 → 2.45.2-rc.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/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/0x3.ts
CHANGED
@@ -469,9 +469,9 @@ export namespace token {
|
|
469
469
|
}
|
470
470
|
|
471
471
|
export interface CollectionMutabilityConfig {
|
472
|
-
description:
|
473
|
-
uri:
|
474
|
-
maximum:
|
472
|
+
description: boolean;
|
473
|
+
uri: boolean;
|
474
|
+
maximum: boolean;
|
475
475
|
}
|
476
476
|
|
477
477
|
export namespace CollectionMutabilityConfig {
|
@@ -863,11 +863,11 @@ export namespace token {
|
|
863
863
|
}
|
864
864
|
|
865
865
|
export interface TokenMutabilityConfig {
|
866
|
-
maximum:
|
867
|
-
uri:
|
868
|
-
royalty:
|
869
|
-
description:
|
870
|
-
properties:
|
866
|
+
maximum: boolean;
|
867
|
+
uri: boolean;
|
868
|
+
royalty: boolean;
|
869
|
+
description: boolean;
|
870
|
+
properties: boolean;
|
871
871
|
}
|
872
872
|
|
873
873
|
export namespace TokenMutabilityConfig {
|
@@ -890,7 +890,7 @@ export namespace token {
|
|
890
890
|
|
891
891
|
export interface TokenStore {
|
892
892
|
tokens: _0x1.table.Table<token.TokenId, token.Token>;
|
893
|
-
direct_transfer:
|
893
|
+
direct_transfer: boolean;
|
894
894
|
deposit_events: _0x1.event.EventHandle<token.DepositEvent>;
|
895
895
|
withdraw_events: _0x1.event.EventHandle<token.WithdrawEvent>;
|
896
896
|
burn_events: _0x1.event.EventHandle<token.BurnTokenEvent>;
|
@@ -990,8 +990,8 @@ export namespace token {
|
|
990
990
|
}
|
991
991
|
|
992
992
|
export interface CreateCollectionScriptPayload
|
993
|
-
extends TypedFunctionPayload<[string, string, string, bigint,
|
994
|
-
arguments_decoded: [string, string, string, bigint,
|
993
|
+
extends TypedFunctionPayload<[string, string, string, bigint, boolean[]]> {
|
994
|
+
arguments_decoded: [string, string, string, bigint, boolean[]];
|
995
995
|
type_arguments: [];
|
996
996
|
}
|
997
997
|
|
@@ -1007,7 +1007,7 @@ export namespace token {
|
|
1007
1007
|
MoveAddressType,
|
1008
1008
|
bigint,
|
1009
1009
|
bigint,
|
1010
|
-
|
1010
|
+
boolean[],
|
1011
1011
|
string[],
|
1012
1012
|
string[],
|
1013
1013
|
string[],
|
@@ -1023,7 +1023,7 @@ export namespace token {
|
|
1023
1023
|
MoveAddressType,
|
1024
1024
|
bigint,
|
1025
1025
|
bigint,
|
1026
|
-
|
1026
|
+
boolean[],
|
1027
1027
|
string[],
|
1028
1028
|
string[],
|
1029
1029
|
string[],
|
@@ -1087,8 +1087,8 @@ export namespace token {
|
|
1087
1087
|
}
|
1088
1088
|
|
1089
1089
|
export interface OptInDirectTransferPayload
|
1090
|
-
extends TypedFunctionPayload<[
|
1091
|
-
arguments_decoded: [
|
1090
|
+
extends TypedFunctionPayload<[boolean]> {
|
1091
|
+
arguments_decoded: [boolean];
|
1092
1092
|
type_arguments: [];
|
1093
1093
|
}
|
1094
1094
|
|
@@ -2435,7 +2435,7 @@ export namespace token_event_store {
|
|
2435
2435
|
|
2436
2436
|
export interface OptInTransfer {
|
2437
2437
|
account_address: MoveAddressType;
|
2438
|
-
opt_in:
|
2438
|
+
opt_in: boolean;
|
2439
2439
|
}
|
2440
2440
|
|
2441
2441
|
export namespace OptInTransfer {
|
@@ -2455,7 +2455,7 @@ export namespace token_event_store {
|
|
2455
2455
|
}
|
2456
2456
|
|
2457
2457
|
export interface OptInTransferEvent {
|
2458
|
-
opt_in:
|
2458
|
+
opt_in: boolean;
|
2459
2459
|
}
|
2460
2460
|
|
2461
2461
|
export namespace OptInTransferEvent {
|
package/src/aptos/builtin/0x4.ts
CHANGED
@@ -978,14 +978,14 @@ export namespace aptos_token {
|
|
978
978
|
export interface AptosCollection {
|
979
979
|
mutator_ref: _0x1.option.Option<collection.MutatorRef>;
|
980
980
|
royalty_mutator_ref: _0x1.option.Option<royalty.MutatorRef>;
|
981
|
-
mutable_description:
|
982
|
-
mutable_uri:
|
983
|
-
mutable_token_description:
|
984
|
-
mutable_token_name:
|
985
|
-
mutable_token_properties:
|
986
|
-
mutable_token_uri:
|
987
|
-
tokens_burnable_by_creator:
|
988
|
-
tokens_freezable_by_creator:
|
981
|
+
mutable_description: boolean;
|
982
|
+
mutable_uri: boolean;
|
983
|
+
mutable_token_description: boolean;
|
984
|
+
mutable_token_name: boolean;
|
985
|
+
mutable_token_properties: boolean;
|
986
|
+
mutable_token_uri: boolean;
|
987
|
+
tokens_burnable_by_creator: boolean;
|
988
|
+
tokens_freezable_by_creator: boolean;
|
989
989
|
}
|
990
990
|
|
991
991
|
export namespace AptosCollection {
|
@@ -1044,15 +1044,15 @@ export namespace aptos_token {
|
|
1044
1044
|
bigint,
|
1045
1045
|
string,
|
1046
1046
|
string,
|
1047
|
-
|
1048
|
-
|
1049
|
-
|
1050
|
-
|
1051
|
-
|
1052
|
-
|
1053
|
-
|
1054
|
-
|
1055
|
-
|
1047
|
+
boolean,
|
1048
|
+
boolean,
|
1049
|
+
boolean,
|
1050
|
+
boolean,
|
1051
|
+
boolean,
|
1052
|
+
boolean,
|
1053
|
+
boolean,
|
1054
|
+
boolean,
|
1055
|
+
boolean,
|
1056
1056
|
bigint,
|
1057
1057
|
bigint,
|
1058
1058
|
]
|
@@ -1062,15 +1062,15 @@ export namespace aptos_token {
|
|
1062
1062
|
bigint,
|
1063
1063
|
string,
|
1064
1064
|
string,
|
1065
|
-
|
1066
|
-
|
1067
|
-
|
1068
|
-
|
1069
|
-
|
1070
|
-
|
1071
|
-
|
1072
|
-
|
1073
|
-
|
1065
|
+
boolean,
|
1066
|
+
boolean,
|
1067
|
+
boolean,
|
1068
|
+
boolean,
|
1069
|
+
boolean,
|
1070
|
+
boolean,
|
1071
|
+
boolean,
|
1072
|
+
boolean,
|
1073
|
+
boolean,
|
1074
1074
|
bigint,
|
1075
1075
|
bigint,
|
1076
1076
|
];
|
package/src/sui/builtin/0x1.ts
CHANGED
package/src/sui/builtin/0x2.ts
CHANGED
@@ -263,7 +263,7 @@ export namespace bcs {
|
|
263
263
|
|
264
264
|
export namespace bls12381 {
|
265
265
|
export interface G1 {
|
266
|
-
dummy_field:
|
266
|
+
dummy_field: boolean;
|
267
267
|
}
|
268
268
|
|
269
269
|
export namespace G1 {
|
@@ -277,7 +277,7 @@ export namespace bls12381 {
|
|
277
277
|
}
|
278
278
|
|
279
279
|
export interface G2 {
|
280
|
-
dummy_field:
|
280
|
+
dummy_field: boolean;
|
281
281
|
}
|
282
282
|
|
283
283
|
export namespace G2 {
|
@@ -291,7 +291,7 @@ export namespace bls12381 {
|
|
291
291
|
}
|
292
292
|
|
293
293
|
export interface GT {
|
294
|
-
dummy_field:
|
294
|
+
dummy_field: boolean;
|
295
295
|
}
|
296
296
|
|
297
297
|
export namespace GT {
|
@@ -305,7 +305,7 @@ export namespace bls12381 {
|
|
305
305
|
}
|
306
306
|
|
307
307
|
export interface Scalar {
|
308
|
-
dummy_field:
|
308
|
+
dummy_field: boolean;
|
309
309
|
}
|
310
310
|
|
311
311
|
export namespace Scalar {
|
@@ -581,7 +581,7 @@ export namespace coin {
|
|
581
581
|
|
582
582
|
export interface DenyCapV2<T0> {
|
583
583
|
id: object_.UID;
|
584
|
-
allow_global_pause:
|
584
|
+
allow_global_pause: boolean;
|
585
585
|
}
|
586
586
|
|
587
587
|
export namespace DenyCapV2 {
|
@@ -822,7 +822,7 @@ export namespace deny_list {
|
|
822
822
|
}
|
823
823
|
|
824
824
|
export interface ConfigWriteCap {
|
825
|
-
dummy_field:
|
825
|
+
dummy_field: boolean;
|
826
826
|
}
|
827
827
|
|
828
828
|
export namespace ConfigWriteCap {
|
@@ -851,7 +851,7 @@ export namespace deny_list {
|
|
851
851
|
}
|
852
852
|
|
853
853
|
export interface GlobalPauseKey {
|
854
|
-
dummy_field:
|
854
|
+
dummy_field: boolean;
|
855
855
|
}
|
856
856
|
|
857
857
|
export namespace GlobalPauseKey {
|
@@ -1610,7 +1610,7 @@ export namespace kiosk {
|
|
1610
1610
|
profits: balance.Balance<sui.SUI>;
|
1611
1611
|
owner: string;
|
1612
1612
|
item_count: number;
|
1613
|
-
allow_extensions:
|
1613
|
+
allow_extensions: boolean;
|
1614
1614
|
}
|
1615
1615
|
|
1616
1616
|
export namespace Kiosk {
|
@@ -1640,7 +1640,7 @@ export namespace kiosk {
|
|
1640
1640
|
|
1641
1641
|
export interface Listing {
|
1642
1642
|
id: object_.ID;
|
1643
|
-
is_exclusive:
|
1643
|
+
is_exclusive: boolean;
|
1644
1644
|
}
|
1645
1645
|
|
1646
1646
|
export namespace Listing {
|
@@ -1738,7 +1738,7 @@ export namespace kiosk_extension {
|
|
1738
1738
|
export interface Extension {
|
1739
1739
|
storage: bag.Bag;
|
1740
1740
|
permissions: bigint;
|
1741
|
-
is_enabled:
|
1741
|
+
is_enabled: boolean;
|
1742
1742
|
}
|
1743
1743
|
|
1744
1744
|
export namespace Extension {
|
@@ -1752,7 +1752,7 @@ export namespace kiosk_extension {
|
|
1752
1752
|
}
|
1753
1753
|
|
1754
1754
|
export interface ExtensionKey<T0> {
|
1755
|
-
dummy_field:
|
1755
|
+
dummy_field: boolean;
|
1756
1756
|
}
|
1757
1757
|
|
1758
1758
|
export namespace ExtensionKey {
|
@@ -2327,7 +2327,7 @@ export class sui extends SuiBaseProcessor {
|
|
2327
2327
|
|
2328
2328
|
export namespace sui {
|
2329
2329
|
export interface SUI {
|
2330
|
-
dummy_field:
|
2330
|
+
dummy_field: boolean;
|
2331
2331
|
}
|
2332
2332
|
|
2333
2333
|
export namespace SUI {
|
@@ -2440,7 +2440,7 @@ export namespace token {
|
|
2440
2440
|
}
|
2441
2441
|
|
2442
2442
|
export interface RuleKey<T0> {
|
2443
|
-
is_protected:
|
2443
|
+
is_protected: boolean;
|
2444
2444
|
}
|
2445
2445
|
|
2446
2446
|
export namespace RuleKey {
|
@@ -2516,7 +2516,7 @@ export namespace token {
|
|
2516
2516
|
|
2517
2517
|
export interface TokenPolicyCreated<T0> {
|
2518
2518
|
id: object_.ID;
|
2519
|
-
is_mutable:
|
2519
|
+
is_mutable: boolean;
|
2520
2520
|
}
|
2521
2521
|
|
2522
2522
|
export namespace TokenPolicyCreated {
|
@@ -2632,7 +2632,7 @@ export class transfer_policy extends SuiBaseProcessor {
|
|
2632
2632
|
|
2633
2633
|
export namespace transfer_policy {
|
2634
2634
|
export interface RuleKey<T0> {
|
2635
|
-
dummy_field:
|
2635
|
+
dummy_field: boolean;
|
2636
2636
|
}
|
2637
2637
|
|
2638
2638
|
export namespace RuleKey {
|
package/src/sui/builtin/0x3.ts
CHANGED
@@ -306,7 +306,7 @@ export namespace staking_pool {
|
|
306
306
|
}
|
307
307
|
|
308
308
|
export interface FungibleStakedSuiDataKey {
|
309
|
-
dummy_field:
|
309
|
+
dummy_field: boolean;
|
310
310
|
}
|
311
311
|
|
312
312
|
export namespace FungibleStakedSuiDataKey {
|
@@ -1341,7 +1341,7 @@ export namespace sui_system_state_inner {
|
|
1341
1341
|
_0x2.vec_set.VecSet<string>
|
1342
1342
|
>;
|
1343
1343
|
stake_subsidy: stake_subsidy.StakeSubsidy;
|
1344
|
-
safe_mode:
|
1344
|
+
safe_mode: boolean;
|
1345
1345
|
safe_mode_storage_rewards: _0x2.balance.Balance<_0x2.sui.SUI>;
|
1346
1346
|
safe_mode_computation_rewards: _0x2.balance.Balance<_0x2.sui.SUI>;
|
1347
1347
|
safe_mode_storage_rebates: bigint;
|
@@ -1376,7 +1376,7 @@ export namespace sui_system_state_inner {
|
|
1376
1376
|
_0x2.vec_set.VecSet<string>
|
1377
1377
|
>;
|
1378
1378
|
stake_subsidy: stake_subsidy.StakeSubsidy;
|
1379
|
-
safe_mode:
|
1379
|
+
safe_mode: boolean;
|
1380
1380
|
safe_mode_storage_rewards: _0x2.balance.Balance<_0x2.sui.SUI>;
|
1381
1381
|
safe_mode_computation_rewards: _0x2.balance.Balance<_0x2.sui.SUI>;
|
1382
1382
|
safe_mode_storage_rebates: bigint;
|
@@ -1922,7 +1922,7 @@ export namespace validator_set {
|
|
1922
1922
|
epoch: bigint;
|
1923
1923
|
validator_address: string;
|
1924
1924
|
staking_pool_id: _0x2.object_.ID;
|
1925
|
-
is_voluntary:
|
1925
|
+
is_voluntary: boolean;
|
1926
1926
|
}
|
1927
1927
|
|
1928
1928
|
export namespace ValidatorLeaveEvent {
|