@nirvana-labs/nirvana 1.12.0 → 1.13.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/CHANGELOG.md +32 -0
- package/client.d.mts.map +1 -1
- package/client.d.ts.map +1 -1
- package/client.js +1 -1
- package/client.js.map +1 -1
- package/client.mjs +1 -1
- package/client.mjs.map +1 -1
- package/package.json +4 -5
- package/resources/api-keys.d.mts +2 -2
- package/resources/api-keys.d.ts +2 -2
- package/resources/api-keys.js +2 -2
- package/resources/api-keys.mjs +2 -2
- package/resources/connect/flux.d.mts +1 -1
- package/resources/connect/flux.d.ts +1 -1
- package/resources/connect/flux.js +1 -1
- package/resources/connect/flux.mjs +1 -1
- package/resources/networking/firewall-rules.d.mts +11 -7
- package/resources/networking/firewall-rules.d.mts.map +1 -1
- package/resources/networking/firewall-rules.d.ts +11 -7
- package/resources/networking/firewall-rules.d.ts.map +1 -1
- package/resources/networking/firewall-rules.js +1 -1
- package/resources/networking/firewall-rules.mjs +1 -1
- package/resources/rpc-nodes/dedicated/dedicated.d.mts +31 -2
- package/resources/rpc-nodes/dedicated/dedicated.d.mts.map +1 -1
- package/resources/rpc-nodes/dedicated/dedicated.d.ts +31 -2
- package/resources/rpc-nodes/dedicated/dedicated.d.ts.map +1 -1
- package/resources/rpc-nodes/dedicated/dedicated.js.map +1 -1
- package/resources/rpc-nodes/dedicated/dedicated.mjs.map +1 -1
- package/resources/rpc-nodes/flex/flex.d.mts +31 -2
- package/resources/rpc-nodes/flex/flex.d.mts.map +1 -1
- package/resources/rpc-nodes/flex/flex.d.ts +31 -2
- package/resources/rpc-nodes/flex/flex.d.ts.map +1 -1
- package/resources/rpc-nodes/flex/flex.js.map +1 -1
- package/resources/rpc-nodes/flex/flex.mjs.map +1 -1
- package/resources/shared.d.mts +1 -1
- package/resources/shared.d.mts.map +1 -1
- package/resources/shared.d.ts +1 -1
- package/resources/shared.d.ts.map +1 -1
- package/resources/vektor/executions/steps.d.mts +348 -72
- package/resources/vektor/executions/steps.d.mts.map +1 -1
- package/resources/vektor/executions/steps.d.ts +348 -72
- package/resources/vektor/executions/steps.d.ts.map +1 -1
- package/resources/vektor/registry/errors.d.mts +4 -9
- package/resources/vektor/registry/errors.d.mts.map +1 -1
- package/resources/vektor/registry/errors.d.ts +4 -9
- package/resources/vektor/registry/errors.d.ts.map +1 -1
- package/resources/vektor/registry/errors.js +2 -1
- package/resources/vektor/registry/errors.js.map +1 -1
- package/resources/vektor/registry/errors.mjs +2 -1
- package/resources/vektor/registry/errors.mjs.map +1 -1
- package/resources/vektor/registry/index.d.mts +1 -1
- package/resources/vektor/registry/index.d.mts.map +1 -1
- package/resources/vektor/registry/index.d.ts +1 -1
- package/resources/vektor/registry/index.d.ts.map +1 -1
- package/resources/vektor/registry/index.js.map +1 -1
- package/resources/vektor/registry/index.mjs.map +1 -1
- package/resources/vektor/registry/registry.d.mts +2 -2
- package/resources/vektor/registry/registry.d.mts.map +1 -1
- package/resources/vektor/registry/registry.d.ts +2 -2
- package/resources/vektor/registry/registry.d.ts.map +1 -1
- package/resources/vektor/registry/registry.js.map +1 -1
- package/resources/vektor/registry/registry.mjs.map +1 -1
- package/resources/vektor/vektor.d.mts +397 -84
- package/resources/vektor/vektor.d.mts.map +1 -1
- package/resources/vektor/vektor.d.ts +397 -84
- package/resources/vektor/vektor.d.ts.map +1 -1
- package/resources/vektor/vektor.js.map +1 -1
- package/resources/vektor/vektor.mjs.map +1 -1
- package/src/client.ts +3 -1
- package/src/resources/api-keys.ts +2 -2
- package/src/resources/connect/flux.ts +1 -1
- package/src/resources/networking/firewall-rules.ts +11 -7
- package/src/resources/rpc-nodes/dedicated/dedicated.ts +31 -3
- package/src/resources/rpc-nodes/flex/flex.ts +31 -3
- package/src/resources/shared.ts +0 -2
- package/src/resources/vektor/executions/steps.ts +372 -48
- package/src/resources/vektor/registry/errors.ts +4 -10
- package/src/resources/vektor/registry/index.ts +1 -1
- package/src/resources/vektor/registry/registry.ts +2 -6
- package/src/resources/vektor/vektor.ts +428 -58
- package/src/version.ts +1 -1
- package/version.d.mts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
|
@@ -90,7 +90,7 @@ export declare namespace StepGetResponse {
|
|
|
90
90
|
*/
|
|
91
91
|
effective_gas_price: string | null;
|
|
92
92
|
/**
|
|
93
|
-
*
|
|
93
|
+
* Vektor error
|
|
94
94
|
*/
|
|
95
95
|
error: ExecutionEVMTransactionApprove.Error | null;
|
|
96
96
|
/**
|
|
@@ -144,24 +144,47 @@ export declare namespace StepGetResponse {
|
|
|
144
144
|
}
|
|
145
145
|
namespace ExecutionEVMTransactionApprove {
|
|
146
146
|
/**
|
|
147
|
-
*
|
|
147
|
+
* Vektor error
|
|
148
148
|
*/
|
|
149
149
|
interface Error {
|
|
150
|
+
/**
|
|
151
|
+
* Error context
|
|
152
|
+
*/
|
|
153
|
+
context: Error.Context;
|
|
150
154
|
/**
|
|
151
155
|
* Error message
|
|
152
156
|
*/
|
|
153
157
|
message: string;
|
|
154
158
|
/**
|
|
155
|
-
*
|
|
159
|
+
* Request ID
|
|
160
|
+
*/
|
|
161
|
+
request_id: string;
|
|
162
|
+
/**
|
|
163
|
+
* Error resource
|
|
156
164
|
*/
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
165
|
+
resource: string | null;
|
|
166
|
+
/**
|
|
167
|
+
* ISO8601 Timestamp
|
|
168
|
+
*/
|
|
169
|
+
timestamp: VektorAPI.Timestamp;
|
|
160
170
|
/**
|
|
161
171
|
* Error type
|
|
162
172
|
*/
|
|
163
173
|
type: string;
|
|
164
174
|
}
|
|
175
|
+
namespace Error {
|
|
176
|
+
/**
|
|
177
|
+
* Error context
|
|
178
|
+
*/
|
|
179
|
+
interface Context {
|
|
180
|
+
/**
|
|
181
|
+
* Error parameters
|
|
182
|
+
*/
|
|
183
|
+
parameters: {
|
|
184
|
+
[key: string]: unknown;
|
|
185
|
+
};
|
|
186
|
+
}
|
|
187
|
+
}
|
|
165
188
|
}
|
|
166
189
|
/**
|
|
167
190
|
* Borrowing an asset
|
|
@@ -198,7 +221,7 @@ export declare namespace StepGetResponse {
|
|
|
198
221
|
*/
|
|
199
222
|
effective_gas_price: string | null;
|
|
200
223
|
/**
|
|
201
|
-
*
|
|
224
|
+
* Vektor error
|
|
202
225
|
*/
|
|
203
226
|
error: ExecutionEVMTransactionBorrow.Error | null;
|
|
204
227
|
/**
|
|
@@ -253,24 +276,47 @@ export declare namespace StepGetResponse {
|
|
|
253
276
|
}
|
|
254
277
|
namespace ExecutionEVMTransactionBorrow {
|
|
255
278
|
/**
|
|
256
|
-
*
|
|
279
|
+
* Vektor error
|
|
257
280
|
*/
|
|
258
281
|
interface Error {
|
|
282
|
+
/**
|
|
283
|
+
* Error context
|
|
284
|
+
*/
|
|
285
|
+
context: Error.Context;
|
|
259
286
|
/**
|
|
260
287
|
* Error message
|
|
261
288
|
*/
|
|
262
289
|
message: string;
|
|
263
290
|
/**
|
|
264
|
-
*
|
|
291
|
+
* Request ID
|
|
265
292
|
*/
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
293
|
+
request_id: string;
|
|
294
|
+
/**
|
|
295
|
+
* Error resource
|
|
296
|
+
*/
|
|
297
|
+
resource: string | null;
|
|
298
|
+
/**
|
|
299
|
+
* ISO8601 Timestamp
|
|
300
|
+
*/
|
|
301
|
+
timestamp: VektorAPI.Timestamp;
|
|
269
302
|
/**
|
|
270
303
|
* Error type
|
|
271
304
|
*/
|
|
272
305
|
type: string;
|
|
273
306
|
}
|
|
307
|
+
namespace Error {
|
|
308
|
+
/**
|
|
309
|
+
* Error context
|
|
310
|
+
*/
|
|
311
|
+
interface Context {
|
|
312
|
+
/**
|
|
313
|
+
* Error parameters
|
|
314
|
+
*/
|
|
315
|
+
parameters: {
|
|
316
|
+
[key: string]: unknown;
|
|
317
|
+
};
|
|
318
|
+
}
|
|
319
|
+
}
|
|
274
320
|
}
|
|
275
321
|
/**
|
|
276
322
|
* Repaying a borrowed asset
|
|
@@ -307,7 +353,7 @@ export declare namespace StepGetResponse {
|
|
|
307
353
|
*/
|
|
308
354
|
effective_gas_price: string | null;
|
|
309
355
|
/**
|
|
310
|
-
*
|
|
356
|
+
* Vektor error
|
|
311
357
|
*/
|
|
312
358
|
error: ExecutionEVMTransactionBorrowRepay.Error | null;
|
|
313
359
|
/**
|
|
@@ -358,24 +404,47 @@ export declare namespace StepGetResponse {
|
|
|
358
404
|
}
|
|
359
405
|
namespace ExecutionEVMTransactionBorrowRepay {
|
|
360
406
|
/**
|
|
361
|
-
*
|
|
407
|
+
* Vektor error
|
|
362
408
|
*/
|
|
363
409
|
interface Error {
|
|
410
|
+
/**
|
|
411
|
+
* Error context
|
|
412
|
+
*/
|
|
413
|
+
context: Error.Context;
|
|
364
414
|
/**
|
|
365
415
|
* Error message
|
|
366
416
|
*/
|
|
367
417
|
message: string;
|
|
368
418
|
/**
|
|
369
|
-
*
|
|
419
|
+
* Request ID
|
|
370
420
|
*/
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
421
|
+
request_id: string;
|
|
422
|
+
/**
|
|
423
|
+
* Error resource
|
|
424
|
+
*/
|
|
425
|
+
resource: string | null;
|
|
426
|
+
/**
|
|
427
|
+
* ISO8601 Timestamp
|
|
428
|
+
*/
|
|
429
|
+
timestamp: VektorAPI.Timestamp;
|
|
374
430
|
/**
|
|
375
431
|
* Error type
|
|
376
432
|
*/
|
|
377
433
|
type: string;
|
|
378
434
|
}
|
|
435
|
+
namespace Error {
|
|
436
|
+
/**
|
|
437
|
+
* Error context
|
|
438
|
+
*/
|
|
439
|
+
interface Context {
|
|
440
|
+
/**
|
|
441
|
+
* Error parameters
|
|
442
|
+
*/
|
|
443
|
+
parameters: {
|
|
444
|
+
[key: string]: unknown;
|
|
445
|
+
};
|
|
446
|
+
}
|
|
447
|
+
}
|
|
379
448
|
}
|
|
380
449
|
/**
|
|
381
450
|
* Buying an asset with another asset
|
|
@@ -408,7 +477,7 @@ export declare namespace StepGetResponse {
|
|
|
408
477
|
*/
|
|
409
478
|
effective_gas_price: string | null;
|
|
410
479
|
/**
|
|
411
|
-
*
|
|
480
|
+
* Vektor error
|
|
412
481
|
*/
|
|
413
482
|
error: ExecutionEVMTransactionBuy.Error | null;
|
|
414
483
|
/**
|
|
@@ -466,24 +535,47 @@ export declare namespace StepGetResponse {
|
|
|
466
535
|
}
|
|
467
536
|
namespace ExecutionEVMTransactionBuy {
|
|
468
537
|
/**
|
|
469
|
-
*
|
|
538
|
+
* Vektor error
|
|
470
539
|
*/
|
|
471
540
|
interface Error {
|
|
541
|
+
/**
|
|
542
|
+
* Error context
|
|
543
|
+
*/
|
|
544
|
+
context: Error.Context;
|
|
472
545
|
/**
|
|
473
546
|
* Error message
|
|
474
547
|
*/
|
|
475
548
|
message: string;
|
|
476
549
|
/**
|
|
477
|
-
*
|
|
550
|
+
* Request ID
|
|
551
|
+
*/
|
|
552
|
+
request_id: string;
|
|
553
|
+
/**
|
|
554
|
+
* Error resource
|
|
478
555
|
*/
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
556
|
+
resource: string | null;
|
|
557
|
+
/**
|
|
558
|
+
* ISO8601 Timestamp
|
|
559
|
+
*/
|
|
560
|
+
timestamp: VektorAPI.Timestamp;
|
|
482
561
|
/**
|
|
483
562
|
* Error type
|
|
484
563
|
*/
|
|
485
564
|
type: string;
|
|
486
565
|
}
|
|
566
|
+
namespace Error {
|
|
567
|
+
/**
|
|
568
|
+
* Error context
|
|
569
|
+
*/
|
|
570
|
+
interface Context {
|
|
571
|
+
/**
|
|
572
|
+
* Error parameters
|
|
573
|
+
*/
|
|
574
|
+
parameters: {
|
|
575
|
+
[key: string]: unknown;
|
|
576
|
+
};
|
|
577
|
+
}
|
|
578
|
+
}
|
|
487
579
|
}
|
|
488
580
|
/**
|
|
489
581
|
* Lending an asset
|
|
@@ -520,7 +612,7 @@ export declare namespace StepGetResponse {
|
|
|
520
612
|
*/
|
|
521
613
|
effective_gas_price: string | null;
|
|
522
614
|
/**
|
|
523
|
-
*
|
|
615
|
+
* Vektor error
|
|
524
616
|
*/
|
|
525
617
|
error: ExecutionEVMTransactionLend.Error | null;
|
|
526
618
|
/**
|
|
@@ -575,24 +667,47 @@ export declare namespace StepGetResponse {
|
|
|
575
667
|
}
|
|
576
668
|
namespace ExecutionEVMTransactionLend {
|
|
577
669
|
/**
|
|
578
|
-
*
|
|
670
|
+
* Vektor error
|
|
579
671
|
*/
|
|
580
672
|
interface Error {
|
|
673
|
+
/**
|
|
674
|
+
* Error context
|
|
675
|
+
*/
|
|
676
|
+
context: Error.Context;
|
|
581
677
|
/**
|
|
582
678
|
* Error message
|
|
583
679
|
*/
|
|
584
680
|
message: string;
|
|
585
681
|
/**
|
|
586
|
-
*
|
|
682
|
+
* Request ID
|
|
587
683
|
*/
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
684
|
+
request_id: string;
|
|
685
|
+
/**
|
|
686
|
+
* Error resource
|
|
687
|
+
*/
|
|
688
|
+
resource: string | null;
|
|
689
|
+
/**
|
|
690
|
+
* ISO8601 Timestamp
|
|
691
|
+
*/
|
|
692
|
+
timestamp: VektorAPI.Timestamp;
|
|
591
693
|
/**
|
|
592
694
|
* Error type
|
|
593
695
|
*/
|
|
594
696
|
type: string;
|
|
595
697
|
}
|
|
698
|
+
namespace Error {
|
|
699
|
+
/**
|
|
700
|
+
* Error context
|
|
701
|
+
*/
|
|
702
|
+
interface Context {
|
|
703
|
+
/**
|
|
704
|
+
* Error parameters
|
|
705
|
+
*/
|
|
706
|
+
parameters: {
|
|
707
|
+
[key: string]: unknown;
|
|
708
|
+
};
|
|
709
|
+
}
|
|
710
|
+
}
|
|
596
711
|
}
|
|
597
712
|
/**
|
|
598
713
|
* Setting/unsetting a position as collateral
|
|
@@ -621,7 +736,7 @@ export declare namespace StepGetResponse {
|
|
|
621
736
|
*/
|
|
622
737
|
effective_gas_price: string | null;
|
|
623
738
|
/**
|
|
624
|
-
*
|
|
739
|
+
* Vektor error
|
|
625
740
|
*/
|
|
626
741
|
error: ExecutionEVMTransactionLendSetCollateral.Error | null;
|
|
627
742
|
/**
|
|
@@ -673,24 +788,47 @@ export declare namespace StepGetResponse {
|
|
|
673
788
|
}
|
|
674
789
|
namespace ExecutionEVMTransactionLendSetCollateral {
|
|
675
790
|
/**
|
|
676
|
-
*
|
|
791
|
+
* Vektor error
|
|
677
792
|
*/
|
|
678
793
|
interface Error {
|
|
794
|
+
/**
|
|
795
|
+
* Error context
|
|
796
|
+
*/
|
|
797
|
+
context: Error.Context;
|
|
679
798
|
/**
|
|
680
799
|
* Error message
|
|
681
800
|
*/
|
|
682
801
|
message: string;
|
|
683
802
|
/**
|
|
684
|
-
*
|
|
803
|
+
* Request ID
|
|
685
804
|
*/
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
805
|
+
request_id: string;
|
|
806
|
+
/**
|
|
807
|
+
* Error resource
|
|
808
|
+
*/
|
|
809
|
+
resource: string | null;
|
|
810
|
+
/**
|
|
811
|
+
* ISO8601 Timestamp
|
|
812
|
+
*/
|
|
813
|
+
timestamp: VektorAPI.Timestamp;
|
|
689
814
|
/**
|
|
690
815
|
* Error type
|
|
691
816
|
*/
|
|
692
817
|
type: string;
|
|
693
818
|
}
|
|
819
|
+
namespace Error {
|
|
820
|
+
/**
|
|
821
|
+
* Error context
|
|
822
|
+
*/
|
|
823
|
+
interface Context {
|
|
824
|
+
/**
|
|
825
|
+
* Error parameters
|
|
826
|
+
*/
|
|
827
|
+
parameters: {
|
|
828
|
+
[key: string]: unknown;
|
|
829
|
+
};
|
|
830
|
+
}
|
|
831
|
+
}
|
|
694
832
|
}
|
|
695
833
|
/**
|
|
696
834
|
* Withdrawing an asset
|
|
@@ -727,7 +865,7 @@ export declare namespace StepGetResponse {
|
|
|
727
865
|
*/
|
|
728
866
|
effective_gas_price: string | null;
|
|
729
867
|
/**
|
|
730
|
-
*
|
|
868
|
+
* Vektor error
|
|
731
869
|
*/
|
|
732
870
|
error: ExecutionEVMTransactionLendWithdraw.Error | null;
|
|
733
871
|
/**
|
|
@@ -778,24 +916,47 @@ export declare namespace StepGetResponse {
|
|
|
778
916
|
}
|
|
779
917
|
namespace ExecutionEVMTransactionLendWithdraw {
|
|
780
918
|
/**
|
|
781
|
-
*
|
|
919
|
+
* Vektor error
|
|
782
920
|
*/
|
|
783
921
|
interface Error {
|
|
922
|
+
/**
|
|
923
|
+
* Error context
|
|
924
|
+
*/
|
|
925
|
+
context: Error.Context;
|
|
784
926
|
/**
|
|
785
927
|
* Error message
|
|
786
928
|
*/
|
|
787
929
|
message: string;
|
|
788
930
|
/**
|
|
789
|
-
*
|
|
931
|
+
* Request ID
|
|
932
|
+
*/
|
|
933
|
+
request_id: string;
|
|
934
|
+
/**
|
|
935
|
+
* Error resource
|
|
790
936
|
*/
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
937
|
+
resource: string | null;
|
|
938
|
+
/**
|
|
939
|
+
* ISO8601 Timestamp
|
|
940
|
+
*/
|
|
941
|
+
timestamp: VektorAPI.Timestamp;
|
|
794
942
|
/**
|
|
795
943
|
* Error type
|
|
796
944
|
*/
|
|
797
945
|
type: string;
|
|
798
946
|
}
|
|
947
|
+
namespace Error {
|
|
948
|
+
/**
|
|
949
|
+
* Error context
|
|
950
|
+
*/
|
|
951
|
+
interface Context {
|
|
952
|
+
/**
|
|
953
|
+
* Error parameters
|
|
954
|
+
*/
|
|
955
|
+
parameters: {
|
|
956
|
+
[key: string]: unknown;
|
|
957
|
+
};
|
|
958
|
+
}
|
|
959
|
+
}
|
|
799
960
|
}
|
|
800
961
|
/**
|
|
801
962
|
* A move of assets from one account to another
|
|
@@ -832,7 +993,7 @@ export declare namespace StepGetResponse {
|
|
|
832
993
|
*/
|
|
833
994
|
effective_gas_price: string | null;
|
|
834
995
|
/**
|
|
835
|
-
*
|
|
996
|
+
* Vektor error
|
|
836
997
|
*/
|
|
837
998
|
error: ExecutionEVMTransactionMove.Error | null;
|
|
838
999
|
/**
|
|
@@ -878,24 +1039,47 @@ export declare namespace StepGetResponse {
|
|
|
878
1039
|
}
|
|
879
1040
|
namespace ExecutionEVMTransactionMove {
|
|
880
1041
|
/**
|
|
881
|
-
*
|
|
1042
|
+
* Vektor error
|
|
882
1043
|
*/
|
|
883
1044
|
interface Error {
|
|
1045
|
+
/**
|
|
1046
|
+
* Error context
|
|
1047
|
+
*/
|
|
1048
|
+
context: Error.Context;
|
|
884
1049
|
/**
|
|
885
1050
|
* Error message
|
|
886
1051
|
*/
|
|
887
1052
|
message: string;
|
|
888
1053
|
/**
|
|
889
|
-
*
|
|
1054
|
+
* Request ID
|
|
890
1055
|
*/
|
|
891
|
-
|
|
892
|
-
|
|
893
|
-
|
|
1056
|
+
request_id: string;
|
|
1057
|
+
/**
|
|
1058
|
+
* Error resource
|
|
1059
|
+
*/
|
|
1060
|
+
resource: string | null;
|
|
1061
|
+
/**
|
|
1062
|
+
* ISO8601 Timestamp
|
|
1063
|
+
*/
|
|
1064
|
+
timestamp: VektorAPI.Timestamp;
|
|
894
1065
|
/**
|
|
895
1066
|
* Error type
|
|
896
1067
|
*/
|
|
897
1068
|
type: string;
|
|
898
1069
|
}
|
|
1070
|
+
namespace Error {
|
|
1071
|
+
/**
|
|
1072
|
+
* Error context
|
|
1073
|
+
*/
|
|
1074
|
+
interface Context {
|
|
1075
|
+
/**
|
|
1076
|
+
* Error parameters
|
|
1077
|
+
*/
|
|
1078
|
+
parameters: {
|
|
1079
|
+
[key: string]: unknown;
|
|
1080
|
+
};
|
|
1081
|
+
}
|
|
1082
|
+
}
|
|
899
1083
|
}
|
|
900
1084
|
/**
|
|
901
1085
|
* A permission to a contract
|
|
@@ -928,7 +1112,7 @@ export declare namespace StepGetResponse {
|
|
|
928
1112
|
*/
|
|
929
1113
|
effective_gas_price: string | null;
|
|
930
1114
|
/**
|
|
931
|
-
*
|
|
1115
|
+
* Vektor error
|
|
932
1116
|
*/
|
|
933
1117
|
error: ExecutionEVMTransactionPermission.Error | null;
|
|
934
1118
|
/**
|
|
@@ -988,24 +1172,47 @@ export declare namespace StepGetResponse {
|
|
|
988
1172
|
}
|
|
989
1173
|
namespace ExecutionEVMTransactionPermission {
|
|
990
1174
|
/**
|
|
991
|
-
*
|
|
1175
|
+
* Vektor error
|
|
992
1176
|
*/
|
|
993
1177
|
interface Error {
|
|
1178
|
+
/**
|
|
1179
|
+
* Error context
|
|
1180
|
+
*/
|
|
1181
|
+
context: Error.Context;
|
|
994
1182
|
/**
|
|
995
1183
|
* Error message
|
|
996
1184
|
*/
|
|
997
1185
|
message: string;
|
|
998
1186
|
/**
|
|
999
|
-
*
|
|
1187
|
+
* Request ID
|
|
1000
1188
|
*/
|
|
1001
|
-
|
|
1002
|
-
|
|
1003
|
-
|
|
1189
|
+
request_id: string;
|
|
1190
|
+
/**
|
|
1191
|
+
* Error resource
|
|
1192
|
+
*/
|
|
1193
|
+
resource: string | null;
|
|
1194
|
+
/**
|
|
1195
|
+
* ISO8601 Timestamp
|
|
1196
|
+
*/
|
|
1197
|
+
timestamp: VektorAPI.Timestamp;
|
|
1004
1198
|
/**
|
|
1005
1199
|
* Error type
|
|
1006
1200
|
*/
|
|
1007
1201
|
type: string;
|
|
1008
1202
|
}
|
|
1203
|
+
namespace Error {
|
|
1204
|
+
/**
|
|
1205
|
+
* Error context
|
|
1206
|
+
*/
|
|
1207
|
+
interface Context {
|
|
1208
|
+
/**
|
|
1209
|
+
* Error parameters
|
|
1210
|
+
*/
|
|
1211
|
+
parameters: {
|
|
1212
|
+
[key: string]: unknown;
|
|
1213
|
+
};
|
|
1214
|
+
}
|
|
1215
|
+
}
|
|
1009
1216
|
}
|
|
1010
1217
|
/**
|
|
1011
1218
|
* An unwrap of the wrapped native asset
|
|
@@ -1038,7 +1245,7 @@ export declare namespace StepGetResponse {
|
|
|
1038
1245
|
*/
|
|
1039
1246
|
effective_gas_price: string | null;
|
|
1040
1247
|
/**
|
|
1041
|
-
*
|
|
1248
|
+
* Vektor error
|
|
1042
1249
|
*/
|
|
1043
1250
|
error: ExecutionEVMTransactionUnwrap.Error | null;
|
|
1044
1251
|
/**
|
|
@@ -1084,24 +1291,47 @@ export declare namespace StepGetResponse {
|
|
|
1084
1291
|
}
|
|
1085
1292
|
namespace ExecutionEVMTransactionUnwrap {
|
|
1086
1293
|
/**
|
|
1087
|
-
*
|
|
1294
|
+
* Vektor error
|
|
1088
1295
|
*/
|
|
1089
1296
|
interface Error {
|
|
1297
|
+
/**
|
|
1298
|
+
* Error context
|
|
1299
|
+
*/
|
|
1300
|
+
context: Error.Context;
|
|
1090
1301
|
/**
|
|
1091
1302
|
* Error message
|
|
1092
1303
|
*/
|
|
1093
1304
|
message: string;
|
|
1094
1305
|
/**
|
|
1095
|
-
*
|
|
1306
|
+
* Request ID
|
|
1307
|
+
*/
|
|
1308
|
+
request_id: string;
|
|
1309
|
+
/**
|
|
1310
|
+
* Error resource
|
|
1096
1311
|
*/
|
|
1097
|
-
|
|
1098
|
-
|
|
1099
|
-
|
|
1312
|
+
resource: string | null;
|
|
1313
|
+
/**
|
|
1314
|
+
* ISO8601 Timestamp
|
|
1315
|
+
*/
|
|
1316
|
+
timestamp: VektorAPI.Timestamp;
|
|
1100
1317
|
/**
|
|
1101
1318
|
* Error type
|
|
1102
1319
|
*/
|
|
1103
1320
|
type: string;
|
|
1104
1321
|
}
|
|
1322
|
+
namespace Error {
|
|
1323
|
+
/**
|
|
1324
|
+
* Error context
|
|
1325
|
+
*/
|
|
1326
|
+
interface Context {
|
|
1327
|
+
/**
|
|
1328
|
+
* Error parameters
|
|
1329
|
+
*/
|
|
1330
|
+
parameters: {
|
|
1331
|
+
[key: string]: unknown;
|
|
1332
|
+
};
|
|
1333
|
+
}
|
|
1334
|
+
}
|
|
1105
1335
|
}
|
|
1106
1336
|
/**
|
|
1107
1337
|
* A wrap of the native asset
|
|
@@ -1134,7 +1364,7 @@ export declare namespace StepGetResponse {
|
|
|
1134
1364
|
*/
|
|
1135
1365
|
effective_gas_price: string | null;
|
|
1136
1366
|
/**
|
|
1137
|
-
*
|
|
1367
|
+
* Vektor error
|
|
1138
1368
|
*/
|
|
1139
1369
|
error: ExecutionEVMTransactionWrap.Error | null;
|
|
1140
1370
|
/**
|
|
@@ -1180,24 +1410,47 @@ export declare namespace StepGetResponse {
|
|
|
1180
1410
|
}
|
|
1181
1411
|
namespace ExecutionEVMTransactionWrap {
|
|
1182
1412
|
/**
|
|
1183
|
-
*
|
|
1413
|
+
* Vektor error
|
|
1184
1414
|
*/
|
|
1185
1415
|
interface Error {
|
|
1416
|
+
/**
|
|
1417
|
+
* Error context
|
|
1418
|
+
*/
|
|
1419
|
+
context: Error.Context;
|
|
1186
1420
|
/**
|
|
1187
1421
|
* Error message
|
|
1188
1422
|
*/
|
|
1189
1423
|
message: string;
|
|
1190
1424
|
/**
|
|
1191
|
-
*
|
|
1425
|
+
* Request ID
|
|
1192
1426
|
*/
|
|
1193
|
-
|
|
1194
|
-
|
|
1195
|
-
|
|
1427
|
+
request_id: string;
|
|
1428
|
+
/**
|
|
1429
|
+
* Error resource
|
|
1430
|
+
*/
|
|
1431
|
+
resource: string | null;
|
|
1432
|
+
/**
|
|
1433
|
+
* ISO8601 Timestamp
|
|
1434
|
+
*/
|
|
1435
|
+
timestamp: VektorAPI.Timestamp;
|
|
1196
1436
|
/**
|
|
1197
1437
|
* Error type
|
|
1198
1438
|
*/
|
|
1199
1439
|
type: string;
|
|
1200
1440
|
}
|
|
1441
|
+
namespace Error {
|
|
1442
|
+
/**
|
|
1443
|
+
* Error context
|
|
1444
|
+
*/
|
|
1445
|
+
interface Context {
|
|
1446
|
+
/**
|
|
1447
|
+
* Error parameters
|
|
1448
|
+
*/
|
|
1449
|
+
parameters: {
|
|
1450
|
+
[key: string]: unknown;
|
|
1451
|
+
};
|
|
1452
|
+
}
|
|
1453
|
+
}
|
|
1201
1454
|
}
|
|
1202
1455
|
/**
|
|
1203
1456
|
* Selling an asset for another asset
|
|
@@ -1230,7 +1483,7 @@ export declare namespace StepGetResponse {
|
|
|
1230
1483
|
*/
|
|
1231
1484
|
effective_gas_price: string | null;
|
|
1232
1485
|
/**
|
|
1233
|
-
*
|
|
1486
|
+
* Vektor error
|
|
1234
1487
|
*/
|
|
1235
1488
|
error: ExecutionEVMTransactionSell.Error | null;
|
|
1236
1489
|
/**
|
|
@@ -1288,24 +1541,47 @@ export declare namespace StepGetResponse {
|
|
|
1288
1541
|
}
|
|
1289
1542
|
namespace ExecutionEVMTransactionSell {
|
|
1290
1543
|
/**
|
|
1291
|
-
*
|
|
1544
|
+
* Vektor error
|
|
1292
1545
|
*/
|
|
1293
1546
|
interface Error {
|
|
1547
|
+
/**
|
|
1548
|
+
* Error context
|
|
1549
|
+
*/
|
|
1550
|
+
context: Error.Context;
|
|
1294
1551
|
/**
|
|
1295
1552
|
* Error message
|
|
1296
1553
|
*/
|
|
1297
1554
|
message: string;
|
|
1298
1555
|
/**
|
|
1299
|
-
*
|
|
1556
|
+
* Request ID
|
|
1300
1557
|
*/
|
|
1301
|
-
|
|
1302
|
-
|
|
1303
|
-
|
|
1558
|
+
request_id: string;
|
|
1559
|
+
/**
|
|
1560
|
+
* Error resource
|
|
1561
|
+
*/
|
|
1562
|
+
resource: string | null;
|
|
1563
|
+
/**
|
|
1564
|
+
* ISO8601 Timestamp
|
|
1565
|
+
*/
|
|
1566
|
+
timestamp: VektorAPI.Timestamp;
|
|
1304
1567
|
/**
|
|
1305
1568
|
* Error type
|
|
1306
1569
|
*/
|
|
1307
1570
|
type: string;
|
|
1308
1571
|
}
|
|
1572
|
+
namespace Error {
|
|
1573
|
+
/**
|
|
1574
|
+
* Error context
|
|
1575
|
+
*/
|
|
1576
|
+
interface Context {
|
|
1577
|
+
/**
|
|
1578
|
+
* Error parameters
|
|
1579
|
+
*/
|
|
1580
|
+
parameters: {
|
|
1581
|
+
[key: string]: unknown;
|
|
1582
|
+
};
|
|
1583
|
+
}
|
|
1584
|
+
}
|
|
1309
1585
|
}
|
|
1310
1586
|
}
|
|
1311
1587
|
export interface StepGetParams {
|