gondi 0.24.0 → 0.24.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/src/clients/contracts/MslV6.d.ts +0 -112
- package/dist/src/gondi.d.ts +41 -153
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +3 -3
|
@@ -81,118 +81,6 @@ export declare class MslV6 extends BaseContract<typeof multiSourceLoanAbiV6 | ty
|
|
|
81
81
|
}): Promise<{
|
|
82
82
|
txHash: `0x${string}`;
|
|
83
83
|
waitTxInBlock: () => Promise<{
|
|
84
|
-
blobGasPrice?: bigint | undefined;
|
|
85
|
-
blobGasUsed?: bigint | undefined;
|
|
86
|
-
blockHash: `0x${string}`;
|
|
87
|
-
blockNumber: bigint;
|
|
88
|
-
contractAddress: `0x${string}` | null | undefined;
|
|
89
|
-
cumulativeGasUsed: bigint;
|
|
90
|
-
effectiveGasPrice: bigint;
|
|
91
|
-
from: `0x${string}`;
|
|
92
|
-
gasUsed: bigint;
|
|
93
|
-
logs: import("viem").Log<bigint, number, false>[];
|
|
94
|
-
logsBloom: `0x${string}`;
|
|
95
|
-
root?: `0x${string}` | undefined;
|
|
96
|
-
status: "success" | "reverted";
|
|
97
|
-
to: `0x${string}` | null;
|
|
98
|
-
transactionHash: `0x${string}`;
|
|
99
|
-
transactionIndex: number;
|
|
100
|
-
type: import("viem").TransactionType;
|
|
101
|
-
length: number;
|
|
102
|
-
toString(): string;
|
|
103
|
-
toLocaleString(): string;
|
|
104
|
-
concat(...items: ConcatArray<unknown>[]): unknown[];
|
|
105
|
-
concat(...items: unknown[]): unknown[];
|
|
106
|
-
join(separator?: string | undefined): string;
|
|
107
|
-
slice(start?: number | undefined, end?: number | undefined): unknown[];
|
|
108
|
-
indexOf(searchElement: unknown, fromIndex?: number | undefined): number;
|
|
109
|
-
lastIndexOf(searchElement: unknown, fromIndex?: number | undefined): number;
|
|
110
|
-
every<S extends unknown>(predicate: (value: unknown, index: number, array: readonly unknown[]) => value is S, thisArg?: any): this is readonly S[];
|
|
111
|
-
every(predicate: (value: unknown, index: number, array: readonly unknown[]) => unknown, thisArg?: any): boolean;
|
|
112
|
-
some(predicate: (value: unknown, index: number, array: readonly unknown[]) => unknown, thisArg?: any): boolean;
|
|
113
|
-
forEach(callbackfn: (value: unknown, index: number, array: readonly unknown[]) => void, thisArg?: any): void;
|
|
114
|
-
map<U>(callbackfn: (value: unknown, index: number, array: readonly unknown[]) => U, thisArg?: any): U[];
|
|
115
|
-
filter<S_1 extends unknown>(predicate: (value: unknown, index: number, array: readonly unknown[]) => value is S_1, thisArg?: any): S_1[];
|
|
116
|
-
filter(predicate: (value: unknown, index: number, array: readonly unknown[]) => unknown, thisArg?: any): unknown[];
|
|
117
|
-
reduce(callbackfn: (previousValue: unknown, currentValue: unknown, currentIndex: number, array: readonly unknown[]) => unknown): unknown;
|
|
118
|
-
reduce(callbackfn: (previousValue: unknown, currentValue: unknown, currentIndex: number, array: readonly unknown[]) => unknown, initialValue: unknown): unknown;
|
|
119
|
-
reduce<U_1>(callbackfn: (previousValue: U_1, currentValue: unknown, currentIndex: number, array: readonly unknown[]) => U_1, initialValue: U_1): U_1;
|
|
120
|
-
reduceRight(callbackfn: (previousValue: unknown, currentValue: unknown, currentIndex: number, array: readonly unknown[]) => unknown): unknown;
|
|
121
|
-
reduceRight(callbackfn: (previousValue: unknown, currentValue: unknown, currentIndex: number, array: readonly unknown[]) => unknown, initialValue: unknown): unknown;
|
|
122
|
-
reduceRight<U_2>(callbackfn: (previousValue: U_2, currentValue: unknown, currentIndex: number, array: readonly unknown[]) => U_2, initialValue: U_2): U_2;
|
|
123
|
-
find<S_2 extends unknown>(predicate: (value: unknown, index: number, obj: readonly unknown[]) => value is S_2, thisArg?: any): S_2 | undefined;
|
|
124
|
-
find(predicate: (value: unknown, index: number, obj: readonly unknown[]) => unknown, thisArg?: any): unknown;
|
|
125
|
-
findIndex(predicate: (value: unknown, index: number, obj: readonly unknown[]) => unknown, thisArg?: any): number;
|
|
126
|
-
entries(): IterableIterator<[number, unknown]>;
|
|
127
|
-
keys(): IterableIterator<number>;
|
|
128
|
-
values(): IterableIterator<unknown>;
|
|
129
|
-
includes(searchElement: unknown, fromIndex?: number | undefined): boolean;
|
|
130
|
-
flatMap<U_3, This = undefined>(callback: (this: This, value: unknown, index: number, array: unknown[]) => U_3 | readonly U_3[], thisArg?: This | undefined): U_3[];
|
|
131
|
-
flat<A, D extends number = 1>(this: A, depth?: D | undefined): FlatArray<A, D>[];
|
|
132
|
-
at(index: number): unknown;
|
|
133
|
-
findLast<S_3 extends unknown>(predicate: (value: unknown, index: number, array: readonly unknown[]) => value is S_3, thisArg?: any): S_3 | undefined;
|
|
134
|
-
findLast(predicate: (value: unknown, index: number, array: readonly unknown[]) => unknown, thisArg?: any): unknown;
|
|
135
|
-
findLastIndex(predicate: (value: unknown, index: number, array: readonly unknown[]) => unknown, thisArg?: any): number;
|
|
136
|
-
toReversed(): unknown[];
|
|
137
|
-
toSorted(compareFn?: ((a: unknown, b: unknown) => number) | undefined): unknown[];
|
|
138
|
-
toSpliced(start: number, deleteCount: number, ...items: unknown[]): unknown[];
|
|
139
|
-
toSpliced(start: number, deleteCount?: number | undefined): unknown[];
|
|
140
|
-
with(index: number, value: unknown): unknown[];
|
|
141
|
-
[Symbol.iterator](): IterableIterator<unknown>;
|
|
142
|
-
[Symbol.unscopables]: {
|
|
143
|
-
readonly [x: number]: boolean | undefined;
|
|
144
|
-
readonly length?: boolean | undefined;
|
|
145
|
-
toString?: boolean | undefined;
|
|
146
|
-
toLocaleString?: boolean | undefined;
|
|
147
|
-
concat?: boolean | undefined;
|
|
148
|
-
join?: boolean | undefined;
|
|
149
|
-
slice?: boolean | undefined;
|
|
150
|
-
indexOf?: boolean | undefined;
|
|
151
|
-
lastIndexOf?: boolean | undefined;
|
|
152
|
-
every?: boolean | undefined;
|
|
153
|
-
some?: boolean | undefined;
|
|
154
|
-
forEach?: boolean | undefined;
|
|
155
|
-
map?: boolean | undefined;
|
|
156
|
-
filter?: boolean | undefined;
|
|
157
|
-
reduce?: boolean | undefined;
|
|
158
|
-
reduceRight?: boolean | undefined;
|
|
159
|
-
find?: boolean | undefined;
|
|
160
|
-
findIndex?: boolean | undefined;
|
|
161
|
-
entries?: boolean | undefined;
|
|
162
|
-
keys?: boolean | undefined;
|
|
163
|
-
values?: boolean | undefined;
|
|
164
|
-
includes?: boolean | undefined;
|
|
165
|
-
flatMap?: boolean | undefined;
|
|
166
|
-
flat?: boolean | undefined;
|
|
167
|
-
at?: boolean | undefined;
|
|
168
|
-
findLast?: boolean | undefined;
|
|
169
|
-
findLastIndex?: boolean | undefined;
|
|
170
|
-
toReversed?: boolean | undefined;
|
|
171
|
-
toSorted?: boolean | undefined;
|
|
172
|
-
toSpliced?: boolean | undefined;
|
|
173
|
-
with?: boolean | undefined;
|
|
174
|
-
[Symbol.iterator]?: boolean | undefined;
|
|
175
|
-
readonly [Symbol.unscopables]?: boolean | undefined;
|
|
176
|
-
};
|
|
177
|
-
} | {
|
|
178
|
-
blobGasPrice?: bigint | undefined;
|
|
179
|
-
blobGasUsed?: bigint | undefined;
|
|
180
|
-
blockHash: `0x${string}`;
|
|
181
|
-
blockNumber: bigint;
|
|
182
|
-
contractAddress: `0x${string}` | null | undefined;
|
|
183
|
-
cumulativeGasUsed: bigint;
|
|
184
|
-
effectiveGasPrice: bigint;
|
|
185
|
-
from: `0x${string}`;
|
|
186
|
-
gasUsed: bigint;
|
|
187
|
-
logs: import("viem").Log<bigint, number, false>[];
|
|
188
|
-
logsBloom: `0x${string}`;
|
|
189
|
-
root?: `0x${string}` | undefined;
|
|
190
|
-
status: "success" | "reverted";
|
|
191
|
-
to: `0x${string}` | null;
|
|
192
|
-
transactionHash: `0x${string}`;
|
|
193
|
-
transactionIndex: number;
|
|
194
|
-
type: import("viem").TransactionType;
|
|
195
|
-
} | {
|
|
196
84
|
blobGasPrice?: bigint | undefined;
|
|
197
85
|
blobGasUsed?: bigint | undefined;
|
|
198
86
|
blockHash: `0x${string}`;
|
package/dist/src/gondi.d.ts
CHANGED
|
@@ -218,7 +218,7 @@ export declare class Gondi {
|
|
|
218
218
|
logs: import("viem").Log<bigint, number, false>[];
|
|
219
219
|
logsBloom: `0x${string}`;
|
|
220
220
|
root?: `0x${string}` | undefined;
|
|
221
|
-
status: "success" | "reverted";
|
|
221
|
+
status: "success" | "reverted"; /** @internal */
|
|
222
222
|
to: `0x${string}` | null;
|
|
223
223
|
transactionHash: `0x${string}`;
|
|
224
224
|
transactionIndex: number;
|
|
@@ -238,7 +238,7 @@ export declare class Gondi {
|
|
|
238
238
|
logs: import("viem").Log<bigint, number, false>[];
|
|
239
239
|
logsBloom: `0x${string}`;
|
|
240
240
|
root?: `0x${string}` | undefined;
|
|
241
|
-
status: "success" | "reverted";
|
|
241
|
+
status: "success" | "reverted"; /** @internal */
|
|
242
242
|
to: `0x${string}` | null;
|
|
243
243
|
transactionHash: `0x${string}`;
|
|
244
244
|
transactionIndex: number;
|
|
@@ -265,119 +265,7 @@ export declare class Gondi {
|
|
|
265
265
|
logs: import("viem").Log<bigint, number, false>[];
|
|
266
266
|
logsBloom: `0x${string}`;
|
|
267
267
|
root?: `0x${string}` | undefined;
|
|
268
|
-
status: "success" | "reverted";
|
|
269
|
-
to: `0x${string}` | null;
|
|
270
|
-
transactionHash: `0x${string}`;
|
|
271
|
-
transactionIndex: number;
|
|
272
|
-
type: import("viem").TransactionType;
|
|
273
|
-
length: number;
|
|
274
|
-
toString(): string;
|
|
275
|
-
toLocaleString(): string;
|
|
276
|
-
concat(...items: ConcatArray<unknown>[]): unknown[];
|
|
277
|
-
concat(...items: unknown[]): unknown[];
|
|
278
|
-
join(separator?: string | undefined): string;
|
|
279
|
-
slice(start?: number | undefined, end?: number | undefined): unknown[];
|
|
280
|
-
indexOf(searchElement: unknown, fromIndex?: number | undefined): number;
|
|
281
|
-
lastIndexOf(searchElement: unknown, fromIndex?: number | undefined): number;
|
|
282
|
-
every<S extends unknown>(predicate: (value: unknown, index: number, array: readonly unknown[]) => value is S, thisArg?: any): this is readonly S[];
|
|
283
|
-
every(predicate: (value: unknown, index: number, array: readonly unknown[]) => unknown, thisArg?: any): boolean;
|
|
284
|
-
some(predicate: (value: unknown, index: number, array: readonly unknown[]) => unknown, thisArg?: any): boolean;
|
|
285
|
-
forEach(callbackfn: (value: unknown, index: number, array: readonly unknown[]) => void, thisArg?: any): void;
|
|
286
|
-
map<U>(callbackfn: (value: unknown, index: number, array: readonly unknown[]) => U, thisArg?: any): U[];
|
|
287
|
-
filter<S_1 extends unknown>(predicate: (value: unknown, index: number, array: readonly unknown[]) => value is S_1, thisArg?: any): S_1[];
|
|
288
|
-
filter(predicate: (value: unknown, index: number, array: readonly unknown[]) => unknown, thisArg?: any): unknown[];
|
|
289
|
-
reduce(callbackfn: (previousValue: unknown, currentValue: unknown, currentIndex: number, array: readonly unknown[]) => unknown): unknown;
|
|
290
|
-
reduce(callbackfn: (previousValue: unknown, currentValue: unknown, currentIndex: number, array: readonly unknown[]) => unknown, initialValue: unknown): unknown;
|
|
291
|
-
reduce<U_1>(callbackfn: (previousValue: U_1, currentValue: unknown, currentIndex: number, array: readonly unknown[]) => U_1, initialValue: U_1): U_1;
|
|
292
|
-
reduceRight(callbackfn: (previousValue: unknown, currentValue: unknown, currentIndex: number, array: readonly unknown[]) => unknown): unknown;
|
|
293
|
-
reduceRight(callbackfn: (previousValue: unknown, currentValue: unknown, currentIndex: number, array: readonly unknown[]) => unknown, initialValue: unknown): unknown;
|
|
294
|
-
reduceRight<U_2>(callbackfn: (previousValue: U_2, currentValue: unknown, currentIndex: number, array: readonly unknown[]) => U_2, initialValue: U_2): U_2;
|
|
295
|
-
find<S_2 extends unknown>(predicate: (value: unknown, index: number, obj: readonly unknown[]) => value is S_2, thisArg?: any): S_2 | undefined;
|
|
296
|
-
find(predicate: (value: unknown, index: number, obj: readonly unknown[]) => unknown, thisArg?: any): unknown;
|
|
297
|
-
findIndex(predicate: (value: unknown, index: number, obj: readonly unknown[]) => unknown, thisArg?: any): number;
|
|
298
|
-
entries(): IterableIterator<[number, unknown]>;
|
|
299
|
-
keys(): IterableIterator<number>;
|
|
300
|
-
values(): IterableIterator<unknown>;
|
|
301
|
-
includes(searchElement: unknown, fromIndex?: number | undefined): boolean;
|
|
302
|
-
flatMap<U_3, This = undefined>(callback: (this: This, value: unknown, index: number, array: unknown[]) => U_3 | readonly U_3[], thisArg?: This | undefined): U_3[];
|
|
303
|
-
flat<A, D extends number = 1>(this: A, depth?: D | undefined): FlatArray<A, D>[];
|
|
304
|
-
at(index: number): unknown;
|
|
305
|
-
findLast<S_3 extends unknown>(predicate: (value: unknown, index: number, array: readonly unknown[]) => value is S_3, thisArg?: any): S_3 | undefined;
|
|
306
|
-
findLast(predicate: (value: unknown, index: number, array: readonly unknown[]) => unknown, thisArg?: any): unknown;
|
|
307
|
-
findLastIndex(predicate: (value: unknown, index: number, array: readonly unknown[]) => unknown, thisArg?: any): number;
|
|
308
|
-
toReversed(): unknown[];
|
|
309
|
-
toSorted(compareFn?: ((a: unknown, b: unknown) => number) | undefined): unknown[];
|
|
310
|
-
toSpliced(start: number, deleteCount: number, ...items: unknown[]): unknown[];
|
|
311
|
-
toSpliced(start: number, deleteCount?: number | undefined): unknown[];
|
|
312
|
-
with(index: number, value: unknown): unknown[];
|
|
313
|
-
[Symbol.iterator](): IterableIterator<unknown>;
|
|
314
|
-
[Symbol.unscopables]: {
|
|
315
|
-
readonly [x: number]: boolean | undefined;
|
|
316
|
-
readonly length?: boolean | undefined;
|
|
317
|
-
toString?: boolean | undefined;
|
|
318
|
-
toLocaleString?: boolean | undefined;
|
|
319
|
-
concat?: boolean | undefined;
|
|
320
|
-
join?: boolean | undefined;
|
|
321
|
-
slice?: boolean | undefined;
|
|
322
|
-
indexOf?: boolean | undefined;
|
|
323
|
-
lastIndexOf?: boolean | undefined;
|
|
324
|
-
every?: boolean | undefined;
|
|
325
|
-
some?: boolean | undefined;
|
|
326
|
-
forEach?: boolean | undefined;
|
|
327
|
-
map?: boolean | undefined;
|
|
328
|
-
filter?: boolean | undefined;
|
|
329
|
-
reduce?: boolean | undefined;
|
|
330
|
-
reduceRight?: boolean | undefined;
|
|
331
|
-
find?: boolean | undefined;
|
|
332
|
-
findIndex?: boolean | undefined;
|
|
333
|
-
entries?: boolean | undefined;
|
|
334
|
-
keys?: boolean | undefined;
|
|
335
|
-
values?: boolean | undefined;
|
|
336
|
-
includes?: boolean | undefined;
|
|
337
|
-
flatMap?: boolean | undefined;
|
|
338
|
-
flat?: boolean | undefined;
|
|
339
|
-
at?: boolean | undefined;
|
|
340
|
-
findLast?: boolean | undefined;
|
|
341
|
-
findLastIndex?: boolean | undefined;
|
|
342
|
-
toReversed?: boolean | undefined;
|
|
343
|
-
toSorted?: boolean | undefined;
|
|
344
|
-
toSpliced?: boolean | undefined;
|
|
345
|
-
with?: boolean | undefined;
|
|
346
|
-
[Symbol.iterator]?: boolean | undefined;
|
|
347
|
-
readonly [Symbol.unscopables]?: boolean | undefined;
|
|
348
|
-
};
|
|
349
|
-
} | {
|
|
350
|
-
blobGasPrice?: bigint | undefined;
|
|
351
|
-
blobGasUsed?: bigint | undefined;
|
|
352
|
-
blockHash: `0x${string}`;
|
|
353
|
-
blockNumber: bigint;
|
|
354
|
-
contractAddress: `0x${string}` | null | undefined;
|
|
355
|
-
cumulativeGasUsed: bigint;
|
|
356
|
-
effectiveGasPrice: bigint;
|
|
357
|
-
from: `0x${string}`;
|
|
358
|
-
gasUsed: bigint;
|
|
359
|
-
logs: import("viem").Log<bigint, number, false>[];
|
|
360
|
-
logsBloom: `0x${string}`;
|
|
361
|
-
root?: `0x${string}` | undefined;
|
|
362
|
-
status: "success" | "reverted";
|
|
363
|
-
to: `0x${string}` | null;
|
|
364
|
-
transactionHash: `0x${string}`;
|
|
365
|
-
transactionIndex: number;
|
|
366
|
-
type: import("viem").TransactionType;
|
|
367
|
-
} | {
|
|
368
|
-
blobGasPrice?: bigint | undefined;
|
|
369
|
-
blobGasUsed?: bigint | undefined;
|
|
370
|
-
blockHash: `0x${string}`;
|
|
371
|
-
blockNumber: bigint;
|
|
372
|
-
contractAddress: `0x${string}` | null | undefined;
|
|
373
|
-
cumulativeGasUsed: bigint;
|
|
374
|
-
effectiveGasPrice: bigint;
|
|
375
|
-
from: `0x${string}`;
|
|
376
|
-
gasUsed: bigint;
|
|
377
|
-
logs: import("viem").Log<bigint, number, false>[];
|
|
378
|
-
logsBloom: `0x${string}`;
|
|
379
|
-
root?: `0x${string}` | undefined;
|
|
380
|
-
status: "success" | "reverted";
|
|
268
|
+
status: "success" | "reverted"; /** @internal */
|
|
381
269
|
to: `0x${string}` | null;
|
|
382
270
|
transactionHash: `0x${string}`;
|
|
383
271
|
transactionIndex: number;
|
|
@@ -448,7 +336,7 @@ export declare class Gondi {
|
|
|
448
336
|
logs: import("viem").Log<bigint, number, false>[];
|
|
449
337
|
logsBloom: `0x${string}`;
|
|
450
338
|
root?: `0x${string}` | undefined;
|
|
451
|
-
status: "success" | "reverted";
|
|
339
|
+
status: "success" | "reverted"; /** @internal */
|
|
452
340
|
to: `0x${string}` | null;
|
|
453
341
|
transactionHash: `0x${string}`;
|
|
454
342
|
transactionIndex: number;
|
|
@@ -468,7 +356,7 @@ export declare class Gondi {
|
|
|
468
356
|
logs: import("viem").Log<bigint, number, false>[];
|
|
469
357
|
logsBloom: `0x${string}`;
|
|
470
358
|
root?: `0x${string}` | undefined;
|
|
471
|
-
status: "success" | "reverted";
|
|
359
|
+
status: "success" | "reverted"; /** @internal */
|
|
472
360
|
to: `0x${string}` | null;
|
|
473
361
|
transactionHash: `0x${string}`;
|
|
474
362
|
transactionIndex: number;
|
|
@@ -509,7 +397,7 @@ export declare class Gondi {
|
|
|
509
397
|
logs: import("viem").Log<bigint, number, false>[];
|
|
510
398
|
logsBloom: `0x${string}`;
|
|
511
399
|
root?: `0x${string}` | undefined;
|
|
512
|
-
status: "success" | "reverted";
|
|
400
|
+
status: "success" | "reverted"; /** @internal */
|
|
513
401
|
to: `0x${string}` | null;
|
|
514
402
|
transactionHash: `0x${string}`;
|
|
515
403
|
transactionIndex: number;
|
|
@@ -534,7 +422,7 @@ export declare class Gondi {
|
|
|
534
422
|
logs: import("viem").Log<bigint, number, false>[];
|
|
535
423
|
logsBloom: `0x${string}`;
|
|
536
424
|
root?: `0x${string}` | undefined;
|
|
537
|
-
status: "success" | "reverted";
|
|
425
|
+
status: "success" | "reverted"; /** @internal */
|
|
538
426
|
to: `0x${string}` | null;
|
|
539
427
|
transactionHash: `0x${string}`;
|
|
540
428
|
transactionIndex: number;
|
|
@@ -598,7 +486,7 @@ export declare class Gondi {
|
|
|
598
486
|
logs: import("viem").Log<bigint, number, false>[];
|
|
599
487
|
logsBloom: `0x${string}`;
|
|
600
488
|
root?: `0x${string}` | undefined;
|
|
601
|
-
status: "success" | "reverted";
|
|
489
|
+
status: "success" | "reverted"; /** @internal */
|
|
602
490
|
to: `0x${string}` | null;
|
|
603
491
|
transactionHash: `0x${string}`;
|
|
604
492
|
transactionIndex: number;
|
|
@@ -645,7 +533,7 @@ export declare class Gondi {
|
|
|
645
533
|
logs: import("viem").Log<bigint, number, false>[];
|
|
646
534
|
logsBloom: `0x${string}`;
|
|
647
535
|
root?: `0x${string}` | undefined;
|
|
648
|
-
status: "success" | "reverted";
|
|
536
|
+
status: "success" | "reverted"; /** @internal */
|
|
649
537
|
to: `0x${string}` | null;
|
|
650
538
|
transactionHash: `0x${string}`;
|
|
651
539
|
transactionIndex: number;
|
|
@@ -723,7 +611,7 @@ export declare class Gondi {
|
|
|
723
611
|
logs: import("viem").Log<bigint, number, false>[];
|
|
724
612
|
logsBloom: `0x${string}`;
|
|
725
613
|
root?: `0x${string}` | undefined;
|
|
726
|
-
status: "success" | "reverted";
|
|
614
|
+
status: "success" | "reverted"; /** @internal */
|
|
727
615
|
to: `0x${string}` | null;
|
|
728
616
|
transactionHash: `0x${string}`;
|
|
729
617
|
transactionIndex: number;
|
|
@@ -744,7 +632,7 @@ export declare class Gondi {
|
|
|
744
632
|
logs: import("viem").Log<bigint, number, false>[];
|
|
745
633
|
logsBloom: `0x${string}`;
|
|
746
634
|
root?: `0x${string}` | undefined;
|
|
747
|
-
status: "success" | "reverted";
|
|
635
|
+
status: "success" | "reverted"; /** @internal */
|
|
748
636
|
to: `0x${string}` | null;
|
|
749
637
|
transactionHash: `0x${string}`;
|
|
750
638
|
transactionIndex: number;
|
|
@@ -1480,7 +1368,7 @@ export declare class Gondi {
|
|
|
1480
1368
|
logs: import("viem").Log<bigint, number, false>[];
|
|
1481
1369
|
logsBloom: `0x${string}`;
|
|
1482
1370
|
root?: `0x${string}` | undefined;
|
|
1483
|
-
status: "success" | "reverted";
|
|
1371
|
+
status: "success" | "reverted"; /** @internal */
|
|
1484
1372
|
to: `0x${string}` | null;
|
|
1485
1373
|
transactionHash: `0x${string}`;
|
|
1486
1374
|
transactionIndex: number;
|
|
@@ -1544,7 +1432,7 @@ export declare class Gondi {
|
|
|
1544
1432
|
logs: import("viem").Log<bigint, number, false>[];
|
|
1545
1433
|
logsBloom: `0x${string}`;
|
|
1546
1434
|
root?: `0x${string}` | undefined;
|
|
1547
|
-
status: "success" | "reverted";
|
|
1435
|
+
status: "success" | "reverted"; /** @internal */
|
|
1548
1436
|
to: `0x${string}` | null;
|
|
1549
1437
|
transactionHash: `0x${string}`;
|
|
1550
1438
|
transactionIndex: number;
|
|
@@ -1591,7 +1479,7 @@ export declare class Gondi {
|
|
|
1591
1479
|
logs: import("viem").Log<bigint, number, false>[];
|
|
1592
1480
|
logsBloom: `0x${string}`;
|
|
1593
1481
|
root?: `0x${string}` | undefined;
|
|
1594
|
-
status: "success" | "reverted";
|
|
1482
|
+
status: "success" | "reverted"; /** @internal */
|
|
1595
1483
|
to: `0x${string}` | null;
|
|
1596
1484
|
transactionHash: `0x${string}`;
|
|
1597
1485
|
transactionIndex: number;
|
|
@@ -1655,7 +1543,7 @@ export declare class Gondi {
|
|
|
1655
1543
|
logs: import("viem").Log<bigint, number, false>[];
|
|
1656
1544
|
logsBloom: `0x${string}`;
|
|
1657
1545
|
root?: `0x${string}` | undefined;
|
|
1658
|
-
status: "success" | "reverted";
|
|
1546
|
+
status: "success" | "reverted"; /** @internal */
|
|
1659
1547
|
to: `0x${string}` | null;
|
|
1660
1548
|
transactionHash: `0x${string}`;
|
|
1661
1549
|
transactionIndex: number;
|
|
@@ -1702,7 +1590,7 @@ export declare class Gondi {
|
|
|
1702
1590
|
logs: import("viem").Log<bigint, number, false>[];
|
|
1703
1591
|
logsBloom: `0x${string}`;
|
|
1704
1592
|
root?: `0x${string}` | undefined;
|
|
1705
|
-
status: "success" | "reverted";
|
|
1593
|
+
status: "success" | "reverted"; /** @internal */
|
|
1706
1594
|
to: `0x${string}` | null;
|
|
1707
1595
|
transactionHash: `0x${string}`;
|
|
1708
1596
|
transactionIndex: number;
|
|
@@ -1776,7 +1664,7 @@ export declare class Gondi {
|
|
|
1776
1664
|
logs: import("viem").Log<bigint, number, false>[];
|
|
1777
1665
|
logsBloom: `0x${string}`;
|
|
1778
1666
|
root?: `0x${string}` | undefined;
|
|
1779
|
-
status: "success" | "reverted";
|
|
1667
|
+
status: "success" | "reverted"; /** @internal */
|
|
1780
1668
|
to: `0x${string}` | null;
|
|
1781
1669
|
transactionHash: `0x${string}`;
|
|
1782
1670
|
transactionIndex: number;
|
|
@@ -1805,7 +1693,7 @@ export declare class Gondi {
|
|
|
1805
1693
|
logs: import("viem").Log<bigint, number, false>[];
|
|
1806
1694
|
logsBloom: `0x${string}`;
|
|
1807
1695
|
root?: `0x${string}` | undefined;
|
|
1808
|
-
status: "success" | "reverted";
|
|
1696
|
+
status: "success" | "reverted"; /** @internal */
|
|
1809
1697
|
to: `0x${string}` | null;
|
|
1810
1698
|
transactionHash: `0x${string}`;
|
|
1811
1699
|
transactionIndex: number;
|
|
@@ -1849,7 +1737,7 @@ export declare class Gondi {
|
|
|
1849
1737
|
logs: import("viem").Log<bigint, number, false>[];
|
|
1850
1738
|
logsBloom: `0x${string}`;
|
|
1851
1739
|
root?: `0x${string}` | undefined;
|
|
1852
|
-
status: "success" | "reverted";
|
|
1740
|
+
status: "success" | "reverted"; /** @internal */
|
|
1853
1741
|
to: `0x${string}` | null;
|
|
1854
1742
|
transactionHash: `0x${string}`;
|
|
1855
1743
|
transactionIndex: number;
|
|
@@ -1897,7 +1785,7 @@ export declare class Gondi {
|
|
|
1897
1785
|
logs: import("viem").Log<bigint, number, false>[];
|
|
1898
1786
|
logsBloom: `0x${string}`;
|
|
1899
1787
|
root?: `0x${string}` | undefined;
|
|
1900
|
-
status: "success" | "reverted";
|
|
1788
|
+
status: "success" | "reverted"; /** @internal */
|
|
1901
1789
|
to: `0x${string}` | null;
|
|
1902
1790
|
transactionHash: `0x${string}`;
|
|
1903
1791
|
transactionIndex: number;
|
|
@@ -1957,7 +1845,7 @@ export declare class Gondi {
|
|
|
1957
1845
|
logs: import("viem").Log<bigint, number, false>[];
|
|
1958
1846
|
logsBloom: `0x${string}`;
|
|
1959
1847
|
root?: `0x${string}` | undefined;
|
|
1960
|
-
status: "success" | "reverted";
|
|
1848
|
+
status: "success" | "reverted"; /** @internal */
|
|
1961
1849
|
to: `0x${string}` | null;
|
|
1962
1850
|
transactionHash: `0x${string}`;
|
|
1963
1851
|
transactionIndex: number;
|
|
@@ -2027,7 +1915,7 @@ export declare class Gondi {
|
|
|
2027
1915
|
logs: import("viem").Log<bigint, number, false>[];
|
|
2028
1916
|
logsBloom: `0x${string}`;
|
|
2029
1917
|
root?: `0x${string}` | undefined;
|
|
2030
|
-
status: "success" | "reverted";
|
|
1918
|
+
status: "success" | "reverted"; /** @internal */
|
|
2031
1919
|
to: `0x${string}` | null;
|
|
2032
1920
|
transactionHash: `0x${string}`;
|
|
2033
1921
|
transactionIndex: number;
|
|
@@ -2094,7 +1982,7 @@ export declare class Gondi {
|
|
|
2094
1982
|
logs: import("viem").Log<bigint, number, false>[];
|
|
2095
1983
|
logsBloom: `0x${string}`;
|
|
2096
1984
|
root?: `0x${string}` | undefined;
|
|
2097
|
-
status: "success" | "reverted";
|
|
1985
|
+
status: "success" | "reverted"; /** @internal */
|
|
2098
1986
|
to: `0x${string}` | null;
|
|
2099
1987
|
transactionHash: `0x${string}`;
|
|
2100
1988
|
transactionIndex: number;
|
|
@@ -2113,7 +2001,7 @@ export declare class Gondi {
|
|
|
2113
2001
|
logs: import("viem").Log<bigint, number, false>[];
|
|
2114
2002
|
logsBloom: `0x${string}`;
|
|
2115
2003
|
root?: `0x${string}` | undefined;
|
|
2116
|
-
status: "success" | "reverted";
|
|
2004
|
+
status: "success" | "reverted"; /** @internal */
|
|
2117
2005
|
to: `0x${string}` | null;
|
|
2118
2006
|
transactionHash: `0x${string}`;
|
|
2119
2007
|
transactionIndex: number;
|
|
@@ -2141,7 +2029,7 @@ export declare class Gondi {
|
|
|
2141
2029
|
logs: import("viem").Log<bigint, number, false>[];
|
|
2142
2030
|
logsBloom: `0x${string}`;
|
|
2143
2031
|
root?: `0x${string}` | undefined;
|
|
2144
|
-
status: "success" | "reverted";
|
|
2032
|
+
status: "success" | "reverted"; /** @internal */
|
|
2145
2033
|
to: `0x${string}` | null;
|
|
2146
2034
|
transactionHash: `0x${string}`;
|
|
2147
2035
|
transactionIndex: number;
|
|
@@ -2168,7 +2056,7 @@ export declare class Gondi {
|
|
|
2168
2056
|
logs: import("viem").Log<bigint, number, false>[];
|
|
2169
2057
|
logsBloom: `0x${string}`;
|
|
2170
2058
|
root?: `0x${string}` | undefined;
|
|
2171
|
-
status: "success" | "reverted";
|
|
2059
|
+
status: "success" | "reverted"; /** @internal */
|
|
2172
2060
|
to: `0x${string}` | null;
|
|
2173
2061
|
transactionHash: `0x${string}`;
|
|
2174
2062
|
transactionIndex: number;
|
|
@@ -2199,7 +2087,7 @@ export declare class Gondi {
|
|
|
2199
2087
|
logs: import("viem").Log<bigint, number, false>[];
|
|
2200
2088
|
logsBloom: `0x${string}`;
|
|
2201
2089
|
root?: `0x${string}` | undefined;
|
|
2202
|
-
status: "success" | "reverted";
|
|
2090
|
+
status: "success" | "reverted"; /** @internal */
|
|
2203
2091
|
to: `0x${string}` | null;
|
|
2204
2092
|
transactionHash: `0x${string}`;
|
|
2205
2093
|
transactionIndex: number;
|
|
@@ -2228,7 +2116,7 @@ export declare class Gondi {
|
|
|
2228
2116
|
logs: import("viem").Log<bigint, number, false>[];
|
|
2229
2117
|
logsBloom: `0x${string}`;
|
|
2230
2118
|
root?: `0x${string}` | undefined;
|
|
2231
|
-
status: "success" | "reverted";
|
|
2119
|
+
status: "success" | "reverted"; /** @internal */
|
|
2232
2120
|
to: `0x${string}` | null;
|
|
2233
2121
|
transactionHash: `0x${string}`;
|
|
2234
2122
|
transactionIndex: number;
|
|
@@ -2257,7 +2145,7 @@ export declare class Gondi {
|
|
|
2257
2145
|
logs: import("viem").Log<bigint, number, false>[];
|
|
2258
2146
|
logsBloom: `0x${string}`;
|
|
2259
2147
|
root?: `0x${string}` | undefined;
|
|
2260
|
-
status: "success" | "reverted";
|
|
2148
|
+
status: "success" | "reverted"; /** @internal */
|
|
2261
2149
|
to: `0x${string}` | null;
|
|
2262
2150
|
transactionHash: `0x${string}`;
|
|
2263
2151
|
transactionIndex: number;
|
|
@@ -2290,7 +2178,7 @@ export declare class Gondi {
|
|
|
2290
2178
|
logs: import("viem").Log<bigint, number, false>[];
|
|
2291
2179
|
logsBloom: `0x${string}`;
|
|
2292
2180
|
root?: `0x${string}` | undefined;
|
|
2293
|
-
status: "success" | "reverted";
|
|
2181
|
+
status: "success" | "reverted"; /** @internal */
|
|
2294
2182
|
to: `0x${string}` | null;
|
|
2295
2183
|
transactionHash: `0x${string}`;
|
|
2296
2184
|
transactionIndex: number;
|
|
@@ -2343,7 +2231,7 @@ export declare class Gondi {
|
|
|
2343
2231
|
logs: import("viem").Log<bigint, number, false>[];
|
|
2344
2232
|
logsBloom: `0x${string}`;
|
|
2345
2233
|
root?: `0x${string}` | undefined;
|
|
2346
|
-
status: "success" | "reverted";
|
|
2234
|
+
status: "success" | "reverted"; /** @internal */
|
|
2347
2235
|
to: `0x${string}` | null;
|
|
2348
2236
|
transactionHash: `0x${string}`;
|
|
2349
2237
|
transactionIndex: number;
|
|
@@ -2364,7 +2252,7 @@ export declare class Gondi {
|
|
|
2364
2252
|
logs: import("viem").Log<bigint, number, false>[];
|
|
2365
2253
|
logsBloom: `0x${string}`;
|
|
2366
2254
|
root?: `0x${string}` | undefined;
|
|
2367
|
-
status: "success" | "reverted";
|
|
2255
|
+
status: "success" | "reverted"; /** @internal */
|
|
2368
2256
|
to: `0x${string}` | null;
|
|
2369
2257
|
transactionHash: `0x${string}`;
|
|
2370
2258
|
transactionIndex: number;
|
|
@@ -2398,7 +2286,7 @@ export declare class Gondi {
|
|
|
2398
2286
|
logs: import("viem").Log<bigint, number, false>[];
|
|
2399
2287
|
logsBloom: `0x${string}`;
|
|
2400
2288
|
root?: `0x${string}` | undefined;
|
|
2401
|
-
status: "success" | "reverted";
|
|
2289
|
+
status: "success" | "reverted"; /** @internal */
|
|
2402
2290
|
to: `0x${string}` | null;
|
|
2403
2291
|
transactionHash: `0x${string}`;
|
|
2404
2292
|
transactionIndex: number;
|
|
@@ -2433,7 +2321,7 @@ export declare class Gondi {
|
|
|
2433
2321
|
logs: import("viem").Log<bigint, number, false>[];
|
|
2434
2322
|
logsBloom: `0x${string}`;
|
|
2435
2323
|
root?: `0x${string}` | undefined;
|
|
2436
|
-
status: "success" | "reverted";
|
|
2324
|
+
status: "success" | "reverted"; /** @internal */
|
|
2437
2325
|
to: `0x${string}` | null;
|
|
2438
2326
|
transactionHash: `0x${string}`;
|
|
2439
2327
|
transactionIndex: number;
|
|
@@ -2454,7 +2342,7 @@ export declare class Gondi {
|
|
|
2454
2342
|
logs: import("viem").Log<bigint, number, false>[];
|
|
2455
2343
|
logsBloom: `0x${string}`;
|
|
2456
2344
|
root?: `0x${string}` | undefined;
|
|
2457
|
-
status: "success" | "reverted";
|
|
2345
|
+
status: "success" | "reverted"; /** @internal */
|
|
2458
2346
|
to: `0x${string}` | null;
|
|
2459
2347
|
transactionHash: `0x${string}`;
|
|
2460
2348
|
transactionIndex: number;
|
|
@@ -2483,7 +2371,7 @@ export declare class Gondi {
|
|
|
2483
2371
|
logs: import("viem").Log<bigint, number, false>[];
|
|
2484
2372
|
logsBloom: `0x${string}`;
|
|
2485
2373
|
root?: `0x${string}` | undefined;
|
|
2486
|
-
status: "success" | "reverted";
|
|
2374
|
+
status: "success" | "reverted"; /** @internal */
|
|
2487
2375
|
to: `0x${string}` | null;
|
|
2488
2376
|
transactionHash: `0x${string}`;
|
|
2489
2377
|
transactionIndex: number;
|
|
@@ -2504,7 +2392,7 @@ export declare class Gondi {
|
|
|
2504
2392
|
logs: import("viem").Log<bigint, number, false>[];
|
|
2505
2393
|
logsBloom: `0x${string}`;
|
|
2506
2394
|
root?: `0x${string}` | undefined;
|
|
2507
|
-
status: "success" | "reverted";
|
|
2395
|
+
status: "success" | "reverted"; /** @internal */
|
|
2508
2396
|
to: `0x${string}` | null;
|
|
2509
2397
|
transactionHash: `0x${string}`;
|
|
2510
2398
|
transactionIndex: number;
|
|
@@ -2531,7 +2419,7 @@ export declare class Gondi {
|
|
|
2531
2419
|
logs: import("viem").Log<bigint, number, false>[];
|
|
2532
2420
|
logsBloom: `0x${string}`;
|
|
2533
2421
|
root?: `0x${string}` | undefined;
|
|
2534
|
-
status: "success" | "reverted";
|
|
2422
|
+
status: "success" | "reverted"; /** @internal */
|
|
2535
2423
|
to: `0x${string}` | null;
|
|
2536
2424
|
transactionHash: `0x${string}`;
|
|
2537
2425
|
transactionIndex: number;
|
|
@@ -2558,7 +2446,7 @@ export declare class Gondi {
|
|
|
2558
2446
|
logs: import("viem").Log<bigint, number, false>[];
|
|
2559
2447
|
logsBloom: `0x${string}`;
|
|
2560
2448
|
root?: `0x${string}` | undefined;
|
|
2561
|
-
status: "success" | "reverted";
|
|
2449
|
+
status: "success" | "reverted"; /** @internal */
|
|
2562
2450
|
to: `0x${string}` | null;
|
|
2563
2451
|
transactionHash: `0x${string}`;
|
|
2564
2452
|
transactionIndex: number;
|
|
@@ -2586,7 +2474,7 @@ export declare class Gondi {
|
|
|
2586
2474
|
logs: import("viem").Log<bigint, number, false>[];
|
|
2587
2475
|
logsBloom: `0x${string}`;
|
|
2588
2476
|
root?: `0x${string}` | undefined;
|
|
2589
|
-
status: "success" | "reverted";
|
|
2477
|
+
status: "success" | "reverted"; /** @internal */
|
|
2590
2478
|
to: `0x${string}` | null;
|
|
2591
2479
|
transactionHash: `0x${string}`;
|
|
2592
2480
|
transactionIndex: number;
|
|
@@ -2613,7 +2501,7 @@ export declare class Gondi {
|
|
|
2613
2501
|
logs: import("viem").Log<bigint, number, false>[];
|
|
2614
2502
|
logsBloom: `0x${string}`;
|
|
2615
2503
|
root?: `0x${string}` | undefined;
|
|
2616
|
-
status: "success" | "reverted";
|
|
2504
|
+
status: "success" | "reverted"; /** @internal */
|
|
2617
2505
|
to: `0x${string}` | null;
|
|
2618
2506
|
transactionHash: `0x${string}`;
|
|
2619
2507
|
transactionIndex: number;
|