@bitgo-beta/sdk-coin-sui 3.0.3-beta.31 → 3.0.3-beta.310
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 +463 -0
- package/dist/src/index.js +6 -2
- package/dist/src/lib/compareTransactionBlocks.d.ts +2 -3
- package/dist/src/lib/compareTransactionBlocks.d.ts.map +1 -1
- package/dist/src/lib/compareTransactionBlocks.js +1 -1
- package/dist/src/lib/customTransaction.d.ts +57 -0
- package/dist/src/lib/customTransaction.d.ts.map +1 -0
- package/dist/src/lib/customTransaction.js +159 -0
- package/dist/src/lib/customTransactionBuilder.d.ts +46 -0
- package/dist/src/lib/customTransactionBuilder.d.ts.map +1 -0
- package/dist/src/lib/customTransactionBuilder.js +117 -0
- package/dist/src/lib/iface.d.ts +21 -4
- package/dist/src/lib/iface.d.ts.map +1 -1
- package/dist/src/lib/iface.js +14 -1
- package/dist/src/lib/index.d.ts +2 -0
- package/dist/src/lib/index.d.ts.map +1 -1
- package/dist/src/lib/index.js +11 -3
- package/dist/src/lib/keyPair.js +7 -3
- package/dist/src/lib/mystenlab/builder/Inputs.d.ts +1 -1
- package/dist/src/lib/mystenlab/builder/Inputs.d.ts.map +1 -1
- package/dist/src/lib/mystenlab/builder/Inputs.js +12 -12
- package/dist/src/lib/mystenlab/builder/TransactionBlock.d.ts +1 -1
- package/dist/src/lib/mystenlab/builder/TransactionBlock.js +35 -37
- package/dist/src/lib/mystenlab/builder/TransactionDataBlock.d.ts +1 -1
- package/dist/src/lib/mystenlab/builder/TransactionDataBlock.js +26 -26
- package/dist/src/lib/mystenlab/builder/Transactions.js +48 -48
- package/dist/src/lib/mystenlab/builder/bcs.js +2 -2
- package/dist/src/lib/mystenlab/builder/index.js +6 -2
- package/dist/src/lib/mystenlab/builder/serializer.js +3 -3
- package/dist/src/lib/mystenlab/builder/utils.js +2 -2
- package/dist/src/lib/mystenlab/cryptography/hash.js +2 -2
- package/dist/src/lib/mystenlab/framework/framework.js +15 -15
- package/dist/src/lib/mystenlab/framework/index.js +6 -2
- package/dist/src/lib/mystenlab/framework/sui-system-state.js +2 -2
- package/dist/src/lib/mystenlab/txn-data-serializers/type-tag-serializer.js +2 -2
- package/dist/src/lib/mystenlab/types/coin.js +19 -19
- package/dist/src/lib/mystenlab/types/common.js +16 -16
- package/dist/src/lib/mystenlab/types/events.js +14 -14
- package/dist/src/lib/mystenlab/types/index.js +6 -2
- package/dist/src/lib/mystenlab/types/normalized.js +37 -37
- package/dist/src/lib/mystenlab/types/objects.js +64 -64
- package/dist/src/lib/mystenlab/types/sui-bcs.d.ts.map +1 -1
- package/dist/src/lib/mystenlab/types/sui-bcs.js +3 -3
- package/dist/src/lib/mystenlab/types/transactions.d.ts +41 -41
- package/dist/src/lib/mystenlab/types/transactions.js +137 -137
- package/dist/src/lib/mystenlab/types/validator.d.ts +4 -4
- package/dist/src/lib/mystenlab/types/validator.js +124 -124
- package/dist/src/lib/stakingBuilder.d.ts +3 -3
- package/dist/src/lib/stakingBuilder.d.ts.map +1 -1
- package/dist/src/lib/stakingBuilder.js +31 -28
- package/dist/src/lib/stakingTransaction.d.ts +1 -0
- package/dist/src/lib/stakingTransaction.d.ts.map +1 -1
- package/dist/src/lib/stakingTransaction.js +10 -13
- package/dist/src/lib/transaction.d.ts +2 -0
- package/dist/src/lib/transaction.d.ts.map +1 -1
- package/dist/src/lib/transaction.js +32 -11
- package/dist/src/lib/transactionBuilder.js +4 -4
- package/dist/src/lib/transactionBuilderFactory.d.ts +4 -1
- package/dist/src/lib/transactionBuilderFactory.d.ts.map +1 -1
- package/dist/src/lib/transactionBuilderFactory.js +11 -1
- package/dist/src/lib/transferBuilder.js +5 -5
- package/dist/src/lib/transferTransaction.d.ts +1 -0
- package/dist/src/lib/transferTransaction.d.ts.map +1 -1
- package/dist/src/lib/unstakingBuilder.d.ts +4 -0
- package/dist/src/lib/unstakingBuilder.d.ts.map +1 -1
- package/dist/src/lib/unstakingBuilder.js +66 -9
- package/dist/src/lib/unstakingTransaction.d.ts +20 -8
- package/dist/src/lib/unstakingTransaction.d.ts.map +1 -1
- package/dist/src/lib/unstakingTransaction.js +101 -33
- package/dist/src/lib/utils.d.ts +14 -4
- package/dist/src/lib/utils.d.ts.map +1 -1
- package/dist/src/lib/utils.js +92 -22
- package/dist/src/sui.js +6 -2
- package/package.json +9 -8
|
@@ -539,7 +539,6 @@ export declare const SuiTransactionBlockKind: import("superstruct").Struct<{
|
|
|
539
539
|
export declare type SuiTransactionBlockKind = Infer<typeof SuiTransactionBlockKind>;
|
|
540
540
|
export declare const SuiTransactionBlockData: import("superstruct").Struct<{
|
|
541
541
|
sender: string;
|
|
542
|
-
messageVersion: "v1";
|
|
543
542
|
transaction: {
|
|
544
543
|
kind: "ChangeEpoch";
|
|
545
544
|
epoch: string;
|
|
@@ -644,6 +643,7 @@ export declare const SuiTransactionBlockData: import("superstruct").Struct<{
|
|
|
644
643
|
})[];
|
|
645
644
|
kind: "ProgrammableTransaction";
|
|
646
645
|
};
|
|
646
|
+
messageVersion: "v1";
|
|
647
647
|
gasData: {
|
|
648
648
|
budget: number;
|
|
649
649
|
price: number;
|
|
@@ -1936,7 +1936,6 @@ export declare const AuthorityName: import("superstruct").Struct<string, null>;
|
|
|
1936
1936
|
export declare const SuiTransactionBlock: import("superstruct").Struct<{
|
|
1937
1937
|
data: {
|
|
1938
1938
|
sender: string;
|
|
1939
|
-
messageVersion: "v1";
|
|
1940
1939
|
transaction: {
|
|
1941
1940
|
kind: "ChangeEpoch";
|
|
1942
1941
|
epoch: string;
|
|
@@ -2041,6 +2040,7 @@ export declare const SuiTransactionBlock: import("superstruct").Struct<{
|
|
|
2041
2040
|
})[];
|
|
2042
2041
|
kind: "ProgrammableTransaction";
|
|
2043
2042
|
};
|
|
2043
|
+
messageVersion: "v1";
|
|
2044
2044
|
gasData: {
|
|
2045
2045
|
budget: number;
|
|
2046
2046
|
price: number;
|
|
@@ -2056,7 +2056,6 @@ export declare const SuiTransactionBlock: import("superstruct").Struct<{
|
|
|
2056
2056
|
}, {
|
|
2057
2057
|
data: import("superstruct").Struct<{
|
|
2058
2058
|
sender: string;
|
|
2059
|
-
messageVersion: "v1";
|
|
2060
2059
|
transaction: {
|
|
2061
2060
|
kind: "ChangeEpoch";
|
|
2062
2061
|
epoch: string;
|
|
@@ -2161,6 +2160,7 @@ export declare const SuiTransactionBlock: import("superstruct").Struct<{
|
|
|
2161
2160
|
})[];
|
|
2162
2161
|
kind: "ProgrammableTransaction";
|
|
2163
2162
|
};
|
|
2163
|
+
messageVersion: "v1";
|
|
2164
2164
|
gasData: {
|
|
2165
2165
|
budget: number;
|
|
2166
2166
|
price: number;
|
|
@@ -2363,6 +2363,7 @@ export declare const SuiObjectChangeMutated: import("superstruct").Struct<{
|
|
|
2363
2363
|
objectId: string;
|
|
2364
2364
|
version: number;
|
|
2365
2365
|
digest: string;
|
|
2366
|
+
sender: string;
|
|
2366
2367
|
owner: {
|
|
2367
2368
|
AddressOwner: string;
|
|
2368
2369
|
} | {
|
|
@@ -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">;
|
|
@@ -2427,6 +2427,7 @@ export declare const SuiObjectChangeCreated: import("superstruct").Struct<{
|
|
|
2427
2427
|
objectId: string;
|
|
2428
2428
|
version: number;
|
|
2429
2429
|
digest: string;
|
|
2430
|
+
sender: string;
|
|
2430
2431
|
owner: {
|
|
2431
2432
|
AddressOwner: string;
|
|
2432
2433
|
} | {
|
|
@@ -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>;
|
|
@@ -2483,6 +2483,7 @@ export declare const SuiObjectChange: import("superstruct").Struct<{
|
|
|
2483
2483
|
objectId: string;
|
|
2484
2484
|
version: number;
|
|
2485
2485
|
digest: string;
|
|
2486
|
+
sender: string;
|
|
2486
2487
|
owner: {
|
|
2487
2488
|
AddressOwner: string;
|
|
2488
2489
|
} | {
|
|
@@ -2492,7 +2493,6 @@ 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
2498
|
type: "deleted";
|
|
@@ -2512,6 +2512,7 @@ export declare const SuiObjectChange: import("superstruct").Struct<{
|
|
|
2512
2512
|
objectId: string;
|
|
2513
2513
|
version: number;
|
|
2514
2514
|
digest: string;
|
|
2515
|
+
sender: string;
|
|
2515
2516
|
owner: {
|
|
2516
2517
|
AddressOwner: string;
|
|
2517
2518
|
} | {
|
|
@@ -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<{
|
|
@@ -2554,7 +2554,6 @@ export declare const SuiTransactionBlockResponse: import("superstruct").Struct<{
|
|
|
2554
2554
|
transaction?: {
|
|
2555
2555
|
data: {
|
|
2556
2556
|
sender: string;
|
|
2557
|
-
messageVersion: "v1";
|
|
2558
2557
|
transaction: {
|
|
2559
2558
|
kind: "ChangeEpoch";
|
|
2560
2559
|
epoch: string;
|
|
@@ -2659,6 +2658,7 @@ export declare const SuiTransactionBlockResponse: import("superstruct").Struct<{
|
|
|
2659
2658
|
})[];
|
|
2660
2659
|
kind: "ProgrammableTransaction";
|
|
2661
2660
|
};
|
|
2661
|
+
messageVersion: "v1";
|
|
2662
2662
|
gasData: {
|
|
2663
2663
|
budget: number;
|
|
2664
2664
|
price: number;
|
|
@@ -2672,7 +2672,6 @@ export declare const SuiTransactionBlockResponse: import("superstruct").Struct<{
|
|
|
2672
2672
|
};
|
|
2673
2673
|
txSignatures: string[];
|
|
2674
2674
|
} | undefined;
|
|
2675
|
-
timestampMs?: number | undefined;
|
|
2676
2675
|
effects?: {
|
|
2677
2676
|
status: {
|
|
2678
2677
|
status: "success" | "failure";
|
|
@@ -2791,6 +2790,7 @@ export declare const SuiTransactionBlockResponse: import("superstruct").Struct<{
|
|
|
2791
2790
|
parsedJson?: Record<string, any> | undefined;
|
|
2792
2791
|
timestampMs?: number | undefined;
|
|
2793
2792
|
}[] | undefined;
|
|
2793
|
+
timestampMs?: number | undefined;
|
|
2794
2794
|
checkpoint?: number | undefined;
|
|
2795
2795
|
confirmedLocalExecution?: boolean | undefined;
|
|
2796
2796
|
objectChanges?: ({
|
|
@@ -2821,6 +2821,7 @@ export declare const SuiTransactionBlockResponse: import("superstruct").Struct<{
|
|
|
2821
2821
|
objectId: string;
|
|
2822
2822
|
version: number;
|
|
2823
2823
|
digest: string;
|
|
2824
|
+
sender: string;
|
|
2824
2825
|
owner: {
|
|
2825
2826
|
AddressOwner: string;
|
|
2826
2827
|
} | {
|
|
@@ -2830,7 +2831,6 @@ 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
2836
|
type: "deleted";
|
|
@@ -2850,6 +2850,7 @@ export declare const SuiTransactionBlockResponse: import("superstruct").Struct<{
|
|
|
2850
2850
|
objectId: string;
|
|
2851
2851
|
version: number;
|
|
2852
2852
|
digest: string;
|
|
2853
|
+
sender: string;
|
|
2853
2854
|
owner: {
|
|
2854
2855
|
AddressOwner: string;
|
|
2855
2856
|
} | {
|
|
@@ -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
|
amount: string;
|
|
@@ -2880,7 +2880,6 @@ export declare const SuiTransactionBlockResponse: import("superstruct").Struct<{
|
|
|
2880
2880
|
transaction: import("superstruct").Struct<{
|
|
2881
2881
|
data: {
|
|
2882
2882
|
sender: string;
|
|
2883
|
-
messageVersion: "v1";
|
|
2884
2883
|
transaction: {
|
|
2885
2884
|
kind: "ChangeEpoch";
|
|
2886
2885
|
epoch: string;
|
|
@@ -2985,6 +2984,7 @@ export declare const SuiTransactionBlockResponse: import("superstruct").Struct<{
|
|
|
2985
2984
|
})[];
|
|
2986
2985
|
kind: "ProgrammableTransaction";
|
|
2987
2986
|
};
|
|
2987
|
+
messageVersion: "v1";
|
|
2988
2988
|
gasData: {
|
|
2989
2989
|
budget: number;
|
|
2990
2990
|
price: number;
|
|
@@ -3000,7 +3000,6 @@ export declare const SuiTransactionBlockResponse: import("superstruct").Struct<{
|
|
|
3000
3000
|
} | undefined, {
|
|
3001
3001
|
data: import("superstruct").Struct<{
|
|
3002
3002
|
sender: string;
|
|
3003
|
-
messageVersion: "v1";
|
|
3004
3003
|
transaction: {
|
|
3005
3004
|
kind: "ChangeEpoch";
|
|
3006
3005
|
epoch: string;
|
|
@@ -3105,6 +3104,7 @@ export declare const SuiTransactionBlockResponse: import("superstruct").Struct<{
|
|
|
3105
3104
|
})[];
|
|
3106
3105
|
kind: "ProgrammableTransaction";
|
|
3107
3106
|
};
|
|
3107
|
+
messageVersion: "v1";
|
|
3108
3108
|
gasData: {
|
|
3109
3109
|
budget: number;
|
|
3110
3110
|
price: number;
|
|
@@ -3720,6 +3720,7 @@ export declare const SuiTransactionBlockResponse: import("superstruct").Struct<{
|
|
|
3720
3720
|
objectId: string;
|
|
3721
3721
|
version: number;
|
|
3722
3722
|
digest: string;
|
|
3723
|
+
sender: string;
|
|
3723
3724
|
owner: {
|
|
3724
3725
|
AddressOwner: string;
|
|
3725
3726
|
} | {
|
|
@@ -3729,7 +3730,6 @@ 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
3735
|
type: "deleted";
|
|
@@ -3749,6 +3749,7 @@ export declare const SuiTransactionBlockResponse: import("superstruct").Struct<{
|
|
|
3749
3749
|
objectId: string;
|
|
3750
3750
|
version: number;
|
|
3751
3751
|
digest: string;
|
|
3752
|
+
sender: string;
|
|
3752
3753
|
owner: {
|
|
3753
3754
|
AddressOwner: string;
|
|
3754
3755
|
} | {
|
|
@@ -3758,7 +3759,6 @@ 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
3763
|
type: "published";
|
|
3764
3764
|
version: number;
|
|
@@ -3787,6 +3787,7 @@ export declare const SuiTransactionBlockResponse: import("superstruct").Struct<{
|
|
|
3787
3787
|
objectId: string;
|
|
3788
3788
|
version: number;
|
|
3789
3789
|
digest: string;
|
|
3790
|
+
sender: string;
|
|
3790
3791
|
owner: {
|
|
3791
3792
|
AddressOwner: string;
|
|
3792
3793
|
} | {
|
|
@@ -3796,7 +3797,6 @@ 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
3802
|
type: "deleted";
|
|
@@ -3816,6 +3816,7 @@ export declare const SuiTransactionBlockResponse: import("superstruct").Struct<{
|
|
|
3816
3816
|
objectId: string;
|
|
3817
3817
|
version: number;
|
|
3818
3818
|
digest: string;
|
|
3819
|
+
sender: string;
|
|
3819
3820
|
owner: {
|
|
3820
3821
|
AddressOwner: string;
|
|
3821
3822
|
} | {
|
|
@@ -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
|
amount: string;
|
|
@@ -3887,7 +3887,6 @@ export declare const PaginatedTransactionResponse: import("superstruct").Struct<
|
|
|
3887
3887
|
transaction?: {
|
|
3888
3888
|
data: {
|
|
3889
3889
|
sender: string;
|
|
3890
|
-
messageVersion: "v1";
|
|
3891
3890
|
transaction: {
|
|
3892
3891
|
kind: "ChangeEpoch";
|
|
3893
3892
|
epoch: string;
|
|
@@ -3992,6 +3991,7 @@ export declare const PaginatedTransactionResponse: import("superstruct").Struct<
|
|
|
3992
3991
|
})[];
|
|
3993
3992
|
kind: "ProgrammableTransaction";
|
|
3994
3993
|
};
|
|
3994
|
+
messageVersion: "v1";
|
|
3995
3995
|
gasData: {
|
|
3996
3996
|
budget: number;
|
|
3997
3997
|
price: number;
|
|
@@ -4005,7 +4005,6 @@ export declare const PaginatedTransactionResponse: import("superstruct").Struct<
|
|
|
4005
4005
|
};
|
|
4006
4006
|
txSignatures: string[];
|
|
4007
4007
|
} | undefined;
|
|
4008
|
-
timestampMs?: number | undefined;
|
|
4009
4008
|
effects?: {
|
|
4010
4009
|
status: {
|
|
4011
4010
|
status: "success" | "failure";
|
|
@@ -4124,6 +4123,7 @@ export declare const PaginatedTransactionResponse: import("superstruct").Struct<
|
|
|
4124
4123
|
parsedJson?: Record<string, any> | undefined;
|
|
4125
4124
|
timestampMs?: number | undefined;
|
|
4126
4125
|
}[] | undefined;
|
|
4126
|
+
timestampMs?: number | undefined;
|
|
4127
4127
|
checkpoint?: number | undefined;
|
|
4128
4128
|
confirmedLocalExecution?: boolean | undefined;
|
|
4129
4129
|
objectChanges?: ({
|
|
@@ -4154,6 +4154,7 @@ export declare const PaginatedTransactionResponse: import("superstruct").Struct<
|
|
|
4154
4154
|
objectId: string;
|
|
4155
4155
|
version: number;
|
|
4156
4156
|
digest: string;
|
|
4157
|
+
sender: string;
|
|
4157
4158
|
owner: {
|
|
4158
4159
|
AddressOwner: string;
|
|
4159
4160
|
} | {
|
|
@@ -4163,7 +4164,6 @@ 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
4169
|
type: "deleted";
|
|
@@ -4183,6 +4183,7 @@ export declare const PaginatedTransactionResponse: import("superstruct").Struct<
|
|
|
4183
4183
|
objectId: string;
|
|
4184
4184
|
version: number;
|
|
4185
4185
|
digest: string;
|
|
4186
|
+
sender: string;
|
|
4186
4187
|
owner: {
|
|
4187
4188
|
AddressOwner: string;
|
|
4188
4189
|
} | {
|
|
@@ -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
|
amount: string;
|
|
@@ -4217,7 +4217,6 @@ export declare const PaginatedTransactionResponse: import("superstruct").Struct<
|
|
|
4217
4217
|
transaction?: {
|
|
4218
4218
|
data: {
|
|
4219
4219
|
sender: string;
|
|
4220
|
-
messageVersion: "v1";
|
|
4221
4220
|
transaction: {
|
|
4222
4221
|
kind: "ChangeEpoch";
|
|
4223
4222
|
epoch: string;
|
|
@@ -4322,6 +4321,7 @@ export declare const PaginatedTransactionResponse: import("superstruct").Struct<
|
|
|
4322
4321
|
})[];
|
|
4323
4322
|
kind: "ProgrammableTransaction";
|
|
4324
4323
|
};
|
|
4324
|
+
messageVersion: "v1";
|
|
4325
4325
|
gasData: {
|
|
4326
4326
|
budget: number;
|
|
4327
4327
|
price: number;
|
|
@@ -4335,7 +4335,6 @@ export declare const PaginatedTransactionResponse: import("superstruct").Struct<
|
|
|
4335
4335
|
};
|
|
4336
4336
|
txSignatures: string[];
|
|
4337
4337
|
} | undefined;
|
|
4338
|
-
timestampMs?: number | undefined;
|
|
4339
4338
|
effects?: {
|
|
4340
4339
|
status: {
|
|
4341
4340
|
status: "success" | "failure";
|
|
@@ -4454,6 +4453,7 @@ export declare const PaginatedTransactionResponse: import("superstruct").Struct<
|
|
|
4454
4453
|
parsedJson?: Record<string, any> | undefined;
|
|
4455
4454
|
timestampMs?: number | undefined;
|
|
4456
4455
|
}[] | undefined;
|
|
4456
|
+
timestampMs?: number | undefined;
|
|
4457
4457
|
checkpoint?: number | undefined;
|
|
4458
4458
|
confirmedLocalExecution?: boolean | undefined;
|
|
4459
4459
|
objectChanges?: ({
|
|
@@ -4484,6 +4484,7 @@ export declare const PaginatedTransactionResponse: import("superstruct").Struct<
|
|
|
4484
4484
|
objectId: string;
|
|
4485
4485
|
version: number;
|
|
4486
4486
|
digest: string;
|
|
4487
|
+
sender: string;
|
|
4487
4488
|
owner: {
|
|
4488
4489
|
AddressOwner: string;
|
|
4489
4490
|
} | {
|
|
@@ -4493,7 +4494,6 @@ 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
4499
|
type: "deleted";
|
|
@@ -4513,6 +4513,7 @@ export declare const PaginatedTransactionResponse: import("superstruct").Struct<
|
|
|
4513
4513
|
objectId: string;
|
|
4514
4514
|
version: number;
|
|
4515
4515
|
digest: string;
|
|
4516
|
+
sender: string;
|
|
4516
4517
|
owner: {
|
|
4517
4518
|
AddressOwner: string;
|
|
4518
4519
|
} | {
|
|
@@ -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
|
amount: string;
|
|
@@ -4543,7 +4543,6 @@ export declare const PaginatedTransactionResponse: import("superstruct").Struct<
|
|
|
4543
4543
|
transaction?: {
|
|
4544
4544
|
data: {
|
|
4545
4545
|
sender: string;
|
|
4546
|
-
messageVersion: "v1";
|
|
4547
4546
|
transaction: {
|
|
4548
4547
|
kind: "ChangeEpoch";
|
|
4549
4548
|
epoch: string;
|
|
@@ -4648,6 +4647,7 @@ export declare const PaginatedTransactionResponse: import("superstruct").Struct<
|
|
|
4648
4647
|
})[];
|
|
4649
4648
|
kind: "ProgrammableTransaction";
|
|
4650
4649
|
};
|
|
4650
|
+
messageVersion: "v1";
|
|
4651
4651
|
gasData: {
|
|
4652
4652
|
budget: number;
|
|
4653
4653
|
price: number;
|
|
@@ -4661,7 +4661,6 @@ export declare const PaginatedTransactionResponse: import("superstruct").Struct<
|
|
|
4661
4661
|
};
|
|
4662
4662
|
txSignatures: string[];
|
|
4663
4663
|
} | undefined;
|
|
4664
|
-
timestampMs?: number | undefined;
|
|
4665
4664
|
effects?: {
|
|
4666
4665
|
status: {
|
|
4667
4666
|
status: "success" | "failure";
|
|
@@ -4780,6 +4779,7 @@ export declare const PaginatedTransactionResponse: import("superstruct").Struct<
|
|
|
4780
4779
|
parsedJson?: Record<string, any> | undefined;
|
|
4781
4780
|
timestampMs?: number | undefined;
|
|
4782
4781
|
}[] | undefined;
|
|
4782
|
+
timestampMs?: number | undefined;
|
|
4783
4783
|
checkpoint?: number | undefined;
|
|
4784
4784
|
confirmedLocalExecution?: boolean | undefined;
|
|
4785
4785
|
objectChanges?: ({
|
|
@@ -4810,6 +4810,7 @@ export declare const PaginatedTransactionResponse: import("superstruct").Struct<
|
|
|
4810
4810
|
objectId: string;
|
|
4811
4811
|
version: number;
|
|
4812
4812
|
digest: string;
|
|
4813
|
+
sender: string;
|
|
4813
4814
|
owner: {
|
|
4814
4815
|
AddressOwner: string;
|
|
4815
4816
|
} | {
|
|
@@ -4819,7 +4820,6 @@ 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
4825
|
type: "deleted";
|
|
@@ -4839,6 +4839,7 @@ export declare const PaginatedTransactionResponse: import("superstruct").Struct<
|
|
|
4839
4839
|
objectId: string;
|
|
4840
4840
|
version: number;
|
|
4841
4841
|
digest: string;
|
|
4842
|
+
sender: string;
|
|
4842
4843
|
owner: {
|
|
4843
4844
|
AddressOwner: string;
|
|
4844
4845
|
} | {
|
|
@@ -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
|
amount: string;
|
|
@@ -4869,7 +4869,6 @@ export declare const PaginatedTransactionResponse: import("superstruct").Struct<
|
|
|
4869
4869
|
transaction: import("superstruct").Struct<{
|
|
4870
4870
|
data: {
|
|
4871
4871
|
sender: string;
|
|
4872
|
-
messageVersion: "v1";
|
|
4873
4872
|
transaction: {
|
|
4874
4873
|
kind: "ChangeEpoch";
|
|
4875
4874
|
epoch: string;
|
|
@@ -4974,6 +4973,7 @@ export declare const PaginatedTransactionResponse: import("superstruct").Struct<
|
|
|
4974
4973
|
})[];
|
|
4975
4974
|
kind: "ProgrammableTransaction";
|
|
4976
4975
|
};
|
|
4976
|
+
messageVersion: "v1";
|
|
4977
4977
|
gasData: {
|
|
4978
4978
|
budget: number;
|
|
4979
4979
|
price: number;
|
|
@@ -4989,7 +4989,6 @@ export declare const PaginatedTransactionResponse: import("superstruct").Struct<
|
|
|
4989
4989
|
} | undefined, {
|
|
4990
4990
|
data: import("superstruct").Struct<{
|
|
4991
4991
|
sender: string;
|
|
4992
|
-
messageVersion: "v1";
|
|
4993
4992
|
transaction: {
|
|
4994
4993
|
kind: "ChangeEpoch";
|
|
4995
4994
|
epoch: string;
|
|
@@ -5094,6 +5093,7 @@ export declare const PaginatedTransactionResponse: import("superstruct").Struct<
|
|
|
5094
5093
|
})[];
|
|
5095
5094
|
kind: "ProgrammableTransaction";
|
|
5096
5095
|
};
|
|
5096
|
+
messageVersion: "v1";
|
|
5097
5097
|
gasData: {
|
|
5098
5098
|
budget: number;
|
|
5099
5099
|
price: number;
|
|
@@ -5709,6 +5709,7 @@ export declare const PaginatedTransactionResponse: import("superstruct").Struct<
|
|
|
5709
5709
|
objectId: string;
|
|
5710
5710
|
version: number;
|
|
5711
5711
|
digest: string;
|
|
5712
|
+
sender: string;
|
|
5712
5713
|
owner: {
|
|
5713
5714
|
AddressOwner: string;
|
|
5714
5715
|
} | {
|
|
@@ -5718,7 +5719,6 @@ 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
5724
|
type: "deleted";
|
|
@@ -5738,6 +5738,7 @@ export declare const PaginatedTransactionResponse: import("superstruct").Struct<
|
|
|
5738
5738
|
objectId: string;
|
|
5739
5739
|
version: number;
|
|
5740
5740
|
digest: string;
|
|
5741
|
+
sender: string;
|
|
5741
5742
|
owner: {
|
|
5742
5743
|
AddressOwner: string;
|
|
5743
5744
|
} | {
|
|
@@ -5747,7 +5748,6 @@ 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
5752
|
type: "published";
|
|
5753
5753
|
version: number;
|
|
@@ -5776,6 +5776,7 @@ export declare const PaginatedTransactionResponse: import("superstruct").Struct<
|
|
|
5776
5776
|
objectId: string;
|
|
5777
5777
|
version: number;
|
|
5778
5778
|
digest: string;
|
|
5779
|
+
sender: string;
|
|
5779
5780
|
owner: {
|
|
5780
5781
|
AddressOwner: string;
|
|
5781
5782
|
} | {
|
|
@@ -5785,7 +5786,6 @@ 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
5791
|
type: "deleted";
|
|
@@ -5805,6 +5805,7 @@ export declare const PaginatedTransactionResponse: import("superstruct").Struct<
|
|
|
5805
5805
|
objectId: string;
|
|
5806
5806
|
version: number;
|
|
5807
5807
|
digest: string;
|
|
5808
|
+
sender: string;
|
|
5808
5809
|
owner: {
|
|
5809
5810
|
AddressOwner: string;
|
|
5810
5811
|
} | {
|
|
@@ -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
|
amount: string;
|
|
@@ -6006,6 +6006,7 @@ export declare const DryRunTransactionBlockResponse: import("superstruct").Struc
|
|
|
6006
6006
|
objectId: string;
|
|
6007
6007
|
version: number;
|
|
6008
6008
|
digest: string;
|
|
6009
|
+
sender: string;
|
|
6009
6010
|
owner: {
|
|
6010
6011
|
AddressOwner: string;
|
|
6011
6012
|
} | {
|
|
@@ -6015,7 +6016,6 @@ 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
6021
|
type: "deleted";
|
|
@@ -6035,6 +6035,7 @@ export declare const DryRunTransactionBlockResponse: import("superstruct").Struc
|
|
|
6035
6035
|
objectId: string;
|
|
6036
6036
|
version: number;
|
|
6037
6037
|
digest: string;
|
|
6038
|
+
sender: string;
|
|
6038
6039
|
owner: {
|
|
6039
6040
|
AddressOwner: string;
|
|
6040
6041
|
} | {
|
|
@@ -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
|
amount: string;
|
|
@@ -6525,6 +6525,7 @@ export declare const DryRunTransactionBlockResponse: import("superstruct").Struc
|
|
|
6525
6525
|
objectId: string;
|
|
6526
6526
|
version: number;
|
|
6527
6527
|
digest: string;
|
|
6528
|
+
sender: string;
|
|
6528
6529
|
owner: {
|
|
6529
6530
|
AddressOwner: string;
|
|
6530
6531
|
} | {
|
|
@@ -6534,7 +6535,6 @@ 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
6540
|
type: "deleted";
|
|
@@ -6554,6 +6554,7 @@ export declare const DryRunTransactionBlockResponse: import("superstruct").Struc
|
|
|
6554
6554
|
objectId: string;
|
|
6555
6555
|
version: number;
|
|
6556
6556
|
digest: string;
|
|
6557
|
+
sender: string;
|
|
6557
6558
|
owner: {
|
|
6558
6559
|
AddressOwner: string;
|
|
6559
6560
|
} | {
|
|
@@ -6563,7 +6564,6 @@ 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
6568
|
type: "published";
|
|
6569
6569
|
version: number;
|
|
@@ -6592,6 +6592,7 @@ export declare const DryRunTransactionBlockResponse: import("superstruct").Struc
|
|
|
6592
6592
|
objectId: string;
|
|
6593
6593
|
version: number;
|
|
6594
6594
|
digest: string;
|
|
6595
|
+
sender: string;
|
|
6595
6596
|
owner: {
|
|
6596
6597
|
AddressOwner: string;
|
|
6597
6598
|
} | {
|
|
@@ -6601,7 +6602,6 @@ 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
6607
|
type: "deleted";
|
|
@@ -6621,6 +6621,7 @@ export declare const DryRunTransactionBlockResponse: import("superstruct").Struc
|
|
|
6621
6621
|
objectId: string;
|
|
6622
6622
|
version: number;
|
|
6623
6623
|
digest: string;
|
|
6624
|
+
sender: string;
|
|
6624
6625
|
owner: {
|
|
6625
6626
|
AddressOwner: string;
|
|
6626
6627
|
} | {
|
|
@@ -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
|
amount: string;
|