@wowok/agent-mcp 2.2.20 → 2.2.22
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/LICENSE +36 -0
- package/README.md +1 -3
- package/dist/index.js +4 -1
- package/dist/schema/call/base.d.ts +127 -511
- package/dist/schema/common/index.d.ts +3 -3
- package/dist/schema/common/index.js +1 -1
- package/dist/schema/local/index.d.ts +395 -1435
- package/dist/schema/local/index.js +4 -4
- package/dist/schema/local/wip.d.ts +16 -16
- package/dist/schema/local/wip.js +2 -2
- package/dist/schema/query/index.d.ts +1020 -1020
- package/dist/schema/query/index.js +4 -4
- package/dist/schemas/index.json +1 -1
- package/dist/schemas/onchain_events.schema.json +4 -1
- package/package.json +3 -2
|
@@ -76,16 +76,16 @@ export declare const CoinStructSchema: z.ZodObject<{
|
|
|
76
76
|
coinType: z.ZodString;
|
|
77
77
|
digest: z.ZodString;
|
|
78
78
|
previousTransaction: z.ZodString;
|
|
79
|
-
version: z.ZodString
|
|
79
|
+
version: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
|
|
80
80
|
}, "strip", z.ZodTypeAny, {
|
|
81
|
-
version: string;
|
|
81
|
+
version: string | number;
|
|
82
82
|
previousTransaction: string;
|
|
83
83
|
balance: string;
|
|
84
84
|
coinType: string;
|
|
85
85
|
coinObjectId: string;
|
|
86
86
|
digest: string;
|
|
87
87
|
}, {
|
|
88
|
-
version: string;
|
|
88
|
+
version: string | number;
|
|
89
89
|
previousTransaction: string;
|
|
90
90
|
balance: string;
|
|
91
91
|
coinType: string;
|
|
@@ -99,16 +99,16 @@ export declare const PaginatedCoinsSchema: z.ZodObject<{
|
|
|
99
99
|
coinType: z.ZodString;
|
|
100
100
|
digest: z.ZodString;
|
|
101
101
|
previousTransaction: z.ZodString;
|
|
102
|
-
version: z.ZodString
|
|
102
|
+
version: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
|
|
103
103
|
}, "strip", z.ZodTypeAny, {
|
|
104
|
-
version: string;
|
|
104
|
+
version: string | number;
|
|
105
105
|
previousTransaction: string;
|
|
106
106
|
balance: string;
|
|
107
107
|
coinType: string;
|
|
108
108
|
coinObjectId: string;
|
|
109
109
|
digest: string;
|
|
110
110
|
}, {
|
|
111
|
-
version: string;
|
|
111
|
+
version: string | number;
|
|
112
112
|
previousTransaction: string;
|
|
113
113
|
balance: string;
|
|
114
114
|
coinType: string;
|
|
@@ -119,7 +119,7 @@ export declare const PaginatedCoinsSchema: z.ZodObject<{
|
|
|
119
119
|
nextCursor: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
120
120
|
}, "strip", z.ZodTypeAny, {
|
|
121
121
|
data: {
|
|
122
|
-
version: string;
|
|
122
|
+
version: string | number;
|
|
123
123
|
previousTransaction: string;
|
|
124
124
|
balance: string;
|
|
125
125
|
coinType: string;
|
|
@@ -130,7 +130,7 @@ export declare const PaginatedCoinsSchema: z.ZodObject<{
|
|
|
130
130
|
nextCursor?: string | null | undefined;
|
|
131
131
|
}, {
|
|
132
132
|
data: {
|
|
133
|
-
version: string;
|
|
133
|
+
version: string | number;
|
|
134
134
|
previousTransaction: string;
|
|
135
135
|
balance: string;
|
|
136
136
|
coinType: string;
|
|
@@ -154,24 +154,24 @@ export declare const FaucetCoinInfoSchema: z.ZodObject<{
|
|
|
154
154
|
transferTxDigest: string;
|
|
155
155
|
}>;
|
|
156
156
|
export declare const EventIdSchema: z.ZodObject<{
|
|
157
|
-
eventSeq: z.ZodString
|
|
157
|
+
eventSeq: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
|
|
158
158
|
txDigest: z.ZodString;
|
|
159
159
|
}, "strip", z.ZodTypeAny, {
|
|
160
|
-
eventSeq: string;
|
|
160
|
+
eventSeq: string | number;
|
|
161
161
|
txDigest: string;
|
|
162
162
|
}, {
|
|
163
|
-
eventSeq: string;
|
|
163
|
+
eventSeq: string | number;
|
|
164
164
|
txDigest: string;
|
|
165
165
|
}>;
|
|
166
166
|
export declare const WowEventSchema: z.ZodDiscriminatedUnion<"bcsEncoding", [z.ZodObject<{
|
|
167
167
|
id: z.ZodObject<{
|
|
168
|
-
eventSeq: z.ZodString
|
|
168
|
+
eventSeq: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
|
|
169
169
|
txDigest: z.ZodString;
|
|
170
170
|
}, "strip", z.ZodTypeAny, {
|
|
171
|
-
eventSeq: string;
|
|
171
|
+
eventSeq: string | number;
|
|
172
172
|
txDigest: string;
|
|
173
173
|
}, {
|
|
174
|
-
eventSeq: string;
|
|
174
|
+
eventSeq: string | number;
|
|
175
175
|
txDigest: string;
|
|
176
176
|
}>;
|
|
177
177
|
packageId: z.ZodString;
|
|
@@ -185,7 +185,7 @@ export declare const WowEventSchema: z.ZodDiscriminatedUnion<"bcsEncoding", [z.Z
|
|
|
185
185
|
}, "strip", z.ZodTypeAny, {
|
|
186
186
|
type: string;
|
|
187
187
|
id: {
|
|
188
|
-
eventSeq: string;
|
|
188
|
+
eventSeq: string | number;
|
|
189
189
|
txDigest: string;
|
|
190
190
|
};
|
|
191
191
|
bcsEncoding: "base64";
|
|
@@ -198,7 +198,7 @@ export declare const WowEventSchema: z.ZodDiscriminatedUnion<"bcsEncoding", [z.Z
|
|
|
198
198
|
}, {
|
|
199
199
|
type: string;
|
|
200
200
|
id: {
|
|
201
|
-
eventSeq: string;
|
|
201
|
+
eventSeq: string | number;
|
|
202
202
|
txDigest: string;
|
|
203
203
|
};
|
|
204
204
|
bcsEncoding: "base64";
|
|
@@ -210,13 +210,13 @@ export declare const WowEventSchema: z.ZodDiscriminatedUnion<"bcsEncoding", [z.Z
|
|
|
210
210
|
timestampMs?: string | null | undefined;
|
|
211
211
|
}>, z.ZodObject<{
|
|
212
212
|
id: z.ZodObject<{
|
|
213
|
-
eventSeq: z.ZodString
|
|
213
|
+
eventSeq: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
|
|
214
214
|
txDigest: z.ZodString;
|
|
215
215
|
}, "strip", z.ZodTypeAny, {
|
|
216
|
-
eventSeq: string;
|
|
216
|
+
eventSeq: string | number;
|
|
217
217
|
txDigest: string;
|
|
218
218
|
}, {
|
|
219
|
-
eventSeq: string;
|
|
219
|
+
eventSeq: string | number;
|
|
220
220
|
txDigest: string;
|
|
221
221
|
}>;
|
|
222
222
|
packageId: z.ZodString;
|
|
@@ -230,7 +230,7 @@ export declare const WowEventSchema: z.ZodDiscriminatedUnion<"bcsEncoding", [z.Z
|
|
|
230
230
|
}, "strip", z.ZodTypeAny, {
|
|
231
231
|
type: string;
|
|
232
232
|
id: {
|
|
233
|
-
eventSeq: string;
|
|
233
|
+
eventSeq: string | number;
|
|
234
234
|
txDigest: string;
|
|
235
235
|
};
|
|
236
236
|
bcsEncoding: "base58";
|
|
@@ -243,7 +243,7 @@ export declare const WowEventSchema: z.ZodDiscriminatedUnion<"bcsEncoding", [z.Z
|
|
|
243
243
|
}, {
|
|
244
244
|
type: string;
|
|
245
245
|
id: {
|
|
246
|
-
eventSeq: string;
|
|
246
|
+
eventSeq: string | number;
|
|
247
247
|
txDigest: string;
|
|
248
248
|
};
|
|
249
249
|
bcsEncoding: "base58";
|
|
@@ -478,13 +478,13 @@ export declare const OwnedObjectRefSchema: z.ZodObject<{
|
|
|
478
478
|
}>;
|
|
479
479
|
export declare const TransactionBlockEffectsModifiedAtVersionsSchema: z.ZodObject<{
|
|
480
480
|
objectId: z.ZodString;
|
|
481
|
-
sequenceNumber: z.ZodString
|
|
481
|
+
sequenceNumber: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
|
|
482
482
|
}, "strip", z.ZodTypeAny, {
|
|
483
483
|
objectId: string;
|
|
484
|
-
sequenceNumber: string;
|
|
484
|
+
sequenceNumber: string | number;
|
|
485
485
|
}, {
|
|
486
486
|
objectId: string;
|
|
487
|
-
sequenceNumber: string;
|
|
487
|
+
sequenceNumber: string | number;
|
|
488
488
|
}>;
|
|
489
489
|
export declare const WowMoveAbortSchema: z.ZodObject<{
|
|
490
490
|
error_code: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
@@ -1123,132 +1123,20 @@ export declare const WowObjectChangeSchema: z.ZodDiscriminatedUnion<"type", [z.Z
|
|
|
1123
1123
|
}>]>;
|
|
1124
1124
|
export declare const TransactionEffectsSchema: z.ZodObject<{
|
|
1125
1125
|
abortError: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
1126
|
-
|
|
1127
|
-
|
|
1128
|
-
|
|
1129
|
-
|
|
1130
|
-
payment: z.ZodArray<z.ZodObject<{
|
|
1131
|
-
digest: z.ZodString;
|
|
1132
|
-
objectId: z.ZodString;
|
|
1133
|
-
version: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
|
|
1134
|
-
}, "strip", z.ZodTypeAny, {
|
|
1135
|
-
version: string | number;
|
|
1136
|
-
digest: string;
|
|
1137
|
-
objectId: string;
|
|
1138
|
-
}, {
|
|
1139
|
-
version: string | number;
|
|
1140
|
-
digest: string;
|
|
1141
|
-
objectId: string;
|
|
1142
|
-
}>, "many">;
|
|
1143
|
-
price: z.ZodString;
|
|
1144
|
-
}, "strip", z.ZodTypeAny, {
|
|
1145
|
-
owner: string;
|
|
1146
|
-
payment: {
|
|
1147
|
-
version: string | number;
|
|
1148
|
-
digest: string;
|
|
1149
|
-
objectId: string;
|
|
1150
|
-
}[];
|
|
1151
|
-
budget: string;
|
|
1152
|
-
price: string;
|
|
1153
|
-
}, {
|
|
1154
|
-
owner: string;
|
|
1155
|
-
payment: {
|
|
1156
|
-
version: string | number;
|
|
1157
|
-
digest: string;
|
|
1158
|
-
objectId: string;
|
|
1159
|
-
}[];
|
|
1160
|
-
budget: string;
|
|
1161
|
-
price: string;
|
|
1162
|
-
}>;
|
|
1163
|
-
messageVersion: z.ZodLiteral<"v1">;
|
|
1164
|
-
sender: z.ZodString;
|
|
1165
|
-
transaction: z.ZodObject<{
|
|
1166
|
-
kind: z.ZodString;
|
|
1167
|
-
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1168
|
-
kind: z.ZodString;
|
|
1169
|
-
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1170
|
-
kind: z.ZodString;
|
|
1171
|
-
}, z.ZodTypeAny, "passthrough">>;
|
|
1172
|
-
}, "strip", z.ZodTypeAny, {
|
|
1173
|
-
sender: string;
|
|
1174
|
-
gasData: {
|
|
1175
|
-
owner: string;
|
|
1176
|
-
payment: {
|
|
1177
|
-
version: string | number;
|
|
1178
|
-
digest: string;
|
|
1179
|
-
objectId: string;
|
|
1180
|
-
}[];
|
|
1181
|
-
budget: string;
|
|
1182
|
-
price: string;
|
|
1183
|
-
};
|
|
1184
|
-
messageVersion: "v1";
|
|
1185
|
-
transaction: {
|
|
1186
|
-
kind: string;
|
|
1187
|
-
} & {
|
|
1188
|
-
[k: string]: unknown;
|
|
1189
|
-
};
|
|
1190
|
-
}, {
|
|
1191
|
-
sender: string;
|
|
1192
|
-
gasData: {
|
|
1193
|
-
owner: string;
|
|
1194
|
-
payment: {
|
|
1195
|
-
version: string | number;
|
|
1196
|
-
digest: string;
|
|
1197
|
-
objectId: string;
|
|
1198
|
-
}[];
|
|
1199
|
-
budget: string;
|
|
1200
|
-
price: string;
|
|
1201
|
-
};
|
|
1202
|
-
messageVersion: "v1";
|
|
1203
|
-
transaction: {
|
|
1204
|
-
kind: string;
|
|
1205
|
-
} & {
|
|
1206
|
-
[k: string]: unknown;
|
|
1207
|
-
};
|
|
1208
|
-
}>;
|
|
1209
|
-
txSignatures: z.ZodArray<z.ZodString, "many">;
|
|
1126
|
+
error_code: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
1127
|
+
function: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
1128
|
+
line: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
|
|
1129
|
+
module_id: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
1210
1130
|
}, "strip", z.ZodTypeAny, {
|
|
1211
|
-
|
|
1212
|
-
|
|
1213
|
-
|
|
1214
|
-
|
|
1215
|
-
payment: {
|
|
1216
|
-
version: string | number;
|
|
1217
|
-
digest: string;
|
|
1218
|
-
objectId: string;
|
|
1219
|
-
}[];
|
|
1220
|
-
budget: string;
|
|
1221
|
-
price: string;
|
|
1222
|
-
};
|
|
1223
|
-
messageVersion: "v1";
|
|
1224
|
-
transaction: {
|
|
1225
|
-
kind: string;
|
|
1226
|
-
} & {
|
|
1227
|
-
[k: string]: unknown;
|
|
1228
|
-
};
|
|
1229
|
-
};
|
|
1230
|
-
txSignatures: string[];
|
|
1131
|
+
function?: string | null | undefined;
|
|
1132
|
+
error_code?: string | null | undefined;
|
|
1133
|
+
line?: number | null | undefined;
|
|
1134
|
+
module_id?: string | null | undefined;
|
|
1231
1135
|
}, {
|
|
1232
|
-
|
|
1233
|
-
|
|
1234
|
-
|
|
1235
|
-
|
|
1236
|
-
payment: {
|
|
1237
|
-
version: string | number;
|
|
1238
|
-
digest: string;
|
|
1239
|
-
objectId: string;
|
|
1240
|
-
}[];
|
|
1241
|
-
budget: string;
|
|
1242
|
-
price: string;
|
|
1243
|
-
};
|
|
1244
|
-
messageVersion: "v1";
|
|
1245
|
-
transaction: {
|
|
1246
|
-
kind: string;
|
|
1247
|
-
} & {
|
|
1248
|
-
[k: string]: unknown;
|
|
1249
|
-
};
|
|
1250
|
-
};
|
|
1251
|
-
txSignatures: string[];
|
|
1136
|
+
function?: string | null | undefined;
|
|
1137
|
+
error_code?: string | null | undefined;
|
|
1138
|
+
line?: number | null | undefined;
|
|
1139
|
+
module_id?: string | null | undefined;
|
|
1252
1140
|
}>, z.ZodNull]>>;
|
|
1253
1141
|
created: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1254
1142
|
owner: z.ZodUnion<[z.ZodObject<{
|
|
@@ -1495,13 +1383,13 @@ export declare const TransactionEffectsSchema: z.ZodObject<{
|
|
|
1495
1383
|
messageVersion: z.ZodLiteral<"v1">;
|
|
1496
1384
|
modifiedAtVersions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1497
1385
|
objectId: z.ZodString;
|
|
1498
|
-
sequenceNumber: z.ZodString
|
|
1386
|
+
sequenceNumber: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
|
|
1499
1387
|
}, "strip", z.ZodTypeAny, {
|
|
1500
1388
|
objectId: string;
|
|
1501
|
-
sequenceNumber: string;
|
|
1389
|
+
sequenceNumber: string | number;
|
|
1502
1390
|
}, {
|
|
1503
1391
|
objectId: string;
|
|
1504
|
-
sequenceNumber: string;
|
|
1392
|
+
sequenceNumber: string | number;
|
|
1505
1393
|
}>, "many">>;
|
|
1506
1394
|
mutated: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1507
1395
|
owner: z.ZodUnion<[z.ZodObject<{
|
|
@@ -1851,32 +1739,16 @@ export declare const TransactionEffectsSchema: z.ZodObject<{
|
|
|
1851
1739
|
objectId: string;
|
|
1852
1740
|
}[] | undefined;
|
|
1853
1741
|
abortError?: {
|
|
1854
|
-
|
|
1855
|
-
|
|
1856
|
-
|
|
1857
|
-
|
|
1858
|
-
payment: {
|
|
1859
|
-
version: string | number;
|
|
1860
|
-
digest: string;
|
|
1861
|
-
objectId: string;
|
|
1862
|
-
}[];
|
|
1863
|
-
budget: string;
|
|
1864
|
-
price: string;
|
|
1865
|
-
};
|
|
1866
|
-
messageVersion: "v1";
|
|
1867
|
-
transaction: {
|
|
1868
|
-
kind: string;
|
|
1869
|
-
} & {
|
|
1870
|
-
[k: string]: unknown;
|
|
1871
|
-
};
|
|
1872
|
-
};
|
|
1873
|
-
txSignatures: string[];
|
|
1742
|
+
function?: string | null | undefined;
|
|
1743
|
+
error_code?: string | null | undefined;
|
|
1744
|
+
line?: number | null | undefined;
|
|
1745
|
+
module_id?: string | null | undefined;
|
|
1874
1746
|
} | null | undefined;
|
|
1875
1747
|
dependencies?: string[] | undefined;
|
|
1876
1748
|
eventsDigest?: string | null | undefined;
|
|
1877
1749
|
modifiedAtVersions?: {
|
|
1878
1750
|
objectId: string;
|
|
1879
|
-
sequenceNumber: string;
|
|
1751
|
+
sequenceNumber: string | number;
|
|
1880
1752
|
}[] | undefined;
|
|
1881
1753
|
sharedObjects?: {
|
|
1882
1754
|
version: string | number;
|
|
@@ -1997,32 +1869,16 @@ export declare const TransactionEffectsSchema: z.ZodObject<{
|
|
|
1997
1869
|
objectId: string;
|
|
1998
1870
|
}[] | undefined;
|
|
1999
1871
|
abortError?: {
|
|
2000
|
-
|
|
2001
|
-
|
|
2002
|
-
|
|
2003
|
-
|
|
2004
|
-
payment: {
|
|
2005
|
-
version: string | number;
|
|
2006
|
-
digest: string;
|
|
2007
|
-
objectId: string;
|
|
2008
|
-
}[];
|
|
2009
|
-
budget: string;
|
|
2010
|
-
price: string;
|
|
2011
|
-
};
|
|
2012
|
-
messageVersion: "v1";
|
|
2013
|
-
transaction: {
|
|
2014
|
-
kind: string;
|
|
2015
|
-
} & {
|
|
2016
|
-
[k: string]: unknown;
|
|
2017
|
-
};
|
|
2018
|
-
};
|
|
2019
|
-
txSignatures: string[];
|
|
1872
|
+
function?: string | null | undefined;
|
|
1873
|
+
error_code?: string | null | undefined;
|
|
1874
|
+
line?: number | null | undefined;
|
|
1875
|
+
module_id?: string | null | undefined;
|
|
2020
1876
|
} | null | undefined;
|
|
2021
1877
|
dependencies?: string[] | undefined;
|
|
2022
1878
|
eventsDigest?: string | null | undefined;
|
|
2023
1879
|
modifiedAtVersions?: {
|
|
2024
1880
|
objectId: string;
|
|
2025
|
-
sequenceNumber: string;
|
|
1881
|
+
sequenceNumber: string | number;
|
|
2026
1882
|
}[] | undefined;
|
|
2027
1883
|
sharedObjects?: {
|
|
2028
1884
|
version: string | number;
|
|
@@ -2126,156 +1982,44 @@ export declare const WowTransactionBlockResponseSchema: z.ZodObject<{
|
|
|
2126
1982
|
};
|
|
2127
1983
|
};
|
|
2128
1984
|
coinType: string;
|
|
2129
|
-
amount: string;
|
|
2130
|
-
}, {
|
|
2131
|
-
owner: {
|
|
2132
|
-
AddressOwner: string;
|
|
2133
|
-
} | {
|
|
2134
|
-
ObjectOwner: string;
|
|
2135
|
-
} | {
|
|
2136
|
-
Shared: {
|
|
2137
|
-
initial_shared_version: string | number;
|
|
2138
|
-
};
|
|
2139
|
-
} | "Immutable" | {
|
|
2140
|
-
ConsensusAddressOwner: {
|
|
2141
|
-
owner: string;
|
|
2142
|
-
start_version: string | number;
|
|
2143
|
-
};
|
|
2144
|
-
};
|
|
2145
|
-
coinType: string;
|
|
2146
|
-
amount: string;
|
|
2147
|
-
}>, "many">, z.ZodNull]>>;
|
|
2148
|
-
checkpoint: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
2149
|
-
confirmedLocalExecution: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodNull]>>;
|
|
2150
|
-
digest: z.ZodString;
|
|
2151
|
-
effects: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
2152
|
-
abortError: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
2153
|
-
data: z.ZodObject<{
|
|
2154
|
-
gasData: z.ZodObject<{
|
|
2155
|
-
budget: z.ZodString;
|
|
2156
|
-
owner: z.ZodString;
|
|
2157
|
-
payment: z.ZodArray<z.ZodObject<{
|
|
2158
|
-
digest: z.ZodString;
|
|
2159
|
-
objectId: z.ZodString;
|
|
2160
|
-
version: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
|
|
2161
|
-
}, "strip", z.ZodTypeAny, {
|
|
2162
|
-
version: string | number;
|
|
2163
|
-
digest: string;
|
|
2164
|
-
objectId: string;
|
|
2165
|
-
}, {
|
|
2166
|
-
version: string | number;
|
|
2167
|
-
digest: string;
|
|
2168
|
-
objectId: string;
|
|
2169
|
-
}>, "many">;
|
|
2170
|
-
price: z.ZodString;
|
|
2171
|
-
}, "strip", z.ZodTypeAny, {
|
|
2172
|
-
owner: string;
|
|
2173
|
-
payment: {
|
|
2174
|
-
version: string | number;
|
|
2175
|
-
digest: string;
|
|
2176
|
-
objectId: string;
|
|
2177
|
-
}[];
|
|
2178
|
-
budget: string;
|
|
2179
|
-
price: string;
|
|
2180
|
-
}, {
|
|
2181
|
-
owner: string;
|
|
2182
|
-
payment: {
|
|
2183
|
-
version: string | number;
|
|
2184
|
-
digest: string;
|
|
2185
|
-
objectId: string;
|
|
2186
|
-
}[];
|
|
2187
|
-
budget: string;
|
|
2188
|
-
price: string;
|
|
2189
|
-
}>;
|
|
2190
|
-
messageVersion: z.ZodLiteral<"v1">;
|
|
2191
|
-
sender: z.ZodString;
|
|
2192
|
-
transaction: z.ZodObject<{
|
|
2193
|
-
kind: z.ZodString;
|
|
2194
|
-
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
2195
|
-
kind: z.ZodString;
|
|
2196
|
-
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
2197
|
-
kind: z.ZodString;
|
|
2198
|
-
}, z.ZodTypeAny, "passthrough">>;
|
|
2199
|
-
}, "strip", z.ZodTypeAny, {
|
|
2200
|
-
sender: string;
|
|
2201
|
-
gasData: {
|
|
2202
|
-
owner: string;
|
|
2203
|
-
payment: {
|
|
2204
|
-
version: string | number;
|
|
2205
|
-
digest: string;
|
|
2206
|
-
objectId: string;
|
|
2207
|
-
}[];
|
|
2208
|
-
budget: string;
|
|
2209
|
-
price: string;
|
|
2210
|
-
};
|
|
2211
|
-
messageVersion: "v1";
|
|
2212
|
-
transaction: {
|
|
2213
|
-
kind: string;
|
|
2214
|
-
} & {
|
|
2215
|
-
[k: string]: unknown;
|
|
2216
|
-
};
|
|
2217
|
-
}, {
|
|
2218
|
-
sender: string;
|
|
2219
|
-
gasData: {
|
|
2220
|
-
owner: string;
|
|
2221
|
-
payment: {
|
|
2222
|
-
version: string | number;
|
|
2223
|
-
digest: string;
|
|
2224
|
-
objectId: string;
|
|
2225
|
-
}[];
|
|
2226
|
-
budget: string;
|
|
2227
|
-
price: string;
|
|
2228
|
-
};
|
|
2229
|
-
messageVersion: "v1";
|
|
2230
|
-
transaction: {
|
|
2231
|
-
kind: string;
|
|
2232
|
-
} & {
|
|
2233
|
-
[k: string]: unknown;
|
|
2234
|
-
};
|
|
2235
|
-
}>;
|
|
2236
|
-
txSignatures: z.ZodArray<z.ZodString, "many">;
|
|
2237
|
-
}, "strip", z.ZodTypeAny, {
|
|
2238
|
-
data: {
|
|
2239
|
-
sender: string;
|
|
2240
|
-
gasData: {
|
|
2241
|
-
owner: string;
|
|
2242
|
-
payment: {
|
|
2243
|
-
version: string | number;
|
|
2244
|
-
digest: string;
|
|
2245
|
-
objectId: string;
|
|
2246
|
-
}[];
|
|
2247
|
-
budget: string;
|
|
2248
|
-
price: string;
|
|
2249
|
-
};
|
|
2250
|
-
messageVersion: "v1";
|
|
2251
|
-
transaction: {
|
|
2252
|
-
kind: string;
|
|
2253
|
-
} & {
|
|
2254
|
-
[k: string]: unknown;
|
|
2255
|
-
};
|
|
2256
|
-
};
|
|
2257
|
-
txSignatures: string[];
|
|
2258
|
-
}, {
|
|
2259
|
-
data: {
|
|
2260
|
-
sender: string;
|
|
2261
|
-
gasData: {
|
|
2262
|
-
owner: string;
|
|
2263
|
-
payment: {
|
|
2264
|
-
version: string | number;
|
|
2265
|
-
digest: string;
|
|
2266
|
-
objectId: string;
|
|
2267
|
-
}[];
|
|
2268
|
-
budget: string;
|
|
2269
|
-
price: string;
|
|
2270
|
-
};
|
|
2271
|
-
messageVersion: "v1";
|
|
2272
|
-
transaction: {
|
|
2273
|
-
kind: string;
|
|
2274
|
-
} & {
|
|
2275
|
-
[k: string]: unknown;
|
|
2276
|
-
};
|
|
1985
|
+
amount: string;
|
|
1986
|
+
}, {
|
|
1987
|
+
owner: {
|
|
1988
|
+
AddressOwner: string;
|
|
1989
|
+
} | {
|
|
1990
|
+
ObjectOwner: string;
|
|
1991
|
+
} | {
|
|
1992
|
+
Shared: {
|
|
1993
|
+
initial_shared_version: string | number;
|
|
2277
1994
|
};
|
|
2278
|
-
|
|
1995
|
+
} | "Immutable" | {
|
|
1996
|
+
ConsensusAddressOwner: {
|
|
1997
|
+
owner: string;
|
|
1998
|
+
start_version: string | number;
|
|
1999
|
+
};
|
|
2000
|
+
};
|
|
2001
|
+
coinType: string;
|
|
2002
|
+
amount: string;
|
|
2003
|
+
}>, "many">, z.ZodNull]>>;
|
|
2004
|
+
checkpoint: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
2005
|
+
confirmedLocalExecution: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodNull]>>;
|
|
2006
|
+
digest: z.ZodString;
|
|
2007
|
+
effects: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
2008
|
+
abortError: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
2009
|
+
error_code: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
2010
|
+
function: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
2011
|
+
line: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
|
|
2012
|
+
module_id: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
2013
|
+
}, "strip", z.ZodTypeAny, {
|
|
2014
|
+
function?: string | null | undefined;
|
|
2015
|
+
error_code?: string | null | undefined;
|
|
2016
|
+
line?: number | null | undefined;
|
|
2017
|
+
module_id?: string | null | undefined;
|
|
2018
|
+
}, {
|
|
2019
|
+
function?: string | null | undefined;
|
|
2020
|
+
error_code?: string | null | undefined;
|
|
2021
|
+
line?: number | null | undefined;
|
|
2022
|
+
module_id?: string | null | undefined;
|
|
2279
2023
|
}>, z.ZodNull]>>;
|
|
2280
2024
|
created: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2281
2025
|
owner: z.ZodUnion<[z.ZodObject<{
|
|
@@ -2522,13 +2266,13 @@ export declare const WowTransactionBlockResponseSchema: z.ZodObject<{
|
|
|
2522
2266
|
messageVersion: z.ZodLiteral<"v1">;
|
|
2523
2267
|
modifiedAtVersions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2524
2268
|
objectId: z.ZodString;
|
|
2525
|
-
sequenceNumber: z.ZodString
|
|
2269
|
+
sequenceNumber: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
|
|
2526
2270
|
}, "strip", z.ZodTypeAny, {
|
|
2527
2271
|
objectId: string;
|
|
2528
|
-
sequenceNumber: string;
|
|
2272
|
+
sequenceNumber: string | number;
|
|
2529
2273
|
}, {
|
|
2530
2274
|
objectId: string;
|
|
2531
|
-
sequenceNumber: string;
|
|
2275
|
+
sequenceNumber: string | number;
|
|
2532
2276
|
}>, "many">>;
|
|
2533
2277
|
mutated: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2534
2278
|
owner: z.ZodUnion<[z.ZodObject<{
|
|
@@ -2878,32 +2622,16 @@ export declare const WowTransactionBlockResponseSchema: z.ZodObject<{
|
|
|
2878
2622
|
objectId: string;
|
|
2879
2623
|
}[] | undefined;
|
|
2880
2624
|
abortError?: {
|
|
2881
|
-
|
|
2882
|
-
|
|
2883
|
-
|
|
2884
|
-
|
|
2885
|
-
payment: {
|
|
2886
|
-
version: string | number;
|
|
2887
|
-
digest: string;
|
|
2888
|
-
objectId: string;
|
|
2889
|
-
}[];
|
|
2890
|
-
budget: string;
|
|
2891
|
-
price: string;
|
|
2892
|
-
};
|
|
2893
|
-
messageVersion: "v1";
|
|
2894
|
-
transaction: {
|
|
2895
|
-
kind: string;
|
|
2896
|
-
} & {
|
|
2897
|
-
[k: string]: unknown;
|
|
2898
|
-
};
|
|
2899
|
-
};
|
|
2900
|
-
txSignatures: string[];
|
|
2625
|
+
function?: string | null | undefined;
|
|
2626
|
+
error_code?: string | null | undefined;
|
|
2627
|
+
line?: number | null | undefined;
|
|
2628
|
+
module_id?: string | null | undefined;
|
|
2901
2629
|
} | null | undefined;
|
|
2902
2630
|
dependencies?: string[] | undefined;
|
|
2903
2631
|
eventsDigest?: string | null | undefined;
|
|
2904
2632
|
modifiedAtVersions?: {
|
|
2905
2633
|
objectId: string;
|
|
2906
|
-
sequenceNumber: string;
|
|
2634
|
+
sequenceNumber: string | number;
|
|
2907
2635
|
}[] | undefined;
|
|
2908
2636
|
sharedObjects?: {
|
|
2909
2637
|
version: string | number;
|
|
@@ -3024,32 +2752,16 @@ export declare const WowTransactionBlockResponseSchema: z.ZodObject<{
|
|
|
3024
2752
|
objectId: string;
|
|
3025
2753
|
}[] | undefined;
|
|
3026
2754
|
abortError?: {
|
|
3027
|
-
|
|
3028
|
-
|
|
3029
|
-
|
|
3030
|
-
|
|
3031
|
-
payment: {
|
|
3032
|
-
version: string | number;
|
|
3033
|
-
digest: string;
|
|
3034
|
-
objectId: string;
|
|
3035
|
-
}[];
|
|
3036
|
-
budget: string;
|
|
3037
|
-
price: string;
|
|
3038
|
-
};
|
|
3039
|
-
messageVersion: "v1";
|
|
3040
|
-
transaction: {
|
|
3041
|
-
kind: string;
|
|
3042
|
-
} & {
|
|
3043
|
-
[k: string]: unknown;
|
|
3044
|
-
};
|
|
3045
|
-
};
|
|
3046
|
-
txSignatures: string[];
|
|
2755
|
+
function?: string | null | undefined;
|
|
2756
|
+
error_code?: string | null | undefined;
|
|
2757
|
+
line?: number | null | undefined;
|
|
2758
|
+
module_id?: string | null | undefined;
|
|
3047
2759
|
} | null | undefined;
|
|
3048
2760
|
dependencies?: string[] | undefined;
|
|
3049
2761
|
eventsDigest?: string | null | undefined;
|
|
3050
2762
|
modifiedAtVersions?: {
|
|
3051
2763
|
objectId: string;
|
|
3052
|
-
sequenceNumber: string;
|
|
2764
|
+
sequenceNumber: string | number;
|
|
3053
2765
|
}[] | undefined;
|
|
3054
2766
|
sharedObjects?: {
|
|
3055
2767
|
version: string | number;
|
|
@@ -3086,13 +2798,13 @@ export declare const WowTransactionBlockResponseSchema: z.ZodObject<{
|
|
|
3086
2798
|
errors: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
3087
2799
|
events: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodDiscriminatedUnion<"bcsEncoding", [z.ZodObject<{
|
|
3088
2800
|
id: z.ZodObject<{
|
|
3089
|
-
eventSeq: z.ZodString
|
|
2801
|
+
eventSeq: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
|
|
3090
2802
|
txDigest: z.ZodString;
|
|
3091
2803
|
}, "strip", z.ZodTypeAny, {
|
|
3092
|
-
eventSeq: string;
|
|
2804
|
+
eventSeq: string | number;
|
|
3093
2805
|
txDigest: string;
|
|
3094
2806
|
}, {
|
|
3095
|
-
eventSeq: string;
|
|
2807
|
+
eventSeq: string | number;
|
|
3096
2808
|
txDigest: string;
|
|
3097
2809
|
}>;
|
|
3098
2810
|
packageId: z.ZodString;
|
|
@@ -3106,7 +2818,7 @@ export declare const WowTransactionBlockResponseSchema: z.ZodObject<{
|
|
|
3106
2818
|
}, "strip", z.ZodTypeAny, {
|
|
3107
2819
|
type: string;
|
|
3108
2820
|
id: {
|
|
3109
|
-
eventSeq: string;
|
|
2821
|
+
eventSeq: string | number;
|
|
3110
2822
|
txDigest: string;
|
|
3111
2823
|
};
|
|
3112
2824
|
bcsEncoding: "base64";
|
|
@@ -3119,7 +2831,7 @@ export declare const WowTransactionBlockResponseSchema: z.ZodObject<{
|
|
|
3119
2831
|
}, {
|
|
3120
2832
|
type: string;
|
|
3121
2833
|
id: {
|
|
3122
|
-
eventSeq: string;
|
|
2834
|
+
eventSeq: string | number;
|
|
3123
2835
|
txDigest: string;
|
|
3124
2836
|
};
|
|
3125
2837
|
bcsEncoding: "base64";
|
|
@@ -3131,13 +2843,13 @@ export declare const WowTransactionBlockResponseSchema: z.ZodObject<{
|
|
|
3131
2843
|
timestampMs?: string | null | undefined;
|
|
3132
2844
|
}>, z.ZodObject<{
|
|
3133
2845
|
id: z.ZodObject<{
|
|
3134
|
-
eventSeq: z.ZodString
|
|
2846
|
+
eventSeq: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
|
|
3135
2847
|
txDigest: z.ZodString;
|
|
3136
2848
|
}, "strip", z.ZodTypeAny, {
|
|
3137
|
-
eventSeq: string;
|
|
2849
|
+
eventSeq: string | number;
|
|
3138
2850
|
txDigest: string;
|
|
3139
2851
|
}, {
|
|
3140
|
-
eventSeq: string;
|
|
2852
|
+
eventSeq: string | number;
|
|
3141
2853
|
txDigest: string;
|
|
3142
2854
|
}>;
|
|
3143
2855
|
packageId: z.ZodString;
|
|
@@ -3151,7 +2863,7 @@ export declare const WowTransactionBlockResponseSchema: z.ZodObject<{
|
|
|
3151
2863
|
}, "strip", z.ZodTypeAny, {
|
|
3152
2864
|
type: string;
|
|
3153
2865
|
id: {
|
|
3154
|
-
eventSeq: string;
|
|
2866
|
+
eventSeq: string | number;
|
|
3155
2867
|
txDigest: string;
|
|
3156
2868
|
};
|
|
3157
2869
|
bcsEncoding: "base58";
|
|
@@ -3164,7 +2876,7 @@ export declare const WowTransactionBlockResponseSchema: z.ZodObject<{
|
|
|
3164
2876
|
}, {
|
|
3165
2877
|
type: string;
|
|
3166
2878
|
id: {
|
|
3167
|
-
eventSeq: string;
|
|
2879
|
+
eventSeq: string | number;
|
|
3168
2880
|
txDigest: string;
|
|
3169
2881
|
};
|
|
3170
2882
|
bcsEncoding: "base58";
|
|
@@ -3794,32 +3506,16 @@ export declare const WowTransactionBlockResponseSchema: z.ZodObject<{
|
|
|
3794
3506
|
objectId: string;
|
|
3795
3507
|
}[] | undefined;
|
|
3796
3508
|
abortError?: {
|
|
3797
|
-
|
|
3798
|
-
|
|
3799
|
-
|
|
3800
|
-
|
|
3801
|
-
payment: {
|
|
3802
|
-
version: string | number;
|
|
3803
|
-
digest: string;
|
|
3804
|
-
objectId: string;
|
|
3805
|
-
}[];
|
|
3806
|
-
budget: string;
|
|
3807
|
-
price: string;
|
|
3808
|
-
};
|
|
3809
|
-
messageVersion: "v1";
|
|
3810
|
-
transaction: {
|
|
3811
|
-
kind: string;
|
|
3812
|
-
} & {
|
|
3813
|
-
[k: string]: unknown;
|
|
3814
|
-
};
|
|
3815
|
-
};
|
|
3816
|
-
txSignatures: string[];
|
|
3509
|
+
function?: string | null | undefined;
|
|
3510
|
+
error_code?: string | null | undefined;
|
|
3511
|
+
line?: number | null | undefined;
|
|
3512
|
+
module_id?: string | null | undefined;
|
|
3817
3513
|
} | null | undefined;
|
|
3818
3514
|
dependencies?: string[] | undefined;
|
|
3819
3515
|
eventsDigest?: string | null | undefined;
|
|
3820
3516
|
modifiedAtVersions?: {
|
|
3821
3517
|
objectId: string;
|
|
3822
|
-
sequenceNumber: string;
|
|
3518
|
+
sequenceNumber: string | number;
|
|
3823
3519
|
}[] | undefined;
|
|
3824
3520
|
sharedObjects?: {
|
|
3825
3521
|
version: string | number;
|
|
@@ -3857,7 +3553,7 @@ export declare const WowTransactionBlockResponseSchema: z.ZodObject<{
|
|
|
3857
3553
|
events?: ({
|
|
3858
3554
|
type: string;
|
|
3859
3555
|
id: {
|
|
3860
|
-
eventSeq: string;
|
|
3556
|
+
eventSeq: string | number;
|
|
3861
3557
|
txDigest: string;
|
|
3862
3558
|
};
|
|
3863
3559
|
bcsEncoding: "base64";
|
|
@@ -3870,7 +3566,7 @@ export declare const WowTransactionBlockResponseSchema: z.ZodObject<{
|
|
|
3870
3566
|
} | {
|
|
3871
3567
|
type: string;
|
|
3872
3568
|
id: {
|
|
3873
|
-
eventSeq: string;
|
|
3569
|
+
eventSeq: string | number;
|
|
3874
3570
|
txDigest: string;
|
|
3875
3571
|
};
|
|
3876
3572
|
bcsEncoding: "base58";
|
|
@@ -4099,32 +3795,16 @@ export declare const WowTransactionBlockResponseSchema: z.ZodObject<{
|
|
|
4099
3795
|
objectId: string;
|
|
4100
3796
|
}[] | undefined;
|
|
4101
3797
|
abortError?: {
|
|
4102
|
-
|
|
4103
|
-
|
|
4104
|
-
|
|
4105
|
-
|
|
4106
|
-
payment: {
|
|
4107
|
-
version: string | number;
|
|
4108
|
-
digest: string;
|
|
4109
|
-
objectId: string;
|
|
4110
|
-
}[];
|
|
4111
|
-
budget: string;
|
|
4112
|
-
price: string;
|
|
4113
|
-
};
|
|
4114
|
-
messageVersion: "v1";
|
|
4115
|
-
transaction: {
|
|
4116
|
-
kind: string;
|
|
4117
|
-
} & {
|
|
4118
|
-
[k: string]: unknown;
|
|
4119
|
-
};
|
|
4120
|
-
};
|
|
4121
|
-
txSignatures: string[];
|
|
3798
|
+
function?: string | null | undefined;
|
|
3799
|
+
error_code?: string | null | undefined;
|
|
3800
|
+
line?: number | null | undefined;
|
|
3801
|
+
module_id?: string | null | undefined;
|
|
4122
3802
|
} | null | undefined;
|
|
4123
3803
|
dependencies?: string[] | undefined;
|
|
4124
3804
|
eventsDigest?: string | null | undefined;
|
|
4125
3805
|
modifiedAtVersions?: {
|
|
4126
3806
|
objectId: string;
|
|
4127
|
-
sequenceNumber: string;
|
|
3807
|
+
sequenceNumber: string | number;
|
|
4128
3808
|
}[] | undefined;
|
|
4129
3809
|
sharedObjects?: {
|
|
4130
3810
|
version: string | number;
|
|
@@ -4162,7 +3842,7 @@ export declare const WowTransactionBlockResponseSchema: z.ZodObject<{
|
|
|
4162
3842
|
events?: ({
|
|
4163
3843
|
type: string;
|
|
4164
3844
|
id: {
|
|
4165
|
-
eventSeq: string;
|
|
3845
|
+
eventSeq: string | number;
|
|
4166
3846
|
txDigest: string;
|
|
4167
3847
|
};
|
|
4168
3848
|
bcsEncoding: "base64";
|
|
@@ -4175,7 +3855,7 @@ export declare const WowTransactionBlockResponseSchema: z.ZodObject<{
|
|
|
4175
3855
|
} | {
|
|
4176
3856
|
type: string;
|
|
4177
3857
|
id: {
|
|
4178
|
-
eventSeq: string;
|
|
3858
|
+
eventSeq: string | number;
|
|
4179
3859
|
txDigest: string;
|
|
4180
3860
|
};
|
|
4181
3861
|
bcsEncoding: "base58";
|
|
@@ -4592,16 +4272,16 @@ export declare const QueryAccountResultSchema: z.ZodObject<{
|
|
|
4592
4272
|
coinType: z.ZodString;
|
|
4593
4273
|
digest: z.ZodString;
|
|
4594
4274
|
previousTransaction: z.ZodString;
|
|
4595
|
-
version: z.ZodString
|
|
4275
|
+
version: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
|
|
4596
4276
|
}, "strip", z.ZodTypeAny, {
|
|
4597
|
-
version: string;
|
|
4277
|
+
version: string | number;
|
|
4598
4278
|
previousTransaction: string;
|
|
4599
4279
|
balance: string;
|
|
4600
4280
|
coinType: string;
|
|
4601
4281
|
coinObjectId: string;
|
|
4602
4282
|
digest: string;
|
|
4603
4283
|
}, {
|
|
4604
|
-
version: string;
|
|
4284
|
+
version: string | number;
|
|
4605
4285
|
previousTransaction: string;
|
|
4606
4286
|
balance: string;
|
|
4607
4287
|
coinType: string;
|
|
@@ -4612,7 +4292,7 @@ export declare const QueryAccountResultSchema: z.ZodObject<{
|
|
|
4612
4292
|
nextCursor: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
4613
4293
|
}, "strip", z.ZodTypeAny, {
|
|
4614
4294
|
data: {
|
|
4615
|
-
version: string;
|
|
4295
|
+
version: string | number;
|
|
4616
4296
|
previousTransaction: string;
|
|
4617
4297
|
balance: string;
|
|
4618
4298
|
coinType: string;
|
|
@@ -4623,7 +4303,7 @@ export declare const QueryAccountResultSchema: z.ZodObject<{
|
|
|
4623
4303
|
nextCursor?: string | null | undefined;
|
|
4624
4304
|
}, {
|
|
4625
4305
|
data: {
|
|
4626
|
-
version: string;
|
|
4306
|
+
version: string | number;
|
|
4627
4307
|
previousTransaction: string;
|
|
4628
4308
|
balance: string;
|
|
4629
4309
|
coinType: string;
|
|
@@ -4644,7 +4324,7 @@ export declare const QueryAccountResultSchema: z.ZodObject<{
|
|
|
4644
4324
|
} | undefined;
|
|
4645
4325
|
coin?: {
|
|
4646
4326
|
data: {
|
|
4647
|
-
version: string;
|
|
4327
|
+
version: string | number;
|
|
4648
4328
|
previousTransaction: string;
|
|
4649
4329
|
balance: string;
|
|
4650
4330
|
coinType: string;
|
|
@@ -4665,7 +4345,7 @@ export declare const QueryAccountResultSchema: z.ZodObject<{
|
|
|
4665
4345
|
} | undefined;
|
|
4666
4346
|
coin?: {
|
|
4667
4347
|
data: {
|
|
4668
|
-
version: string;
|
|
4348
|
+
version: string | number;
|
|
4669
4349
|
previousTransaction: string;
|
|
4670
4350
|
balance: string;
|
|
4671
4351
|
coinType: string;
|
|
@@ -5061,151 +4741,39 @@ export declare const AccountOperationResultSchema: z.ZodObject<{
|
|
|
5061
4741
|
owner: {
|
|
5062
4742
|
AddressOwner: string;
|
|
5063
4743
|
} | {
|
|
5064
|
-
ObjectOwner: string;
|
|
5065
|
-
} | {
|
|
5066
|
-
Shared: {
|
|
5067
|
-
initial_shared_version: string | number;
|
|
5068
|
-
};
|
|
5069
|
-
} | "Immutable" | {
|
|
5070
|
-
ConsensusAddressOwner: {
|
|
5071
|
-
owner: string;
|
|
5072
|
-
start_version: string | number;
|
|
5073
|
-
};
|
|
5074
|
-
};
|
|
5075
|
-
coinType: string;
|
|
5076
|
-
amount: string;
|
|
5077
|
-
}>, "many">, z.ZodNull]>>;
|
|
5078
|
-
checkpoint: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
5079
|
-
confirmedLocalExecution: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodNull]>>;
|
|
5080
|
-
digest: z.ZodString;
|
|
5081
|
-
effects: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
5082
|
-
abortError: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
5083
|
-
data: z.ZodObject<{
|
|
5084
|
-
gasData: z.ZodObject<{
|
|
5085
|
-
budget: z.ZodString;
|
|
5086
|
-
owner: z.ZodString;
|
|
5087
|
-
payment: z.ZodArray<z.ZodObject<{
|
|
5088
|
-
digest: z.ZodString;
|
|
5089
|
-
objectId: z.ZodString;
|
|
5090
|
-
version: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
|
|
5091
|
-
}, "strip", z.ZodTypeAny, {
|
|
5092
|
-
version: string | number;
|
|
5093
|
-
digest: string;
|
|
5094
|
-
objectId: string;
|
|
5095
|
-
}, {
|
|
5096
|
-
version: string | number;
|
|
5097
|
-
digest: string;
|
|
5098
|
-
objectId: string;
|
|
5099
|
-
}>, "many">;
|
|
5100
|
-
price: z.ZodString;
|
|
5101
|
-
}, "strip", z.ZodTypeAny, {
|
|
5102
|
-
owner: string;
|
|
5103
|
-
payment: {
|
|
5104
|
-
version: string | number;
|
|
5105
|
-
digest: string;
|
|
5106
|
-
objectId: string;
|
|
5107
|
-
}[];
|
|
5108
|
-
budget: string;
|
|
5109
|
-
price: string;
|
|
5110
|
-
}, {
|
|
5111
|
-
owner: string;
|
|
5112
|
-
payment: {
|
|
5113
|
-
version: string | number;
|
|
5114
|
-
digest: string;
|
|
5115
|
-
objectId: string;
|
|
5116
|
-
}[];
|
|
5117
|
-
budget: string;
|
|
5118
|
-
price: string;
|
|
5119
|
-
}>;
|
|
5120
|
-
messageVersion: z.ZodLiteral<"v1">;
|
|
5121
|
-
sender: z.ZodString;
|
|
5122
|
-
transaction: z.ZodObject<{
|
|
5123
|
-
kind: z.ZodString;
|
|
5124
|
-
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
5125
|
-
kind: z.ZodString;
|
|
5126
|
-
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
5127
|
-
kind: z.ZodString;
|
|
5128
|
-
}, z.ZodTypeAny, "passthrough">>;
|
|
5129
|
-
}, "strip", z.ZodTypeAny, {
|
|
5130
|
-
sender: string;
|
|
5131
|
-
gasData: {
|
|
5132
|
-
owner: string;
|
|
5133
|
-
payment: {
|
|
5134
|
-
version: string | number;
|
|
5135
|
-
digest: string;
|
|
5136
|
-
objectId: string;
|
|
5137
|
-
}[];
|
|
5138
|
-
budget: string;
|
|
5139
|
-
price: string;
|
|
5140
|
-
};
|
|
5141
|
-
messageVersion: "v1";
|
|
5142
|
-
transaction: {
|
|
5143
|
-
kind: string;
|
|
5144
|
-
} & {
|
|
5145
|
-
[k: string]: unknown;
|
|
5146
|
-
};
|
|
5147
|
-
}, {
|
|
5148
|
-
sender: string;
|
|
5149
|
-
gasData: {
|
|
5150
|
-
owner: string;
|
|
5151
|
-
payment: {
|
|
5152
|
-
version: string | number;
|
|
5153
|
-
digest: string;
|
|
5154
|
-
objectId: string;
|
|
5155
|
-
}[];
|
|
5156
|
-
budget: string;
|
|
5157
|
-
price: string;
|
|
5158
|
-
};
|
|
5159
|
-
messageVersion: "v1";
|
|
5160
|
-
transaction: {
|
|
5161
|
-
kind: string;
|
|
5162
|
-
} & {
|
|
5163
|
-
[k: string]: unknown;
|
|
5164
|
-
};
|
|
5165
|
-
}>;
|
|
5166
|
-
txSignatures: z.ZodArray<z.ZodString, "many">;
|
|
5167
|
-
}, "strip", z.ZodTypeAny, {
|
|
5168
|
-
data: {
|
|
5169
|
-
sender: string;
|
|
5170
|
-
gasData: {
|
|
5171
|
-
owner: string;
|
|
5172
|
-
payment: {
|
|
5173
|
-
version: string | number;
|
|
5174
|
-
digest: string;
|
|
5175
|
-
objectId: string;
|
|
5176
|
-
}[];
|
|
5177
|
-
budget: string;
|
|
5178
|
-
price: string;
|
|
5179
|
-
};
|
|
5180
|
-
messageVersion: "v1";
|
|
5181
|
-
transaction: {
|
|
5182
|
-
kind: string;
|
|
5183
|
-
} & {
|
|
5184
|
-
[k: string]: unknown;
|
|
5185
|
-
};
|
|
5186
|
-
};
|
|
5187
|
-
txSignatures: string[];
|
|
5188
|
-
}, {
|
|
5189
|
-
data: {
|
|
5190
|
-
sender: string;
|
|
5191
|
-
gasData: {
|
|
5192
|
-
owner: string;
|
|
5193
|
-
payment: {
|
|
5194
|
-
version: string | number;
|
|
5195
|
-
digest: string;
|
|
5196
|
-
objectId: string;
|
|
5197
|
-
}[];
|
|
5198
|
-
budget: string;
|
|
5199
|
-
price: string;
|
|
5200
|
-
};
|
|
5201
|
-
messageVersion: "v1";
|
|
5202
|
-
transaction: {
|
|
5203
|
-
kind: string;
|
|
5204
|
-
} & {
|
|
5205
|
-
[k: string]: unknown;
|
|
5206
|
-
};
|
|
4744
|
+
ObjectOwner: string;
|
|
4745
|
+
} | {
|
|
4746
|
+
Shared: {
|
|
4747
|
+
initial_shared_version: string | number;
|
|
5207
4748
|
};
|
|
5208
|
-
|
|
4749
|
+
} | "Immutable" | {
|
|
4750
|
+
ConsensusAddressOwner: {
|
|
4751
|
+
owner: string;
|
|
4752
|
+
start_version: string | number;
|
|
4753
|
+
};
|
|
4754
|
+
};
|
|
4755
|
+
coinType: string;
|
|
4756
|
+
amount: string;
|
|
4757
|
+
}>, "many">, z.ZodNull]>>;
|
|
4758
|
+
checkpoint: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
4759
|
+
confirmedLocalExecution: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodNull]>>;
|
|
4760
|
+
digest: z.ZodString;
|
|
4761
|
+
effects: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
4762
|
+
abortError: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
4763
|
+
error_code: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
4764
|
+
function: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
4765
|
+
line: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
|
|
4766
|
+
module_id: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
4767
|
+
}, "strip", z.ZodTypeAny, {
|
|
4768
|
+
function?: string | null | undefined;
|
|
4769
|
+
error_code?: string | null | undefined;
|
|
4770
|
+
line?: number | null | undefined;
|
|
4771
|
+
module_id?: string | null | undefined;
|
|
4772
|
+
}, {
|
|
4773
|
+
function?: string | null | undefined;
|
|
4774
|
+
error_code?: string | null | undefined;
|
|
4775
|
+
line?: number | null | undefined;
|
|
4776
|
+
module_id?: string | null | undefined;
|
|
5209
4777
|
}>, z.ZodNull]>>;
|
|
5210
4778
|
created: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5211
4779
|
owner: z.ZodUnion<[z.ZodObject<{
|
|
@@ -5452,13 +5020,13 @@ export declare const AccountOperationResultSchema: z.ZodObject<{
|
|
|
5452
5020
|
messageVersion: z.ZodLiteral<"v1">;
|
|
5453
5021
|
modifiedAtVersions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5454
5022
|
objectId: z.ZodString;
|
|
5455
|
-
sequenceNumber: z.ZodString
|
|
5023
|
+
sequenceNumber: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
|
|
5456
5024
|
}, "strip", z.ZodTypeAny, {
|
|
5457
5025
|
objectId: string;
|
|
5458
|
-
sequenceNumber: string;
|
|
5026
|
+
sequenceNumber: string | number;
|
|
5459
5027
|
}, {
|
|
5460
5028
|
objectId: string;
|
|
5461
|
-
sequenceNumber: string;
|
|
5029
|
+
sequenceNumber: string | number;
|
|
5462
5030
|
}>, "many">>;
|
|
5463
5031
|
mutated: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5464
5032
|
owner: z.ZodUnion<[z.ZodObject<{
|
|
@@ -5808,32 +5376,16 @@ export declare const AccountOperationResultSchema: z.ZodObject<{
|
|
|
5808
5376
|
objectId: string;
|
|
5809
5377
|
}[] | undefined;
|
|
5810
5378
|
abortError?: {
|
|
5811
|
-
|
|
5812
|
-
|
|
5813
|
-
|
|
5814
|
-
|
|
5815
|
-
payment: {
|
|
5816
|
-
version: string | number;
|
|
5817
|
-
digest: string;
|
|
5818
|
-
objectId: string;
|
|
5819
|
-
}[];
|
|
5820
|
-
budget: string;
|
|
5821
|
-
price: string;
|
|
5822
|
-
};
|
|
5823
|
-
messageVersion: "v1";
|
|
5824
|
-
transaction: {
|
|
5825
|
-
kind: string;
|
|
5826
|
-
} & {
|
|
5827
|
-
[k: string]: unknown;
|
|
5828
|
-
};
|
|
5829
|
-
};
|
|
5830
|
-
txSignatures: string[];
|
|
5379
|
+
function?: string | null | undefined;
|
|
5380
|
+
error_code?: string | null | undefined;
|
|
5381
|
+
line?: number | null | undefined;
|
|
5382
|
+
module_id?: string | null | undefined;
|
|
5831
5383
|
} | null | undefined;
|
|
5832
5384
|
dependencies?: string[] | undefined;
|
|
5833
5385
|
eventsDigest?: string | null | undefined;
|
|
5834
5386
|
modifiedAtVersions?: {
|
|
5835
5387
|
objectId: string;
|
|
5836
|
-
sequenceNumber: string;
|
|
5388
|
+
sequenceNumber: string | number;
|
|
5837
5389
|
}[] | undefined;
|
|
5838
5390
|
sharedObjects?: {
|
|
5839
5391
|
version: string | number;
|
|
@@ -5954,32 +5506,16 @@ export declare const AccountOperationResultSchema: z.ZodObject<{
|
|
|
5954
5506
|
objectId: string;
|
|
5955
5507
|
}[] | undefined;
|
|
5956
5508
|
abortError?: {
|
|
5957
|
-
|
|
5958
|
-
|
|
5959
|
-
|
|
5960
|
-
|
|
5961
|
-
payment: {
|
|
5962
|
-
version: string | number;
|
|
5963
|
-
digest: string;
|
|
5964
|
-
objectId: string;
|
|
5965
|
-
}[];
|
|
5966
|
-
budget: string;
|
|
5967
|
-
price: string;
|
|
5968
|
-
};
|
|
5969
|
-
messageVersion: "v1";
|
|
5970
|
-
transaction: {
|
|
5971
|
-
kind: string;
|
|
5972
|
-
} & {
|
|
5973
|
-
[k: string]: unknown;
|
|
5974
|
-
};
|
|
5975
|
-
};
|
|
5976
|
-
txSignatures: string[];
|
|
5509
|
+
function?: string | null | undefined;
|
|
5510
|
+
error_code?: string | null | undefined;
|
|
5511
|
+
line?: number | null | undefined;
|
|
5512
|
+
module_id?: string | null | undefined;
|
|
5977
5513
|
} | null | undefined;
|
|
5978
5514
|
dependencies?: string[] | undefined;
|
|
5979
5515
|
eventsDigest?: string | null | undefined;
|
|
5980
5516
|
modifiedAtVersions?: {
|
|
5981
5517
|
objectId: string;
|
|
5982
|
-
sequenceNumber: string;
|
|
5518
|
+
sequenceNumber: string | number;
|
|
5983
5519
|
}[] | undefined;
|
|
5984
5520
|
sharedObjects?: {
|
|
5985
5521
|
version: string | number;
|
|
@@ -6016,13 +5552,13 @@ export declare const AccountOperationResultSchema: z.ZodObject<{
|
|
|
6016
5552
|
errors: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
6017
5553
|
events: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodDiscriminatedUnion<"bcsEncoding", [z.ZodObject<{
|
|
6018
5554
|
id: z.ZodObject<{
|
|
6019
|
-
eventSeq: z.ZodString
|
|
5555
|
+
eventSeq: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
|
|
6020
5556
|
txDigest: z.ZodString;
|
|
6021
5557
|
}, "strip", z.ZodTypeAny, {
|
|
6022
|
-
eventSeq: string;
|
|
5558
|
+
eventSeq: string | number;
|
|
6023
5559
|
txDigest: string;
|
|
6024
5560
|
}, {
|
|
6025
|
-
eventSeq: string;
|
|
5561
|
+
eventSeq: string | number;
|
|
6026
5562
|
txDigest: string;
|
|
6027
5563
|
}>;
|
|
6028
5564
|
packageId: z.ZodString;
|
|
@@ -6036,7 +5572,7 @@ export declare const AccountOperationResultSchema: z.ZodObject<{
|
|
|
6036
5572
|
}, "strip", z.ZodTypeAny, {
|
|
6037
5573
|
type: string;
|
|
6038
5574
|
id: {
|
|
6039
|
-
eventSeq: string;
|
|
5575
|
+
eventSeq: string | number;
|
|
6040
5576
|
txDigest: string;
|
|
6041
5577
|
};
|
|
6042
5578
|
bcsEncoding: "base64";
|
|
@@ -6049,7 +5585,7 @@ export declare const AccountOperationResultSchema: z.ZodObject<{
|
|
|
6049
5585
|
}, {
|
|
6050
5586
|
type: string;
|
|
6051
5587
|
id: {
|
|
6052
|
-
eventSeq: string;
|
|
5588
|
+
eventSeq: string | number;
|
|
6053
5589
|
txDigest: string;
|
|
6054
5590
|
};
|
|
6055
5591
|
bcsEncoding: "base64";
|
|
@@ -6061,13 +5597,13 @@ export declare const AccountOperationResultSchema: z.ZodObject<{
|
|
|
6061
5597
|
timestampMs?: string | null | undefined;
|
|
6062
5598
|
}>, z.ZodObject<{
|
|
6063
5599
|
id: z.ZodObject<{
|
|
6064
|
-
eventSeq: z.ZodString
|
|
5600
|
+
eventSeq: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
|
|
6065
5601
|
txDigest: z.ZodString;
|
|
6066
5602
|
}, "strip", z.ZodTypeAny, {
|
|
6067
|
-
eventSeq: string;
|
|
5603
|
+
eventSeq: string | number;
|
|
6068
5604
|
txDigest: string;
|
|
6069
5605
|
}, {
|
|
6070
|
-
eventSeq: string;
|
|
5606
|
+
eventSeq: string | number;
|
|
6071
5607
|
txDigest: string;
|
|
6072
5608
|
}>;
|
|
6073
5609
|
packageId: z.ZodString;
|
|
@@ -6081,7 +5617,7 @@ export declare const AccountOperationResultSchema: z.ZodObject<{
|
|
|
6081
5617
|
}, "strip", z.ZodTypeAny, {
|
|
6082
5618
|
type: string;
|
|
6083
5619
|
id: {
|
|
6084
|
-
eventSeq: string;
|
|
5620
|
+
eventSeq: string | number;
|
|
6085
5621
|
txDigest: string;
|
|
6086
5622
|
};
|
|
6087
5623
|
bcsEncoding: "base58";
|
|
@@ -6094,7 +5630,7 @@ export declare const AccountOperationResultSchema: z.ZodObject<{
|
|
|
6094
5630
|
}, {
|
|
6095
5631
|
type: string;
|
|
6096
5632
|
id: {
|
|
6097
|
-
eventSeq: string;
|
|
5633
|
+
eventSeq: string | number;
|
|
6098
5634
|
txDigest: string;
|
|
6099
5635
|
};
|
|
6100
5636
|
bcsEncoding: "base58";
|
|
@@ -6724,32 +6260,16 @@ export declare const AccountOperationResultSchema: z.ZodObject<{
|
|
|
6724
6260
|
objectId: string;
|
|
6725
6261
|
}[] | undefined;
|
|
6726
6262
|
abortError?: {
|
|
6727
|
-
|
|
6728
|
-
|
|
6729
|
-
|
|
6730
|
-
|
|
6731
|
-
payment: {
|
|
6732
|
-
version: string | number;
|
|
6733
|
-
digest: string;
|
|
6734
|
-
objectId: string;
|
|
6735
|
-
}[];
|
|
6736
|
-
budget: string;
|
|
6737
|
-
price: string;
|
|
6738
|
-
};
|
|
6739
|
-
messageVersion: "v1";
|
|
6740
|
-
transaction: {
|
|
6741
|
-
kind: string;
|
|
6742
|
-
} & {
|
|
6743
|
-
[k: string]: unknown;
|
|
6744
|
-
};
|
|
6745
|
-
};
|
|
6746
|
-
txSignatures: string[];
|
|
6263
|
+
function?: string | null | undefined;
|
|
6264
|
+
error_code?: string | null | undefined;
|
|
6265
|
+
line?: number | null | undefined;
|
|
6266
|
+
module_id?: string | null | undefined;
|
|
6747
6267
|
} | null | undefined;
|
|
6748
6268
|
dependencies?: string[] | undefined;
|
|
6749
6269
|
eventsDigest?: string | null | undefined;
|
|
6750
6270
|
modifiedAtVersions?: {
|
|
6751
6271
|
objectId: string;
|
|
6752
|
-
sequenceNumber: string;
|
|
6272
|
+
sequenceNumber: string | number;
|
|
6753
6273
|
}[] | undefined;
|
|
6754
6274
|
sharedObjects?: {
|
|
6755
6275
|
version: string | number;
|
|
@@ -6787,7 +6307,7 @@ export declare const AccountOperationResultSchema: z.ZodObject<{
|
|
|
6787
6307
|
events?: ({
|
|
6788
6308
|
type: string;
|
|
6789
6309
|
id: {
|
|
6790
|
-
eventSeq: string;
|
|
6310
|
+
eventSeq: string | number;
|
|
6791
6311
|
txDigest: string;
|
|
6792
6312
|
};
|
|
6793
6313
|
bcsEncoding: "base64";
|
|
@@ -6800,7 +6320,7 @@ export declare const AccountOperationResultSchema: z.ZodObject<{
|
|
|
6800
6320
|
} | {
|
|
6801
6321
|
type: string;
|
|
6802
6322
|
id: {
|
|
6803
|
-
eventSeq: string;
|
|
6323
|
+
eventSeq: string | number;
|
|
6804
6324
|
txDigest: string;
|
|
6805
6325
|
};
|
|
6806
6326
|
bcsEncoding: "base58";
|
|
@@ -7029,32 +6549,16 @@ export declare const AccountOperationResultSchema: z.ZodObject<{
|
|
|
7029
6549
|
objectId: string;
|
|
7030
6550
|
}[] | undefined;
|
|
7031
6551
|
abortError?: {
|
|
7032
|
-
|
|
7033
|
-
|
|
7034
|
-
|
|
7035
|
-
|
|
7036
|
-
payment: {
|
|
7037
|
-
version: string | number;
|
|
7038
|
-
digest: string;
|
|
7039
|
-
objectId: string;
|
|
7040
|
-
}[];
|
|
7041
|
-
budget: string;
|
|
7042
|
-
price: string;
|
|
7043
|
-
};
|
|
7044
|
-
messageVersion: "v1";
|
|
7045
|
-
transaction: {
|
|
7046
|
-
kind: string;
|
|
7047
|
-
} & {
|
|
7048
|
-
[k: string]: unknown;
|
|
7049
|
-
};
|
|
7050
|
-
};
|
|
7051
|
-
txSignatures: string[];
|
|
6552
|
+
function?: string | null | undefined;
|
|
6553
|
+
error_code?: string | null | undefined;
|
|
6554
|
+
line?: number | null | undefined;
|
|
6555
|
+
module_id?: string | null | undefined;
|
|
7052
6556
|
} | null | undefined;
|
|
7053
6557
|
dependencies?: string[] | undefined;
|
|
7054
6558
|
eventsDigest?: string | null | undefined;
|
|
7055
6559
|
modifiedAtVersions?: {
|
|
7056
6560
|
objectId: string;
|
|
7057
|
-
sequenceNumber: string;
|
|
6561
|
+
sequenceNumber: string | number;
|
|
7058
6562
|
}[] | undefined;
|
|
7059
6563
|
sharedObjects?: {
|
|
7060
6564
|
version: string | number;
|
|
@@ -7092,7 +6596,7 @@ export declare const AccountOperationResultSchema: z.ZodObject<{
|
|
|
7092
6596
|
events?: ({
|
|
7093
6597
|
type: string;
|
|
7094
6598
|
id: {
|
|
7095
|
-
eventSeq: string;
|
|
6599
|
+
eventSeq: string | number;
|
|
7096
6600
|
txDigest: string;
|
|
7097
6601
|
};
|
|
7098
6602
|
bcsEncoding: "base64";
|
|
@@ -7105,7 +6609,7 @@ export declare const AccountOperationResultSchema: z.ZodObject<{
|
|
|
7105
6609
|
} | {
|
|
7106
6610
|
type: string;
|
|
7107
6611
|
id: {
|
|
7108
|
-
eventSeq: string;
|
|
6612
|
+
eventSeq: string | number;
|
|
7109
6613
|
txDigest: string;
|
|
7110
6614
|
};
|
|
7111
6615
|
bcsEncoding: "base58";
|
|
@@ -7414,32 +6918,16 @@ export declare const AccountOperationResultSchema: z.ZodObject<{
|
|
|
7414
6918
|
objectId: string;
|
|
7415
6919
|
}[] | undefined;
|
|
7416
6920
|
abortError?: {
|
|
7417
|
-
|
|
7418
|
-
|
|
7419
|
-
|
|
7420
|
-
|
|
7421
|
-
payment: {
|
|
7422
|
-
version: string | number;
|
|
7423
|
-
digest: string;
|
|
7424
|
-
objectId: string;
|
|
7425
|
-
}[];
|
|
7426
|
-
budget: string;
|
|
7427
|
-
price: string;
|
|
7428
|
-
};
|
|
7429
|
-
messageVersion: "v1";
|
|
7430
|
-
transaction: {
|
|
7431
|
-
kind: string;
|
|
7432
|
-
} & {
|
|
7433
|
-
[k: string]: unknown;
|
|
7434
|
-
};
|
|
7435
|
-
};
|
|
7436
|
-
txSignatures: string[];
|
|
6921
|
+
function?: string | null | undefined;
|
|
6922
|
+
error_code?: string | null | undefined;
|
|
6923
|
+
line?: number | null | undefined;
|
|
6924
|
+
module_id?: string | null | undefined;
|
|
7437
6925
|
} | null | undefined;
|
|
7438
6926
|
dependencies?: string[] | undefined;
|
|
7439
6927
|
eventsDigest?: string | null | undefined;
|
|
7440
6928
|
modifiedAtVersions?: {
|
|
7441
6929
|
objectId: string;
|
|
7442
|
-
sequenceNumber: string;
|
|
6930
|
+
sequenceNumber: string | number;
|
|
7443
6931
|
}[] | undefined;
|
|
7444
6932
|
sharedObjects?: {
|
|
7445
6933
|
version: string | number;
|
|
@@ -7477,7 +6965,7 @@ export declare const AccountOperationResultSchema: z.ZodObject<{
|
|
|
7477
6965
|
events?: ({
|
|
7478
6966
|
type: string;
|
|
7479
6967
|
id: {
|
|
7480
|
-
eventSeq: string;
|
|
6968
|
+
eventSeq: string | number;
|
|
7481
6969
|
txDigest: string;
|
|
7482
6970
|
};
|
|
7483
6971
|
bcsEncoding: "base64";
|
|
@@ -7490,7 +6978,7 @@ export declare const AccountOperationResultSchema: z.ZodObject<{
|
|
|
7490
6978
|
} | {
|
|
7491
6979
|
type: string;
|
|
7492
6980
|
id: {
|
|
7493
|
-
eventSeq: string;
|
|
6981
|
+
eventSeq: string | number;
|
|
7494
6982
|
txDigest: string;
|
|
7495
6983
|
};
|
|
7496
6984
|
bcsEncoding: "base58";
|
|
@@ -7771,32 +7259,16 @@ export declare const AccountOperationResultSchema: z.ZodObject<{
|
|
|
7771
7259
|
objectId: string;
|
|
7772
7260
|
}[] | undefined;
|
|
7773
7261
|
abortError?: {
|
|
7774
|
-
|
|
7775
|
-
|
|
7776
|
-
|
|
7777
|
-
|
|
7778
|
-
payment: {
|
|
7779
|
-
version: string | number;
|
|
7780
|
-
digest: string;
|
|
7781
|
-
objectId: string;
|
|
7782
|
-
}[];
|
|
7783
|
-
budget: string;
|
|
7784
|
-
price: string;
|
|
7785
|
-
};
|
|
7786
|
-
messageVersion: "v1";
|
|
7787
|
-
transaction: {
|
|
7788
|
-
kind: string;
|
|
7789
|
-
} & {
|
|
7790
|
-
[k: string]: unknown;
|
|
7791
|
-
};
|
|
7792
|
-
};
|
|
7793
|
-
txSignatures: string[];
|
|
7262
|
+
function?: string | null | undefined;
|
|
7263
|
+
error_code?: string | null | undefined;
|
|
7264
|
+
line?: number | null | undefined;
|
|
7265
|
+
module_id?: string | null | undefined;
|
|
7794
7266
|
} | null | undefined;
|
|
7795
7267
|
dependencies?: string[] | undefined;
|
|
7796
7268
|
eventsDigest?: string | null | undefined;
|
|
7797
7269
|
modifiedAtVersions?: {
|
|
7798
7270
|
objectId: string;
|
|
7799
|
-
sequenceNumber: string;
|
|
7271
|
+
sequenceNumber: string | number;
|
|
7800
7272
|
}[] | undefined;
|
|
7801
7273
|
sharedObjects?: {
|
|
7802
7274
|
version: string | number;
|
|
@@ -7834,7 +7306,7 @@ export declare const AccountOperationResultSchema: z.ZodObject<{
|
|
|
7834
7306
|
events?: ({
|
|
7835
7307
|
type: string;
|
|
7836
7308
|
id: {
|
|
7837
|
-
eventSeq: string;
|
|
7309
|
+
eventSeq: string | number;
|
|
7838
7310
|
txDigest: string;
|
|
7839
7311
|
};
|
|
7840
7312
|
bcsEncoding: "base64";
|
|
@@ -7847,7 +7319,7 @@ export declare const AccountOperationResultSchema: z.ZodObject<{
|
|
|
7847
7319
|
} | {
|
|
7848
7320
|
type: string;
|
|
7849
7321
|
id: {
|
|
7850
|
-
eventSeq: string;
|
|
7322
|
+
eventSeq: string | number;
|
|
7851
7323
|
txDigest: string;
|
|
7852
7324
|
};
|
|
7853
7325
|
bcsEncoding: "base58";
|
|
@@ -8933,144 +8405,32 @@ export declare const AccountOperationOutputSchema: z.ZodDiscriminatedUnion<"stat
|
|
|
8933
8405
|
};
|
|
8934
8406
|
} | "Immutable" | {
|
|
8935
8407
|
ConsensusAddressOwner: {
|
|
8936
|
-
owner: string;
|
|
8937
|
-
start_version: string | number;
|
|
8938
|
-
};
|
|
8939
|
-
};
|
|
8940
|
-
coinType: string;
|
|
8941
|
-
amount: string;
|
|
8942
|
-
}>, "many">, z.ZodNull]>>;
|
|
8943
|
-
checkpoint: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
8944
|
-
confirmedLocalExecution: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodNull]>>;
|
|
8945
|
-
digest: z.ZodString;
|
|
8946
|
-
effects: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
8947
|
-
abortError: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
8948
|
-
data: z.ZodObject<{
|
|
8949
|
-
gasData: z.ZodObject<{
|
|
8950
|
-
budget: z.ZodString;
|
|
8951
|
-
owner: z.ZodString;
|
|
8952
|
-
payment: z.ZodArray<z.ZodObject<{
|
|
8953
|
-
digest: z.ZodString;
|
|
8954
|
-
objectId: z.ZodString;
|
|
8955
|
-
version: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
|
|
8956
|
-
}, "strip", z.ZodTypeAny, {
|
|
8957
|
-
version: string | number;
|
|
8958
|
-
digest: string;
|
|
8959
|
-
objectId: string;
|
|
8960
|
-
}, {
|
|
8961
|
-
version: string | number;
|
|
8962
|
-
digest: string;
|
|
8963
|
-
objectId: string;
|
|
8964
|
-
}>, "many">;
|
|
8965
|
-
price: z.ZodString;
|
|
8966
|
-
}, "strip", z.ZodTypeAny, {
|
|
8967
|
-
owner: string;
|
|
8968
|
-
payment: {
|
|
8969
|
-
version: string | number;
|
|
8970
|
-
digest: string;
|
|
8971
|
-
objectId: string;
|
|
8972
|
-
}[];
|
|
8973
|
-
budget: string;
|
|
8974
|
-
price: string;
|
|
8975
|
-
}, {
|
|
8976
|
-
owner: string;
|
|
8977
|
-
payment: {
|
|
8978
|
-
version: string | number;
|
|
8979
|
-
digest: string;
|
|
8980
|
-
objectId: string;
|
|
8981
|
-
}[];
|
|
8982
|
-
budget: string;
|
|
8983
|
-
price: string;
|
|
8984
|
-
}>;
|
|
8985
|
-
messageVersion: z.ZodLiteral<"v1">;
|
|
8986
|
-
sender: z.ZodString;
|
|
8987
|
-
transaction: z.ZodObject<{
|
|
8988
|
-
kind: z.ZodString;
|
|
8989
|
-
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
8990
|
-
kind: z.ZodString;
|
|
8991
|
-
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
8992
|
-
kind: z.ZodString;
|
|
8993
|
-
}, z.ZodTypeAny, "passthrough">>;
|
|
8994
|
-
}, "strip", z.ZodTypeAny, {
|
|
8995
|
-
sender: string;
|
|
8996
|
-
gasData: {
|
|
8997
|
-
owner: string;
|
|
8998
|
-
payment: {
|
|
8999
|
-
version: string | number;
|
|
9000
|
-
digest: string;
|
|
9001
|
-
objectId: string;
|
|
9002
|
-
}[];
|
|
9003
|
-
budget: string;
|
|
9004
|
-
price: string;
|
|
9005
|
-
};
|
|
9006
|
-
messageVersion: "v1";
|
|
9007
|
-
transaction: {
|
|
9008
|
-
kind: string;
|
|
9009
|
-
} & {
|
|
9010
|
-
[k: string]: unknown;
|
|
9011
|
-
};
|
|
9012
|
-
}, {
|
|
9013
|
-
sender: string;
|
|
9014
|
-
gasData: {
|
|
9015
|
-
owner: string;
|
|
9016
|
-
payment: {
|
|
9017
|
-
version: string | number;
|
|
9018
|
-
digest: string;
|
|
9019
|
-
objectId: string;
|
|
9020
|
-
}[];
|
|
9021
|
-
budget: string;
|
|
9022
|
-
price: string;
|
|
9023
|
-
};
|
|
9024
|
-
messageVersion: "v1";
|
|
9025
|
-
transaction: {
|
|
9026
|
-
kind: string;
|
|
9027
|
-
} & {
|
|
9028
|
-
[k: string]: unknown;
|
|
9029
|
-
};
|
|
9030
|
-
}>;
|
|
9031
|
-
txSignatures: z.ZodArray<z.ZodString, "many">;
|
|
9032
|
-
}, "strip", z.ZodTypeAny, {
|
|
9033
|
-
data: {
|
|
9034
|
-
sender: string;
|
|
9035
|
-
gasData: {
|
|
9036
|
-
owner: string;
|
|
9037
|
-
payment: {
|
|
9038
|
-
version: string | number;
|
|
9039
|
-
digest: string;
|
|
9040
|
-
objectId: string;
|
|
9041
|
-
}[];
|
|
9042
|
-
budget: string;
|
|
9043
|
-
price: string;
|
|
9044
|
-
};
|
|
9045
|
-
messageVersion: "v1";
|
|
9046
|
-
transaction: {
|
|
9047
|
-
kind: string;
|
|
9048
|
-
} & {
|
|
9049
|
-
[k: string]: unknown;
|
|
9050
|
-
};
|
|
8408
|
+
owner: string;
|
|
8409
|
+
start_version: string | number;
|
|
9051
8410
|
};
|
|
9052
|
-
|
|
8411
|
+
};
|
|
8412
|
+
coinType: string;
|
|
8413
|
+
amount: string;
|
|
8414
|
+
}>, "many">, z.ZodNull]>>;
|
|
8415
|
+
checkpoint: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
8416
|
+
confirmedLocalExecution: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodNull]>>;
|
|
8417
|
+
digest: z.ZodString;
|
|
8418
|
+
effects: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
8419
|
+
abortError: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
8420
|
+
error_code: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
8421
|
+
function: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
8422
|
+
line: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
|
|
8423
|
+
module_id: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
8424
|
+
}, "strip", z.ZodTypeAny, {
|
|
8425
|
+
function?: string | null | undefined;
|
|
8426
|
+
error_code?: string | null | undefined;
|
|
8427
|
+
line?: number | null | undefined;
|
|
8428
|
+
module_id?: string | null | undefined;
|
|
9053
8429
|
}, {
|
|
9054
|
-
|
|
9055
|
-
|
|
9056
|
-
|
|
9057
|
-
|
|
9058
|
-
payment: {
|
|
9059
|
-
version: string | number;
|
|
9060
|
-
digest: string;
|
|
9061
|
-
objectId: string;
|
|
9062
|
-
}[];
|
|
9063
|
-
budget: string;
|
|
9064
|
-
price: string;
|
|
9065
|
-
};
|
|
9066
|
-
messageVersion: "v1";
|
|
9067
|
-
transaction: {
|
|
9068
|
-
kind: string;
|
|
9069
|
-
} & {
|
|
9070
|
-
[k: string]: unknown;
|
|
9071
|
-
};
|
|
9072
|
-
};
|
|
9073
|
-
txSignatures: string[];
|
|
8430
|
+
function?: string | null | undefined;
|
|
8431
|
+
error_code?: string | null | undefined;
|
|
8432
|
+
line?: number | null | undefined;
|
|
8433
|
+
module_id?: string | null | undefined;
|
|
9074
8434
|
}>, z.ZodNull]>>;
|
|
9075
8435
|
created: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
9076
8436
|
owner: z.ZodUnion<[z.ZodObject<{
|
|
@@ -9317,13 +8677,13 @@ export declare const AccountOperationOutputSchema: z.ZodDiscriminatedUnion<"stat
|
|
|
9317
8677
|
messageVersion: z.ZodLiteral<"v1">;
|
|
9318
8678
|
modifiedAtVersions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
9319
8679
|
objectId: z.ZodString;
|
|
9320
|
-
sequenceNumber: z.ZodString
|
|
8680
|
+
sequenceNumber: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
|
|
9321
8681
|
}, "strip", z.ZodTypeAny, {
|
|
9322
8682
|
objectId: string;
|
|
9323
|
-
sequenceNumber: string;
|
|
8683
|
+
sequenceNumber: string | number;
|
|
9324
8684
|
}, {
|
|
9325
8685
|
objectId: string;
|
|
9326
|
-
sequenceNumber: string;
|
|
8686
|
+
sequenceNumber: string | number;
|
|
9327
8687
|
}>, "many">>;
|
|
9328
8688
|
mutated: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
9329
8689
|
owner: z.ZodUnion<[z.ZodObject<{
|
|
@@ -9673,32 +9033,16 @@ export declare const AccountOperationOutputSchema: z.ZodDiscriminatedUnion<"stat
|
|
|
9673
9033
|
objectId: string;
|
|
9674
9034
|
}[] | undefined;
|
|
9675
9035
|
abortError?: {
|
|
9676
|
-
|
|
9677
|
-
|
|
9678
|
-
|
|
9679
|
-
|
|
9680
|
-
payment: {
|
|
9681
|
-
version: string | number;
|
|
9682
|
-
digest: string;
|
|
9683
|
-
objectId: string;
|
|
9684
|
-
}[];
|
|
9685
|
-
budget: string;
|
|
9686
|
-
price: string;
|
|
9687
|
-
};
|
|
9688
|
-
messageVersion: "v1";
|
|
9689
|
-
transaction: {
|
|
9690
|
-
kind: string;
|
|
9691
|
-
} & {
|
|
9692
|
-
[k: string]: unknown;
|
|
9693
|
-
};
|
|
9694
|
-
};
|
|
9695
|
-
txSignatures: string[];
|
|
9036
|
+
function?: string | null | undefined;
|
|
9037
|
+
error_code?: string | null | undefined;
|
|
9038
|
+
line?: number | null | undefined;
|
|
9039
|
+
module_id?: string | null | undefined;
|
|
9696
9040
|
} | null | undefined;
|
|
9697
9041
|
dependencies?: string[] | undefined;
|
|
9698
9042
|
eventsDigest?: string | null | undefined;
|
|
9699
9043
|
modifiedAtVersions?: {
|
|
9700
9044
|
objectId: string;
|
|
9701
|
-
sequenceNumber: string;
|
|
9045
|
+
sequenceNumber: string | number;
|
|
9702
9046
|
}[] | undefined;
|
|
9703
9047
|
sharedObjects?: {
|
|
9704
9048
|
version: string | number;
|
|
@@ -9819,32 +9163,16 @@ export declare const AccountOperationOutputSchema: z.ZodDiscriminatedUnion<"stat
|
|
|
9819
9163
|
objectId: string;
|
|
9820
9164
|
}[] | undefined;
|
|
9821
9165
|
abortError?: {
|
|
9822
|
-
|
|
9823
|
-
|
|
9824
|
-
|
|
9825
|
-
|
|
9826
|
-
payment: {
|
|
9827
|
-
version: string | number;
|
|
9828
|
-
digest: string;
|
|
9829
|
-
objectId: string;
|
|
9830
|
-
}[];
|
|
9831
|
-
budget: string;
|
|
9832
|
-
price: string;
|
|
9833
|
-
};
|
|
9834
|
-
messageVersion: "v1";
|
|
9835
|
-
transaction: {
|
|
9836
|
-
kind: string;
|
|
9837
|
-
} & {
|
|
9838
|
-
[k: string]: unknown;
|
|
9839
|
-
};
|
|
9840
|
-
};
|
|
9841
|
-
txSignatures: string[];
|
|
9166
|
+
function?: string | null | undefined;
|
|
9167
|
+
error_code?: string | null | undefined;
|
|
9168
|
+
line?: number | null | undefined;
|
|
9169
|
+
module_id?: string | null | undefined;
|
|
9842
9170
|
} | null | undefined;
|
|
9843
9171
|
dependencies?: string[] | undefined;
|
|
9844
9172
|
eventsDigest?: string | null | undefined;
|
|
9845
9173
|
modifiedAtVersions?: {
|
|
9846
9174
|
objectId: string;
|
|
9847
|
-
sequenceNumber: string;
|
|
9175
|
+
sequenceNumber: string | number;
|
|
9848
9176
|
}[] | undefined;
|
|
9849
9177
|
sharedObjects?: {
|
|
9850
9178
|
version: string | number;
|
|
@@ -9881,13 +9209,13 @@ export declare const AccountOperationOutputSchema: z.ZodDiscriminatedUnion<"stat
|
|
|
9881
9209
|
errors: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
9882
9210
|
events: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodDiscriminatedUnion<"bcsEncoding", [z.ZodObject<{
|
|
9883
9211
|
id: z.ZodObject<{
|
|
9884
|
-
eventSeq: z.ZodString
|
|
9212
|
+
eventSeq: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
|
|
9885
9213
|
txDigest: z.ZodString;
|
|
9886
9214
|
}, "strip", z.ZodTypeAny, {
|
|
9887
|
-
eventSeq: string;
|
|
9215
|
+
eventSeq: string | number;
|
|
9888
9216
|
txDigest: string;
|
|
9889
9217
|
}, {
|
|
9890
|
-
eventSeq: string;
|
|
9218
|
+
eventSeq: string | number;
|
|
9891
9219
|
txDigest: string;
|
|
9892
9220
|
}>;
|
|
9893
9221
|
packageId: z.ZodString;
|
|
@@ -9901,7 +9229,7 @@ export declare const AccountOperationOutputSchema: z.ZodDiscriminatedUnion<"stat
|
|
|
9901
9229
|
}, "strip", z.ZodTypeAny, {
|
|
9902
9230
|
type: string;
|
|
9903
9231
|
id: {
|
|
9904
|
-
eventSeq: string;
|
|
9232
|
+
eventSeq: string | number;
|
|
9905
9233
|
txDigest: string;
|
|
9906
9234
|
};
|
|
9907
9235
|
bcsEncoding: "base64";
|
|
@@ -9914,7 +9242,7 @@ export declare const AccountOperationOutputSchema: z.ZodDiscriminatedUnion<"stat
|
|
|
9914
9242
|
}, {
|
|
9915
9243
|
type: string;
|
|
9916
9244
|
id: {
|
|
9917
|
-
eventSeq: string;
|
|
9245
|
+
eventSeq: string | number;
|
|
9918
9246
|
txDigest: string;
|
|
9919
9247
|
};
|
|
9920
9248
|
bcsEncoding: "base64";
|
|
@@ -9926,13 +9254,13 @@ export declare const AccountOperationOutputSchema: z.ZodDiscriminatedUnion<"stat
|
|
|
9926
9254
|
timestampMs?: string | null | undefined;
|
|
9927
9255
|
}>, z.ZodObject<{
|
|
9928
9256
|
id: z.ZodObject<{
|
|
9929
|
-
eventSeq: z.ZodString
|
|
9257
|
+
eventSeq: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
|
|
9930
9258
|
txDigest: z.ZodString;
|
|
9931
9259
|
}, "strip", z.ZodTypeAny, {
|
|
9932
|
-
eventSeq: string;
|
|
9260
|
+
eventSeq: string | number;
|
|
9933
9261
|
txDigest: string;
|
|
9934
9262
|
}, {
|
|
9935
|
-
eventSeq: string;
|
|
9263
|
+
eventSeq: string | number;
|
|
9936
9264
|
txDigest: string;
|
|
9937
9265
|
}>;
|
|
9938
9266
|
packageId: z.ZodString;
|
|
@@ -9946,7 +9274,7 @@ export declare const AccountOperationOutputSchema: z.ZodDiscriminatedUnion<"stat
|
|
|
9946
9274
|
}, "strip", z.ZodTypeAny, {
|
|
9947
9275
|
type: string;
|
|
9948
9276
|
id: {
|
|
9949
|
-
eventSeq: string;
|
|
9277
|
+
eventSeq: string | number;
|
|
9950
9278
|
txDigest: string;
|
|
9951
9279
|
};
|
|
9952
9280
|
bcsEncoding: "base58";
|
|
@@ -9959,7 +9287,7 @@ export declare const AccountOperationOutputSchema: z.ZodDiscriminatedUnion<"stat
|
|
|
9959
9287
|
}, {
|
|
9960
9288
|
type: string;
|
|
9961
9289
|
id: {
|
|
9962
|
-
eventSeq: string;
|
|
9290
|
+
eventSeq: string | number;
|
|
9963
9291
|
txDigest: string;
|
|
9964
9292
|
};
|
|
9965
9293
|
bcsEncoding: "base58";
|
|
@@ -10589,32 +9917,16 @@ export declare const AccountOperationOutputSchema: z.ZodDiscriminatedUnion<"stat
|
|
|
10589
9917
|
objectId: string;
|
|
10590
9918
|
}[] | undefined;
|
|
10591
9919
|
abortError?: {
|
|
10592
|
-
|
|
10593
|
-
|
|
10594
|
-
|
|
10595
|
-
|
|
10596
|
-
payment: {
|
|
10597
|
-
version: string | number;
|
|
10598
|
-
digest: string;
|
|
10599
|
-
objectId: string;
|
|
10600
|
-
}[];
|
|
10601
|
-
budget: string;
|
|
10602
|
-
price: string;
|
|
10603
|
-
};
|
|
10604
|
-
messageVersion: "v1";
|
|
10605
|
-
transaction: {
|
|
10606
|
-
kind: string;
|
|
10607
|
-
} & {
|
|
10608
|
-
[k: string]: unknown;
|
|
10609
|
-
};
|
|
10610
|
-
};
|
|
10611
|
-
txSignatures: string[];
|
|
9920
|
+
function?: string | null | undefined;
|
|
9921
|
+
error_code?: string | null | undefined;
|
|
9922
|
+
line?: number | null | undefined;
|
|
9923
|
+
module_id?: string | null | undefined;
|
|
10612
9924
|
} | null | undefined;
|
|
10613
9925
|
dependencies?: string[] | undefined;
|
|
10614
9926
|
eventsDigest?: string | null | undefined;
|
|
10615
9927
|
modifiedAtVersions?: {
|
|
10616
9928
|
objectId: string;
|
|
10617
|
-
sequenceNumber: string;
|
|
9929
|
+
sequenceNumber: string | number;
|
|
10618
9930
|
}[] | undefined;
|
|
10619
9931
|
sharedObjects?: {
|
|
10620
9932
|
version: string | number;
|
|
@@ -10652,7 +9964,7 @@ export declare const AccountOperationOutputSchema: z.ZodDiscriminatedUnion<"stat
|
|
|
10652
9964
|
events?: ({
|
|
10653
9965
|
type: string;
|
|
10654
9966
|
id: {
|
|
10655
|
-
eventSeq: string;
|
|
9967
|
+
eventSeq: string | number;
|
|
10656
9968
|
txDigest: string;
|
|
10657
9969
|
};
|
|
10658
9970
|
bcsEncoding: "base64";
|
|
@@ -10665,7 +9977,7 @@ export declare const AccountOperationOutputSchema: z.ZodDiscriminatedUnion<"stat
|
|
|
10665
9977
|
} | {
|
|
10666
9978
|
type: string;
|
|
10667
9979
|
id: {
|
|
10668
|
-
eventSeq: string;
|
|
9980
|
+
eventSeq: string | number;
|
|
10669
9981
|
txDigest: string;
|
|
10670
9982
|
};
|
|
10671
9983
|
bcsEncoding: "base58";
|
|
@@ -10894,32 +10206,16 @@ export declare const AccountOperationOutputSchema: z.ZodDiscriminatedUnion<"stat
|
|
|
10894
10206
|
objectId: string;
|
|
10895
10207
|
}[] | undefined;
|
|
10896
10208
|
abortError?: {
|
|
10897
|
-
|
|
10898
|
-
|
|
10899
|
-
|
|
10900
|
-
|
|
10901
|
-
payment: {
|
|
10902
|
-
version: string | number;
|
|
10903
|
-
digest: string;
|
|
10904
|
-
objectId: string;
|
|
10905
|
-
}[];
|
|
10906
|
-
budget: string;
|
|
10907
|
-
price: string;
|
|
10908
|
-
};
|
|
10909
|
-
messageVersion: "v1";
|
|
10910
|
-
transaction: {
|
|
10911
|
-
kind: string;
|
|
10912
|
-
} & {
|
|
10913
|
-
[k: string]: unknown;
|
|
10914
|
-
};
|
|
10915
|
-
};
|
|
10916
|
-
txSignatures: string[];
|
|
10209
|
+
function?: string | null | undefined;
|
|
10210
|
+
error_code?: string | null | undefined;
|
|
10211
|
+
line?: number | null | undefined;
|
|
10212
|
+
module_id?: string | null | undefined;
|
|
10917
10213
|
} | null | undefined;
|
|
10918
10214
|
dependencies?: string[] | undefined;
|
|
10919
10215
|
eventsDigest?: string | null | undefined;
|
|
10920
10216
|
modifiedAtVersions?: {
|
|
10921
10217
|
objectId: string;
|
|
10922
|
-
sequenceNumber: string;
|
|
10218
|
+
sequenceNumber: string | number;
|
|
10923
10219
|
}[] | undefined;
|
|
10924
10220
|
sharedObjects?: {
|
|
10925
10221
|
version: string | number;
|
|
@@ -10957,7 +10253,7 @@ export declare const AccountOperationOutputSchema: z.ZodDiscriminatedUnion<"stat
|
|
|
10957
10253
|
events?: ({
|
|
10958
10254
|
type: string;
|
|
10959
10255
|
id: {
|
|
10960
|
-
eventSeq: string;
|
|
10256
|
+
eventSeq: string | number;
|
|
10961
10257
|
txDigest: string;
|
|
10962
10258
|
};
|
|
10963
10259
|
bcsEncoding: "base64";
|
|
@@ -10970,7 +10266,7 @@ export declare const AccountOperationOutputSchema: z.ZodDiscriminatedUnion<"stat
|
|
|
10970
10266
|
} | {
|
|
10971
10267
|
type: string;
|
|
10972
10268
|
id: {
|
|
10973
|
-
eventSeq: string;
|
|
10269
|
+
eventSeq: string | number;
|
|
10974
10270
|
txDigest: string;
|
|
10975
10271
|
};
|
|
10976
10272
|
bcsEncoding: "base58";
|
|
@@ -11279,32 +10575,16 @@ export declare const AccountOperationOutputSchema: z.ZodDiscriminatedUnion<"stat
|
|
|
11279
10575
|
objectId: string;
|
|
11280
10576
|
}[] | undefined;
|
|
11281
10577
|
abortError?: {
|
|
11282
|
-
|
|
11283
|
-
|
|
11284
|
-
|
|
11285
|
-
|
|
11286
|
-
payment: {
|
|
11287
|
-
version: string | number;
|
|
11288
|
-
digest: string;
|
|
11289
|
-
objectId: string;
|
|
11290
|
-
}[];
|
|
11291
|
-
budget: string;
|
|
11292
|
-
price: string;
|
|
11293
|
-
};
|
|
11294
|
-
messageVersion: "v1";
|
|
11295
|
-
transaction: {
|
|
11296
|
-
kind: string;
|
|
11297
|
-
} & {
|
|
11298
|
-
[k: string]: unknown;
|
|
11299
|
-
};
|
|
11300
|
-
};
|
|
11301
|
-
txSignatures: string[];
|
|
10578
|
+
function?: string | null | undefined;
|
|
10579
|
+
error_code?: string | null | undefined;
|
|
10580
|
+
line?: number | null | undefined;
|
|
10581
|
+
module_id?: string | null | undefined;
|
|
11302
10582
|
} | null | undefined;
|
|
11303
10583
|
dependencies?: string[] | undefined;
|
|
11304
10584
|
eventsDigest?: string | null | undefined;
|
|
11305
10585
|
modifiedAtVersions?: {
|
|
11306
10586
|
objectId: string;
|
|
11307
|
-
sequenceNumber: string;
|
|
10587
|
+
sequenceNumber: string | number;
|
|
11308
10588
|
}[] | undefined;
|
|
11309
10589
|
sharedObjects?: {
|
|
11310
10590
|
version: string | number;
|
|
@@ -11342,7 +10622,7 @@ export declare const AccountOperationOutputSchema: z.ZodDiscriminatedUnion<"stat
|
|
|
11342
10622
|
events?: ({
|
|
11343
10623
|
type: string;
|
|
11344
10624
|
id: {
|
|
11345
|
-
eventSeq: string;
|
|
10625
|
+
eventSeq: string | number;
|
|
11346
10626
|
txDigest: string;
|
|
11347
10627
|
};
|
|
11348
10628
|
bcsEncoding: "base64";
|
|
@@ -11355,7 +10635,7 @@ export declare const AccountOperationOutputSchema: z.ZodDiscriminatedUnion<"stat
|
|
|
11355
10635
|
} | {
|
|
11356
10636
|
type: string;
|
|
11357
10637
|
id: {
|
|
11358
|
-
eventSeq: string;
|
|
10638
|
+
eventSeq: string | number;
|
|
11359
10639
|
txDigest: string;
|
|
11360
10640
|
};
|
|
11361
10641
|
bcsEncoding: "base58";
|
|
@@ -11636,32 +10916,16 @@ export declare const AccountOperationOutputSchema: z.ZodDiscriminatedUnion<"stat
|
|
|
11636
10916
|
objectId: string;
|
|
11637
10917
|
}[] | undefined;
|
|
11638
10918
|
abortError?: {
|
|
11639
|
-
|
|
11640
|
-
|
|
11641
|
-
|
|
11642
|
-
|
|
11643
|
-
payment: {
|
|
11644
|
-
version: string | number;
|
|
11645
|
-
digest: string;
|
|
11646
|
-
objectId: string;
|
|
11647
|
-
}[];
|
|
11648
|
-
budget: string;
|
|
11649
|
-
price: string;
|
|
11650
|
-
};
|
|
11651
|
-
messageVersion: "v1";
|
|
11652
|
-
transaction: {
|
|
11653
|
-
kind: string;
|
|
11654
|
-
} & {
|
|
11655
|
-
[k: string]: unknown;
|
|
11656
|
-
};
|
|
11657
|
-
};
|
|
11658
|
-
txSignatures: string[];
|
|
10919
|
+
function?: string | null | undefined;
|
|
10920
|
+
error_code?: string | null | undefined;
|
|
10921
|
+
line?: number | null | undefined;
|
|
10922
|
+
module_id?: string | null | undefined;
|
|
11659
10923
|
} | null | undefined;
|
|
11660
10924
|
dependencies?: string[] | undefined;
|
|
11661
10925
|
eventsDigest?: string | null | undefined;
|
|
11662
10926
|
modifiedAtVersions?: {
|
|
11663
10927
|
objectId: string;
|
|
11664
|
-
sequenceNumber: string;
|
|
10928
|
+
sequenceNumber: string | number;
|
|
11665
10929
|
}[] | undefined;
|
|
11666
10930
|
sharedObjects?: {
|
|
11667
10931
|
version: string | number;
|
|
@@ -11699,7 +10963,7 @@ export declare const AccountOperationOutputSchema: z.ZodDiscriminatedUnion<"stat
|
|
|
11699
10963
|
events?: ({
|
|
11700
10964
|
type: string;
|
|
11701
10965
|
id: {
|
|
11702
|
-
eventSeq: string;
|
|
10966
|
+
eventSeq: string | number;
|
|
11703
10967
|
txDigest: string;
|
|
11704
10968
|
};
|
|
11705
10969
|
bcsEncoding: "base64";
|
|
@@ -11712,7 +10976,7 @@ export declare const AccountOperationOutputSchema: z.ZodDiscriminatedUnion<"stat
|
|
|
11712
10976
|
} | {
|
|
11713
10977
|
type: string;
|
|
11714
10978
|
id: {
|
|
11715
|
-
eventSeq: string;
|
|
10979
|
+
eventSeq: string | number;
|
|
11716
10980
|
txDigest: string;
|
|
11717
10981
|
};
|
|
11718
10982
|
bcsEncoding: "base58";
|
|
@@ -11996,32 +11260,16 @@ export declare const AccountOperationOutputSchema: z.ZodDiscriminatedUnion<"stat
|
|
|
11996
11260
|
objectId: string;
|
|
11997
11261
|
}[] | undefined;
|
|
11998
11262
|
abortError?: {
|
|
11999
|
-
|
|
12000
|
-
|
|
12001
|
-
|
|
12002
|
-
|
|
12003
|
-
payment: {
|
|
12004
|
-
version: string | number;
|
|
12005
|
-
digest: string;
|
|
12006
|
-
objectId: string;
|
|
12007
|
-
}[];
|
|
12008
|
-
budget: string;
|
|
12009
|
-
price: string;
|
|
12010
|
-
};
|
|
12011
|
-
messageVersion: "v1";
|
|
12012
|
-
transaction: {
|
|
12013
|
-
kind: string;
|
|
12014
|
-
} & {
|
|
12015
|
-
[k: string]: unknown;
|
|
12016
|
-
};
|
|
12017
|
-
};
|
|
12018
|
-
txSignatures: string[];
|
|
11263
|
+
function?: string | null | undefined;
|
|
11264
|
+
error_code?: string | null | undefined;
|
|
11265
|
+
line?: number | null | undefined;
|
|
11266
|
+
module_id?: string | null | undefined;
|
|
12019
11267
|
} | null | undefined;
|
|
12020
11268
|
dependencies?: string[] | undefined;
|
|
12021
11269
|
eventsDigest?: string | null | undefined;
|
|
12022
11270
|
modifiedAtVersions?: {
|
|
12023
11271
|
objectId: string;
|
|
12024
|
-
sequenceNumber: string;
|
|
11272
|
+
sequenceNumber: string | number;
|
|
12025
11273
|
}[] | undefined;
|
|
12026
11274
|
sharedObjects?: {
|
|
12027
11275
|
version: string | number;
|
|
@@ -12059,7 +11307,7 @@ export declare const AccountOperationOutputSchema: z.ZodDiscriminatedUnion<"stat
|
|
|
12059
11307
|
events?: ({
|
|
12060
11308
|
type: string;
|
|
12061
11309
|
id: {
|
|
12062
|
-
eventSeq: string;
|
|
11310
|
+
eventSeq: string | number;
|
|
12063
11311
|
txDigest: string;
|
|
12064
11312
|
};
|
|
12065
11313
|
bcsEncoding: "base64";
|
|
@@ -12072,7 +11320,7 @@ export declare const AccountOperationOutputSchema: z.ZodDiscriminatedUnion<"stat
|
|
|
12072
11320
|
} | {
|
|
12073
11321
|
type: string;
|
|
12074
11322
|
id: {
|
|
12075
|
-
eventSeq: string;
|
|
11323
|
+
eventSeq: string | number;
|
|
12076
11324
|
txDigest: string;
|
|
12077
11325
|
};
|
|
12078
11326
|
bcsEncoding: "base58";
|
|
@@ -12356,32 +11604,16 @@ export declare const AccountOperationOutputSchema: z.ZodDiscriminatedUnion<"stat
|
|
|
12356
11604
|
objectId: string;
|
|
12357
11605
|
}[] | undefined;
|
|
12358
11606
|
abortError?: {
|
|
12359
|
-
|
|
12360
|
-
|
|
12361
|
-
|
|
12362
|
-
|
|
12363
|
-
payment: {
|
|
12364
|
-
version: string | number;
|
|
12365
|
-
digest: string;
|
|
12366
|
-
objectId: string;
|
|
12367
|
-
}[];
|
|
12368
|
-
budget: string;
|
|
12369
|
-
price: string;
|
|
12370
|
-
};
|
|
12371
|
-
messageVersion: "v1";
|
|
12372
|
-
transaction: {
|
|
12373
|
-
kind: string;
|
|
12374
|
-
} & {
|
|
12375
|
-
[k: string]: unknown;
|
|
12376
|
-
};
|
|
12377
|
-
};
|
|
12378
|
-
txSignatures: string[];
|
|
11607
|
+
function?: string | null | undefined;
|
|
11608
|
+
error_code?: string | null | undefined;
|
|
11609
|
+
line?: number | null | undefined;
|
|
11610
|
+
module_id?: string | null | undefined;
|
|
12379
11611
|
} | null | undefined;
|
|
12380
11612
|
dependencies?: string[] | undefined;
|
|
12381
11613
|
eventsDigest?: string | null | undefined;
|
|
12382
11614
|
modifiedAtVersions?: {
|
|
12383
11615
|
objectId: string;
|
|
12384
|
-
sequenceNumber: string;
|
|
11616
|
+
sequenceNumber: string | number;
|
|
12385
11617
|
}[] | undefined;
|
|
12386
11618
|
sharedObjects?: {
|
|
12387
11619
|
version: string | number;
|
|
@@ -12419,7 +11651,7 @@ export declare const AccountOperationOutputSchema: z.ZodDiscriminatedUnion<"stat
|
|
|
12419
11651
|
events?: ({
|
|
12420
11652
|
type: string;
|
|
12421
11653
|
id: {
|
|
12422
|
-
eventSeq: string;
|
|
11654
|
+
eventSeq: string | number;
|
|
12423
11655
|
txDigest: string;
|
|
12424
11656
|
};
|
|
12425
11657
|
bcsEncoding: "base64";
|
|
@@ -12432,7 +11664,7 @@ export declare const AccountOperationOutputSchema: z.ZodDiscriminatedUnion<"stat
|
|
|
12432
11664
|
} | {
|
|
12433
11665
|
type: string;
|
|
12434
11666
|
id: {
|
|
12435
|
-
eventSeq: string;
|
|
11667
|
+
eventSeq: string | number;
|
|
12436
11668
|
txDigest: string;
|
|
12437
11669
|
};
|
|
12438
11670
|
bcsEncoding: "base58";
|
|
@@ -12750,132 +11982,20 @@ export declare const AccountOperationOutputWrappedSchema: z.ZodObject<{
|
|
|
12750
11982
|
digest: z.ZodString;
|
|
12751
11983
|
effects: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
12752
11984
|
abortError: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
12753
|
-
|
|
12754
|
-
|
|
12755
|
-
|
|
12756
|
-
|
|
12757
|
-
payment: z.ZodArray<z.ZodObject<{
|
|
12758
|
-
digest: z.ZodString;
|
|
12759
|
-
objectId: z.ZodString;
|
|
12760
|
-
version: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
|
|
12761
|
-
}, "strip", z.ZodTypeAny, {
|
|
12762
|
-
version: string | number;
|
|
12763
|
-
digest: string;
|
|
12764
|
-
objectId: string;
|
|
12765
|
-
}, {
|
|
12766
|
-
version: string | number;
|
|
12767
|
-
digest: string;
|
|
12768
|
-
objectId: string;
|
|
12769
|
-
}>, "many">;
|
|
12770
|
-
price: z.ZodString;
|
|
12771
|
-
}, "strip", z.ZodTypeAny, {
|
|
12772
|
-
owner: string;
|
|
12773
|
-
payment: {
|
|
12774
|
-
version: string | number;
|
|
12775
|
-
digest: string;
|
|
12776
|
-
objectId: string;
|
|
12777
|
-
}[];
|
|
12778
|
-
budget: string;
|
|
12779
|
-
price: string;
|
|
12780
|
-
}, {
|
|
12781
|
-
owner: string;
|
|
12782
|
-
payment: {
|
|
12783
|
-
version: string | number;
|
|
12784
|
-
digest: string;
|
|
12785
|
-
objectId: string;
|
|
12786
|
-
}[];
|
|
12787
|
-
budget: string;
|
|
12788
|
-
price: string;
|
|
12789
|
-
}>;
|
|
12790
|
-
messageVersion: z.ZodLiteral<"v1">;
|
|
12791
|
-
sender: z.ZodString;
|
|
12792
|
-
transaction: z.ZodObject<{
|
|
12793
|
-
kind: z.ZodString;
|
|
12794
|
-
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
12795
|
-
kind: z.ZodString;
|
|
12796
|
-
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
12797
|
-
kind: z.ZodString;
|
|
12798
|
-
}, z.ZodTypeAny, "passthrough">>;
|
|
12799
|
-
}, "strip", z.ZodTypeAny, {
|
|
12800
|
-
sender: string;
|
|
12801
|
-
gasData: {
|
|
12802
|
-
owner: string;
|
|
12803
|
-
payment: {
|
|
12804
|
-
version: string | number;
|
|
12805
|
-
digest: string;
|
|
12806
|
-
objectId: string;
|
|
12807
|
-
}[];
|
|
12808
|
-
budget: string;
|
|
12809
|
-
price: string;
|
|
12810
|
-
};
|
|
12811
|
-
messageVersion: "v1";
|
|
12812
|
-
transaction: {
|
|
12813
|
-
kind: string;
|
|
12814
|
-
} & {
|
|
12815
|
-
[k: string]: unknown;
|
|
12816
|
-
};
|
|
12817
|
-
}, {
|
|
12818
|
-
sender: string;
|
|
12819
|
-
gasData: {
|
|
12820
|
-
owner: string;
|
|
12821
|
-
payment: {
|
|
12822
|
-
version: string | number;
|
|
12823
|
-
digest: string;
|
|
12824
|
-
objectId: string;
|
|
12825
|
-
}[];
|
|
12826
|
-
budget: string;
|
|
12827
|
-
price: string;
|
|
12828
|
-
};
|
|
12829
|
-
messageVersion: "v1";
|
|
12830
|
-
transaction: {
|
|
12831
|
-
kind: string;
|
|
12832
|
-
} & {
|
|
12833
|
-
[k: string]: unknown;
|
|
12834
|
-
};
|
|
12835
|
-
}>;
|
|
12836
|
-
txSignatures: z.ZodArray<z.ZodString, "many">;
|
|
11985
|
+
error_code: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
11986
|
+
function: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
11987
|
+
line: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
|
|
11988
|
+
module_id: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
12837
11989
|
}, "strip", z.ZodTypeAny, {
|
|
12838
|
-
|
|
12839
|
-
|
|
12840
|
-
|
|
12841
|
-
|
|
12842
|
-
payment: {
|
|
12843
|
-
version: string | number;
|
|
12844
|
-
digest: string;
|
|
12845
|
-
objectId: string;
|
|
12846
|
-
}[];
|
|
12847
|
-
budget: string;
|
|
12848
|
-
price: string;
|
|
12849
|
-
};
|
|
12850
|
-
messageVersion: "v1";
|
|
12851
|
-
transaction: {
|
|
12852
|
-
kind: string;
|
|
12853
|
-
} & {
|
|
12854
|
-
[k: string]: unknown;
|
|
12855
|
-
};
|
|
12856
|
-
};
|
|
12857
|
-
txSignatures: string[];
|
|
11990
|
+
function?: string | null | undefined;
|
|
11991
|
+
error_code?: string | null | undefined;
|
|
11992
|
+
line?: number | null | undefined;
|
|
11993
|
+
module_id?: string | null | undefined;
|
|
12858
11994
|
}, {
|
|
12859
|
-
|
|
12860
|
-
|
|
12861
|
-
|
|
12862
|
-
|
|
12863
|
-
payment: {
|
|
12864
|
-
version: string | number;
|
|
12865
|
-
digest: string;
|
|
12866
|
-
objectId: string;
|
|
12867
|
-
}[];
|
|
12868
|
-
budget: string;
|
|
12869
|
-
price: string;
|
|
12870
|
-
};
|
|
12871
|
-
messageVersion: "v1";
|
|
12872
|
-
transaction: {
|
|
12873
|
-
kind: string;
|
|
12874
|
-
} & {
|
|
12875
|
-
[k: string]: unknown;
|
|
12876
|
-
};
|
|
12877
|
-
};
|
|
12878
|
-
txSignatures: string[];
|
|
11995
|
+
function?: string | null | undefined;
|
|
11996
|
+
error_code?: string | null | undefined;
|
|
11997
|
+
line?: number | null | undefined;
|
|
11998
|
+
module_id?: string | null | undefined;
|
|
12879
11999
|
}>, z.ZodNull]>>;
|
|
12880
12000
|
created: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
12881
12001
|
owner: z.ZodUnion<[z.ZodObject<{
|
|
@@ -13122,13 +12242,13 @@ export declare const AccountOperationOutputWrappedSchema: z.ZodObject<{
|
|
|
13122
12242
|
messageVersion: z.ZodLiteral<"v1">;
|
|
13123
12243
|
modifiedAtVersions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
13124
12244
|
objectId: z.ZodString;
|
|
13125
|
-
sequenceNumber: z.ZodString
|
|
12245
|
+
sequenceNumber: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
|
|
13126
12246
|
}, "strip", z.ZodTypeAny, {
|
|
13127
12247
|
objectId: string;
|
|
13128
|
-
sequenceNumber: string;
|
|
12248
|
+
sequenceNumber: string | number;
|
|
13129
12249
|
}, {
|
|
13130
12250
|
objectId: string;
|
|
13131
|
-
sequenceNumber: string;
|
|
12251
|
+
sequenceNumber: string | number;
|
|
13132
12252
|
}>, "many">>;
|
|
13133
12253
|
mutated: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
13134
12254
|
owner: z.ZodUnion<[z.ZodObject<{
|
|
@@ -13478,32 +12598,16 @@ export declare const AccountOperationOutputWrappedSchema: z.ZodObject<{
|
|
|
13478
12598
|
objectId: string;
|
|
13479
12599
|
}[] | undefined;
|
|
13480
12600
|
abortError?: {
|
|
13481
|
-
|
|
13482
|
-
|
|
13483
|
-
|
|
13484
|
-
|
|
13485
|
-
payment: {
|
|
13486
|
-
version: string | number;
|
|
13487
|
-
digest: string;
|
|
13488
|
-
objectId: string;
|
|
13489
|
-
}[];
|
|
13490
|
-
budget: string;
|
|
13491
|
-
price: string;
|
|
13492
|
-
};
|
|
13493
|
-
messageVersion: "v1";
|
|
13494
|
-
transaction: {
|
|
13495
|
-
kind: string;
|
|
13496
|
-
} & {
|
|
13497
|
-
[k: string]: unknown;
|
|
13498
|
-
};
|
|
13499
|
-
};
|
|
13500
|
-
txSignatures: string[];
|
|
12601
|
+
function?: string | null | undefined;
|
|
12602
|
+
error_code?: string | null | undefined;
|
|
12603
|
+
line?: number | null | undefined;
|
|
12604
|
+
module_id?: string | null | undefined;
|
|
13501
12605
|
} | null | undefined;
|
|
13502
12606
|
dependencies?: string[] | undefined;
|
|
13503
12607
|
eventsDigest?: string | null | undefined;
|
|
13504
12608
|
modifiedAtVersions?: {
|
|
13505
12609
|
objectId: string;
|
|
13506
|
-
sequenceNumber: string;
|
|
12610
|
+
sequenceNumber: string | number;
|
|
13507
12611
|
}[] | undefined;
|
|
13508
12612
|
sharedObjects?: {
|
|
13509
12613
|
version: string | number;
|
|
@@ -13624,32 +12728,16 @@ export declare const AccountOperationOutputWrappedSchema: z.ZodObject<{
|
|
|
13624
12728
|
objectId: string;
|
|
13625
12729
|
}[] | undefined;
|
|
13626
12730
|
abortError?: {
|
|
13627
|
-
|
|
13628
|
-
|
|
13629
|
-
|
|
13630
|
-
|
|
13631
|
-
payment: {
|
|
13632
|
-
version: string | number;
|
|
13633
|
-
digest: string;
|
|
13634
|
-
objectId: string;
|
|
13635
|
-
}[];
|
|
13636
|
-
budget: string;
|
|
13637
|
-
price: string;
|
|
13638
|
-
};
|
|
13639
|
-
messageVersion: "v1";
|
|
13640
|
-
transaction: {
|
|
13641
|
-
kind: string;
|
|
13642
|
-
} & {
|
|
13643
|
-
[k: string]: unknown;
|
|
13644
|
-
};
|
|
13645
|
-
};
|
|
13646
|
-
txSignatures: string[];
|
|
12731
|
+
function?: string | null | undefined;
|
|
12732
|
+
error_code?: string | null | undefined;
|
|
12733
|
+
line?: number | null | undefined;
|
|
12734
|
+
module_id?: string | null | undefined;
|
|
13647
12735
|
} | null | undefined;
|
|
13648
12736
|
dependencies?: string[] | undefined;
|
|
13649
12737
|
eventsDigest?: string | null | undefined;
|
|
13650
12738
|
modifiedAtVersions?: {
|
|
13651
12739
|
objectId: string;
|
|
13652
|
-
sequenceNumber: string;
|
|
12740
|
+
sequenceNumber: string | number;
|
|
13653
12741
|
}[] | undefined;
|
|
13654
12742
|
sharedObjects?: {
|
|
13655
12743
|
version: string | number;
|
|
@@ -13686,13 +12774,13 @@ export declare const AccountOperationOutputWrappedSchema: z.ZodObject<{
|
|
|
13686
12774
|
errors: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
13687
12775
|
events: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodDiscriminatedUnion<"bcsEncoding", [z.ZodObject<{
|
|
13688
12776
|
id: z.ZodObject<{
|
|
13689
|
-
eventSeq: z.ZodString
|
|
12777
|
+
eventSeq: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
|
|
13690
12778
|
txDigest: z.ZodString;
|
|
13691
12779
|
}, "strip", z.ZodTypeAny, {
|
|
13692
|
-
eventSeq: string;
|
|
12780
|
+
eventSeq: string | number;
|
|
13693
12781
|
txDigest: string;
|
|
13694
12782
|
}, {
|
|
13695
|
-
eventSeq: string;
|
|
12783
|
+
eventSeq: string | number;
|
|
13696
12784
|
txDigest: string;
|
|
13697
12785
|
}>;
|
|
13698
12786
|
packageId: z.ZodString;
|
|
@@ -13706,7 +12794,7 @@ export declare const AccountOperationOutputWrappedSchema: z.ZodObject<{
|
|
|
13706
12794
|
}, "strip", z.ZodTypeAny, {
|
|
13707
12795
|
type: string;
|
|
13708
12796
|
id: {
|
|
13709
|
-
eventSeq: string;
|
|
12797
|
+
eventSeq: string | number;
|
|
13710
12798
|
txDigest: string;
|
|
13711
12799
|
};
|
|
13712
12800
|
bcsEncoding: "base64";
|
|
@@ -13719,7 +12807,7 @@ export declare const AccountOperationOutputWrappedSchema: z.ZodObject<{
|
|
|
13719
12807
|
}, {
|
|
13720
12808
|
type: string;
|
|
13721
12809
|
id: {
|
|
13722
|
-
eventSeq: string;
|
|
12810
|
+
eventSeq: string | number;
|
|
13723
12811
|
txDigest: string;
|
|
13724
12812
|
};
|
|
13725
12813
|
bcsEncoding: "base64";
|
|
@@ -13731,13 +12819,13 @@ export declare const AccountOperationOutputWrappedSchema: z.ZodObject<{
|
|
|
13731
12819
|
timestampMs?: string | null | undefined;
|
|
13732
12820
|
}>, z.ZodObject<{
|
|
13733
12821
|
id: z.ZodObject<{
|
|
13734
|
-
eventSeq: z.ZodString
|
|
12822
|
+
eventSeq: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
|
|
13735
12823
|
txDigest: z.ZodString;
|
|
13736
12824
|
}, "strip", z.ZodTypeAny, {
|
|
13737
|
-
eventSeq: string;
|
|
12825
|
+
eventSeq: string | number;
|
|
13738
12826
|
txDigest: string;
|
|
13739
12827
|
}, {
|
|
13740
|
-
eventSeq: string;
|
|
12828
|
+
eventSeq: string | number;
|
|
13741
12829
|
txDigest: string;
|
|
13742
12830
|
}>;
|
|
13743
12831
|
packageId: z.ZodString;
|
|
@@ -13751,7 +12839,7 @@ export declare const AccountOperationOutputWrappedSchema: z.ZodObject<{
|
|
|
13751
12839
|
}, "strip", z.ZodTypeAny, {
|
|
13752
12840
|
type: string;
|
|
13753
12841
|
id: {
|
|
13754
|
-
eventSeq: string;
|
|
12842
|
+
eventSeq: string | number;
|
|
13755
12843
|
txDigest: string;
|
|
13756
12844
|
};
|
|
13757
12845
|
bcsEncoding: "base58";
|
|
@@ -13764,7 +12852,7 @@ export declare const AccountOperationOutputWrappedSchema: z.ZodObject<{
|
|
|
13764
12852
|
}, {
|
|
13765
12853
|
type: string;
|
|
13766
12854
|
id: {
|
|
13767
|
-
eventSeq: string;
|
|
12855
|
+
eventSeq: string | number;
|
|
13768
12856
|
txDigest: string;
|
|
13769
12857
|
};
|
|
13770
12858
|
bcsEncoding: "base58";
|
|
@@ -14394,32 +13482,16 @@ export declare const AccountOperationOutputWrappedSchema: z.ZodObject<{
|
|
|
14394
13482
|
objectId: string;
|
|
14395
13483
|
}[] | undefined;
|
|
14396
13484
|
abortError?: {
|
|
14397
|
-
|
|
14398
|
-
|
|
14399
|
-
|
|
14400
|
-
|
|
14401
|
-
payment: {
|
|
14402
|
-
version: string | number;
|
|
14403
|
-
digest: string;
|
|
14404
|
-
objectId: string;
|
|
14405
|
-
}[];
|
|
14406
|
-
budget: string;
|
|
14407
|
-
price: string;
|
|
14408
|
-
};
|
|
14409
|
-
messageVersion: "v1";
|
|
14410
|
-
transaction: {
|
|
14411
|
-
kind: string;
|
|
14412
|
-
} & {
|
|
14413
|
-
[k: string]: unknown;
|
|
14414
|
-
};
|
|
14415
|
-
};
|
|
14416
|
-
txSignatures: string[];
|
|
13485
|
+
function?: string | null | undefined;
|
|
13486
|
+
error_code?: string | null | undefined;
|
|
13487
|
+
line?: number | null | undefined;
|
|
13488
|
+
module_id?: string | null | undefined;
|
|
14417
13489
|
} | null | undefined;
|
|
14418
13490
|
dependencies?: string[] | undefined;
|
|
14419
13491
|
eventsDigest?: string | null | undefined;
|
|
14420
13492
|
modifiedAtVersions?: {
|
|
14421
13493
|
objectId: string;
|
|
14422
|
-
sequenceNumber: string;
|
|
13494
|
+
sequenceNumber: string | number;
|
|
14423
13495
|
}[] | undefined;
|
|
14424
13496
|
sharedObjects?: {
|
|
14425
13497
|
version: string | number;
|
|
@@ -14457,7 +13529,7 @@ export declare const AccountOperationOutputWrappedSchema: z.ZodObject<{
|
|
|
14457
13529
|
events?: ({
|
|
14458
13530
|
type: string;
|
|
14459
13531
|
id: {
|
|
14460
|
-
eventSeq: string;
|
|
13532
|
+
eventSeq: string | number;
|
|
14461
13533
|
txDigest: string;
|
|
14462
13534
|
};
|
|
14463
13535
|
bcsEncoding: "base64";
|
|
@@ -14470,7 +13542,7 @@ export declare const AccountOperationOutputWrappedSchema: z.ZodObject<{
|
|
|
14470
13542
|
} | {
|
|
14471
13543
|
type: string;
|
|
14472
13544
|
id: {
|
|
14473
|
-
eventSeq: string;
|
|
13545
|
+
eventSeq: string | number;
|
|
14474
13546
|
txDigest: string;
|
|
14475
13547
|
};
|
|
14476
13548
|
bcsEncoding: "base58";
|
|
@@ -14699,32 +13771,16 @@ export declare const AccountOperationOutputWrappedSchema: z.ZodObject<{
|
|
|
14699
13771
|
objectId: string;
|
|
14700
13772
|
}[] | undefined;
|
|
14701
13773
|
abortError?: {
|
|
14702
|
-
|
|
14703
|
-
|
|
14704
|
-
|
|
14705
|
-
|
|
14706
|
-
payment: {
|
|
14707
|
-
version: string | number;
|
|
14708
|
-
digest: string;
|
|
14709
|
-
objectId: string;
|
|
14710
|
-
}[];
|
|
14711
|
-
budget: string;
|
|
14712
|
-
price: string;
|
|
14713
|
-
};
|
|
14714
|
-
messageVersion: "v1";
|
|
14715
|
-
transaction: {
|
|
14716
|
-
kind: string;
|
|
14717
|
-
} & {
|
|
14718
|
-
[k: string]: unknown;
|
|
14719
|
-
};
|
|
14720
|
-
};
|
|
14721
|
-
txSignatures: string[];
|
|
13774
|
+
function?: string | null | undefined;
|
|
13775
|
+
error_code?: string | null | undefined;
|
|
13776
|
+
line?: number | null | undefined;
|
|
13777
|
+
module_id?: string | null | undefined;
|
|
14722
13778
|
} | null | undefined;
|
|
14723
13779
|
dependencies?: string[] | undefined;
|
|
14724
13780
|
eventsDigest?: string | null | undefined;
|
|
14725
13781
|
modifiedAtVersions?: {
|
|
14726
13782
|
objectId: string;
|
|
14727
|
-
sequenceNumber: string;
|
|
13783
|
+
sequenceNumber: string | number;
|
|
14728
13784
|
}[] | undefined;
|
|
14729
13785
|
sharedObjects?: {
|
|
14730
13786
|
version: string | number;
|
|
@@ -14762,7 +13818,7 @@ export declare const AccountOperationOutputWrappedSchema: z.ZodObject<{
|
|
|
14762
13818
|
events?: ({
|
|
14763
13819
|
type: string;
|
|
14764
13820
|
id: {
|
|
14765
|
-
eventSeq: string;
|
|
13821
|
+
eventSeq: string | number;
|
|
14766
13822
|
txDigest: string;
|
|
14767
13823
|
};
|
|
14768
13824
|
bcsEncoding: "base64";
|
|
@@ -14775,7 +13831,7 @@ export declare const AccountOperationOutputWrappedSchema: z.ZodObject<{
|
|
|
14775
13831
|
} | {
|
|
14776
13832
|
type: string;
|
|
14777
13833
|
id: {
|
|
14778
|
-
eventSeq: string;
|
|
13834
|
+
eventSeq: string | number;
|
|
14779
13835
|
txDigest: string;
|
|
14780
13836
|
};
|
|
14781
13837
|
bcsEncoding: "base58";
|
|
@@ -15084,32 +14140,16 @@ export declare const AccountOperationOutputWrappedSchema: z.ZodObject<{
|
|
|
15084
14140
|
objectId: string;
|
|
15085
14141
|
}[] | undefined;
|
|
15086
14142
|
abortError?: {
|
|
15087
|
-
|
|
15088
|
-
|
|
15089
|
-
|
|
15090
|
-
|
|
15091
|
-
payment: {
|
|
15092
|
-
version: string | number;
|
|
15093
|
-
digest: string;
|
|
15094
|
-
objectId: string;
|
|
15095
|
-
}[];
|
|
15096
|
-
budget: string;
|
|
15097
|
-
price: string;
|
|
15098
|
-
};
|
|
15099
|
-
messageVersion: "v1";
|
|
15100
|
-
transaction: {
|
|
15101
|
-
kind: string;
|
|
15102
|
-
} & {
|
|
15103
|
-
[k: string]: unknown;
|
|
15104
|
-
};
|
|
15105
|
-
};
|
|
15106
|
-
txSignatures: string[];
|
|
14143
|
+
function?: string | null | undefined;
|
|
14144
|
+
error_code?: string | null | undefined;
|
|
14145
|
+
line?: number | null | undefined;
|
|
14146
|
+
module_id?: string | null | undefined;
|
|
15107
14147
|
} | null | undefined;
|
|
15108
14148
|
dependencies?: string[] | undefined;
|
|
15109
14149
|
eventsDigest?: string | null | undefined;
|
|
15110
14150
|
modifiedAtVersions?: {
|
|
15111
14151
|
objectId: string;
|
|
15112
|
-
sequenceNumber: string;
|
|
14152
|
+
sequenceNumber: string | number;
|
|
15113
14153
|
}[] | undefined;
|
|
15114
14154
|
sharedObjects?: {
|
|
15115
14155
|
version: string | number;
|
|
@@ -15147,7 +14187,7 @@ export declare const AccountOperationOutputWrappedSchema: z.ZodObject<{
|
|
|
15147
14187
|
events?: ({
|
|
15148
14188
|
type: string;
|
|
15149
14189
|
id: {
|
|
15150
|
-
eventSeq: string;
|
|
14190
|
+
eventSeq: string | number;
|
|
15151
14191
|
txDigest: string;
|
|
15152
14192
|
};
|
|
15153
14193
|
bcsEncoding: "base64";
|
|
@@ -15160,7 +14200,7 @@ export declare const AccountOperationOutputWrappedSchema: z.ZodObject<{
|
|
|
15160
14200
|
} | {
|
|
15161
14201
|
type: string;
|
|
15162
14202
|
id: {
|
|
15163
|
-
eventSeq: string;
|
|
14203
|
+
eventSeq: string | number;
|
|
15164
14204
|
txDigest: string;
|
|
15165
14205
|
};
|
|
15166
14206
|
bcsEncoding: "base58";
|
|
@@ -15441,32 +14481,16 @@ export declare const AccountOperationOutputWrappedSchema: z.ZodObject<{
|
|
|
15441
14481
|
objectId: string;
|
|
15442
14482
|
}[] | undefined;
|
|
15443
14483
|
abortError?: {
|
|
15444
|
-
|
|
15445
|
-
|
|
15446
|
-
|
|
15447
|
-
|
|
15448
|
-
payment: {
|
|
15449
|
-
version: string | number;
|
|
15450
|
-
digest: string;
|
|
15451
|
-
objectId: string;
|
|
15452
|
-
}[];
|
|
15453
|
-
budget: string;
|
|
15454
|
-
price: string;
|
|
15455
|
-
};
|
|
15456
|
-
messageVersion: "v1";
|
|
15457
|
-
transaction: {
|
|
15458
|
-
kind: string;
|
|
15459
|
-
} & {
|
|
15460
|
-
[k: string]: unknown;
|
|
15461
|
-
};
|
|
15462
|
-
};
|
|
15463
|
-
txSignatures: string[];
|
|
14484
|
+
function?: string | null | undefined;
|
|
14485
|
+
error_code?: string | null | undefined;
|
|
14486
|
+
line?: number | null | undefined;
|
|
14487
|
+
module_id?: string | null | undefined;
|
|
15464
14488
|
} | null | undefined;
|
|
15465
14489
|
dependencies?: string[] | undefined;
|
|
15466
14490
|
eventsDigest?: string | null | undefined;
|
|
15467
14491
|
modifiedAtVersions?: {
|
|
15468
14492
|
objectId: string;
|
|
15469
|
-
sequenceNumber: string;
|
|
14493
|
+
sequenceNumber: string | number;
|
|
15470
14494
|
}[] | undefined;
|
|
15471
14495
|
sharedObjects?: {
|
|
15472
14496
|
version: string | number;
|
|
@@ -15504,7 +14528,7 @@ export declare const AccountOperationOutputWrappedSchema: z.ZodObject<{
|
|
|
15504
14528
|
events?: ({
|
|
15505
14529
|
type: string;
|
|
15506
14530
|
id: {
|
|
15507
|
-
eventSeq: string;
|
|
14531
|
+
eventSeq: string | number;
|
|
15508
14532
|
txDigest: string;
|
|
15509
14533
|
};
|
|
15510
14534
|
bcsEncoding: "base64";
|
|
@@ -15517,7 +14541,7 @@ export declare const AccountOperationOutputWrappedSchema: z.ZodObject<{
|
|
|
15517
14541
|
} | {
|
|
15518
14542
|
type: string;
|
|
15519
14543
|
id: {
|
|
15520
|
-
eventSeq: string;
|
|
14544
|
+
eventSeq: string | number;
|
|
15521
14545
|
txDigest: string;
|
|
15522
14546
|
};
|
|
15523
14547
|
bcsEncoding: "base58";
|
|
@@ -15801,32 +14825,16 @@ export declare const AccountOperationOutputWrappedSchema: z.ZodObject<{
|
|
|
15801
14825
|
objectId: string;
|
|
15802
14826
|
}[] | undefined;
|
|
15803
14827
|
abortError?: {
|
|
15804
|
-
|
|
15805
|
-
|
|
15806
|
-
|
|
15807
|
-
|
|
15808
|
-
payment: {
|
|
15809
|
-
version: string | number;
|
|
15810
|
-
digest: string;
|
|
15811
|
-
objectId: string;
|
|
15812
|
-
}[];
|
|
15813
|
-
budget: string;
|
|
15814
|
-
price: string;
|
|
15815
|
-
};
|
|
15816
|
-
messageVersion: "v1";
|
|
15817
|
-
transaction: {
|
|
15818
|
-
kind: string;
|
|
15819
|
-
} & {
|
|
15820
|
-
[k: string]: unknown;
|
|
15821
|
-
};
|
|
15822
|
-
};
|
|
15823
|
-
txSignatures: string[];
|
|
14828
|
+
function?: string | null | undefined;
|
|
14829
|
+
error_code?: string | null | undefined;
|
|
14830
|
+
line?: number | null | undefined;
|
|
14831
|
+
module_id?: string | null | undefined;
|
|
15824
14832
|
} | null | undefined;
|
|
15825
14833
|
dependencies?: string[] | undefined;
|
|
15826
14834
|
eventsDigest?: string | null | undefined;
|
|
15827
14835
|
modifiedAtVersions?: {
|
|
15828
14836
|
objectId: string;
|
|
15829
|
-
sequenceNumber: string;
|
|
14837
|
+
sequenceNumber: string | number;
|
|
15830
14838
|
}[] | undefined;
|
|
15831
14839
|
sharedObjects?: {
|
|
15832
14840
|
version: string | number;
|
|
@@ -15864,7 +14872,7 @@ export declare const AccountOperationOutputWrappedSchema: z.ZodObject<{
|
|
|
15864
14872
|
events?: ({
|
|
15865
14873
|
type: string;
|
|
15866
14874
|
id: {
|
|
15867
|
-
eventSeq: string;
|
|
14875
|
+
eventSeq: string | number;
|
|
15868
14876
|
txDigest: string;
|
|
15869
14877
|
};
|
|
15870
14878
|
bcsEncoding: "base64";
|
|
@@ -15877,7 +14885,7 @@ export declare const AccountOperationOutputWrappedSchema: z.ZodObject<{
|
|
|
15877
14885
|
} | {
|
|
15878
14886
|
type: string;
|
|
15879
14887
|
id: {
|
|
15880
|
-
eventSeq: string;
|
|
14888
|
+
eventSeq: string | number;
|
|
15881
14889
|
txDigest: string;
|
|
15882
14890
|
};
|
|
15883
14891
|
bcsEncoding: "base58";
|
|
@@ -16161,32 +15169,16 @@ export declare const AccountOperationOutputWrappedSchema: z.ZodObject<{
|
|
|
16161
15169
|
objectId: string;
|
|
16162
15170
|
}[] | undefined;
|
|
16163
15171
|
abortError?: {
|
|
16164
|
-
|
|
16165
|
-
|
|
16166
|
-
|
|
16167
|
-
|
|
16168
|
-
payment: {
|
|
16169
|
-
version: string | number;
|
|
16170
|
-
digest: string;
|
|
16171
|
-
objectId: string;
|
|
16172
|
-
}[];
|
|
16173
|
-
budget: string;
|
|
16174
|
-
price: string;
|
|
16175
|
-
};
|
|
16176
|
-
messageVersion: "v1";
|
|
16177
|
-
transaction: {
|
|
16178
|
-
kind: string;
|
|
16179
|
-
} & {
|
|
16180
|
-
[k: string]: unknown;
|
|
16181
|
-
};
|
|
16182
|
-
};
|
|
16183
|
-
txSignatures: string[];
|
|
15172
|
+
function?: string | null | undefined;
|
|
15173
|
+
error_code?: string | null | undefined;
|
|
15174
|
+
line?: number | null | undefined;
|
|
15175
|
+
module_id?: string | null | undefined;
|
|
16184
15176
|
} | null | undefined;
|
|
16185
15177
|
dependencies?: string[] | undefined;
|
|
16186
15178
|
eventsDigest?: string | null | undefined;
|
|
16187
15179
|
modifiedAtVersions?: {
|
|
16188
15180
|
objectId: string;
|
|
16189
|
-
sequenceNumber: string;
|
|
15181
|
+
sequenceNumber: string | number;
|
|
16190
15182
|
}[] | undefined;
|
|
16191
15183
|
sharedObjects?: {
|
|
16192
15184
|
version: string | number;
|
|
@@ -16224,7 +15216,7 @@ export declare const AccountOperationOutputWrappedSchema: z.ZodObject<{
|
|
|
16224
15216
|
events?: ({
|
|
16225
15217
|
type: string;
|
|
16226
15218
|
id: {
|
|
16227
|
-
eventSeq: string;
|
|
15219
|
+
eventSeq: string | number;
|
|
16228
15220
|
txDigest: string;
|
|
16229
15221
|
};
|
|
16230
15222
|
bcsEncoding: "base64";
|
|
@@ -16237,7 +15229,7 @@ export declare const AccountOperationOutputWrappedSchema: z.ZodObject<{
|
|
|
16237
15229
|
} | {
|
|
16238
15230
|
type: string;
|
|
16239
15231
|
id: {
|
|
16240
|
-
eventSeq: string;
|
|
15232
|
+
eventSeq: string | number;
|
|
16241
15233
|
txDigest: string;
|
|
16242
15234
|
};
|
|
16243
15235
|
bcsEncoding: "base58";
|
|
@@ -16532,32 +15524,16 @@ export declare const AccountOperationOutputWrappedSchema: z.ZodObject<{
|
|
|
16532
15524
|
objectId: string;
|
|
16533
15525
|
}[] | undefined;
|
|
16534
15526
|
abortError?: {
|
|
16535
|
-
|
|
16536
|
-
|
|
16537
|
-
|
|
16538
|
-
|
|
16539
|
-
payment: {
|
|
16540
|
-
version: string | number;
|
|
16541
|
-
digest: string;
|
|
16542
|
-
objectId: string;
|
|
16543
|
-
}[];
|
|
16544
|
-
budget: string;
|
|
16545
|
-
price: string;
|
|
16546
|
-
};
|
|
16547
|
-
messageVersion: "v1";
|
|
16548
|
-
transaction: {
|
|
16549
|
-
kind: string;
|
|
16550
|
-
} & {
|
|
16551
|
-
[k: string]: unknown;
|
|
16552
|
-
};
|
|
16553
|
-
};
|
|
16554
|
-
txSignatures: string[];
|
|
15527
|
+
function?: string | null | undefined;
|
|
15528
|
+
error_code?: string | null | undefined;
|
|
15529
|
+
line?: number | null | undefined;
|
|
15530
|
+
module_id?: string | null | undefined;
|
|
16555
15531
|
} | null | undefined;
|
|
16556
15532
|
dependencies?: string[] | undefined;
|
|
16557
15533
|
eventsDigest?: string | null | undefined;
|
|
16558
15534
|
modifiedAtVersions?: {
|
|
16559
15535
|
objectId: string;
|
|
16560
|
-
sequenceNumber: string;
|
|
15536
|
+
sequenceNumber: string | number;
|
|
16561
15537
|
}[] | undefined;
|
|
16562
15538
|
sharedObjects?: {
|
|
16563
15539
|
version: string | number;
|
|
@@ -16595,7 +15571,7 @@ export declare const AccountOperationOutputWrappedSchema: z.ZodObject<{
|
|
|
16595
15571
|
events?: ({
|
|
16596
15572
|
type: string;
|
|
16597
15573
|
id: {
|
|
16598
|
-
eventSeq: string;
|
|
15574
|
+
eventSeq: string | number;
|
|
16599
15575
|
txDigest: string;
|
|
16600
15576
|
};
|
|
16601
15577
|
bcsEncoding: "base64";
|
|
@@ -16608,7 +15584,7 @@ export declare const AccountOperationOutputWrappedSchema: z.ZodObject<{
|
|
|
16608
15584
|
} | {
|
|
16609
15585
|
type: string;
|
|
16610
15586
|
id: {
|
|
16611
|
-
eventSeq: string;
|
|
15587
|
+
eventSeq: string | number;
|
|
16612
15588
|
txDigest: string;
|
|
16613
15589
|
};
|
|
16614
15590
|
bcsEncoding: "base58";
|
|
@@ -16897,32 +15873,16 @@ export declare const AccountOperationOutputWrappedSchema: z.ZodObject<{
|
|
|
16897
15873
|
objectId: string;
|
|
16898
15874
|
}[] | undefined;
|
|
16899
15875
|
abortError?: {
|
|
16900
|
-
|
|
16901
|
-
|
|
16902
|
-
|
|
16903
|
-
|
|
16904
|
-
payment: {
|
|
16905
|
-
version: string | number;
|
|
16906
|
-
digest: string;
|
|
16907
|
-
objectId: string;
|
|
16908
|
-
}[];
|
|
16909
|
-
budget: string;
|
|
16910
|
-
price: string;
|
|
16911
|
-
};
|
|
16912
|
-
messageVersion: "v1";
|
|
16913
|
-
transaction: {
|
|
16914
|
-
kind: string;
|
|
16915
|
-
} & {
|
|
16916
|
-
[k: string]: unknown;
|
|
16917
|
-
};
|
|
16918
|
-
};
|
|
16919
|
-
txSignatures: string[];
|
|
15876
|
+
function?: string | null | undefined;
|
|
15877
|
+
error_code?: string | null | undefined;
|
|
15878
|
+
line?: number | null | undefined;
|
|
15879
|
+
module_id?: string | null | undefined;
|
|
16920
15880
|
} | null | undefined;
|
|
16921
15881
|
dependencies?: string[] | undefined;
|
|
16922
15882
|
eventsDigest?: string | null | undefined;
|
|
16923
15883
|
modifiedAtVersions?: {
|
|
16924
15884
|
objectId: string;
|
|
16925
|
-
sequenceNumber: string;
|
|
15885
|
+
sequenceNumber: string | number;
|
|
16926
15886
|
}[] | undefined;
|
|
16927
15887
|
sharedObjects?: {
|
|
16928
15888
|
version: string | number;
|
|
@@ -16960,7 +15920,7 @@ export declare const AccountOperationOutputWrappedSchema: z.ZodObject<{
|
|
|
16960
15920
|
events?: ({
|
|
16961
15921
|
type: string;
|
|
16962
15922
|
id: {
|
|
16963
|
-
eventSeq: string;
|
|
15923
|
+
eventSeq: string | number;
|
|
16964
15924
|
txDigest: string;
|
|
16965
15925
|
};
|
|
16966
15926
|
bcsEncoding: "base64";
|
|
@@ -16973,7 +15933,7 @@ export declare const AccountOperationOutputWrappedSchema: z.ZodObject<{
|
|
|
16973
15933
|
} | {
|
|
16974
15934
|
type: string;
|
|
16975
15935
|
id: {
|
|
16976
|
-
eventSeq: string;
|
|
15936
|
+
eventSeq: string | number;
|
|
16977
15937
|
txDigest: string;
|
|
16978
15938
|
};
|
|
16979
15939
|
bcsEncoding: "base58";
|
|
@@ -17480,7 +16440,7 @@ export type GasCostSummary = z.infer<typeof GasCostSummarySchema>;
|
|
|
17480
16440
|
export type WowObjectRef = z.infer<typeof WowObjectRefSchema>;
|
|
17481
16441
|
export type OwnedObjectRef = z.infer<typeof OwnedObjectRefSchema>;
|
|
17482
16442
|
export type TransactionBlockEffectsModifiedAtVersions = z.infer<typeof TransactionBlockEffectsModifiedAtVersionsSchema>;
|
|
17483
|
-
export type WowMoveAbort = z.infer<typeof
|
|
16443
|
+
export type WowMoveAbort = z.infer<typeof WowMoveAbortSchema>;
|
|
17484
16444
|
export type ExecutionStatus = z.infer<typeof ExecutionStatusSchema>;
|
|
17485
16445
|
export type WowGasData = z.infer<typeof WowGasDataSchema>;
|
|
17486
16446
|
export type WowTransactionBlockKind = z.infer<typeof WowTransactionBlockKindSchema>;
|
|
@@ -17488,7 +16448,7 @@ export type TransactionBlockData = z.infer<typeof TransactionBlockDataSchema>;
|
|
|
17488
16448
|
export type WowTransactionBlock = z.infer<typeof WowTransactionBlockSchema>;
|
|
17489
16449
|
export type WowObjectChange = z.infer<typeof WowObjectChangeSchema>;
|
|
17490
16450
|
export type TransactionEffects = z.infer<typeof TransactionEffectsSchema>;
|
|
17491
|
-
export type WowTransactionBlockResponse = z.infer<typeof
|
|
16451
|
+
export type WowTransactionBlockResponse = z.infer<typeof WowTransactionBlockResponseSchema>;
|
|
17492
16452
|
export type MarkParam = z.infer<typeof MarkParamSchema>;
|
|
17493
16453
|
export type MarkData = z.infer<typeof MarkDataSchema>;
|
|
17494
16454
|
export type InfoDataInner = z.infer<typeof InfoDataInnerSchema>;
|