@bitgo/sdk-coin-sui 4.2.6 → 4.2.7
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/CHANGELOG.md +6 -0
- package/dist/src/lib/mystenlab/builder/Inputs.d.ts +2 -2
- package/dist/src/lib/mystenlab/builder/TransactionBlock.d.ts +11 -11
- package/dist/src/lib/mystenlab/builder/TransactionDataBlock.d.ts +21 -21
- package/dist/src/lib/mystenlab/builder/Transactions.d.ts +20 -20
- package/dist/src/lib/mystenlab/types/coin.d.ts +4 -4
- package/dist/src/lib/mystenlab/types/events.d.ts +18 -18
- package/dist/src/lib/mystenlab/types/objects.d.ts +82 -82
- package/dist/src/lib/mystenlab/types/transactions.d.ts +243 -243
- package/dist/src/lib/mystenlab/types/validator.d.ts +4 -4
- package/package.json +7 -7
|
@@ -433,20 +433,20 @@ export declare type SuiTransaction = Infer<typeof SuiTransaction>;
|
|
|
433
433
|
export declare type ExecuteTransactionRequestType = 'WaitForEffectsCert' | 'WaitForLocalExecution';
|
|
434
434
|
export declare type TransactionKindName = 'ChangeEpoch' | 'ConsensusCommitPrologue' | 'Genesis' | 'ProgrammableTransaction';
|
|
435
435
|
export declare const SuiTransactionBlockKind: import("superstruct").Struct<{
|
|
436
|
-
kind: "ChangeEpoch";
|
|
437
436
|
epoch: string;
|
|
438
437
|
storage_charge: number;
|
|
439
438
|
computation_charge: number;
|
|
440
439
|
storage_rebate: number;
|
|
440
|
+
kind: "ChangeEpoch";
|
|
441
441
|
epoch_start_timestamp_ms?: number | undefined;
|
|
442
442
|
} | {
|
|
443
|
-
kind: "ConsensusCommitPrologue";
|
|
444
443
|
epoch: number;
|
|
445
444
|
round: number;
|
|
446
445
|
commit_timestamp_ms: number;
|
|
446
|
+
kind: "ConsensusCommitPrologue";
|
|
447
447
|
} | {
|
|
448
|
-
kind: "Genesis";
|
|
449
448
|
objects: string[];
|
|
449
|
+
kind: "Genesis";
|
|
450
450
|
} | {
|
|
451
451
|
transactions: ({
|
|
452
452
|
MoveCall: {
|
|
@@ -538,22 +538,23 @@ export declare const SuiTransactionBlockKind: import("superstruct").Struct<{
|
|
|
538
538
|
}, null>;
|
|
539
539
|
export declare type SuiTransactionBlockKind = Infer<typeof SuiTransactionBlockKind>;
|
|
540
540
|
export declare const SuiTransactionBlockData: import("superstruct").Struct<{
|
|
541
|
+
sender: string;
|
|
541
542
|
messageVersion: "v1";
|
|
542
543
|
transaction: {
|
|
543
|
-
kind: "ChangeEpoch";
|
|
544
544
|
epoch: string;
|
|
545
545
|
storage_charge: number;
|
|
546
546
|
computation_charge: number;
|
|
547
547
|
storage_rebate: number;
|
|
548
|
+
kind: "ChangeEpoch";
|
|
548
549
|
epoch_start_timestamp_ms?: number | undefined;
|
|
549
550
|
} | {
|
|
550
|
-
kind: "ConsensusCommitPrologue";
|
|
551
551
|
epoch: number;
|
|
552
552
|
round: number;
|
|
553
553
|
commit_timestamp_ms: number;
|
|
554
|
+
kind: "ConsensusCommitPrologue";
|
|
554
555
|
} | {
|
|
555
|
-
kind: "Genesis";
|
|
556
556
|
objects: string[];
|
|
557
|
+
kind: "Genesis";
|
|
557
558
|
} | {
|
|
558
559
|
transactions: ({
|
|
559
560
|
MoveCall: {
|
|
@@ -643,34 +644,33 @@ export declare const SuiTransactionBlockData: import("superstruct").Struct<{
|
|
|
643
644
|
})[];
|
|
644
645
|
kind: "ProgrammableTransaction";
|
|
645
646
|
};
|
|
646
|
-
sender: string;
|
|
647
647
|
gasData: {
|
|
648
|
-
owner: string;
|
|
649
648
|
payment: {
|
|
650
649
|
objectId: string;
|
|
651
650
|
version: string | number;
|
|
652
651
|
digest: string;
|
|
653
652
|
}[];
|
|
653
|
+
owner: string;
|
|
654
654
|
price: number;
|
|
655
655
|
budget: number;
|
|
656
656
|
};
|
|
657
657
|
}, {
|
|
658
658
|
messageVersion: import("superstruct").Struct<"v1", "v1">;
|
|
659
659
|
transaction: import("superstruct").Struct<{
|
|
660
|
-
kind: "ChangeEpoch";
|
|
661
660
|
epoch: string;
|
|
662
661
|
storage_charge: number;
|
|
663
662
|
computation_charge: number;
|
|
664
663
|
storage_rebate: number;
|
|
664
|
+
kind: "ChangeEpoch";
|
|
665
665
|
epoch_start_timestamp_ms?: number | undefined;
|
|
666
666
|
} | {
|
|
667
|
-
kind: "ConsensusCommitPrologue";
|
|
668
667
|
epoch: number;
|
|
669
668
|
round: number;
|
|
670
669
|
commit_timestamp_ms: number;
|
|
670
|
+
kind: "ConsensusCommitPrologue";
|
|
671
671
|
} | {
|
|
672
|
-
kind: "Genesis";
|
|
673
672
|
objects: string[];
|
|
673
|
+
kind: "Genesis";
|
|
674
674
|
} | {
|
|
675
675
|
transactions: ({
|
|
676
676
|
MoveCall: {
|
|
@@ -762,12 +762,12 @@ export declare const SuiTransactionBlockData: import("superstruct").Struct<{
|
|
|
762
762
|
}, null>;
|
|
763
763
|
sender: import("superstruct").Struct<string, null>;
|
|
764
764
|
gasData: import("superstruct").Struct<{
|
|
765
|
-
owner: string;
|
|
766
765
|
payment: {
|
|
767
766
|
objectId: string;
|
|
768
767
|
version: string | number;
|
|
769
768
|
digest: string;
|
|
770
769
|
}[];
|
|
770
|
+
owner: string;
|
|
771
771
|
price: number;
|
|
772
772
|
budget: number;
|
|
773
773
|
}, {
|
|
@@ -803,9 +803,9 @@ export declare const AuthorityQuorumSignInfo: import("superstruct").Struct<{
|
|
|
803
803
|
}>;
|
|
804
804
|
export declare type AuthorityQuorumSignInfo = Infer<typeof AuthorityQuorumSignInfo>;
|
|
805
805
|
export declare const GasCostSummary: import("superstruct").Struct<{
|
|
806
|
-
storageRebate: string;
|
|
807
806
|
computationCost: string;
|
|
808
807
|
storageCost: string;
|
|
808
|
+
storageRebate: string;
|
|
809
809
|
nonRefundableStorageFee: string;
|
|
810
810
|
}, {
|
|
811
811
|
computationCost: import("superstruct").Struct<string, null>;
|
|
@@ -868,16 +868,16 @@ export declare const TransactionEffectsModifiedAtVersions: import("superstruct")
|
|
|
868
868
|
sequenceNumber: import("superstruct").Struct<number, null>;
|
|
869
869
|
}>;
|
|
870
870
|
export declare const TransactionEffects: import("superstruct").Struct<{
|
|
871
|
+
messageVersion: "v1";
|
|
871
872
|
status: {
|
|
872
873
|
status: "success" | "failure";
|
|
873
874
|
error?: string | undefined;
|
|
874
875
|
};
|
|
875
|
-
messageVersion: "v1";
|
|
876
876
|
executedEpoch: string;
|
|
877
877
|
gasUsed: {
|
|
878
|
-
storageRebate: string;
|
|
879
878
|
computationCost: string;
|
|
880
879
|
storageCost: string;
|
|
880
|
+
storageRebate: string;
|
|
881
881
|
nonRefundableStorageFee: string;
|
|
882
882
|
};
|
|
883
883
|
transactionDigest: string;
|
|
@@ -897,7 +897,6 @@ export declare const TransactionEffects: import("superstruct").Struct<{
|
|
|
897
897
|
digest: string;
|
|
898
898
|
};
|
|
899
899
|
};
|
|
900
|
-
dependencies?: string[] | undefined;
|
|
901
900
|
modifiedAtVersions?: {
|
|
902
901
|
objectId: string;
|
|
903
902
|
sequenceNumber: number;
|
|
@@ -971,6 +970,7 @@ export declare const TransactionEffects: import("superstruct").Struct<{
|
|
|
971
970
|
digest: string;
|
|
972
971
|
}[] | undefined;
|
|
973
972
|
eventsDigest?: string | undefined;
|
|
973
|
+
dependencies?: string[] | undefined;
|
|
974
974
|
}, {
|
|
975
975
|
messageVersion: import("superstruct").Struct<"v1", "v1">;
|
|
976
976
|
/** The status of the execution */
|
|
@@ -995,9 +995,9 @@ export declare const TransactionEffects: import("superstruct").Struct<{
|
|
|
995
995
|
sequenceNumber: import("superstruct").Struct<number, null>;
|
|
996
996
|
}>>;
|
|
997
997
|
gasUsed: import("superstruct").Struct<{
|
|
998
|
-
storageRebate: string;
|
|
999
998
|
computationCost: string;
|
|
1000
999
|
storageCost: string;
|
|
1000
|
+
storageRebate: string;
|
|
1001
1001
|
nonRefundableStorageFee: string;
|
|
1002
1002
|
}, {
|
|
1003
1003
|
computationCost: import("superstruct").Struct<string, null>;
|
|
@@ -1266,28 +1266,28 @@ export declare const TransactionEffects: import("superstruct").Struct<{
|
|
|
1266
1266
|
}>;
|
|
1267
1267
|
export declare type TransactionEffects = Infer<typeof TransactionEffects>;
|
|
1268
1268
|
export declare const TransactionEvents: import("superstruct").Struct<{
|
|
1269
|
-
type: string;
|
|
1270
1269
|
id: {
|
|
1271
1270
|
txDigest: string;
|
|
1272
1271
|
eventSeq: number;
|
|
1273
1272
|
};
|
|
1274
|
-
sender: string;
|
|
1275
1273
|
packageId: string;
|
|
1276
1274
|
transactionModule: string;
|
|
1277
|
-
|
|
1275
|
+
sender: string;
|
|
1276
|
+
type: string;
|
|
1278
1277
|
parsedJson?: Record<string, any> | undefined;
|
|
1278
|
+
bcs?: string | undefined;
|
|
1279
1279
|
timestampMs?: number | undefined;
|
|
1280
1280
|
}[], import("superstruct").Struct<{
|
|
1281
|
-
type: string;
|
|
1282
1281
|
id: {
|
|
1283
1282
|
txDigest: string;
|
|
1284
1283
|
eventSeq: number;
|
|
1285
1284
|
};
|
|
1286
|
-
sender: string;
|
|
1287
1285
|
packageId: string;
|
|
1288
1286
|
transactionModule: string;
|
|
1289
|
-
|
|
1287
|
+
sender: string;
|
|
1288
|
+
type: string;
|
|
1290
1289
|
parsedJson?: Record<string, any> | undefined;
|
|
1290
|
+
bcs?: string | undefined;
|
|
1291
1291
|
timestampMs?: number | undefined;
|
|
1292
1292
|
}, {
|
|
1293
1293
|
id: import("superstruct").Struct<{
|
|
@@ -1308,16 +1308,16 @@ export declare const TransactionEvents: import("superstruct").Struct<{
|
|
|
1308
1308
|
export declare type TransactionEvents = Infer<typeof TransactionEvents>;
|
|
1309
1309
|
export declare const DevInspectResults: import("superstruct").Struct<{
|
|
1310
1310
|
effects: {
|
|
1311
|
+
messageVersion: "v1";
|
|
1311
1312
|
status: {
|
|
1312
1313
|
status: "success" | "failure";
|
|
1313
1314
|
error?: string | undefined;
|
|
1314
1315
|
};
|
|
1315
|
-
messageVersion: "v1";
|
|
1316
1316
|
executedEpoch: string;
|
|
1317
1317
|
gasUsed: {
|
|
1318
|
-
storageRebate: string;
|
|
1319
1318
|
computationCost: string;
|
|
1320
1319
|
storageCost: string;
|
|
1320
|
+
storageRebate: string;
|
|
1321
1321
|
nonRefundableStorageFee: string;
|
|
1322
1322
|
};
|
|
1323
1323
|
transactionDigest: string;
|
|
@@ -1337,7 +1337,6 @@ export declare const DevInspectResults: import("superstruct").Struct<{
|
|
|
1337
1337
|
digest: string;
|
|
1338
1338
|
};
|
|
1339
1339
|
};
|
|
1340
|
-
dependencies?: string[] | undefined;
|
|
1341
1340
|
modifiedAtVersions?: {
|
|
1342
1341
|
objectId: string;
|
|
1343
1342
|
sequenceNumber: number;
|
|
@@ -1411,18 +1410,19 @@ export declare const DevInspectResults: import("superstruct").Struct<{
|
|
|
1411
1410
|
digest: string;
|
|
1412
1411
|
}[] | undefined;
|
|
1413
1412
|
eventsDigest?: string | undefined;
|
|
1413
|
+
dependencies?: string[] | undefined;
|
|
1414
1414
|
};
|
|
1415
1415
|
events: {
|
|
1416
|
-
type: string;
|
|
1417
1416
|
id: {
|
|
1418
1417
|
txDigest: string;
|
|
1419
1418
|
eventSeq: number;
|
|
1420
1419
|
};
|
|
1421
|
-
sender: string;
|
|
1422
1420
|
packageId: string;
|
|
1423
1421
|
transactionModule: string;
|
|
1424
|
-
|
|
1422
|
+
sender: string;
|
|
1423
|
+
type: string;
|
|
1425
1424
|
parsedJson?: Record<string, any> | undefined;
|
|
1425
|
+
bcs?: string | undefined;
|
|
1426
1426
|
timestampMs?: number | undefined;
|
|
1427
1427
|
}[];
|
|
1428
1428
|
error?: string | undefined;
|
|
@@ -1438,16 +1438,16 @@ export declare const DevInspectResults: import("superstruct").Struct<{
|
|
|
1438
1438
|
}[] | undefined;
|
|
1439
1439
|
}, {
|
|
1440
1440
|
effects: import("superstruct").Struct<{
|
|
1441
|
+
messageVersion: "v1";
|
|
1441
1442
|
status: {
|
|
1442
1443
|
status: "success" | "failure";
|
|
1443
1444
|
error?: string | undefined;
|
|
1444
1445
|
};
|
|
1445
|
-
messageVersion: "v1";
|
|
1446
1446
|
executedEpoch: string;
|
|
1447
1447
|
gasUsed: {
|
|
1448
|
-
storageRebate: string;
|
|
1449
1448
|
computationCost: string;
|
|
1450
1449
|
storageCost: string;
|
|
1450
|
+
storageRebate: string;
|
|
1451
1451
|
nonRefundableStorageFee: string;
|
|
1452
1452
|
};
|
|
1453
1453
|
transactionDigest: string;
|
|
@@ -1467,7 +1467,6 @@ export declare const DevInspectResults: import("superstruct").Struct<{
|
|
|
1467
1467
|
digest: string;
|
|
1468
1468
|
};
|
|
1469
1469
|
};
|
|
1470
|
-
dependencies?: string[] | undefined;
|
|
1471
1470
|
modifiedAtVersions?: {
|
|
1472
1471
|
objectId: string;
|
|
1473
1472
|
sequenceNumber: number;
|
|
@@ -1541,6 +1540,7 @@ export declare const DevInspectResults: import("superstruct").Struct<{
|
|
|
1541
1540
|
digest: string;
|
|
1542
1541
|
}[] | undefined;
|
|
1543
1542
|
eventsDigest?: string | undefined;
|
|
1543
|
+
dependencies?: string[] | undefined;
|
|
1544
1544
|
}, {
|
|
1545
1545
|
messageVersion: import("superstruct").Struct<"v1", "v1">;
|
|
1546
1546
|
/** The status of the execution */
|
|
@@ -1565,9 +1565,9 @@ export declare const DevInspectResults: import("superstruct").Struct<{
|
|
|
1565
1565
|
sequenceNumber: import("superstruct").Struct<number, null>;
|
|
1566
1566
|
}>>;
|
|
1567
1567
|
gasUsed: import("superstruct").Struct<{
|
|
1568
|
-
storageRebate: string;
|
|
1569
1568
|
computationCost: string;
|
|
1570
1569
|
storageCost: string;
|
|
1570
|
+
storageRebate: string;
|
|
1571
1571
|
nonRefundableStorageFee: string;
|
|
1572
1572
|
}, {
|
|
1573
1573
|
computationCost: import("superstruct").Struct<string, null>;
|
|
@@ -1835,28 +1835,28 @@ export declare const DevInspectResults: import("superstruct").Struct<{
|
|
|
1835
1835
|
dependencies: import("superstruct").Struct<string[] | undefined, import("superstruct").Struct<string, null>>;
|
|
1836
1836
|
}>;
|
|
1837
1837
|
events: import("superstruct").Struct<{
|
|
1838
|
-
type: string;
|
|
1839
1838
|
id: {
|
|
1840
1839
|
txDigest: string;
|
|
1841
1840
|
eventSeq: number;
|
|
1842
1841
|
};
|
|
1843
|
-
sender: string;
|
|
1844
1842
|
packageId: string;
|
|
1845
1843
|
transactionModule: string;
|
|
1846
|
-
|
|
1844
|
+
sender: string;
|
|
1845
|
+
type: string;
|
|
1847
1846
|
parsedJson?: Record<string, any> | undefined;
|
|
1847
|
+
bcs?: string | undefined;
|
|
1848
1848
|
timestampMs?: number | undefined;
|
|
1849
1849
|
}[], import("superstruct").Struct<{
|
|
1850
|
-
type: string;
|
|
1851
1850
|
id: {
|
|
1852
1851
|
txDigest: string;
|
|
1853
1852
|
eventSeq: number;
|
|
1854
1853
|
};
|
|
1855
|
-
sender: string;
|
|
1856
1854
|
packageId: string;
|
|
1857
1855
|
transactionModule: string;
|
|
1858
|
-
|
|
1856
|
+
sender: string;
|
|
1857
|
+
type: string;
|
|
1859
1858
|
parsedJson?: Record<string, any> | undefined;
|
|
1859
|
+
bcs?: string | undefined;
|
|
1860
1860
|
timestampMs?: number | undefined;
|
|
1861
1861
|
}, {
|
|
1862
1862
|
id: import("superstruct").Struct<{
|
|
@@ -1935,22 +1935,23 @@ export declare type AuthorityName = Infer<typeof AuthorityName>;
|
|
|
1935
1935
|
export declare const AuthorityName: import("superstruct").Struct<string, null>;
|
|
1936
1936
|
export declare const SuiTransactionBlock: import("superstruct").Struct<{
|
|
1937
1937
|
data: {
|
|
1938
|
+
sender: string;
|
|
1938
1939
|
messageVersion: "v1";
|
|
1939
1940
|
transaction: {
|
|
1940
|
-
kind: "ChangeEpoch";
|
|
1941
1941
|
epoch: string;
|
|
1942
1942
|
storage_charge: number;
|
|
1943
1943
|
computation_charge: number;
|
|
1944
1944
|
storage_rebate: number;
|
|
1945
|
+
kind: "ChangeEpoch";
|
|
1945
1946
|
epoch_start_timestamp_ms?: number | undefined;
|
|
1946
1947
|
} | {
|
|
1947
|
-
kind: "ConsensusCommitPrologue";
|
|
1948
1948
|
epoch: number;
|
|
1949
1949
|
round: number;
|
|
1950
1950
|
commit_timestamp_ms: number;
|
|
1951
|
+
kind: "ConsensusCommitPrologue";
|
|
1951
1952
|
} | {
|
|
1952
|
-
kind: "Genesis";
|
|
1953
1953
|
objects: string[];
|
|
1954
|
+
kind: "Genesis";
|
|
1954
1955
|
} | {
|
|
1955
1956
|
transactions: ({
|
|
1956
1957
|
MoveCall: {
|
|
@@ -2040,14 +2041,13 @@ export declare const SuiTransactionBlock: import("superstruct").Struct<{
|
|
|
2040
2041
|
})[];
|
|
2041
2042
|
kind: "ProgrammableTransaction";
|
|
2042
2043
|
};
|
|
2043
|
-
sender: string;
|
|
2044
2044
|
gasData: {
|
|
2045
|
-
owner: string;
|
|
2046
2045
|
payment: {
|
|
2047
2046
|
objectId: string;
|
|
2048
2047
|
version: string | number;
|
|
2049
2048
|
digest: string;
|
|
2050
2049
|
}[];
|
|
2050
|
+
owner: string;
|
|
2051
2051
|
price: number;
|
|
2052
2052
|
budget: number;
|
|
2053
2053
|
};
|
|
@@ -2055,22 +2055,23 @@ export declare const SuiTransactionBlock: import("superstruct").Struct<{
|
|
|
2055
2055
|
txSignatures: string[];
|
|
2056
2056
|
}, {
|
|
2057
2057
|
data: import("superstruct").Struct<{
|
|
2058
|
+
sender: string;
|
|
2058
2059
|
messageVersion: "v1";
|
|
2059
2060
|
transaction: {
|
|
2060
|
-
kind: "ChangeEpoch";
|
|
2061
2061
|
epoch: string;
|
|
2062
2062
|
storage_charge: number;
|
|
2063
2063
|
computation_charge: number;
|
|
2064
2064
|
storage_rebate: number;
|
|
2065
|
+
kind: "ChangeEpoch";
|
|
2065
2066
|
epoch_start_timestamp_ms?: number | undefined;
|
|
2066
2067
|
} | {
|
|
2067
|
-
kind: "ConsensusCommitPrologue";
|
|
2068
2068
|
epoch: number;
|
|
2069
2069
|
round: number;
|
|
2070
2070
|
commit_timestamp_ms: number;
|
|
2071
|
+
kind: "ConsensusCommitPrologue";
|
|
2071
2072
|
} | {
|
|
2072
|
-
kind: "Genesis";
|
|
2073
2073
|
objects: string[];
|
|
2074
|
+
kind: "Genesis";
|
|
2074
2075
|
} | {
|
|
2075
2076
|
transactions: ({
|
|
2076
2077
|
MoveCall: {
|
|
@@ -2160,34 +2161,33 @@ export declare const SuiTransactionBlock: import("superstruct").Struct<{
|
|
|
2160
2161
|
})[];
|
|
2161
2162
|
kind: "ProgrammableTransaction";
|
|
2162
2163
|
};
|
|
2163
|
-
sender: string;
|
|
2164
2164
|
gasData: {
|
|
2165
|
-
owner: string;
|
|
2166
2165
|
payment: {
|
|
2167
2166
|
objectId: string;
|
|
2168
2167
|
version: string | number;
|
|
2169
2168
|
digest: string;
|
|
2170
2169
|
}[];
|
|
2170
|
+
owner: string;
|
|
2171
2171
|
price: number;
|
|
2172
2172
|
budget: number;
|
|
2173
2173
|
};
|
|
2174
2174
|
}, {
|
|
2175
2175
|
messageVersion: import("superstruct").Struct<"v1", "v1">;
|
|
2176
2176
|
transaction: import("superstruct").Struct<{
|
|
2177
|
-
kind: "ChangeEpoch";
|
|
2178
2177
|
epoch: string;
|
|
2179
2178
|
storage_charge: number;
|
|
2180
2179
|
computation_charge: number;
|
|
2181
2180
|
storage_rebate: number;
|
|
2181
|
+
kind: "ChangeEpoch";
|
|
2182
2182
|
epoch_start_timestamp_ms?: number | undefined;
|
|
2183
2183
|
} | {
|
|
2184
|
-
kind: "ConsensusCommitPrologue";
|
|
2185
2184
|
epoch: number;
|
|
2186
2185
|
round: number;
|
|
2187
2186
|
commit_timestamp_ms: number;
|
|
2187
|
+
kind: "ConsensusCommitPrologue";
|
|
2188
2188
|
} | {
|
|
2189
|
-
kind: "Genesis";
|
|
2190
2189
|
objects: string[];
|
|
2190
|
+
kind: "Genesis";
|
|
2191
2191
|
} | {
|
|
2192
2192
|
transactions: ({
|
|
2193
2193
|
MoveCall: {
|
|
@@ -2279,12 +2279,12 @@ export declare const SuiTransactionBlock: import("superstruct").Struct<{
|
|
|
2279
2279
|
}, null>;
|
|
2280
2280
|
sender: import("superstruct").Struct<string, null>;
|
|
2281
2281
|
gasData: import("superstruct").Struct<{
|
|
2282
|
-
owner: string;
|
|
2283
2282
|
payment: {
|
|
2284
2283
|
objectId: string;
|
|
2285
2284
|
version: string | number;
|
|
2286
2285
|
digest: string;
|
|
2287
2286
|
}[];
|
|
2287
|
+
owner: string;
|
|
2288
2288
|
price: number;
|
|
2289
2289
|
budget: number;
|
|
2290
2290
|
}, {
|
|
@@ -2310,11 +2310,11 @@ export declare const SuiTransactionBlock: import("superstruct").Struct<{
|
|
|
2310
2310
|
}>;
|
|
2311
2311
|
export declare type SuiTransactionBlock = Infer<typeof SuiTransactionBlock>;
|
|
2312
2312
|
export declare const SuiObjectChangePublished: import("superstruct").Struct<{
|
|
2313
|
+
packageId: string;
|
|
2313
2314
|
type: "published";
|
|
2314
2315
|
version: number;
|
|
2315
2316
|
digest: string;
|
|
2316
2317
|
modules: string[];
|
|
2317
|
-
packageId: string;
|
|
2318
2318
|
}, {
|
|
2319
2319
|
type: import("superstruct").Struct<"published", "published">;
|
|
2320
2320
|
packageId: import("superstruct").Struct<string, null>;
|
|
@@ -2324,12 +2324,12 @@ export declare const SuiObjectChangePublished: import("superstruct").Struct<{
|
|
|
2324
2324
|
}>;
|
|
2325
2325
|
export declare type SuiObjectChangePublished = Infer<typeof SuiObjectChangePublished>;
|
|
2326
2326
|
export declare const SuiObjectChangeTransferred: import("superstruct").Struct<{
|
|
2327
|
+
sender: string;
|
|
2327
2328
|
type: "transferred";
|
|
2328
2329
|
objectType: string;
|
|
2329
2330
|
objectId: string;
|
|
2330
2331
|
version: number;
|
|
2331
2332
|
digest: string;
|
|
2332
|
-
sender: string;
|
|
2333
2333
|
recipient: {
|
|
2334
2334
|
AddressOwner: string;
|
|
2335
2335
|
} | {
|
|
@@ -2358,6 +2358,7 @@ export declare const SuiObjectChangeTransferred: import("superstruct").Struct<{
|
|
|
2358
2358
|
}>;
|
|
2359
2359
|
export declare type SuiObjectChangeTransferred = Infer<typeof SuiObjectChangeTransferred>;
|
|
2360
2360
|
export declare const SuiObjectChangeMutated: import("superstruct").Struct<{
|
|
2361
|
+
sender: string;
|
|
2361
2362
|
type: "mutated";
|
|
2362
2363
|
objectType: string;
|
|
2363
2364
|
objectId: string;
|
|
@@ -2372,7 +2373,6 @@ export declare const SuiObjectChangeMutated: import("superstruct").Struct<{
|
|
|
2372
2373
|
initial_shared_version: number;
|
|
2373
2374
|
};
|
|
2374
2375
|
} | "Immutable";
|
|
2375
|
-
sender: string;
|
|
2376
2376
|
previousVersion: number;
|
|
2377
2377
|
}, {
|
|
2378
2378
|
type: import("superstruct").Struct<"mutated", "mutated">;
|
|
@@ -2394,11 +2394,11 @@ export declare const SuiObjectChangeMutated: import("superstruct").Struct<{
|
|
|
2394
2394
|
}>;
|
|
2395
2395
|
export declare type SuiObjectChangeMutated = Infer<typeof SuiObjectChangeMutated>;
|
|
2396
2396
|
export declare const SuiObjectChangeDeleted: import("superstruct").Struct<{
|
|
2397
|
+
sender: string;
|
|
2397
2398
|
type: "deleted";
|
|
2398
2399
|
objectType: string;
|
|
2399
2400
|
objectId: string;
|
|
2400
2401
|
version: number;
|
|
2401
|
-
sender: string;
|
|
2402
2402
|
}, {
|
|
2403
2403
|
type: import("superstruct").Struct<"deleted", "deleted">;
|
|
2404
2404
|
sender: import("superstruct").Struct<string, null>;
|
|
@@ -2408,11 +2408,11 @@ export declare const SuiObjectChangeDeleted: import("superstruct").Struct<{
|
|
|
2408
2408
|
}>;
|
|
2409
2409
|
export declare type SuiObjectChangeDeleted = Infer<typeof SuiObjectChangeDeleted>;
|
|
2410
2410
|
export declare const SuiObjectChangeWrapped: import("superstruct").Struct<{
|
|
2411
|
+
sender: string;
|
|
2411
2412
|
type: "wrapped";
|
|
2412
2413
|
objectType: string;
|
|
2413
2414
|
objectId: string;
|
|
2414
2415
|
version: number;
|
|
2415
|
-
sender: string;
|
|
2416
2416
|
}, {
|
|
2417
2417
|
type: import("superstruct").Struct<"wrapped", "wrapped">;
|
|
2418
2418
|
sender: import("superstruct").Struct<string, null>;
|
|
@@ -2422,6 +2422,7 @@ export declare const SuiObjectChangeWrapped: import("superstruct").Struct<{
|
|
|
2422
2422
|
}>;
|
|
2423
2423
|
export declare type SuiObjectChangeWrapped = Infer<typeof SuiObjectChangeWrapped>;
|
|
2424
2424
|
export declare const SuiObjectChangeCreated: import("superstruct").Struct<{
|
|
2425
|
+
sender: string;
|
|
2425
2426
|
type: "created";
|
|
2426
2427
|
objectType: string;
|
|
2427
2428
|
objectId: string;
|
|
@@ -2436,7 +2437,6 @@ export declare const SuiObjectChangeCreated: import("superstruct").Struct<{
|
|
|
2436
2437
|
initial_shared_version: number;
|
|
2437
2438
|
};
|
|
2438
2439
|
} | "Immutable";
|
|
2439
|
-
sender: string;
|
|
2440
2440
|
}, {
|
|
2441
2441
|
type: import("superstruct").Struct<"created", "created">;
|
|
2442
2442
|
sender: import("superstruct").Struct<string, null>;
|
|
@@ -2456,18 +2456,18 @@ export declare const SuiObjectChangeCreated: import("superstruct").Struct<{
|
|
|
2456
2456
|
}>;
|
|
2457
2457
|
export declare type SuiObjectChangeCreated = Infer<typeof SuiObjectChangeCreated>;
|
|
2458
2458
|
export declare const SuiObjectChange: import("superstruct").Struct<{
|
|
2459
|
+
packageId: string;
|
|
2459
2460
|
type: "published";
|
|
2460
2461
|
version: number;
|
|
2461
2462
|
digest: string;
|
|
2462
2463
|
modules: string[];
|
|
2463
|
-
packageId: string;
|
|
2464
2464
|
} | {
|
|
2465
|
+
sender: string;
|
|
2465
2466
|
type: "transferred";
|
|
2466
2467
|
objectType: string;
|
|
2467
2468
|
objectId: string;
|
|
2468
2469
|
version: number;
|
|
2469
2470
|
digest: string;
|
|
2470
|
-
sender: string;
|
|
2471
2471
|
recipient: {
|
|
2472
2472
|
AddressOwner: string;
|
|
2473
2473
|
} | {
|
|
@@ -2478,6 +2478,7 @@ export declare const SuiObjectChange: import("superstruct").Struct<{
|
|
|
2478
2478
|
};
|
|
2479
2479
|
} | "Immutable";
|
|
2480
2480
|
} | {
|
|
2481
|
+
sender: string;
|
|
2481
2482
|
type: "mutated";
|
|
2482
2483
|
objectType: string;
|
|
2483
2484
|
objectId: string;
|
|
@@ -2492,21 +2493,21 @@ export declare const SuiObjectChange: import("superstruct").Struct<{
|
|
|
2492
2493
|
initial_shared_version: number;
|
|
2493
2494
|
};
|
|
2494
2495
|
} | "Immutable";
|
|
2495
|
-
sender: string;
|
|
2496
2496
|
previousVersion: number;
|
|
2497
2497
|
} | {
|
|
2498
|
+
sender: string;
|
|
2498
2499
|
type: "deleted";
|
|
2499
2500
|
objectType: string;
|
|
2500
2501
|
objectId: string;
|
|
2501
2502
|
version: number;
|
|
2502
|
-
sender: string;
|
|
2503
2503
|
} | {
|
|
2504
|
+
sender: string;
|
|
2504
2505
|
type: "wrapped";
|
|
2505
2506
|
objectType: string;
|
|
2506
2507
|
objectId: string;
|
|
2507
2508
|
version: number;
|
|
2508
|
-
sender: string;
|
|
2509
2509
|
} | {
|
|
2510
|
+
sender: string;
|
|
2510
2511
|
type: "created";
|
|
2511
2512
|
objectType: string;
|
|
2512
2513
|
objectId: string;
|
|
@@ -2521,7 +2522,6 @@ export declare const SuiObjectChange: import("superstruct").Struct<{
|
|
|
2521
2522
|
initial_shared_version: number;
|
|
2522
2523
|
};
|
|
2523
2524
|
} | "Immutable";
|
|
2524
|
-
sender: string;
|
|
2525
2525
|
}, null>;
|
|
2526
2526
|
export declare type SuiObjectChange = Infer<typeof SuiObjectChange>;
|
|
2527
2527
|
export declare const BalanceChange: import("superstruct").Struct<{
|
|
@@ -2551,24 +2551,26 @@ export declare const BalanceChange: import("superstruct").Struct<{
|
|
|
2551
2551
|
}>;
|
|
2552
2552
|
export declare const SuiTransactionBlockResponse: import("superstruct").Struct<{
|
|
2553
2553
|
digest: string;
|
|
2554
|
+
timestampMs?: number | undefined;
|
|
2554
2555
|
transaction?: {
|
|
2555
2556
|
data: {
|
|
2557
|
+
sender: string;
|
|
2556
2558
|
messageVersion: "v1";
|
|
2557
2559
|
transaction: {
|
|
2558
|
-
kind: "ChangeEpoch";
|
|
2559
2560
|
epoch: string;
|
|
2560
2561
|
storage_charge: number;
|
|
2561
2562
|
computation_charge: number;
|
|
2562
2563
|
storage_rebate: number;
|
|
2564
|
+
kind: "ChangeEpoch";
|
|
2563
2565
|
epoch_start_timestamp_ms?: number | undefined;
|
|
2564
2566
|
} | {
|
|
2565
|
-
kind: "ConsensusCommitPrologue";
|
|
2566
2567
|
epoch: number;
|
|
2567
2568
|
round: number;
|
|
2568
2569
|
commit_timestamp_ms: number;
|
|
2570
|
+
kind: "ConsensusCommitPrologue";
|
|
2569
2571
|
} | {
|
|
2570
|
-
kind: "Genesis";
|
|
2571
2572
|
objects: string[];
|
|
2573
|
+
kind: "Genesis";
|
|
2572
2574
|
} | {
|
|
2573
2575
|
transactions: ({
|
|
2574
2576
|
MoveCall: {
|
|
@@ -2658,32 +2660,30 @@ export declare const SuiTransactionBlockResponse: import("superstruct").Struct<{
|
|
|
2658
2660
|
})[];
|
|
2659
2661
|
kind: "ProgrammableTransaction";
|
|
2660
2662
|
};
|
|
2661
|
-
sender: string;
|
|
2662
2663
|
gasData: {
|
|
2663
|
-
owner: string;
|
|
2664
2664
|
payment: {
|
|
2665
2665
|
objectId: string;
|
|
2666
2666
|
version: string | number;
|
|
2667
2667
|
digest: string;
|
|
2668
2668
|
}[];
|
|
2669
|
+
owner: string;
|
|
2669
2670
|
price: number;
|
|
2670
2671
|
budget: number;
|
|
2671
2672
|
};
|
|
2672
2673
|
};
|
|
2673
2674
|
txSignatures: string[];
|
|
2674
2675
|
} | undefined;
|
|
2675
|
-
timestampMs?: number | undefined;
|
|
2676
2676
|
effects?: {
|
|
2677
|
+
messageVersion: "v1";
|
|
2677
2678
|
status: {
|
|
2678
2679
|
status: "success" | "failure";
|
|
2679
2680
|
error?: string | undefined;
|
|
2680
2681
|
};
|
|
2681
|
-
messageVersion: "v1";
|
|
2682
2682
|
executedEpoch: string;
|
|
2683
2683
|
gasUsed: {
|
|
2684
|
-
storageRebate: string;
|
|
2685
2684
|
computationCost: string;
|
|
2686
2685
|
storageCost: string;
|
|
2686
|
+
storageRebate: string;
|
|
2687
2687
|
nonRefundableStorageFee: string;
|
|
2688
2688
|
};
|
|
2689
2689
|
transactionDigest: string;
|
|
@@ -2703,7 +2703,6 @@ export declare const SuiTransactionBlockResponse: import("superstruct").Struct<{
|
|
|
2703
2703
|
digest: string;
|
|
2704
2704
|
};
|
|
2705
2705
|
};
|
|
2706
|
-
dependencies?: string[] | undefined;
|
|
2707
2706
|
modifiedAtVersions?: {
|
|
2708
2707
|
objectId: string;
|
|
2709
2708
|
sequenceNumber: number;
|
|
@@ -2777,35 +2776,36 @@ export declare const SuiTransactionBlockResponse: import("superstruct").Struct<{
|
|
|
2777
2776
|
digest: string;
|
|
2778
2777
|
}[] | undefined;
|
|
2779
2778
|
eventsDigest?: string | undefined;
|
|
2779
|
+
dependencies?: string[] | undefined;
|
|
2780
2780
|
} | undefined;
|
|
2781
2781
|
events?: {
|
|
2782
|
-
type: string;
|
|
2783
2782
|
id: {
|
|
2784
2783
|
txDigest: string;
|
|
2785
2784
|
eventSeq: number;
|
|
2786
2785
|
};
|
|
2787
|
-
sender: string;
|
|
2788
2786
|
packageId: string;
|
|
2789
2787
|
transactionModule: string;
|
|
2790
|
-
|
|
2788
|
+
sender: string;
|
|
2789
|
+
type: string;
|
|
2791
2790
|
parsedJson?: Record<string, any> | undefined;
|
|
2791
|
+
bcs?: string | undefined;
|
|
2792
2792
|
timestampMs?: number | undefined;
|
|
2793
2793
|
}[] | undefined;
|
|
2794
2794
|
checkpoint?: number | undefined;
|
|
2795
2795
|
confirmedLocalExecution?: boolean | undefined;
|
|
2796
2796
|
objectChanges?: ({
|
|
2797
|
+
packageId: string;
|
|
2797
2798
|
type: "published";
|
|
2798
2799
|
version: number;
|
|
2799
2800
|
digest: string;
|
|
2800
2801
|
modules: string[];
|
|
2801
|
-
packageId: string;
|
|
2802
2802
|
} | {
|
|
2803
|
+
sender: string;
|
|
2803
2804
|
type: "transferred";
|
|
2804
2805
|
objectType: string;
|
|
2805
2806
|
objectId: string;
|
|
2806
2807
|
version: number;
|
|
2807
2808
|
digest: string;
|
|
2808
|
-
sender: string;
|
|
2809
2809
|
recipient: {
|
|
2810
2810
|
AddressOwner: string;
|
|
2811
2811
|
} | {
|
|
@@ -2816,6 +2816,7 @@ export declare const SuiTransactionBlockResponse: import("superstruct").Struct<{
|
|
|
2816
2816
|
};
|
|
2817
2817
|
} | "Immutable";
|
|
2818
2818
|
} | {
|
|
2819
|
+
sender: string;
|
|
2819
2820
|
type: "mutated";
|
|
2820
2821
|
objectType: string;
|
|
2821
2822
|
objectId: string;
|
|
@@ -2830,21 +2831,21 @@ export declare const SuiTransactionBlockResponse: import("superstruct").Struct<{
|
|
|
2830
2831
|
initial_shared_version: number;
|
|
2831
2832
|
};
|
|
2832
2833
|
} | "Immutable";
|
|
2833
|
-
sender: string;
|
|
2834
2834
|
previousVersion: number;
|
|
2835
2835
|
} | {
|
|
2836
|
+
sender: string;
|
|
2836
2837
|
type: "deleted";
|
|
2837
2838
|
objectType: string;
|
|
2838
2839
|
objectId: string;
|
|
2839
2840
|
version: number;
|
|
2840
|
-
sender: string;
|
|
2841
2841
|
} | {
|
|
2842
|
+
sender: string;
|
|
2842
2843
|
type: "wrapped";
|
|
2843
2844
|
objectType: string;
|
|
2844
2845
|
objectId: string;
|
|
2845
2846
|
version: number;
|
|
2846
|
-
sender: string;
|
|
2847
2847
|
} | {
|
|
2848
|
+
sender: string;
|
|
2848
2849
|
type: "created";
|
|
2849
2850
|
objectType: string;
|
|
2850
2851
|
objectId: string;
|
|
@@ -2859,7 +2860,6 @@ export declare const SuiTransactionBlockResponse: import("superstruct").Struct<{
|
|
|
2859
2860
|
initial_shared_version: number;
|
|
2860
2861
|
};
|
|
2861
2862
|
} | "Immutable";
|
|
2862
|
-
sender: string;
|
|
2863
2863
|
})[] | undefined;
|
|
2864
2864
|
balanceChanges?: {
|
|
2865
2865
|
owner: {
|
|
@@ -2879,22 +2879,23 @@ export declare const SuiTransactionBlockResponse: import("superstruct").Struct<{
|
|
|
2879
2879
|
digest: import("superstruct").Struct<string, null>;
|
|
2880
2880
|
transaction: import("superstruct").Struct<{
|
|
2881
2881
|
data: {
|
|
2882
|
+
sender: string;
|
|
2882
2883
|
messageVersion: "v1";
|
|
2883
2884
|
transaction: {
|
|
2884
|
-
kind: "ChangeEpoch";
|
|
2885
2885
|
epoch: string;
|
|
2886
2886
|
storage_charge: number;
|
|
2887
2887
|
computation_charge: number;
|
|
2888
2888
|
storage_rebate: number;
|
|
2889
|
+
kind: "ChangeEpoch";
|
|
2889
2890
|
epoch_start_timestamp_ms?: number | undefined;
|
|
2890
2891
|
} | {
|
|
2891
|
-
kind: "ConsensusCommitPrologue";
|
|
2892
2892
|
epoch: number;
|
|
2893
2893
|
round: number;
|
|
2894
2894
|
commit_timestamp_ms: number;
|
|
2895
|
+
kind: "ConsensusCommitPrologue";
|
|
2895
2896
|
} | {
|
|
2896
|
-
kind: "Genesis";
|
|
2897
2897
|
objects: string[];
|
|
2898
|
+
kind: "Genesis";
|
|
2898
2899
|
} | {
|
|
2899
2900
|
transactions: ({
|
|
2900
2901
|
MoveCall: {
|
|
@@ -2984,14 +2985,13 @@ export declare const SuiTransactionBlockResponse: import("superstruct").Struct<{
|
|
|
2984
2985
|
})[];
|
|
2985
2986
|
kind: "ProgrammableTransaction";
|
|
2986
2987
|
};
|
|
2987
|
-
sender: string;
|
|
2988
2988
|
gasData: {
|
|
2989
|
-
owner: string;
|
|
2990
2989
|
payment: {
|
|
2991
2990
|
objectId: string;
|
|
2992
2991
|
version: string | number;
|
|
2993
2992
|
digest: string;
|
|
2994
2993
|
}[];
|
|
2994
|
+
owner: string;
|
|
2995
2995
|
price: number;
|
|
2996
2996
|
budget: number;
|
|
2997
2997
|
};
|
|
@@ -2999,22 +2999,23 @@ export declare const SuiTransactionBlockResponse: import("superstruct").Struct<{
|
|
|
2999
2999
|
txSignatures: string[];
|
|
3000
3000
|
} | undefined, {
|
|
3001
3001
|
data: import("superstruct").Struct<{
|
|
3002
|
+
sender: string;
|
|
3002
3003
|
messageVersion: "v1";
|
|
3003
3004
|
transaction: {
|
|
3004
|
-
kind: "ChangeEpoch";
|
|
3005
3005
|
epoch: string;
|
|
3006
3006
|
storage_charge: number;
|
|
3007
3007
|
computation_charge: number;
|
|
3008
3008
|
storage_rebate: number;
|
|
3009
|
+
kind: "ChangeEpoch";
|
|
3009
3010
|
epoch_start_timestamp_ms?: number | undefined;
|
|
3010
3011
|
} | {
|
|
3011
|
-
kind: "ConsensusCommitPrologue";
|
|
3012
3012
|
epoch: number;
|
|
3013
3013
|
round: number;
|
|
3014
3014
|
commit_timestamp_ms: number;
|
|
3015
|
+
kind: "ConsensusCommitPrologue";
|
|
3015
3016
|
} | {
|
|
3016
|
-
kind: "Genesis";
|
|
3017
3017
|
objects: string[];
|
|
3018
|
+
kind: "Genesis";
|
|
3018
3019
|
} | {
|
|
3019
3020
|
transactions: ({
|
|
3020
3021
|
MoveCall: {
|
|
@@ -3104,34 +3105,33 @@ export declare const SuiTransactionBlockResponse: import("superstruct").Struct<{
|
|
|
3104
3105
|
})[];
|
|
3105
3106
|
kind: "ProgrammableTransaction";
|
|
3106
3107
|
};
|
|
3107
|
-
sender: string;
|
|
3108
3108
|
gasData: {
|
|
3109
|
-
owner: string;
|
|
3110
3109
|
payment: {
|
|
3111
3110
|
objectId: string;
|
|
3112
3111
|
version: string | number;
|
|
3113
3112
|
digest: string;
|
|
3114
3113
|
}[];
|
|
3114
|
+
owner: string;
|
|
3115
3115
|
price: number;
|
|
3116
3116
|
budget: number;
|
|
3117
3117
|
};
|
|
3118
3118
|
}, {
|
|
3119
3119
|
messageVersion: import("superstruct").Struct<"v1", "v1">;
|
|
3120
3120
|
transaction: import("superstruct").Struct<{
|
|
3121
|
-
kind: "ChangeEpoch";
|
|
3122
3121
|
epoch: string;
|
|
3123
3122
|
storage_charge: number;
|
|
3124
3123
|
computation_charge: number;
|
|
3125
3124
|
storage_rebate: number;
|
|
3125
|
+
kind: "ChangeEpoch";
|
|
3126
3126
|
epoch_start_timestamp_ms?: number | undefined;
|
|
3127
3127
|
} | {
|
|
3128
|
-
kind: "ConsensusCommitPrologue";
|
|
3129
3128
|
epoch: number;
|
|
3130
3129
|
round: number;
|
|
3131
3130
|
commit_timestamp_ms: number;
|
|
3131
|
+
kind: "ConsensusCommitPrologue";
|
|
3132
3132
|
} | {
|
|
3133
|
-
kind: "Genesis";
|
|
3134
3133
|
objects: string[];
|
|
3134
|
+
kind: "Genesis";
|
|
3135
3135
|
} | {
|
|
3136
3136
|
transactions: ({
|
|
3137
3137
|
MoveCall: {
|
|
@@ -3223,12 +3223,12 @@ export declare const SuiTransactionBlockResponse: import("superstruct").Struct<{
|
|
|
3223
3223
|
}, null>;
|
|
3224
3224
|
sender: import("superstruct").Struct<string, null>;
|
|
3225
3225
|
gasData: import("superstruct").Struct<{
|
|
3226
|
-
owner: string;
|
|
3227
3226
|
payment: {
|
|
3228
3227
|
objectId: string;
|
|
3229
3228
|
version: string | number;
|
|
3230
3229
|
digest: string;
|
|
3231
3230
|
}[];
|
|
3231
|
+
owner: string;
|
|
3232
3232
|
price: number;
|
|
3233
3233
|
budget: number;
|
|
3234
3234
|
}, {
|
|
@@ -3253,16 +3253,16 @@ export declare const SuiTransactionBlockResponse: import("superstruct").Struct<{
|
|
|
3253
3253
|
txSignatures: import("superstruct").Struct<string[], import("superstruct").Struct<string, null>>;
|
|
3254
3254
|
}>;
|
|
3255
3255
|
effects: import("superstruct").Struct<{
|
|
3256
|
+
messageVersion: "v1";
|
|
3256
3257
|
status: {
|
|
3257
3258
|
status: "success" | "failure";
|
|
3258
3259
|
error?: string | undefined;
|
|
3259
3260
|
};
|
|
3260
|
-
messageVersion: "v1";
|
|
3261
3261
|
executedEpoch: string;
|
|
3262
3262
|
gasUsed: {
|
|
3263
|
-
storageRebate: string;
|
|
3264
3263
|
computationCost: string;
|
|
3265
3264
|
storageCost: string;
|
|
3265
|
+
storageRebate: string;
|
|
3266
3266
|
nonRefundableStorageFee: string;
|
|
3267
3267
|
};
|
|
3268
3268
|
transactionDigest: string;
|
|
@@ -3282,7 +3282,6 @@ export declare const SuiTransactionBlockResponse: import("superstruct").Struct<{
|
|
|
3282
3282
|
digest: string;
|
|
3283
3283
|
};
|
|
3284
3284
|
};
|
|
3285
|
-
dependencies?: string[] | undefined;
|
|
3286
3285
|
modifiedAtVersions?: {
|
|
3287
3286
|
objectId: string;
|
|
3288
3287
|
sequenceNumber: number;
|
|
@@ -3356,6 +3355,7 @@ export declare const SuiTransactionBlockResponse: import("superstruct").Struct<{
|
|
|
3356
3355
|
digest: string;
|
|
3357
3356
|
}[] | undefined;
|
|
3358
3357
|
eventsDigest?: string | undefined;
|
|
3358
|
+
dependencies?: string[] | undefined;
|
|
3359
3359
|
} | undefined, {
|
|
3360
3360
|
messageVersion: import("superstruct").Struct<"v1", "v1">;
|
|
3361
3361
|
/** The status of the execution */
|
|
@@ -3380,9 +3380,9 @@ export declare const SuiTransactionBlockResponse: import("superstruct").Struct<{
|
|
|
3380
3380
|
sequenceNumber: import("superstruct").Struct<number, null>;
|
|
3381
3381
|
}>>;
|
|
3382
3382
|
gasUsed: import("superstruct").Struct<{
|
|
3383
|
-
storageRebate: string;
|
|
3384
3383
|
computationCost: string;
|
|
3385
3384
|
storageCost: string;
|
|
3385
|
+
storageRebate: string;
|
|
3386
3386
|
nonRefundableStorageFee: string;
|
|
3387
3387
|
}, {
|
|
3388
3388
|
computationCost: import("superstruct").Struct<string, null>;
|
|
@@ -3650,28 +3650,28 @@ export declare const SuiTransactionBlockResponse: import("superstruct").Struct<{
|
|
|
3650
3650
|
dependencies: import("superstruct").Struct<string[] | undefined, import("superstruct").Struct<string, null>>;
|
|
3651
3651
|
}>;
|
|
3652
3652
|
events: import("superstruct").Struct<{
|
|
3653
|
-
type: string;
|
|
3654
3653
|
id: {
|
|
3655
3654
|
txDigest: string;
|
|
3656
3655
|
eventSeq: number;
|
|
3657
3656
|
};
|
|
3658
|
-
sender: string;
|
|
3659
3657
|
packageId: string;
|
|
3660
3658
|
transactionModule: string;
|
|
3661
|
-
|
|
3659
|
+
sender: string;
|
|
3660
|
+
type: string;
|
|
3662
3661
|
parsedJson?: Record<string, any> | undefined;
|
|
3662
|
+
bcs?: string | undefined;
|
|
3663
3663
|
timestampMs?: number | undefined;
|
|
3664
3664
|
}[] | undefined, import("superstruct").Struct<{
|
|
3665
|
-
type: string;
|
|
3666
3665
|
id: {
|
|
3667
3666
|
txDigest: string;
|
|
3668
3667
|
eventSeq: number;
|
|
3669
3668
|
};
|
|
3670
|
-
sender: string;
|
|
3671
3669
|
packageId: string;
|
|
3672
3670
|
transactionModule: string;
|
|
3673
|
-
|
|
3671
|
+
sender: string;
|
|
3672
|
+
type: string;
|
|
3674
3673
|
parsedJson?: Record<string, any> | undefined;
|
|
3674
|
+
bcs?: string | undefined;
|
|
3675
3675
|
timestampMs?: number | undefined;
|
|
3676
3676
|
}, {
|
|
3677
3677
|
id: import("superstruct").Struct<{
|
|
@@ -3693,18 +3693,18 @@ export declare const SuiTransactionBlockResponse: import("superstruct").Struct<{
|
|
|
3693
3693
|
checkpoint: import("superstruct").Struct<number | undefined, null>;
|
|
3694
3694
|
confirmedLocalExecution: import("superstruct").Struct<boolean | undefined, null>;
|
|
3695
3695
|
objectChanges: import("superstruct").Struct<({
|
|
3696
|
+
packageId: string;
|
|
3696
3697
|
type: "published";
|
|
3697
3698
|
version: number;
|
|
3698
3699
|
digest: string;
|
|
3699
3700
|
modules: string[];
|
|
3700
|
-
packageId: string;
|
|
3701
3701
|
} | {
|
|
3702
|
+
sender: string;
|
|
3702
3703
|
type: "transferred";
|
|
3703
3704
|
objectType: string;
|
|
3704
3705
|
objectId: string;
|
|
3705
3706
|
version: number;
|
|
3706
3707
|
digest: string;
|
|
3707
|
-
sender: string;
|
|
3708
3708
|
recipient: {
|
|
3709
3709
|
AddressOwner: string;
|
|
3710
3710
|
} | {
|
|
@@ -3715,6 +3715,7 @@ export declare const SuiTransactionBlockResponse: import("superstruct").Struct<{
|
|
|
3715
3715
|
};
|
|
3716
3716
|
} | "Immutable";
|
|
3717
3717
|
} | {
|
|
3718
|
+
sender: string;
|
|
3718
3719
|
type: "mutated";
|
|
3719
3720
|
objectType: string;
|
|
3720
3721
|
objectId: string;
|
|
@@ -3729,21 +3730,21 @@ export declare const SuiTransactionBlockResponse: import("superstruct").Struct<{
|
|
|
3729
3730
|
initial_shared_version: number;
|
|
3730
3731
|
};
|
|
3731
3732
|
} | "Immutable";
|
|
3732
|
-
sender: string;
|
|
3733
3733
|
previousVersion: number;
|
|
3734
3734
|
} | {
|
|
3735
|
+
sender: string;
|
|
3735
3736
|
type: "deleted";
|
|
3736
3737
|
objectType: string;
|
|
3737
3738
|
objectId: string;
|
|
3738
3739
|
version: number;
|
|
3739
|
-
sender: string;
|
|
3740
3740
|
} | {
|
|
3741
|
+
sender: string;
|
|
3741
3742
|
type: "wrapped";
|
|
3742
3743
|
objectType: string;
|
|
3743
3744
|
objectId: string;
|
|
3744
3745
|
version: number;
|
|
3745
|
-
sender: string;
|
|
3746
3746
|
} | {
|
|
3747
|
+
sender: string;
|
|
3747
3748
|
type: "created";
|
|
3748
3749
|
objectType: string;
|
|
3749
3750
|
objectId: string;
|
|
@@ -3758,20 +3759,19 @@ export declare const SuiTransactionBlockResponse: import("superstruct").Struct<{
|
|
|
3758
3759
|
initial_shared_version: number;
|
|
3759
3760
|
};
|
|
3760
3761
|
} | "Immutable";
|
|
3761
|
-
sender: string;
|
|
3762
3762
|
})[] | undefined, import("superstruct").Struct<{
|
|
3763
|
+
packageId: string;
|
|
3763
3764
|
type: "published";
|
|
3764
3765
|
version: number;
|
|
3765
3766
|
digest: string;
|
|
3766
3767
|
modules: string[];
|
|
3767
|
-
packageId: string;
|
|
3768
3768
|
} | {
|
|
3769
|
+
sender: string;
|
|
3769
3770
|
type: "transferred";
|
|
3770
3771
|
objectType: string;
|
|
3771
3772
|
objectId: string;
|
|
3772
3773
|
version: number;
|
|
3773
3774
|
digest: string;
|
|
3774
|
-
sender: string;
|
|
3775
3775
|
recipient: {
|
|
3776
3776
|
AddressOwner: string;
|
|
3777
3777
|
} | {
|
|
@@ -3782,6 +3782,7 @@ export declare const SuiTransactionBlockResponse: import("superstruct").Struct<{
|
|
|
3782
3782
|
};
|
|
3783
3783
|
} | "Immutable";
|
|
3784
3784
|
} | {
|
|
3785
|
+
sender: string;
|
|
3785
3786
|
type: "mutated";
|
|
3786
3787
|
objectType: string;
|
|
3787
3788
|
objectId: string;
|
|
@@ -3796,21 +3797,21 @@ export declare const SuiTransactionBlockResponse: import("superstruct").Struct<{
|
|
|
3796
3797
|
initial_shared_version: number;
|
|
3797
3798
|
};
|
|
3798
3799
|
} | "Immutable";
|
|
3799
|
-
sender: string;
|
|
3800
3800
|
previousVersion: number;
|
|
3801
3801
|
} | {
|
|
3802
|
+
sender: string;
|
|
3802
3803
|
type: "deleted";
|
|
3803
3804
|
objectType: string;
|
|
3804
3805
|
objectId: string;
|
|
3805
3806
|
version: number;
|
|
3806
|
-
sender: string;
|
|
3807
3807
|
} | {
|
|
3808
|
+
sender: string;
|
|
3808
3809
|
type: "wrapped";
|
|
3809
3810
|
objectType: string;
|
|
3810
3811
|
objectId: string;
|
|
3811
3812
|
version: number;
|
|
3812
|
-
sender: string;
|
|
3813
3813
|
} | {
|
|
3814
|
+
sender: string;
|
|
3814
3815
|
type: "created";
|
|
3815
3816
|
objectType: string;
|
|
3816
3817
|
objectId: string;
|
|
@@ -3825,7 +3826,6 @@ export declare const SuiTransactionBlockResponse: import("superstruct").Struct<{
|
|
|
3825
3826
|
initial_shared_version: number;
|
|
3826
3827
|
};
|
|
3827
3828
|
} | "Immutable";
|
|
3828
|
-
sender: string;
|
|
3829
3829
|
}, null>>;
|
|
3830
3830
|
balanceChanges: import("superstruct").Struct<{
|
|
3831
3831
|
owner: {
|
|
@@ -3884,24 +3884,26 @@ export declare type SuiTransactionBlockResponseOptions = Infer<typeof SuiTransac
|
|
|
3884
3884
|
export declare const PaginatedTransactionResponse: import("superstruct").Struct<{
|
|
3885
3885
|
data: {
|
|
3886
3886
|
digest: string;
|
|
3887
|
+
timestampMs?: number | undefined;
|
|
3887
3888
|
transaction?: {
|
|
3888
3889
|
data: {
|
|
3890
|
+
sender: string;
|
|
3889
3891
|
messageVersion: "v1";
|
|
3890
3892
|
transaction: {
|
|
3891
|
-
kind: "ChangeEpoch";
|
|
3892
3893
|
epoch: string;
|
|
3893
3894
|
storage_charge: number;
|
|
3894
3895
|
computation_charge: number;
|
|
3895
3896
|
storage_rebate: number;
|
|
3897
|
+
kind: "ChangeEpoch";
|
|
3896
3898
|
epoch_start_timestamp_ms?: number | undefined;
|
|
3897
3899
|
} | {
|
|
3898
|
-
kind: "ConsensusCommitPrologue";
|
|
3899
3900
|
epoch: number;
|
|
3900
3901
|
round: number;
|
|
3901
3902
|
commit_timestamp_ms: number;
|
|
3903
|
+
kind: "ConsensusCommitPrologue";
|
|
3902
3904
|
} | {
|
|
3903
|
-
kind: "Genesis";
|
|
3904
3905
|
objects: string[];
|
|
3906
|
+
kind: "Genesis";
|
|
3905
3907
|
} | {
|
|
3906
3908
|
transactions: ({
|
|
3907
3909
|
MoveCall: {
|
|
@@ -3991,32 +3993,30 @@ export declare const PaginatedTransactionResponse: import("superstruct").Struct<
|
|
|
3991
3993
|
})[];
|
|
3992
3994
|
kind: "ProgrammableTransaction";
|
|
3993
3995
|
};
|
|
3994
|
-
sender: string;
|
|
3995
3996
|
gasData: {
|
|
3996
|
-
owner: string;
|
|
3997
3997
|
payment: {
|
|
3998
3998
|
objectId: string;
|
|
3999
3999
|
version: string | number;
|
|
4000
4000
|
digest: string;
|
|
4001
4001
|
}[];
|
|
4002
|
+
owner: string;
|
|
4002
4003
|
price: number;
|
|
4003
4004
|
budget: number;
|
|
4004
4005
|
};
|
|
4005
4006
|
};
|
|
4006
4007
|
txSignatures: string[];
|
|
4007
4008
|
} | undefined;
|
|
4008
|
-
timestampMs?: number | undefined;
|
|
4009
4009
|
effects?: {
|
|
4010
|
+
messageVersion: "v1";
|
|
4010
4011
|
status: {
|
|
4011
4012
|
status: "success" | "failure";
|
|
4012
4013
|
error?: string | undefined;
|
|
4013
4014
|
};
|
|
4014
|
-
messageVersion: "v1";
|
|
4015
4015
|
executedEpoch: string;
|
|
4016
4016
|
gasUsed: {
|
|
4017
|
-
storageRebate: string;
|
|
4018
4017
|
computationCost: string;
|
|
4019
4018
|
storageCost: string;
|
|
4019
|
+
storageRebate: string;
|
|
4020
4020
|
nonRefundableStorageFee: string;
|
|
4021
4021
|
};
|
|
4022
4022
|
transactionDigest: string;
|
|
@@ -4036,7 +4036,6 @@ export declare const PaginatedTransactionResponse: import("superstruct").Struct<
|
|
|
4036
4036
|
digest: string;
|
|
4037
4037
|
};
|
|
4038
4038
|
};
|
|
4039
|
-
dependencies?: string[] | undefined;
|
|
4040
4039
|
modifiedAtVersions?: {
|
|
4041
4040
|
objectId: string;
|
|
4042
4041
|
sequenceNumber: number;
|
|
@@ -4110,35 +4109,36 @@ export declare const PaginatedTransactionResponse: import("superstruct").Struct<
|
|
|
4110
4109
|
digest: string;
|
|
4111
4110
|
}[] | undefined;
|
|
4112
4111
|
eventsDigest?: string | undefined;
|
|
4112
|
+
dependencies?: string[] | undefined;
|
|
4113
4113
|
} | undefined;
|
|
4114
4114
|
events?: {
|
|
4115
|
-
type: string;
|
|
4116
4115
|
id: {
|
|
4117
4116
|
txDigest: string;
|
|
4118
4117
|
eventSeq: number;
|
|
4119
4118
|
};
|
|
4120
|
-
sender: string;
|
|
4121
4119
|
packageId: string;
|
|
4122
4120
|
transactionModule: string;
|
|
4123
|
-
|
|
4121
|
+
sender: string;
|
|
4122
|
+
type: string;
|
|
4124
4123
|
parsedJson?: Record<string, any> | undefined;
|
|
4124
|
+
bcs?: string | undefined;
|
|
4125
4125
|
timestampMs?: number | undefined;
|
|
4126
4126
|
}[] | undefined;
|
|
4127
4127
|
checkpoint?: number | undefined;
|
|
4128
4128
|
confirmedLocalExecution?: boolean | undefined;
|
|
4129
4129
|
objectChanges?: ({
|
|
4130
|
+
packageId: string;
|
|
4130
4131
|
type: "published";
|
|
4131
4132
|
version: number;
|
|
4132
4133
|
digest: string;
|
|
4133
4134
|
modules: string[];
|
|
4134
|
-
packageId: string;
|
|
4135
4135
|
} | {
|
|
4136
|
+
sender: string;
|
|
4136
4137
|
type: "transferred";
|
|
4137
4138
|
objectType: string;
|
|
4138
4139
|
objectId: string;
|
|
4139
4140
|
version: number;
|
|
4140
4141
|
digest: string;
|
|
4141
|
-
sender: string;
|
|
4142
4142
|
recipient: {
|
|
4143
4143
|
AddressOwner: string;
|
|
4144
4144
|
} | {
|
|
@@ -4149,6 +4149,7 @@ export declare const PaginatedTransactionResponse: import("superstruct").Struct<
|
|
|
4149
4149
|
};
|
|
4150
4150
|
} | "Immutable";
|
|
4151
4151
|
} | {
|
|
4152
|
+
sender: string;
|
|
4152
4153
|
type: "mutated";
|
|
4153
4154
|
objectType: string;
|
|
4154
4155
|
objectId: string;
|
|
@@ -4163,21 +4164,21 @@ export declare const PaginatedTransactionResponse: import("superstruct").Struct<
|
|
|
4163
4164
|
initial_shared_version: number;
|
|
4164
4165
|
};
|
|
4165
4166
|
} | "Immutable";
|
|
4166
|
-
sender: string;
|
|
4167
4167
|
previousVersion: number;
|
|
4168
4168
|
} | {
|
|
4169
|
+
sender: string;
|
|
4169
4170
|
type: "deleted";
|
|
4170
4171
|
objectType: string;
|
|
4171
4172
|
objectId: string;
|
|
4172
4173
|
version: number;
|
|
4173
|
-
sender: string;
|
|
4174
4174
|
} | {
|
|
4175
|
+
sender: string;
|
|
4175
4176
|
type: "wrapped";
|
|
4176
4177
|
objectType: string;
|
|
4177
4178
|
objectId: string;
|
|
4178
4179
|
version: number;
|
|
4179
|
-
sender: string;
|
|
4180
4180
|
} | {
|
|
4181
|
+
sender: string;
|
|
4181
4182
|
type: "created";
|
|
4182
4183
|
objectType: string;
|
|
4183
4184
|
objectId: string;
|
|
@@ -4192,7 +4193,6 @@ export declare const PaginatedTransactionResponse: import("superstruct").Struct<
|
|
|
4192
4193
|
initial_shared_version: number;
|
|
4193
4194
|
};
|
|
4194
4195
|
} | "Immutable";
|
|
4195
|
-
sender: string;
|
|
4196
4196
|
})[] | undefined;
|
|
4197
4197
|
balanceChanges?: {
|
|
4198
4198
|
owner: {
|
|
@@ -4214,24 +4214,26 @@ export declare const PaginatedTransactionResponse: import("superstruct").Struct<
|
|
|
4214
4214
|
}, {
|
|
4215
4215
|
data: import("superstruct").Struct<{
|
|
4216
4216
|
digest: string;
|
|
4217
|
+
timestampMs?: number | undefined;
|
|
4217
4218
|
transaction?: {
|
|
4218
4219
|
data: {
|
|
4220
|
+
sender: string;
|
|
4219
4221
|
messageVersion: "v1";
|
|
4220
4222
|
transaction: {
|
|
4221
|
-
kind: "ChangeEpoch";
|
|
4222
4223
|
epoch: string;
|
|
4223
4224
|
storage_charge: number;
|
|
4224
4225
|
computation_charge: number;
|
|
4225
4226
|
storage_rebate: number;
|
|
4227
|
+
kind: "ChangeEpoch";
|
|
4226
4228
|
epoch_start_timestamp_ms?: number | undefined;
|
|
4227
4229
|
} | {
|
|
4228
|
-
kind: "ConsensusCommitPrologue";
|
|
4229
4230
|
epoch: number;
|
|
4230
4231
|
round: number;
|
|
4231
4232
|
commit_timestamp_ms: number;
|
|
4233
|
+
kind: "ConsensusCommitPrologue";
|
|
4232
4234
|
} | {
|
|
4233
|
-
kind: "Genesis";
|
|
4234
4235
|
objects: string[];
|
|
4236
|
+
kind: "Genesis";
|
|
4235
4237
|
} | {
|
|
4236
4238
|
transactions: ({
|
|
4237
4239
|
MoveCall: {
|
|
@@ -4321,32 +4323,30 @@ export declare const PaginatedTransactionResponse: import("superstruct").Struct<
|
|
|
4321
4323
|
})[];
|
|
4322
4324
|
kind: "ProgrammableTransaction";
|
|
4323
4325
|
};
|
|
4324
|
-
sender: string;
|
|
4325
4326
|
gasData: {
|
|
4326
|
-
owner: string;
|
|
4327
4327
|
payment: {
|
|
4328
4328
|
objectId: string;
|
|
4329
4329
|
version: string | number;
|
|
4330
4330
|
digest: string;
|
|
4331
4331
|
}[];
|
|
4332
|
+
owner: string;
|
|
4332
4333
|
price: number;
|
|
4333
4334
|
budget: number;
|
|
4334
4335
|
};
|
|
4335
4336
|
};
|
|
4336
4337
|
txSignatures: string[];
|
|
4337
4338
|
} | undefined;
|
|
4338
|
-
timestampMs?: number | undefined;
|
|
4339
4339
|
effects?: {
|
|
4340
|
+
messageVersion: "v1";
|
|
4340
4341
|
status: {
|
|
4341
4342
|
status: "success" | "failure";
|
|
4342
4343
|
error?: string | undefined;
|
|
4343
4344
|
};
|
|
4344
|
-
messageVersion: "v1";
|
|
4345
4345
|
executedEpoch: string;
|
|
4346
4346
|
gasUsed: {
|
|
4347
|
-
storageRebate: string;
|
|
4348
4347
|
computationCost: string;
|
|
4349
4348
|
storageCost: string;
|
|
4349
|
+
storageRebate: string;
|
|
4350
4350
|
nonRefundableStorageFee: string;
|
|
4351
4351
|
};
|
|
4352
4352
|
transactionDigest: string;
|
|
@@ -4366,7 +4366,6 @@ export declare const PaginatedTransactionResponse: import("superstruct").Struct<
|
|
|
4366
4366
|
digest: string;
|
|
4367
4367
|
};
|
|
4368
4368
|
};
|
|
4369
|
-
dependencies?: string[] | undefined;
|
|
4370
4369
|
modifiedAtVersions?: {
|
|
4371
4370
|
objectId: string;
|
|
4372
4371
|
sequenceNumber: number;
|
|
@@ -4440,35 +4439,36 @@ export declare const PaginatedTransactionResponse: import("superstruct").Struct<
|
|
|
4440
4439
|
digest: string;
|
|
4441
4440
|
}[] | undefined;
|
|
4442
4441
|
eventsDigest?: string | undefined;
|
|
4442
|
+
dependencies?: string[] | undefined;
|
|
4443
4443
|
} | undefined;
|
|
4444
4444
|
events?: {
|
|
4445
|
-
type: string;
|
|
4446
4445
|
id: {
|
|
4447
4446
|
txDigest: string;
|
|
4448
4447
|
eventSeq: number;
|
|
4449
4448
|
};
|
|
4450
|
-
sender: string;
|
|
4451
4449
|
packageId: string;
|
|
4452
4450
|
transactionModule: string;
|
|
4453
|
-
|
|
4451
|
+
sender: string;
|
|
4452
|
+
type: string;
|
|
4454
4453
|
parsedJson?: Record<string, any> | undefined;
|
|
4454
|
+
bcs?: string | undefined;
|
|
4455
4455
|
timestampMs?: number | undefined;
|
|
4456
4456
|
}[] | undefined;
|
|
4457
4457
|
checkpoint?: number | undefined;
|
|
4458
4458
|
confirmedLocalExecution?: boolean | undefined;
|
|
4459
4459
|
objectChanges?: ({
|
|
4460
|
+
packageId: string;
|
|
4460
4461
|
type: "published";
|
|
4461
4462
|
version: number;
|
|
4462
4463
|
digest: string;
|
|
4463
4464
|
modules: string[];
|
|
4464
|
-
packageId: string;
|
|
4465
4465
|
} | {
|
|
4466
|
+
sender: string;
|
|
4466
4467
|
type: "transferred";
|
|
4467
4468
|
objectType: string;
|
|
4468
4469
|
objectId: string;
|
|
4469
4470
|
version: number;
|
|
4470
4471
|
digest: string;
|
|
4471
|
-
sender: string;
|
|
4472
4472
|
recipient: {
|
|
4473
4473
|
AddressOwner: string;
|
|
4474
4474
|
} | {
|
|
@@ -4479,6 +4479,7 @@ export declare const PaginatedTransactionResponse: import("superstruct").Struct<
|
|
|
4479
4479
|
};
|
|
4480
4480
|
} | "Immutable";
|
|
4481
4481
|
} | {
|
|
4482
|
+
sender: string;
|
|
4482
4483
|
type: "mutated";
|
|
4483
4484
|
objectType: string;
|
|
4484
4485
|
objectId: string;
|
|
@@ -4493,21 +4494,21 @@ export declare const PaginatedTransactionResponse: import("superstruct").Struct<
|
|
|
4493
4494
|
initial_shared_version: number;
|
|
4494
4495
|
};
|
|
4495
4496
|
} | "Immutable";
|
|
4496
|
-
sender: string;
|
|
4497
4497
|
previousVersion: number;
|
|
4498
4498
|
} | {
|
|
4499
|
+
sender: string;
|
|
4499
4500
|
type: "deleted";
|
|
4500
4501
|
objectType: string;
|
|
4501
4502
|
objectId: string;
|
|
4502
4503
|
version: number;
|
|
4503
|
-
sender: string;
|
|
4504
4504
|
} | {
|
|
4505
|
+
sender: string;
|
|
4505
4506
|
type: "wrapped";
|
|
4506
4507
|
objectType: string;
|
|
4507
4508
|
objectId: string;
|
|
4508
4509
|
version: number;
|
|
4509
|
-
sender: string;
|
|
4510
4510
|
} | {
|
|
4511
|
+
sender: string;
|
|
4511
4512
|
type: "created";
|
|
4512
4513
|
objectType: string;
|
|
4513
4514
|
objectId: string;
|
|
@@ -4522,7 +4523,6 @@ export declare const PaginatedTransactionResponse: import("superstruct").Struct<
|
|
|
4522
4523
|
initial_shared_version: number;
|
|
4523
4524
|
};
|
|
4524
4525
|
} | "Immutable";
|
|
4525
|
-
sender: string;
|
|
4526
4526
|
})[] | undefined;
|
|
4527
4527
|
balanceChanges?: {
|
|
4528
4528
|
owner: {
|
|
@@ -4540,24 +4540,26 @@ export declare const PaginatedTransactionResponse: import("superstruct").Struct<
|
|
|
4540
4540
|
errors?: string[] | undefined;
|
|
4541
4541
|
}[], import("superstruct").Struct<{
|
|
4542
4542
|
digest: string;
|
|
4543
|
+
timestampMs?: number | undefined;
|
|
4543
4544
|
transaction?: {
|
|
4544
4545
|
data: {
|
|
4546
|
+
sender: string;
|
|
4545
4547
|
messageVersion: "v1";
|
|
4546
4548
|
transaction: {
|
|
4547
|
-
kind: "ChangeEpoch";
|
|
4548
4549
|
epoch: string;
|
|
4549
4550
|
storage_charge: number;
|
|
4550
4551
|
computation_charge: number;
|
|
4551
4552
|
storage_rebate: number;
|
|
4553
|
+
kind: "ChangeEpoch";
|
|
4552
4554
|
epoch_start_timestamp_ms?: number | undefined;
|
|
4553
4555
|
} | {
|
|
4554
|
-
kind: "ConsensusCommitPrologue";
|
|
4555
4556
|
epoch: number;
|
|
4556
4557
|
round: number;
|
|
4557
4558
|
commit_timestamp_ms: number;
|
|
4559
|
+
kind: "ConsensusCommitPrologue";
|
|
4558
4560
|
} | {
|
|
4559
|
-
kind: "Genesis";
|
|
4560
4561
|
objects: string[];
|
|
4562
|
+
kind: "Genesis";
|
|
4561
4563
|
} | {
|
|
4562
4564
|
transactions: ({
|
|
4563
4565
|
MoveCall: {
|
|
@@ -4647,32 +4649,30 @@ export declare const PaginatedTransactionResponse: import("superstruct").Struct<
|
|
|
4647
4649
|
})[];
|
|
4648
4650
|
kind: "ProgrammableTransaction";
|
|
4649
4651
|
};
|
|
4650
|
-
sender: string;
|
|
4651
4652
|
gasData: {
|
|
4652
|
-
owner: string;
|
|
4653
4653
|
payment: {
|
|
4654
4654
|
objectId: string;
|
|
4655
4655
|
version: string | number;
|
|
4656
4656
|
digest: string;
|
|
4657
4657
|
}[];
|
|
4658
|
+
owner: string;
|
|
4658
4659
|
price: number;
|
|
4659
4660
|
budget: number;
|
|
4660
4661
|
};
|
|
4661
4662
|
};
|
|
4662
4663
|
txSignatures: string[];
|
|
4663
4664
|
} | undefined;
|
|
4664
|
-
timestampMs?: number | undefined;
|
|
4665
4665
|
effects?: {
|
|
4666
|
+
messageVersion: "v1";
|
|
4666
4667
|
status: {
|
|
4667
4668
|
status: "success" | "failure";
|
|
4668
4669
|
error?: string | undefined;
|
|
4669
4670
|
};
|
|
4670
|
-
messageVersion: "v1";
|
|
4671
4671
|
executedEpoch: string;
|
|
4672
4672
|
gasUsed: {
|
|
4673
|
-
storageRebate: string;
|
|
4674
4673
|
computationCost: string;
|
|
4675
4674
|
storageCost: string;
|
|
4675
|
+
storageRebate: string;
|
|
4676
4676
|
nonRefundableStorageFee: string;
|
|
4677
4677
|
};
|
|
4678
4678
|
transactionDigest: string;
|
|
@@ -4692,7 +4692,6 @@ export declare const PaginatedTransactionResponse: import("superstruct").Struct<
|
|
|
4692
4692
|
digest: string;
|
|
4693
4693
|
};
|
|
4694
4694
|
};
|
|
4695
|
-
dependencies?: string[] | undefined;
|
|
4696
4695
|
modifiedAtVersions?: {
|
|
4697
4696
|
objectId: string;
|
|
4698
4697
|
sequenceNumber: number;
|
|
@@ -4766,35 +4765,36 @@ export declare const PaginatedTransactionResponse: import("superstruct").Struct<
|
|
|
4766
4765
|
digest: string;
|
|
4767
4766
|
}[] | undefined;
|
|
4768
4767
|
eventsDigest?: string | undefined;
|
|
4768
|
+
dependencies?: string[] | undefined;
|
|
4769
4769
|
} | undefined;
|
|
4770
4770
|
events?: {
|
|
4771
|
-
type: string;
|
|
4772
4771
|
id: {
|
|
4773
4772
|
txDigest: string;
|
|
4774
4773
|
eventSeq: number;
|
|
4775
4774
|
};
|
|
4776
|
-
sender: string;
|
|
4777
4775
|
packageId: string;
|
|
4778
4776
|
transactionModule: string;
|
|
4779
|
-
|
|
4777
|
+
sender: string;
|
|
4778
|
+
type: string;
|
|
4780
4779
|
parsedJson?: Record<string, any> | undefined;
|
|
4780
|
+
bcs?: string | undefined;
|
|
4781
4781
|
timestampMs?: number | undefined;
|
|
4782
4782
|
}[] | undefined;
|
|
4783
4783
|
checkpoint?: number | undefined;
|
|
4784
4784
|
confirmedLocalExecution?: boolean | undefined;
|
|
4785
4785
|
objectChanges?: ({
|
|
4786
|
+
packageId: string;
|
|
4786
4787
|
type: "published";
|
|
4787
4788
|
version: number;
|
|
4788
4789
|
digest: string;
|
|
4789
4790
|
modules: string[];
|
|
4790
|
-
packageId: string;
|
|
4791
4791
|
} | {
|
|
4792
|
+
sender: string;
|
|
4792
4793
|
type: "transferred";
|
|
4793
4794
|
objectType: string;
|
|
4794
4795
|
objectId: string;
|
|
4795
4796
|
version: number;
|
|
4796
4797
|
digest: string;
|
|
4797
|
-
sender: string;
|
|
4798
4798
|
recipient: {
|
|
4799
4799
|
AddressOwner: string;
|
|
4800
4800
|
} | {
|
|
@@ -4805,6 +4805,7 @@ export declare const PaginatedTransactionResponse: import("superstruct").Struct<
|
|
|
4805
4805
|
};
|
|
4806
4806
|
} | "Immutable";
|
|
4807
4807
|
} | {
|
|
4808
|
+
sender: string;
|
|
4808
4809
|
type: "mutated";
|
|
4809
4810
|
objectType: string;
|
|
4810
4811
|
objectId: string;
|
|
@@ -4819,21 +4820,21 @@ export declare const PaginatedTransactionResponse: import("superstruct").Struct<
|
|
|
4819
4820
|
initial_shared_version: number;
|
|
4820
4821
|
};
|
|
4821
4822
|
} | "Immutable";
|
|
4822
|
-
sender: string;
|
|
4823
4823
|
previousVersion: number;
|
|
4824
4824
|
} | {
|
|
4825
|
+
sender: string;
|
|
4825
4826
|
type: "deleted";
|
|
4826
4827
|
objectType: string;
|
|
4827
4828
|
objectId: string;
|
|
4828
4829
|
version: number;
|
|
4829
|
-
sender: string;
|
|
4830
4830
|
} | {
|
|
4831
|
+
sender: string;
|
|
4831
4832
|
type: "wrapped";
|
|
4832
4833
|
objectType: string;
|
|
4833
4834
|
objectId: string;
|
|
4834
4835
|
version: number;
|
|
4835
|
-
sender: string;
|
|
4836
4836
|
} | {
|
|
4837
|
+
sender: string;
|
|
4837
4838
|
type: "created";
|
|
4838
4839
|
objectType: string;
|
|
4839
4840
|
objectId: string;
|
|
@@ -4848,7 +4849,6 @@ export declare const PaginatedTransactionResponse: import("superstruct").Struct<
|
|
|
4848
4849
|
initial_shared_version: number;
|
|
4849
4850
|
};
|
|
4850
4851
|
} | "Immutable";
|
|
4851
|
-
sender: string;
|
|
4852
4852
|
})[] | undefined;
|
|
4853
4853
|
balanceChanges?: {
|
|
4854
4854
|
owner: {
|
|
@@ -4868,22 +4868,23 @@ export declare const PaginatedTransactionResponse: import("superstruct").Struct<
|
|
|
4868
4868
|
digest: import("superstruct").Struct<string, null>;
|
|
4869
4869
|
transaction: import("superstruct").Struct<{
|
|
4870
4870
|
data: {
|
|
4871
|
+
sender: string;
|
|
4871
4872
|
messageVersion: "v1";
|
|
4872
4873
|
transaction: {
|
|
4873
|
-
kind: "ChangeEpoch";
|
|
4874
4874
|
epoch: string;
|
|
4875
4875
|
storage_charge: number;
|
|
4876
4876
|
computation_charge: number;
|
|
4877
4877
|
storage_rebate: number;
|
|
4878
|
+
kind: "ChangeEpoch";
|
|
4878
4879
|
epoch_start_timestamp_ms?: number | undefined;
|
|
4879
4880
|
} | {
|
|
4880
|
-
kind: "ConsensusCommitPrologue";
|
|
4881
4881
|
epoch: number;
|
|
4882
4882
|
round: number;
|
|
4883
4883
|
commit_timestamp_ms: number;
|
|
4884
|
+
kind: "ConsensusCommitPrologue";
|
|
4884
4885
|
} | {
|
|
4885
|
-
kind: "Genesis";
|
|
4886
4886
|
objects: string[];
|
|
4887
|
+
kind: "Genesis";
|
|
4887
4888
|
} | {
|
|
4888
4889
|
transactions: ({
|
|
4889
4890
|
MoveCall: {
|
|
@@ -4973,14 +4974,13 @@ export declare const PaginatedTransactionResponse: import("superstruct").Struct<
|
|
|
4973
4974
|
})[];
|
|
4974
4975
|
kind: "ProgrammableTransaction";
|
|
4975
4976
|
};
|
|
4976
|
-
sender: string;
|
|
4977
4977
|
gasData: {
|
|
4978
|
-
owner: string;
|
|
4979
4978
|
payment: {
|
|
4980
4979
|
objectId: string;
|
|
4981
4980
|
version: string | number;
|
|
4982
4981
|
digest: string;
|
|
4983
4982
|
}[];
|
|
4983
|
+
owner: string;
|
|
4984
4984
|
price: number;
|
|
4985
4985
|
budget: number;
|
|
4986
4986
|
};
|
|
@@ -4988,22 +4988,23 @@ export declare const PaginatedTransactionResponse: import("superstruct").Struct<
|
|
|
4988
4988
|
txSignatures: string[];
|
|
4989
4989
|
} | undefined, {
|
|
4990
4990
|
data: import("superstruct").Struct<{
|
|
4991
|
+
sender: string;
|
|
4991
4992
|
messageVersion: "v1";
|
|
4992
4993
|
transaction: {
|
|
4993
|
-
kind: "ChangeEpoch";
|
|
4994
4994
|
epoch: string;
|
|
4995
4995
|
storage_charge: number;
|
|
4996
4996
|
computation_charge: number;
|
|
4997
4997
|
storage_rebate: number;
|
|
4998
|
+
kind: "ChangeEpoch";
|
|
4998
4999
|
epoch_start_timestamp_ms?: number | undefined;
|
|
4999
5000
|
} | {
|
|
5000
|
-
kind: "ConsensusCommitPrologue";
|
|
5001
5001
|
epoch: number;
|
|
5002
5002
|
round: number;
|
|
5003
5003
|
commit_timestamp_ms: number;
|
|
5004
|
+
kind: "ConsensusCommitPrologue";
|
|
5004
5005
|
} | {
|
|
5005
|
-
kind: "Genesis";
|
|
5006
5006
|
objects: string[];
|
|
5007
|
+
kind: "Genesis";
|
|
5007
5008
|
} | {
|
|
5008
5009
|
transactions: ({
|
|
5009
5010
|
MoveCall: {
|
|
@@ -5093,34 +5094,33 @@ export declare const PaginatedTransactionResponse: import("superstruct").Struct<
|
|
|
5093
5094
|
})[];
|
|
5094
5095
|
kind: "ProgrammableTransaction";
|
|
5095
5096
|
};
|
|
5096
|
-
sender: string;
|
|
5097
5097
|
gasData: {
|
|
5098
|
-
owner: string;
|
|
5099
5098
|
payment: {
|
|
5100
5099
|
objectId: string;
|
|
5101
5100
|
version: string | number;
|
|
5102
5101
|
digest: string;
|
|
5103
5102
|
}[];
|
|
5103
|
+
owner: string;
|
|
5104
5104
|
price: number;
|
|
5105
5105
|
budget: number;
|
|
5106
5106
|
};
|
|
5107
5107
|
}, {
|
|
5108
5108
|
messageVersion: import("superstruct").Struct<"v1", "v1">;
|
|
5109
5109
|
transaction: import("superstruct").Struct<{
|
|
5110
|
-
kind: "ChangeEpoch";
|
|
5111
5110
|
epoch: string;
|
|
5112
5111
|
storage_charge: number;
|
|
5113
5112
|
computation_charge: number;
|
|
5114
5113
|
storage_rebate: number;
|
|
5114
|
+
kind: "ChangeEpoch";
|
|
5115
5115
|
epoch_start_timestamp_ms?: number | undefined;
|
|
5116
5116
|
} | {
|
|
5117
|
-
kind: "ConsensusCommitPrologue";
|
|
5118
5117
|
epoch: number;
|
|
5119
5118
|
round: number;
|
|
5120
5119
|
commit_timestamp_ms: number;
|
|
5120
|
+
kind: "ConsensusCommitPrologue";
|
|
5121
5121
|
} | {
|
|
5122
|
-
kind: "Genesis";
|
|
5123
5122
|
objects: string[];
|
|
5123
|
+
kind: "Genesis";
|
|
5124
5124
|
} | {
|
|
5125
5125
|
transactions: ({
|
|
5126
5126
|
MoveCall: {
|
|
@@ -5212,12 +5212,12 @@ export declare const PaginatedTransactionResponse: import("superstruct").Struct<
|
|
|
5212
5212
|
}, null>;
|
|
5213
5213
|
sender: import("superstruct").Struct<string, null>;
|
|
5214
5214
|
gasData: import("superstruct").Struct<{
|
|
5215
|
-
owner: string;
|
|
5216
5215
|
payment: {
|
|
5217
5216
|
objectId: string;
|
|
5218
5217
|
version: string | number;
|
|
5219
5218
|
digest: string;
|
|
5220
5219
|
}[];
|
|
5220
|
+
owner: string;
|
|
5221
5221
|
price: number;
|
|
5222
5222
|
budget: number;
|
|
5223
5223
|
}, {
|
|
@@ -5242,16 +5242,16 @@ export declare const PaginatedTransactionResponse: import("superstruct").Struct<
|
|
|
5242
5242
|
txSignatures: import("superstruct").Struct<string[], import("superstruct").Struct<string, null>>;
|
|
5243
5243
|
}>;
|
|
5244
5244
|
effects: import("superstruct").Struct<{
|
|
5245
|
+
messageVersion: "v1";
|
|
5245
5246
|
status: {
|
|
5246
5247
|
status: "success" | "failure";
|
|
5247
5248
|
error?: string | undefined;
|
|
5248
5249
|
};
|
|
5249
|
-
messageVersion: "v1";
|
|
5250
5250
|
executedEpoch: string;
|
|
5251
5251
|
gasUsed: {
|
|
5252
|
-
storageRebate: string;
|
|
5253
5252
|
computationCost: string;
|
|
5254
5253
|
storageCost: string;
|
|
5254
|
+
storageRebate: string;
|
|
5255
5255
|
nonRefundableStorageFee: string;
|
|
5256
5256
|
};
|
|
5257
5257
|
transactionDigest: string;
|
|
@@ -5271,7 +5271,6 @@ export declare const PaginatedTransactionResponse: import("superstruct").Struct<
|
|
|
5271
5271
|
digest: string;
|
|
5272
5272
|
};
|
|
5273
5273
|
};
|
|
5274
|
-
dependencies?: string[] | undefined;
|
|
5275
5274
|
modifiedAtVersions?: {
|
|
5276
5275
|
objectId: string;
|
|
5277
5276
|
sequenceNumber: number;
|
|
@@ -5345,6 +5344,7 @@ export declare const PaginatedTransactionResponse: import("superstruct").Struct<
|
|
|
5345
5344
|
digest: string;
|
|
5346
5345
|
}[] | undefined;
|
|
5347
5346
|
eventsDigest?: string | undefined;
|
|
5347
|
+
dependencies?: string[] | undefined;
|
|
5348
5348
|
} | undefined, {
|
|
5349
5349
|
messageVersion: import("superstruct").Struct<"v1", "v1">;
|
|
5350
5350
|
/** The status of the execution */
|
|
@@ -5369,9 +5369,9 @@ export declare const PaginatedTransactionResponse: import("superstruct").Struct<
|
|
|
5369
5369
|
sequenceNumber: import("superstruct").Struct<number, null>;
|
|
5370
5370
|
}>>;
|
|
5371
5371
|
gasUsed: import("superstruct").Struct<{
|
|
5372
|
-
storageRebate: string;
|
|
5373
5372
|
computationCost: string;
|
|
5374
5373
|
storageCost: string;
|
|
5374
|
+
storageRebate: string;
|
|
5375
5375
|
nonRefundableStorageFee: string;
|
|
5376
5376
|
}, {
|
|
5377
5377
|
computationCost: import("superstruct").Struct<string, null>;
|
|
@@ -5639,28 +5639,28 @@ export declare const PaginatedTransactionResponse: import("superstruct").Struct<
|
|
|
5639
5639
|
dependencies: import("superstruct").Struct<string[] | undefined, import("superstruct").Struct<string, null>>;
|
|
5640
5640
|
}>;
|
|
5641
5641
|
events: import("superstruct").Struct<{
|
|
5642
|
-
type: string;
|
|
5643
5642
|
id: {
|
|
5644
5643
|
txDigest: string;
|
|
5645
5644
|
eventSeq: number;
|
|
5646
5645
|
};
|
|
5647
|
-
sender: string;
|
|
5648
5646
|
packageId: string;
|
|
5649
5647
|
transactionModule: string;
|
|
5650
|
-
|
|
5648
|
+
sender: string;
|
|
5649
|
+
type: string;
|
|
5651
5650
|
parsedJson?: Record<string, any> | undefined;
|
|
5651
|
+
bcs?: string | undefined;
|
|
5652
5652
|
timestampMs?: number | undefined;
|
|
5653
5653
|
}[] | undefined, import("superstruct").Struct<{
|
|
5654
|
-
type: string;
|
|
5655
5654
|
id: {
|
|
5656
5655
|
txDigest: string;
|
|
5657
5656
|
eventSeq: number;
|
|
5658
5657
|
};
|
|
5659
|
-
sender: string;
|
|
5660
5658
|
packageId: string;
|
|
5661
5659
|
transactionModule: string;
|
|
5662
|
-
|
|
5660
|
+
sender: string;
|
|
5661
|
+
type: string;
|
|
5663
5662
|
parsedJson?: Record<string, any> | undefined;
|
|
5663
|
+
bcs?: string | undefined;
|
|
5664
5664
|
timestampMs?: number | undefined;
|
|
5665
5665
|
}, {
|
|
5666
5666
|
id: import("superstruct").Struct<{
|
|
@@ -5682,18 +5682,18 @@ export declare const PaginatedTransactionResponse: import("superstruct").Struct<
|
|
|
5682
5682
|
checkpoint: import("superstruct").Struct<number | undefined, null>;
|
|
5683
5683
|
confirmedLocalExecution: import("superstruct").Struct<boolean | undefined, null>;
|
|
5684
5684
|
objectChanges: import("superstruct").Struct<({
|
|
5685
|
+
packageId: string;
|
|
5685
5686
|
type: "published";
|
|
5686
5687
|
version: number;
|
|
5687
5688
|
digest: string;
|
|
5688
5689
|
modules: string[];
|
|
5689
|
-
packageId: string;
|
|
5690
5690
|
} | {
|
|
5691
|
+
sender: string;
|
|
5691
5692
|
type: "transferred";
|
|
5692
5693
|
objectType: string;
|
|
5693
5694
|
objectId: string;
|
|
5694
5695
|
version: number;
|
|
5695
5696
|
digest: string;
|
|
5696
|
-
sender: string;
|
|
5697
5697
|
recipient: {
|
|
5698
5698
|
AddressOwner: string;
|
|
5699
5699
|
} | {
|
|
@@ -5704,6 +5704,7 @@ export declare const PaginatedTransactionResponse: import("superstruct").Struct<
|
|
|
5704
5704
|
};
|
|
5705
5705
|
} | "Immutable";
|
|
5706
5706
|
} | {
|
|
5707
|
+
sender: string;
|
|
5707
5708
|
type: "mutated";
|
|
5708
5709
|
objectType: string;
|
|
5709
5710
|
objectId: string;
|
|
@@ -5718,21 +5719,21 @@ export declare const PaginatedTransactionResponse: import("superstruct").Struct<
|
|
|
5718
5719
|
initial_shared_version: number;
|
|
5719
5720
|
};
|
|
5720
5721
|
} | "Immutable";
|
|
5721
|
-
sender: string;
|
|
5722
5722
|
previousVersion: number;
|
|
5723
5723
|
} | {
|
|
5724
|
+
sender: string;
|
|
5724
5725
|
type: "deleted";
|
|
5725
5726
|
objectType: string;
|
|
5726
5727
|
objectId: string;
|
|
5727
5728
|
version: number;
|
|
5728
|
-
sender: string;
|
|
5729
5729
|
} | {
|
|
5730
|
+
sender: string;
|
|
5730
5731
|
type: "wrapped";
|
|
5731
5732
|
objectType: string;
|
|
5732
5733
|
objectId: string;
|
|
5733
5734
|
version: number;
|
|
5734
|
-
sender: string;
|
|
5735
5735
|
} | {
|
|
5736
|
+
sender: string;
|
|
5736
5737
|
type: "created";
|
|
5737
5738
|
objectType: string;
|
|
5738
5739
|
objectId: string;
|
|
@@ -5747,20 +5748,19 @@ export declare const PaginatedTransactionResponse: import("superstruct").Struct<
|
|
|
5747
5748
|
initial_shared_version: number;
|
|
5748
5749
|
};
|
|
5749
5750
|
} | "Immutable";
|
|
5750
|
-
sender: string;
|
|
5751
5751
|
})[] | undefined, import("superstruct").Struct<{
|
|
5752
|
+
packageId: string;
|
|
5752
5753
|
type: "published";
|
|
5753
5754
|
version: number;
|
|
5754
5755
|
digest: string;
|
|
5755
5756
|
modules: string[];
|
|
5756
|
-
packageId: string;
|
|
5757
5757
|
} | {
|
|
5758
|
+
sender: string;
|
|
5758
5759
|
type: "transferred";
|
|
5759
5760
|
objectType: string;
|
|
5760
5761
|
objectId: string;
|
|
5761
5762
|
version: number;
|
|
5762
5763
|
digest: string;
|
|
5763
|
-
sender: string;
|
|
5764
5764
|
recipient: {
|
|
5765
5765
|
AddressOwner: string;
|
|
5766
5766
|
} | {
|
|
@@ -5771,6 +5771,7 @@ export declare const PaginatedTransactionResponse: import("superstruct").Struct<
|
|
|
5771
5771
|
};
|
|
5772
5772
|
} | "Immutable";
|
|
5773
5773
|
} | {
|
|
5774
|
+
sender: string;
|
|
5774
5775
|
type: "mutated";
|
|
5775
5776
|
objectType: string;
|
|
5776
5777
|
objectId: string;
|
|
@@ -5785,21 +5786,21 @@ export declare const PaginatedTransactionResponse: import("superstruct").Struct<
|
|
|
5785
5786
|
initial_shared_version: number;
|
|
5786
5787
|
};
|
|
5787
5788
|
} | "Immutable";
|
|
5788
|
-
sender: string;
|
|
5789
5789
|
previousVersion: number;
|
|
5790
5790
|
} | {
|
|
5791
|
+
sender: string;
|
|
5791
5792
|
type: "deleted";
|
|
5792
5793
|
objectType: string;
|
|
5793
5794
|
objectId: string;
|
|
5794
5795
|
version: number;
|
|
5795
|
-
sender: string;
|
|
5796
5796
|
} | {
|
|
5797
|
+
sender: string;
|
|
5797
5798
|
type: "wrapped";
|
|
5798
5799
|
objectType: string;
|
|
5799
5800
|
objectId: string;
|
|
5800
5801
|
version: number;
|
|
5801
|
-
sender: string;
|
|
5802
5802
|
} | {
|
|
5803
|
+
sender: string;
|
|
5803
5804
|
type: "created";
|
|
5804
5805
|
objectType: string;
|
|
5805
5806
|
objectId: string;
|
|
@@ -5814,7 +5815,6 @@ export declare const PaginatedTransactionResponse: import("superstruct").Struct<
|
|
|
5814
5815
|
initial_shared_version: number;
|
|
5815
5816
|
};
|
|
5816
5817
|
} | "Immutable";
|
|
5817
|
-
sender: string;
|
|
5818
5818
|
}, null>>;
|
|
5819
5819
|
balanceChanges: import("superstruct").Struct<{
|
|
5820
5820
|
owner: {
|
|
@@ -5861,16 +5861,16 @@ export declare const PaginatedTransactionResponse: import("superstruct").Struct<
|
|
|
5861
5861
|
export declare type PaginatedTransactionResponse = Infer<typeof PaginatedTransactionResponse>;
|
|
5862
5862
|
export declare const DryRunTransactionBlockResponse: import("superstruct").Struct<{
|
|
5863
5863
|
effects: {
|
|
5864
|
+
messageVersion: "v1";
|
|
5864
5865
|
status: {
|
|
5865
5866
|
status: "success" | "failure";
|
|
5866
5867
|
error?: string | undefined;
|
|
5867
5868
|
};
|
|
5868
|
-
messageVersion: "v1";
|
|
5869
5869
|
executedEpoch: string;
|
|
5870
5870
|
gasUsed: {
|
|
5871
|
-
storageRebate: string;
|
|
5872
5871
|
computationCost: string;
|
|
5873
5872
|
storageCost: string;
|
|
5873
|
+
storageRebate: string;
|
|
5874
5874
|
nonRefundableStorageFee: string;
|
|
5875
5875
|
};
|
|
5876
5876
|
transactionDigest: string;
|
|
@@ -5890,7 +5890,6 @@ export declare const DryRunTransactionBlockResponse: import("superstruct").Struc
|
|
|
5890
5890
|
digest: string;
|
|
5891
5891
|
};
|
|
5892
5892
|
};
|
|
5893
|
-
dependencies?: string[] | undefined;
|
|
5894
5893
|
modifiedAtVersions?: {
|
|
5895
5894
|
objectId: string;
|
|
5896
5895
|
sequenceNumber: number;
|
|
@@ -5964,33 +5963,34 @@ export declare const DryRunTransactionBlockResponse: import("superstruct").Struc
|
|
|
5964
5963
|
digest: string;
|
|
5965
5964
|
}[] | undefined;
|
|
5966
5965
|
eventsDigest?: string | undefined;
|
|
5966
|
+
dependencies?: string[] | undefined;
|
|
5967
5967
|
};
|
|
5968
5968
|
events: {
|
|
5969
|
-
type: string;
|
|
5970
5969
|
id: {
|
|
5971
5970
|
txDigest: string;
|
|
5972
5971
|
eventSeq: number;
|
|
5973
5972
|
};
|
|
5974
|
-
sender: string;
|
|
5975
5973
|
packageId: string;
|
|
5976
5974
|
transactionModule: string;
|
|
5977
|
-
|
|
5975
|
+
sender: string;
|
|
5976
|
+
type: string;
|
|
5978
5977
|
parsedJson?: Record<string, any> | undefined;
|
|
5978
|
+
bcs?: string | undefined;
|
|
5979
5979
|
timestampMs?: number | undefined;
|
|
5980
5980
|
}[];
|
|
5981
5981
|
objectChanges: ({
|
|
5982
|
+
packageId: string;
|
|
5982
5983
|
type: "published";
|
|
5983
5984
|
version: number;
|
|
5984
5985
|
digest: string;
|
|
5985
5986
|
modules: string[];
|
|
5986
|
-
packageId: string;
|
|
5987
5987
|
} | {
|
|
5988
|
+
sender: string;
|
|
5988
5989
|
type: "transferred";
|
|
5989
5990
|
objectType: string;
|
|
5990
5991
|
objectId: string;
|
|
5991
5992
|
version: number;
|
|
5992
5993
|
digest: string;
|
|
5993
|
-
sender: string;
|
|
5994
5994
|
recipient: {
|
|
5995
5995
|
AddressOwner: string;
|
|
5996
5996
|
} | {
|
|
@@ -6001,6 +6001,7 @@ export declare const DryRunTransactionBlockResponse: import("superstruct").Struc
|
|
|
6001
6001
|
};
|
|
6002
6002
|
} | "Immutable";
|
|
6003
6003
|
} | {
|
|
6004
|
+
sender: string;
|
|
6004
6005
|
type: "mutated";
|
|
6005
6006
|
objectType: string;
|
|
6006
6007
|
objectId: string;
|
|
@@ -6015,21 +6016,21 @@ export declare const DryRunTransactionBlockResponse: import("superstruct").Struc
|
|
|
6015
6016
|
initial_shared_version: number;
|
|
6016
6017
|
};
|
|
6017
6018
|
} | "Immutable";
|
|
6018
|
-
sender: string;
|
|
6019
6019
|
previousVersion: number;
|
|
6020
6020
|
} | {
|
|
6021
|
+
sender: string;
|
|
6021
6022
|
type: "deleted";
|
|
6022
6023
|
objectType: string;
|
|
6023
6024
|
objectId: string;
|
|
6024
6025
|
version: number;
|
|
6025
|
-
sender: string;
|
|
6026
6026
|
} | {
|
|
6027
|
+
sender: string;
|
|
6027
6028
|
type: "wrapped";
|
|
6028
6029
|
objectType: string;
|
|
6029
6030
|
objectId: string;
|
|
6030
6031
|
version: number;
|
|
6031
|
-
sender: string;
|
|
6032
6032
|
} | {
|
|
6033
|
+
sender: string;
|
|
6033
6034
|
type: "created";
|
|
6034
6035
|
objectType: string;
|
|
6035
6036
|
objectId: string;
|
|
@@ -6044,7 +6045,6 @@ export declare const DryRunTransactionBlockResponse: import("superstruct").Struc
|
|
|
6044
6045
|
initial_shared_version: number;
|
|
6045
6046
|
};
|
|
6046
6047
|
} | "Immutable";
|
|
6047
|
-
sender: string;
|
|
6048
6048
|
})[];
|
|
6049
6049
|
balanceChanges: {
|
|
6050
6050
|
owner: {
|
|
@@ -6061,16 +6061,16 @@ export declare const DryRunTransactionBlockResponse: import("superstruct").Struc
|
|
|
6061
6061
|
}[];
|
|
6062
6062
|
}, {
|
|
6063
6063
|
effects: import("superstruct").Struct<{
|
|
6064
|
+
messageVersion: "v1";
|
|
6064
6065
|
status: {
|
|
6065
6066
|
status: "success" | "failure";
|
|
6066
6067
|
error?: string | undefined;
|
|
6067
6068
|
};
|
|
6068
|
-
messageVersion: "v1";
|
|
6069
6069
|
executedEpoch: string;
|
|
6070
6070
|
gasUsed: {
|
|
6071
|
-
storageRebate: string;
|
|
6072
6071
|
computationCost: string;
|
|
6073
6072
|
storageCost: string;
|
|
6073
|
+
storageRebate: string;
|
|
6074
6074
|
nonRefundableStorageFee: string;
|
|
6075
6075
|
};
|
|
6076
6076
|
transactionDigest: string;
|
|
@@ -6090,7 +6090,6 @@ export declare const DryRunTransactionBlockResponse: import("superstruct").Struc
|
|
|
6090
6090
|
digest: string;
|
|
6091
6091
|
};
|
|
6092
6092
|
};
|
|
6093
|
-
dependencies?: string[] | undefined;
|
|
6094
6093
|
modifiedAtVersions?: {
|
|
6095
6094
|
objectId: string;
|
|
6096
6095
|
sequenceNumber: number;
|
|
@@ -6164,6 +6163,7 @@ export declare const DryRunTransactionBlockResponse: import("superstruct").Struc
|
|
|
6164
6163
|
digest: string;
|
|
6165
6164
|
}[] | undefined;
|
|
6166
6165
|
eventsDigest?: string | undefined;
|
|
6166
|
+
dependencies?: string[] | undefined;
|
|
6167
6167
|
}, {
|
|
6168
6168
|
messageVersion: import("superstruct").Struct<"v1", "v1">;
|
|
6169
6169
|
/** The status of the execution */
|
|
@@ -6188,9 +6188,9 @@ export declare const DryRunTransactionBlockResponse: import("superstruct").Struc
|
|
|
6188
6188
|
sequenceNumber: import("superstruct").Struct<number, null>;
|
|
6189
6189
|
}>>;
|
|
6190
6190
|
gasUsed: import("superstruct").Struct<{
|
|
6191
|
-
storageRebate: string;
|
|
6192
6191
|
computationCost: string;
|
|
6193
6192
|
storageCost: string;
|
|
6193
|
+
storageRebate: string;
|
|
6194
6194
|
nonRefundableStorageFee: string;
|
|
6195
6195
|
}, {
|
|
6196
6196
|
computationCost: import("superstruct").Struct<string, null>;
|
|
@@ -6458,28 +6458,28 @@ export declare const DryRunTransactionBlockResponse: import("superstruct").Struc
|
|
|
6458
6458
|
dependencies: import("superstruct").Struct<string[] | undefined, import("superstruct").Struct<string, null>>;
|
|
6459
6459
|
}>;
|
|
6460
6460
|
events: import("superstruct").Struct<{
|
|
6461
|
-
type: string;
|
|
6462
6461
|
id: {
|
|
6463
6462
|
txDigest: string;
|
|
6464
6463
|
eventSeq: number;
|
|
6465
6464
|
};
|
|
6466
|
-
sender: string;
|
|
6467
6465
|
packageId: string;
|
|
6468
6466
|
transactionModule: string;
|
|
6469
|
-
|
|
6467
|
+
sender: string;
|
|
6468
|
+
type: string;
|
|
6470
6469
|
parsedJson?: Record<string, any> | undefined;
|
|
6470
|
+
bcs?: string | undefined;
|
|
6471
6471
|
timestampMs?: number | undefined;
|
|
6472
6472
|
}[], import("superstruct").Struct<{
|
|
6473
|
-
type: string;
|
|
6474
6473
|
id: {
|
|
6475
6474
|
txDigest: string;
|
|
6476
6475
|
eventSeq: number;
|
|
6477
6476
|
};
|
|
6478
|
-
sender: string;
|
|
6479
6477
|
packageId: string;
|
|
6480
6478
|
transactionModule: string;
|
|
6481
|
-
|
|
6479
|
+
sender: string;
|
|
6480
|
+
type: string;
|
|
6482
6481
|
parsedJson?: Record<string, any> | undefined;
|
|
6482
|
+
bcs?: string | undefined;
|
|
6483
6483
|
timestampMs?: number | undefined;
|
|
6484
6484
|
}, {
|
|
6485
6485
|
id: import("superstruct").Struct<{
|
|
@@ -6498,18 +6498,18 @@ export declare const DryRunTransactionBlockResponse: import("superstruct").Struc
|
|
|
6498
6498
|
timestampMs: import("superstruct").Struct<number | undefined, null>;
|
|
6499
6499
|
}>>;
|
|
6500
6500
|
objectChanges: import("superstruct").Struct<({
|
|
6501
|
+
packageId: string;
|
|
6501
6502
|
type: "published";
|
|
6502
6503
|
version: number;
|
|
6503
6504
|
digest: string;
|
|
6504
6505
|
modules: string[];
|
|
6505
|
-
packageId: string;
|
|
6506
6506
|
} | {
|
|
6507
|
+
sender: string;
|
|
6507
6508
|
type: "transferred";
|
|
6508
6509
|
objectType: string;
|
|
6509
6510
|
objectId: string;
|
|
6510
6511
|
version: number;
|
|
6511
6512
|
digest: string;
|
|
6512
|
-
sender: string;
|
|
6513
6513
|
recipient: {
|
|
6514
6514
|
AddressOwner: string;
|
|
6515
6515
|
} | {
|
|
@@ -6520,6 +6520,7 @@ export declare const DryRunTransactionBlockResponse: import("superstruct").Struc
|
|
|
6520
6520
|
};
|
|
6521
6521
|
} | "Immutable";
|
|
6522
6522
|
} | {
|
|
6523
|
+
sender: string;
|
|
6523
6524
|
type: "mutated";
|
|
6524
6525
|
objectType: string;
|
|
6525
6526
|
objectId: string;
|
|
@@ -6534,21 +6535,21 @@ export declare const DryRunTransactionBlockResponse: import("superstruct").Struc
|
|
|
6534
6535
|
initial_shared_version: number;
|
|
6535
6536
|
};
|
|
6536
6537
|
} | "Immutable";
|
|
6537
|
-
sender: string;
|
|
6538
6538
|
previousVersion: number;
|
|
6539
6539
|
} | {
|
|
6540
|
+
sender: string;
|
|
6540
6541
|
type: "deleted";
|
|
6541
6542
|
objectType: string;
|
|
6542
6543
|
objectId: string;
|
|
6543
6544
|
version: number;
|
|
6544
|
-
sender: string;
|
|
6545
6545
|
} | {
|
|
6546
|
+
sender: string;
|
|
6546
6547
|
type: "wrapped";
|
|
6547
6548
|
objectType: string;
|
|
6548
6549
|
objectId: string;
|
|
6549
6550
|
version: number;
|
|
6550
|
-
sender: string;
|
|
6551
6551
|
} | {
|
|
6552
|
+
sender: string;
|
|
6552
6553
|
type: "created";
|
|
6553
6554
|
objectType: string;
|
|
6554
6555
|
objectId: string;
|
|
@@ -6563,20 +6564,19 @@ export declare const DryRunTransactionBlockResponse: import("superstruct").Struc
|
|
|
6563
6564
|
initial_shared_version: number;
|
|
6564
6565
|
};
|
|
6565
6566
|
} | "Immutable";
|
|
6566
|
-
sender: string;
|
|
6567
6567
|
})[], import("superstruct").Struct<{
|
|
6568
|
+
packageId: string;
|
|
6568
6569
|
type: "published";
|
|
6569
6570
|
version: number;
|
|
6570
6571
|
digest: string;
|
|
6571
6572
|
modules: string[];
|
|
6572
|
-
packageId: string;
|
|
6573
6573
|
} | {
|
|
6574
|
+
sender: string;
|
|
6574
6575
|
type: "transferred";
|
|
6575
6576
|
objectType: string;
|
|
6576
6577
|
objectId: string;
|
|
6577
6578
|
version: number;
|
|
6578
6579
|
digest: string;
|
|
6579
|
-
sender: string;
|
|
6580
6580
|
recipient: {
|
|
6581
6581
|
AddressOwner: string;
|
|
6582
6582
|
} | {
|
|
@@ -6587,6 +6587,7 @@ export declare const DryRunTransactionBlockResponse: import("superstruct").Struc
|
|
|
6587
6587
|
};
|
|
6588
6588
|
} | "Immutable";
|
|
6589
6589
|
} | {
|
|
6590
|
+
sender: string;
|
|
6590
6591
|
type: "mutated";
|
|
6591
6592
|
objectType: string;
|
|
6592
6593
|
objectId: string;
|
|
@@ -6601,21 +6602,21 @@ export declare const DryRunTransactionBlockResponse: import("superstruct").Struc
|
|
|
6601
6602
|
initial_shared_version: number;
|
|
6602
6603
|
};
|
|
6603
6604
|
} | "Immutable";
|
|
6604
|
-
sender: string;
|
|
6605
6605
|
previousVersion: number;
|
|
6606
6606
|
} | {
|
|
6607
|
+
sender: string;
|
|
6607
6608
|
type: "deleted";
|
|
6608
6609
|
objectType: string;
|
|
6609
6610
|
objectId: string;
|
|
6610
6611
|
version: number;
|
|
6611
|
-
sender: string;
|
|
6612
6612
|
} | {
|
|
6613
|
+
sender: string;
|
|
6613
6614
|
type: "wrapped";
|
|
6614
6615
|
objectType: string;
|
|
6615
6616
|
objectId: string;
|
|
6616
6617
|
version: number;
|
|
6617
|
-
sender: string;
|
|
6618
6618
|
} | {
|
|
6619
|
+
sender: string;
|
|
6619
6620
|
type: "created";
|
|
6620
6621
|
objectType: string;
|
|
6621
6622
|
objectId: string;
|
|
@@ -6630,7 +6631,6 @@ export declare const DryRunTransactionBlockResponse: import("superstruct").Struc
|
|
|
6630
6631
|
initial_shared_version: number;
|
|
6631
6632
|
};
|
|
6632
6633
|
} | "Immutable";
|
|
6633
|
-
sender: string;
|
|
6634
6634
|
}, null>>;
|
|
6635
6635
|
balanceChanges: import("superstruct").Struct<{
|
|
6636
6636
|
owner: {
|