@taqueria/protocol 0.20.1 → 0.21.0
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/Config.d.ts +317 -293
- package/Config.d.ts.map +1 -1
- package/LoadedConfig.d.ts +331 -306
- package/LoadedConfig.d.ts.map +1 -1
- package/NetworkConfig.d.ts +129 -110
- package/NetworkConfig.d.ts.map +1 -1
- package/NetworkConfig.js +10 -2
- package/NetworkConfig.js.map +1 -1
- package/NetworkConfig.mjs +10 -2
- package/NetworkConfig.mjs.map +1 -1
- package/Operation.d.ts +64 -60
- package/Operation.d.ts.map +1 -1
- package/ParsedOperation.d.ts +16 -15
- package/ParsedOperation.d.ts.map +1 -1
- package/ParsedTemplate.d.ts +32 -30
- package/ParsedTemplate.d.ts.map +1 -1
- package/PluginSchema.d.ts +448 -420
- package/PluginSchema.d.ts.map +1 -1
- package/RequestArgs.d.ts +659 -610
- package/RequestArgs.d.ts.map +1 -1
- package/SandboxConfig.d.ts +64 -64
- package/Template.d.ts +96 -90
- package/Template.d.ts.map +1 -1
- package/package.json +1 -1
package/RequestArgs.d.ts
CHANGED
|
@@ -19,16 +19,8 @@ export declare const generatedSchemas: {
|
|
|
19
19
|
};
|
|
20
20
|
}> | undefined;
|
|
21
21
|
network?: Record<string, import("@taqueria/protocol/Base").Flatten<{
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
};
|
|
25
|
-
rpcUrl: string & {
|
|
26
|
-
readonly __kind: any;
|
|
27
|
-
};
|
|
28
|
-
protocol: string & {
|
|
29
|
-
readonly __kind: any;
|
|
30
|
-
};
|
|
31
|
-
faucet: import("@taqueria/protocol/Base").Flatten<{
|
|
22
|
+
accounts?: Record<string, any> | undefined;
|
|
23
|
+
faucet?: import("@taqueria/protocol/Base").Flatten<{
|
|
32
24
|
email?: string | undefined;
|
|
33
25
|
password?: string | undefined;
|
|
34
26
|
amount?: string | undefined;
|
|
@@ -39,15 +31,20 @@ export declare const generatedSchemas: {
|
|
|
39
31
|
};
|
|
40
32
|
} & {
|
|
41
33
|
readonly __kind: any;
|
|
42
|
-
}
|
|
34
|
+
}> | undefined;
|
|
35
|
+
label: string & {
|
|
36
|
+
readonly __kind: any;
|
|
37
|
+
};
|
|
38
|
+
rpcUrl: string & {
|
|
39
|
+
readonly __kind: any;
|
|
40
|
+
};
|
|
41
|
+
protocol: string & {
|
|
42
|
+
readonly __kind: any;
|
|
43
|
+
};
|
|
43
44
|
} & {
|
|
44
45
|
readonly __kind: any;
|
|
45
46
|
}>> | undefined;
|
|
46
47
|
sandbox?: Record<string, {
|
|
47
|
-
attributes?: Record<string, string | number | boolean> | undefined;
|
|
48
|
-
plugin?: (string & {
|
|
49
|
-
readonly __kind: any;
|
|
50
|
-
}) | undefined;
|
|
51
48
|
accounts?: Record<string, string | ({
|
|
52
49
|
encryptedKey: string;
|
|
53
50
|
publicKeyHash: string & {
|
|
@@ -57,6 +54,10 @@ export declare const generatedSchemas: {
|
|
|
57
54
|
} & {
|
|
58
55
|
readonly __kind: any;
|
|
59
56
|
})> | undefined;
|
|
57
|
+
attributes?: Record<string, string | number | boolean> | undefined;
|
|
58
|
+
plugin?: (string & {
|
|
59
|
+
readonly __kind: any;
|
|
60
|
+
}) | undefined;
|
|
60
61
|
tzkt?: {
|
|
61
62
|
disableAutostartWithSandbox: boolean;
|
|
62
63
|
postgresqlPort: number;
|
|
@@ -146,16 +147,8 @@ export declare const generatedSchemas: {
|
|
|
146
147
|
};
|
|
147
148
|
}> | undefined;
|
|
148
149
|
network?: Record<string, import("@taqueria/protocol/Base").Flatten<{
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
};
|
|
152
|
-
rpcUrl: string & {
|
|
153
|
-
readonly __kind: any;
|
|
154
|
-
};
|
|
155
|
-
protocol: string & {
|
|
156
|
-
readonly __kind: any;
|
|
157
|
-
};
|
|
158
|
-
faucet: import("@taqueria/protocol/Base").Flatten<{
|
|
150
|
+
accounts?: Record<string, any> | undefined;
|
|
151
|
+
faucet?: import("@taqueria/protocol/Base").Flatten<{
|
|
159
152
|
email?: string | undefined;
|
|
160
153
|
password?: string | undefined;
|
|
161
154
|
amount?: string | undefined;
|
|
@@ -166,15 +159,20 @@ export declare const generatedSchemas: {
|
|
|
166
159
|
};
|
|
167
160
|
} & {
|
|
168
161
|
readonly __kind: any;
|
|
169
|
-
}
|
|
162
|
+
}> | undefined;
|
|
163
|
+
label: string & {
|
|
164
|
+
readonly __kind: any;
|
|
165
|
+
};
|
|
166
|
+
rpcUrl: string & {
|
|
167
|
+
readonly __kind: any;
|
|
168
|
+
};
|
|
169
|
+
protocol: string & {
|
|
170
|
+
readonly __kind: any;
|
|
171
|
+
};
|
|
170
172
|
} & {
|
|
171
173
|
readonly __kind: any;
|
|
172
174
|
}>> | undefined;
|
|
173
175
|
sandbox?: Record<string, {
|
|
174
|
-
attributes?: Record<string, string | number | boolean> | undefined;
|
|
175
|
-
plugin?: (string & {
|
|
176
|
-
readonly __kind: any;
|
|
177
|
-
}) | undefined;
|
|
178
176
|
accounts?: Record<string, string | ({
|
|
179
177
|
encryptedKey: string;
|
|
180
178
|
publicKeyHash: string & {
|
|
@@ -184,6 +182,10 @@ export declare const generatedSchemas: {
|
|
|
184
182
|
} & {
|
|
185
183
|
readonly __kind: any;
|
|
186
184
|
})> | undefined;
|
|
185
|
+
attributes?: Record<string, string | number | boolean> | undefined;
|
|
186
|
+
plugin?: (string & {
|
|
187
|
+
readonly __kind: any;
|
|
188
|
+
}) | undefined;
|
|
187
189
|
tzkt?: {
|
|
188
190
|
disableAutostartWithSandbox: boolean;
|
|
189
191
|
postgresqlPort: number;
|
|
@@ -269,16 +271,8 @@ export declare const generatedSchemas: {
|
|
|
269
271
|
};
|
|
270
272
|
}> | undefined;
|
|
271
273
|
network?: Record<string, import("@taqueria/protocol/Base").Flatten<{
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
};
|
|
275
|
-
rpcUrl: string & {
|
|
276
|
-
readonly __kind: any;
|
|
277
|
-
};
|
|
278
|
-
protocol: string & {
|
|
279
|
-
readonly __kind: any;
|
|
280
|
-
};
|
|
281
|
-
faucet: import("@taqueria/protocol/Base").Flatten<{
|
|
274
|
+
accounts?: Record<string, any> | undefined;
|
|
275
|
+
faucet?: import("@taqueria/protocol/Base").Flatten<{
|
|
282
276
|
email?: string | undefined;
|
|
283
277
|
password?: string | undefined;
|
|
284
278
|
amount?: string | undefined;
|
|
@@ -289,15 +283,20 @@ export declare const generatedSchemas: {
|
|
|
289
283
|
};
|
|
290
284
|
} & {
|
|
291
285
|
readonly __kind: any;
|
|
292
|
-
}
|
|
286
|
+
}> | undefined;
|
|
287
|
+
label: string & {
|
|
288
|
+
readonly __kind: any;
|
|
289
|
+
};
|
|
290
|
+
rpcUrl: string & {
|
|
291
|
+
readonly __kind: any;
|
|
292
|
+
};
|
|
293
|
+
protocol: string & {
|
|
294
|
+
readonly __kind: any;
|
|
295
|
+
};
|
|
293
296
|
} & {
|
|
294
297
|
readonly __kind: any;
|
|
295
298
|
}>> | undefined;
|
|
296
299
|
sandbox?: Record<string, {
|
|
297
|
-
attributes?: Record<string, string | number | boolean> | undefined;
|
|
298
|
-
plugin?: (string & {
|
|
299
|
-
readonly __kind: any;
|
|
300
|
-
}) | undefined;
|
|
301
300
|
accounts?: Record<string, string | ({
|
|
302
301
|
encryptedKey: string;
|
|
303
302
|
publicKeyHash: string & {
|
|
@@ -307,6 +306,10 @@ export declare const generatedSchemas: {
|
|
|
307
306
|
} & {
|
|
308
307
|
readonly __kind: any;
|
|
309
308
|
})> | undefined;
|
|
309
|
+
attributes?: Record<string, string | number | boolean> | undefined;
|
|
310
|
+
plugin?: (string & {
|
|
311
|
+
readonly __kind: any;
|
|
312
|
+
}) | undefined;
|
|
310
313
|
tzkt?: {
|
|
311
314
|
disableAutostartWithSandbox: boolean;
|
|
312
315
|
postgresqlPort: number;
|
|
@@ -395,16 +398,8 @@ export declare const generatedSchemas: {
|
|
|
395
398
|
};
|
|
396
399
|
}> | undefined;
|
|
397
400
|
network?: Record<string, import("@taqueria/protocol/Base").Flatten<{
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
};
|
|
401
|
-
rpcUrl: string & {
|
|
402
|
-
readonly __kind: any;
|
|
403
|
-
};
|
|
404
|
-
protocol: string & {
|
|
405
|
-
readonly __kind: any;
|
|
406
|
-
};
|
|
407
|
-
faucet: import("@taqueria/protocol/Base").Flatten<{
|
|
401
|
+
accounts?: Record<string, any> | undefined;
|
|
402
|
+
faucet?: import("@taqueria/protocol/Base").Flatten<{
|
|
408
403
|
email?: string | undefined;
|
|
409
404
|
password?: string | undefined;
|
|
410
405
|
amount?: string | undefined;
|
|
@@ -415,15 +410,20 @@ export declare const generatedSchemas: {
|
|
|
415
410
|
};
|
|
416
411
|
} & {
|
|
417
412
|
readonly __kind: any;
|
|
418
|
-
}
|
|
413
|
+
}> | undefined;
|
|
414
|
+
label: string & {
|
|
415
|
+
readonly __kind: any;
|
|
416
|
+
};
|
|
417
|
+
rpcUrl: string & {
|
|
418
|
+
readonly __kind: any;
|
|
419
|
+
};
|
|
420
|
+
protocol: string & {
|
|
421
|
+
readonly __kind: any;
|
|
422
|
+
};
|
|
419
423
|
} & {
|
|
420
424
|
readonly __kind: any;
|
|
421
425
|
}>> | undefined;
|
|
422
426
|
sandbox?: Record<string, {
|
|
423
|
-
attributes?: Record<string, string | number | boolean> | undefined;
|
|
424
|
-
plugin?: (string & {
|
|
425
|
-
readonly __kind: any;
|
|
426
|
-
}) | undefined;
|
|
427
427
|
accounts?: Record<string, string | ({
|
|
428
428
|
encryptedKey: string;
|
|
429
429
|
publicKeyHash: string & {
|
|
@@ -433,6 +433,10 @@ export declare const generatedSchemas: {
|
|
|
433
433
|
} & {
|
|
434
434
|
readonly __kind: any;
|
|
435
435
|
})> | undefined;
|
|
436
|
+
attributes?: Record<string, string | number | boolean> | undefined;
|
|
437
|
+
plugin?: (string & {
|
|
438
|
+
readonly __kind: any;
|
|
439
|
+
}) | undefined;
|
|
436
440
|
tzkt?: {
|
|
437
441
|
disableAutostartWithSandbox: boolean;
|
|
438
442
|
postgresqlPort: number;
|
|
@@ -520,21 +524,20 @@ export declare const generatedSchemas: {
|
|
|
520
524
|
hash: string;
|
|
521
525
|
}> | undefined;
|
|
522
526
|
network?: Record<string, {
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
protocol: string;
|
|
526
|
-
faucet: {
|
|
527
|
+
accounts?: Record<string, any> | undefined;
|
|
528
|
+
faucet?: {
|
|
527
529
|
email?: string | undefined;
|
|
528
530
|
password?: string | undefined;
|
|
529
531
|
amount?: string | undefined;
|
|
530
532
|
activation_code?: string | undefined;
|
|
531
533
|
mnemonic: string[];
|
|
532
534
|
pkh: string;
|
|
533
|
-
};
|
|
535
|
+
} | undefined;
|
|
536
|
+
label: string;
|
|
537
|
+
rpcUrl: string;
|
|
538
|
+
protocol: string;
|
|
534
539
|
}> | undefined;
|
|
535
540
|
sandbox?: Record<string, {
|
|
536
|
-
attributes?: Record<string, string | number | boolean> | undefined;
|
|
537
|
-
plugin?: string | undefined;
|
|
538
541
|
accounts?: {
|
|
539
542
|
default: string;
|
|
540
543
|
} | Record<string, {
|
|
@@ -542,6 +545,8 @@ export declare const generatedSchemas: {
|
|
|
542
545
|
publicKeyHash: string;
|
|
543
546
|
secretKey: string;
|
|
544
547
|
}> | undefined;
|
|
548
|
+
attributes?: Record<string, string | number | boolean> | undefined;
|
|
549
|
+
plugin?: string | undefined;
|
|
545
550
|
tzkt?: {
|
|
546
551
|
disableAutostartWithSandbox: boolean;
|
|
547
552
|
postgresqlPort: number;
|
|
@@ -604,16 +609,8 @@ export declare const generatedSchemas: {
|
|
|
604
609
|
};
|
|
605
610
|
}> | undefined;
|
|
606
611
|
network?: Record<string, import("@taqueria/protocol/Base").Flatten<{
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
};
|
|
610
|
-
rpcUrl: string & {
|
|
611
|
-
readonly __kind: any;
|
|
612
|
-
};
|
|
613
|
-
protocol: string & {
|
|
614
|
-
readonly __kind: any;
|
|
615
|
-
};
|
|
616
|
-
faucet: import("@taqueria/protocol/Base").Flatten<{
|
|
612
|
+
accounts?: Record<string, any> | undefined;
|
|
613
|
+
faucet?: import("@taqueria/protocol/Base").Flatten<{
|
|
617
614
|
email?: string | undefined;
|
|
618
615
|
password?: string | undefined;
|
|
619
616
|
amount?: string | undefined;
|
|
@@ -624,15 +621,20 @@ export declare const generatedSchemas: {
|
|
|
624
621
|
};
|
|
625
622
|
} & {
|
|
626
623
|
readonly __kind: any;
|
|
627
|
-
}
|
|
624
|
+
}> | undefined;
|
|
625
|
+
label: string & {
|
|
626
|
+
readonly __kind: any;
|
|
627
|
+
};
|
|
628
|
+
rpcUrl: string & {
|
|
629
|
+
readonly __kind: any;
|
|
630
|
+
};
|
|
631
|
+
protocol: string & {
|
|
632
|
+
readonly __kind: any;
|
|
633
|
+
};
|
|
628
634
|
} & {
|
|
629
635
|
readonly __kind: any;
|
|
630
636
|
}>> | undefined;
|
|
631
637
|
sandbox?: Record<string, {
|
|
632
|
-
attributes?: Record<string, string | number | boolean> | undefined;
|
|
633
|
-
plugin?: (string & {
|
|
634
|
-
readonly __kind: any;
|
|
635
|
-
}) | undefined;
|
|
636
638
|
accounts?: Record<string, string | ({
|
|
637
639
|
encryptedKey: string;
|
|
638
640
|
publicKeyHash: string & {
|
|
@@ -642,6 +644,10 @@ export declare const generatedSchemas: {
|
|
|
642
644
|
} & {
|
|
643
645
|
readonly __kind: any;
|
|
644
646
|
})> | undefined;
|
|
647
|
+
attributes?: Record<string, string | number | boolean> | undefined;
|
|
648
|
+
plugin?: (string & {
|
|
649
|
+
readonly __kind: any;
|
|
650
|
+
}) | undefined;
|
|
645
651
|
tzkt?: {
|
|
646
652
|
disableAutostartWithSandbox: boolean;
|
|
647
653
|
postgresqlPort: number;
|
|
@@ -727,16 +733,8 @@ export declare const generatedSchemas: {
|
|
|
727
733
|
};
|
|
728
734
|
}> | undefined;
|
|
729
735
|
network?: Record<string, import("@taqueria/protocol/Base").Flatten<{
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
};
|
|
733
|
-
rpcUrl: string & {
|
|
734
|
-
readonly __kind: any;
|
|
735
|
-
};
|
|
736
|
-
protocol: string & {
|
|
737
|
-
readonly __kind: any;
|
|
738
|
-
};
|
|
739
|
-
faucet: import("@taqueria/protocol/Base").Flatten<{
|
|
736
|
+
accounts?: Record<string, any> | undefined;
|
|
737
|
+
faucet?: import("@taqueria/protocol/Base").Flatten<{
|
|
740
738
|
email?: string | undefined;
|
|
741
739
|
password?: string | undefined;
|
|
742
740
|
amount?: string | undefined;
|
|
@@ -747,15 +745,20 @@ export declare const generatedSchemas: {
|
|
|
747
745
|
};
|
|
748
746
|
} & {
|
|
749
747
|
readonly __kind: any;
|
|
750
|
-
}
|
|
748
|
+
}> | undefined;
|
|
749
|
+
label: string & {
|
|
750
|
+
readonly __kind: any;
|
|
751
|
+
};
|
|
752
|
+
rpcUrl: string & {
|
|
753
|
+
readonly __kind: any;
|
|
754
|
+
};
|
|
755
|
+
protocol: string & {
|
|
756
|
+
readonly __kind: any;
|
|
757
|
+
};
|
|
751
758
|
} & {
|
|
752
759
|
readonly __kind: any;
|
|
753
760
|
}>> | undefined;
|
|
754
761
|
sandbox?: Record<string, {
|
|
755
|
-
attributes?: Record<string, string | number | boolean> | undefined;
|
|
756
|
-
plugin?: (string & {
|
|
757
|
-
readonly __kind: any;
|
|
758
|
-
}) | undefined;
|
|
759
762
|
accounts?: Record<string, string | ({
|
|
760
763
|
encryptedKey: string;
|
|
761
764
|
publicKeyHash: string & {
|
|
@@ -765,6 +768,10 @@ export declare const generatedSchemas: {
|
|
|
765
768
|
} & {
|
|
766
769
|
readonly __kind: any;
|
|
767
770
|
})> | undefined;
|
|
771
|
+
attributes?: Record<string, string | number | boolean> | undefined;
|
|
772
|
+
plugin?: (string & {
|
|
773
|
+
readonly __kind: any;
|
|
774
|
+
}) | undefined;
|
|
768
775
|
tzkt?: {
|
|
769
776
|
disableAutostartWithSandbox: boolean;
|
|
770
777
|
postgresqlPort: number;
|
|
@@ -853,16 +860,8 @@ export declare const generatedSchemas: {
|
|
|
853
860
|
};
|
|
854
861
|
}> | undefined;
|
|
855
862
|
network?: Record<string, import("@taqueria/protocol/Base").Flatten<{
|
|
856
|
-
|
|
857
|
-
|
|
858
|
-
};
|
|
859
|
-
rpcUrl: string & {
|
|
860
|
-
readonly __kind: any;
|
|
861
|
-
};
|
|
862
|
-
protocol: string & {
|
|
863
|
-
readonly __kind: any;
|
|
864
|
-
};
|
|
865
|
-
faucet: import("@taqueria/protocol/Base").Flatten<{
|
|
863
|
+
accounts?: Record<string, any> | undefined;
|
|
864
|
+
faucet?: import("@taqueria/protocol/Base").Flatten<{
|
|
866
865
|
email?: string | undefined;
|
|
867
866
|
password?: string | undefined;
|
|
868
867
|
amount?: string | undefined;
|
|
@@ -873,15 +872,20 @@ export declare const generatedSchemas: {
|
|
|
873
872
|
};
|
|
874
873
|
} & {
|
|
875
874
|
readonly __kind: any;
|
|
876
|
-
}
|
|
875
|
+
}> | undefined;
|
|
876
|
+
label: string & {
|
|
877
|
+
readonly __kind: any;
|
|
878
|
+
};
|
|
879
|
+
rpcUrl: string & {
|
|
880
|
+
readonly __kind: any;
|
|
881
|
+
};
|
|
882
|
+
protocol: string & {
|
|
883
|
+
readonly __kind: any;
|
|
884
|
+
};
|
|
877
885
|
} & {
|
|
878
886
|
readonly __kind: any;
|
|
879
887
|
}>> | undefined;
|
|
880
888
|
sandbox?: Record<string, {
|
|
881
|
-
attributes?: Record<string, string | number | boolean> | undefined;
|
|
882
|
-
plugin?: (string & {
|
|
883
|
-
readonly __kind: any;
|
|
884
|
-
}) | undefined;
|
|
885
889
|
accounts?: Record<string, string | ({
|
|
886
890
|
encryptedKey: string;
|
|
887
891
|
publicKeyHash: string & {
|
|
@@ -891,6 +895,10 @@ export declare const generatedSchemas: {
|
|
|
891
895
|
} & {
|
|
892
896
|
readonly __kind: any;
|
|
893
897
|
})> | undefined;
|
|
898
|
+
attributes?: Record<string, string | number | boolean> | undefined;
|
|
899
|
+
plugin?: (string & {
|
|
900
|
+
readonly __kind: any;
|
|
901
|
+
}) | undefined;
|
|
894
902
|
tzkt?: {
|
|
895
903
|
disableAutostartWithSandbox: boolean;
|
|
896
904
|
postgresqlPort: number;
|
|
@@ -983,16 +991,8 @@ export declare const schemas: {
|
|
|
983
991
|
};
|
|
984
992
|
}> | undefined;
|
|
985
993
|
network?: Record<string, import("@taqueria/protocol/Base").Flatten<{
|
|
986
|
-
|
|
987
|
-
|
|
988
|
-
};
|
|
989
|
-
rpcUrl: string & {
|
|
990
|
-
readonly __kind: any;
|
|
991
|
-
};
|
|
992
|
-
protocol: string & {
|
|
993
|
-
readonly __kind: any;
|
|
994
|
-
};
|
|
995
|
-
faucet: import("@taqueria/protocol/Base").Flatten<{
|
|
994
|
+
accounts?: Record<string, any> | undefined;
|
|
995
|
+
faucet?: import("@taqueria/protocol/Base").Flatten<{
|
|
996
996
|
email?: string | undefined;
|
|
997
997
|
password?: string | undefined;
|
|
998
998
|
amount?: string | undefined;
|
|
@@ -1003,15 +1003,20 @@ export declare const schemas: {
|
|
|
1003
1003
|
};
|
|
1004
1004
|
} & {
|
|
1005
1005
|
readonly __kind: any;
|
|
1006
|
-
}
|
|
1006
|
+
}> | undefined;
|
|
1007
|
+
label: string & {
|
|
1008
|
+
readonly __kind: any;
|
|
1009
|
+
};
|
|
1010
|
+
rpcUrl: string & {
|
|
1011
|
+
readonly __kind: any;
|
|
1012
|
+
};
|
|
1013
|
+
protocol: string & {
|
|
1014
|
+
readonly __kind: any;
|
|
1015
|
+
};
|
|
1007
1016
|
} & {
|
|
1008
1017
|
readonly __kind: any;
|
|
1009
1018
|
}>> | undefined;
|
|
1010
1019
|
sandbox?: Record<string, {
|
|
1011
|
-
attributes?: Record<string, string | number | boolean> | undefined;
|
|
1012
|
-
plugin?: (string & {
|
|
1013
|
-
readonly __kind: any;
|
|
1014
|
-
}) | undefined;
|
|
1015
1020
|
accounts?: Record<string, string | ({
|
|
1016
1021
|
encryptedKey: string;
|
|
1017
1022
|
publicKeyHash: string & {
|
|
@@ -1021,6 +1026,10 @@ export declare const schemas: {
|
|
|
1021
1026
|
} & {
|
|
1022
1027
|
readonly __kind: any;
|
|
1023
1028
|
})> | undefined;
|
|
1029
|
+
attributes?: Record<string, string | number | boolean> | undefined;
|
|
1030
|
+
plugin?: (string & {
|
|
1031
|
+
readonly __kind: any;
|
|
1032
|
+
}) | undefined;
|
|
1024
1033
|
tzkt?: {
|
|
1025
1034
|
disableAutostartWithSandbox: boolean;
|
|
1026
1035
|
postgresqlPort: number;
|
|
@@ -1108,16 +1117,8 @@ export declare const schemas: {
|
|
|
1108
1117
|
};
|
|
1109
1118
|
}> | undefined;
|
|
1110
1119
|
network?: Record<string, import("@taqueria/protocol/Base").Flatten<{
|
|
1111
|
-
|
|
1112
|
-
|
|
1113
|
-
};
|
|
1114
|
-
rpcUrl: string & {
|
|
1115
|
-
readonly __kind: any;
|
|
1116
|
-
};
|
|
1117
|
-
protocol: string & {
|
|
1118
|
-
readonly __kind: any;
|
|
1119
|
-
};
|
|
1120
|
-
faucet: import("@taqueria/protocol/Base").Flatten<{
|
|
1120
|
+
accounts?: Record<string, any> | undefined;
|
|
1121
|
+
faucet?: import("@taqueria/protocol/Base").Flatten<{
|
|
1121
1122
|
email?: string | undefined;
|
|
1122
1123
|
password?: string | undefined;
|
|
1123
1124
|
amount?: string | undefined;
|
|
@@ -1128,15 +1129,20 @@ export declare const schemas: {
|
|
|
1128
1129
|
};
|
|
1129
1130
|
} & {
|
|
1130
1131
|
readonly __kind: any;
|
|
1131
|
-
}
|
|
1132
|
+
}> | undefined;
|
|
1133
|
+
label: string & {
|
|
1134
|
+
readonly __kind: any;
|
|
1135
|
+
};
|
|
1136
|
+
rpcUrl: string & {
|
|
1137
|
+
readonly __kind: any;
|
|
1138
|
+
};
|
|
1139
|
+
protocol: string & {
|
|
1140
|
+
readonly __kind: any;
|
|
1141
|
+
};
|
|
1132
1142
|
} & {
|
|
1133
1143
|
readonly __kind: any;
|
|
1134
1144
|
}>> | undefined;
|
|
1135
1145
|
sandbox?: Record<string, {
|
|
1136
|
-
attributes?: Record<string, string | number | boolean> | undefined;
|
|
1137
|
-
plugin?: (string & {
|
|
1138
|
-
readonly __kind: any;
|
|
1139
|
-
}) | undefined;
|
|
1140
1146
|
accounts?: Record<string, string | ({
|
|
1141
1147
|
encryptedKey: string;
|
|
1142
1148
|
publicKeyHash: string & {
|
|
@@ -1146,6 +1152,10 @@ export declare const schemas: {
|
|
|
1146
1152
|
} & {
|
|
1147
1153
|
readonly __kind: any;
|
|
1148
1154
|
})> | undefined;
|
|
1155
|
+
attributes?: Record<string, string | number | boolean> | undefined;
|
|
1156
|
+
plugin?: (string & {
|
|
1157
|
+
readonly __kind: any;
|
|
1158
|
+
}) | undefined;
|
|
1149
1159
|
tzkt?: {
|
|
1150
1160
|
disableAutostartWithSandbox: boolean;
|
|
1151
1161
|
postgresqlPort: number;
|
|
@@ -1241,16 +1251,8 @@ export declare const proxy: {
|
|
|
1241
1251
|
};
|
|
1242
1252
|
}> | undefined;
|
|
1243
1253
|
network?: Record<string, import("@taqueria/protocol/Base").Flatten<{
|
|
1244
|
-
|
|
1245
|
-
|
|
1246
|
-
};
|
|
1247
|
-
rpcUrl: string & {
|
|
1248
|
-
readonly __kind: any;
|
|
1249
|
-
};
|
|
1250
|
-
protocol: string & {
|
|
1251
|
-
readonly __kind: any;
|
|
1252
|
-
};
|
|
1253
|
-
faucet: import("@taqueria/protocol/Base").Flatten<{
|
|
1254
|
+
accounts?: Record<string, any> | undefined;
|
|
1255
|
+
faucet?: import("@taqueria/protocol/Base").Flatten<{
|
|
1254
1256
|
email?: string | undefined;
|
|
1255
1257
|
password?: string | undefined;
|
|
1256
1258
|
amount?: string | undefined;
|
|
@@ -1261,15 +1263,20 @@ export declare const proxy: {
|
|
|
1261
1263
|
};
|
|
1262
1264
|
} & {
|
|
1263
1265
|
readonly __kind: any;
|
|
1264
|
-
}
|
|
1266
|
+
}> | undefined;
|
|
1267
|
+
label: string & {
|
|
1268
|
+
readonly __kind: any;
|
|
1269
|
+
};
|
|
1270
|
+
rpcUrl: string & {
|
|
1271
|
+
readonly __kind: any;
|
|
1272
|
+
};
|
|
1273
|
+
protocol: string & {
|
|
1274
|
+
readonly __kind: any;
|
|
1275
|
+
};
|
|
1265
1276
|
} & {
|
|
1266
1277
|
readonly __kind: any;
|
|
1267
1278
|
}>> | undefined;
|
|
1268
1279
|
sandbox?: Record<string, {
|
|
1269
|
-
attributes?: Record<string, string | number | boolean> | undefined;
|
|
1270
|
-
plugin?: (string & {
|
|
1271
|
-
readonly __kind: any;
|
|
1272
|
-
}) | undefined;
|
|
1273
1280
|
accounts?: Record<string, string | ({
|
|
1274
1281
|
encryptedKey: string;
|
|
1275
1282
|
publicKeyHash: string & {
|
|
@@ -1279,6 +1286,10 @@ export declare const proxy: {
|
|
|
1279
1286
|
} & {
|
|
1280
1287
|
readonly __kind: any;
|
|
1281
1288
|
})> | undefined;
|
|
1289
|
+
attributes?: Record<string, string | number | boolean> | undefined;
|
|
1290
|
+
plugin?: (string & {
|
|
1291
|
+
readonly __kind: any;
|
|
1292
|
+
}) | undefined;
|
|
1282
1293
|
tzkt?: {
|
|
1283
1294
|
disableAutostartWithSandbox: boolean;
|
|
1284
1295
|
postgresqlPort: number;
|
|
@@ -1370,16 +1381,8 @@ export declare const proxy: {
|
|
|
1370
1381
|
};
|
|
1371
1382
|
}> | undefined;
|
|
1372
1383
|
network?: Record<string, import("@taqueria/protocol/Base").Flatten<{
|
|
1373
|
-
|
|
1374
|
-
|
|
1375
|
-
};
|
|
1376
|
-
rpcUrl: string & {
|
|
1377
|
-
readonly __kind: any;
|
|
1378
|
-
};
|
|
1379
|
-
protocol: string & {
|
|
1380
|
-
readonly __kind: any;
|
|
1381
|
-
};
|
|
1382
|
-
faucet: import("@taqueria/protocol/Base").Flatten<{
|
|
1384
|
+
accounts?: Record<string, any> | undefined;
|
|
1385
|
+
faucet?: import("@taqueria/protocol/Base").Flatten<{
|
|
1383
1386
|
email?: string | undefined;
|
|
1384
1387
|
password?: string | undefined;
|
|
1385
1388
|
amount?: string | undefined;
|
|
@@ -1390,15 +1393,20 @@ export declare const proxy: {
|
|
|
1390
1393
|
};
|
|
1391
1394
|
} & {
|
|
1392
1395
|
readonly __kind: any;
|
|
1393
|
-
}
|
|
1396
|
+
}> | undefined;
|
|
1397
|
+
label: string & {
|
|
1398
|
+
readonly __kind: any;
|
|
1399
|
+
};
|
|
1400
|
+
rpcUrl: string & {
|
|
1401
|
+
readonly __kind: any;
|
|
1402
|
+
};
|
|
1403
|
+
protocol: string & {
|
|
1404
|
+
readonly __kind: any;
|
|
1405
|
+
};
|
|
1394
1406
|
} & {
|
|
1395
1407
|
readonly __kind: any;
|
|
1396
1408
|
}>> | undefined;
|
|
1397
1409
|
sandbox?: Record<string, {
|
|
1398
|
-
attributes?: Record<string, string | number | boolean> | undefined;
|
|
1399
|
-
plugin?: (string & {
|
|
1400
|
-
readonly __kind: any;
|
|
1401
|
-
}) | undefined;
|
|
1402
1410
|
accounts?: Record<string, string | ({
|
|
1403
1411
|
encryptedKey: string;
|
|
1404
1412
|
publicKeyHash: string & {
|
|
@@ -1408,6 +1416,10 @@ export declare const proxy: {
|
|
|
1408
1416
|
} & {
|
|
1409
1417
|
readonly __kind: any;
|
|
1410
1418
|
})> | undefined;
|
|
1419
|
+
attributes?: Record<string, string | number | boolean> | undefined;
|
|
1420
|
+
plugin?: (string & {
|
|
1421
|
+
readonly __kind: any;
|
|
1422
|
+
}) | undefined;
|
|
1411
1423
|
tzkt?: {
|
|
1412
1424
|
disableAutostartWithSandbox: boolean;
|
|
1413
1425
|
postgresqlPort: number;
|
|
@@ -1494,16 +1506,8 @@ export declare const proxy: {
|
|
|
1494
1506
|
};
|
|
1495
1507
|
}> | undefined;
|
|
1496
1508
|
network?: Record<string, import("@taqueria/protocol/Base").Flatten<{
|
|
1497
|
-
|
|
1498
|
-
|
|
1499
|
-
};
|
|
1500
|
-
rpcUrl: string & {
|
|
1501
|
-
readonly __kind: any;
|
|
1502
|
-
};
|
|
1503
|
-
protocol: string & {
|
|
1504
|
-
readonly __kind: any;
|
|
1505
|
-
};
|
|
1506
|
-
faucet: import("@taqueria/protocol/Base").Flatten<{
|
|
1509
|
+
accounts?: Record<string, any> | undefined;
|
|
1510
|
+
faucet?: import("@taqueria/protocol/Base").Flatten<{
|
|
1507
1511
|
email?: string | undefined;
|
|
1508
1512
|
password?: string | undefined;
|
|
1509
1513
|
amount?: string | undefined;
|
|
@@ -1514,15 +1518,20 @@ export declare const proxy: {
|
|
|
1514
1518
|
};
|
|
1515
1519
|
} & {
|
|
1516
1520
|
readonly __kind: any;
|
|
1517
|
-
}
|
|
1521
|
+
}> | undefined;
|
|
1522
|
+
label: string & {
|
|
1523
|
+
readonly __kind: any;
|
|
1524
|
+
};
|
|
1525
|
+
rpcUrl: string & {
|
|
1526
|
+
readonly __kind: any;
|
|
1527
|
+
};
|
|
1528
|
+
protocol: string & {
|
|
1529
|
+
readonly __kind: any;
|
|
1530
|
+
};
|
|
1518
1531
|
} & {
|
|
1519
1532
|
readonly __kind: any;
|
|
1520
1533
|
}>> | undefined;
|
|
1521
1534
|
sandbox?: Record<string, {
|
|
1522
|
-
attributes?: Record<string, string | number | boolean> | undefined;
|
|
1523
|
-
plugin?: (string & {
|
|
1524
|
-
readonly __kind: any;
|
|
1525
|
-
}) | undefined;
|
|
1526
1535
|
accounts?: Record<string, string | ({
|
|
1527
1536
|
encryptedKey: string;
|
|
1528
1537
|
publicKeyHash: string & {
|
|
@@ -1532,6 +1541,10 @@ export declare const proxy: {
|
|
|
1532
1541
|
} & {
|
|
1533
1542
|
readonly __kind: any;
|
|
1534
1543
|
})> | undefined;
|
|
1544
|
+
attributes?: Record<string, string | number | boolean> | undefined;
|
|
1545
|
+
plugin?: (string & {
|
|
1546
|
+
readonly __kind: any;
|
|
1547
|
+
}) | undefined;
|
|
1535
1548
|
tzkt?: {
|
|
1536
1549
|
disableAutostartWithSandbox: boolean;
|
|
1537
1550
|
postgresqlPort: number;
|
|
@@ -1621,16 +1634,8 @@ export declare const proxy: {
|
|
|
1621
1634
|
};
|
|
1622
1635
|
}> | undefined;
|
|
1623
1636
|
network?: Record<string, import("@taqueria/protocol/Base").Flatten<{
|
|
1624
|
-
|
|
1625
|
-
|
|
1626
|
-
};
|
|
1627
|
-
rpcUrl: string & {
|
|
1628
|
-
readonly __kind: any;
|
|
1629
|
-
};
|
|
1630
|
-
protocol: string & {
|
|
1631
|
-
readonly __kind: any;
|
|
1632
|
-
};
|
|
1633
|
-
faucet: import("@taqueria/protocol/Base").Flatten<{
|
|
1637
|
+
accounts?: Record<string, any> | undefined;
|
|
1638
|
+
faucet?: import("@taqueria/protocol/Base").Flatten<{
|
|
1634
1639
|
email?: string | undefined;
|
|
1635
1640
|
password?: string | undefined;
|
|
1636
1641
|
amount?: string | undefined;
|
|
@@ -1641,15 +1646,20 @@ export declare const proxy: {
|
|
|
1641
1646
|
};
|
|
1642
1647
|
} & {
|
|
1643
1648
|
readonly __kind: any;
|
|
1644
|
-
}
|
|
1649
|
+
}> | undefined;
|
|
1650
|
+
label: string & {
|
|
1651
|
+
readonly __kind: any;
|
|
1652
|
+
};
|
|
1653
|
+
rpcUrl: string & {
|
|
1654
|
+
readonly __kind: any;
|
|
1655
|
+
};
|
|
1656
|
+
protocol: string & {
|
|
1657
|
+
readonly __kind: any;
|
|
1658
|
+
};
|
|
1645
1659
|
} & {
|
|
1646
1660
|
readonly __kind: any;
|
|
1647
1661
|
}>> | undefined;
|
|
1648
1662
|
sandbox?: Record<string, {
|
|
1649
|
-
attributes?: Record<string, string | number | boolean> | undefined;
|
|
1650
|
-
plugin?: (string & {
|
|
1651
|
-
readonly __kind: any;
|
|
1652
|
-
}) | undefined;
|
|
1653
1663
|
accounts?: Record<string, string | ({
|
|
1654
1664
|
encryptedKey: string;
|
|
1655
1665
|
publicKeyHash: string & {
|
|
@@ -1659,6 +1669,10 @@ export declare const proxy: {
|
|
|
1659
1669
|
} & {
|
|
1660
1670
|
readonly __kind: any;
|
|
1661
1671
|
})> | undefined;
|
|
1672
|
+
attributes?: Record<string, string | number | boolean> | undefined;
|
|
1673
|
+
plugin?: (string & {
|
|
1674
|
+
readonly __kind: any;
|
|
1675
|
+
}) | undefined;
|
|
1662
1676
|
tzkt?: {
|
|
1663
1677
|
disableAutostartWithSandbox: boolean;
|
|
1664
1678
|
postgresqlPort: number;
|
|
@@ -1747,21 +1761,20 @@ export declare const proxy: {
|
|
|
1747
1761
|
hash: string;
|
|
1748
1762
|
}> | undefined;
|
|
1749
1763
|
network?: Record<string, {
|
|
1750
|
-
|
|
1751
|
-
|
|
1752
|
-
protocol: string;
|
|
1753
|
-
faucet: {
|
|
1764
|
+
accounts?: Record<string, any> | undefined;
|
|
1765
|
+
faucet?: {
|
|
1754
1766
|
email?: string | undefined;
|
|
1755
1767
|
password?: string | undefined;
|
|
1756
1768
|
amount?: string | undefined;
|
|
1757
1769
|
activation_code?: string | undefined;
|
|
1758
1770
|
mnemonic: string[];
|
|
1759
1771
|
pkh: string;
|
|
1760
|
-
};
|
|
1772
|
+
} | undefined;
|
|
1773
|
+
label: string;
|
|
1774
|
+
rpcUrl: string;
|
|
1775
|
+
protocol: string;
|
|
1761
1776
|
}> | undefined;
|
|
1762
1777
|
sandbox?: Record<string, {
|
|
1763
|
-
attributes?: Record<string, string | number | boolean> | undefined;
|
|
1764
|
-
plugin?: string | undefined;
|
|
1765
1778
|
accounts?: {
|
|
1766
1779
|
default: string;
|
|
1767
1780
|
} | Record<string, {
|
|
@@ -1769,6 +1782,8 @@ export declare const proxy: {
|
|
|
1769
1782
|
publicKeyHash: string;
|
|
1770
1783
|
secretKey: string;
|
|
1771
1784
|
}> | undefined;
|
|
1785
|
+
attributes?: Record<string, string | number | boolean> | undefined;
|
|
1786
|
+
plugin?: string | undefined;
|
|
1772
1787
|
tzkt?: {
|
|
1773
1788
|
disableAutostartWithSandbox: boolean;
|
|
1774
1789
|
postgresqlPort: number;
|
|
@@ -1832,16 +1847,8 @@ export declare const proxy: {
|
|
|
1832
1847
|
};
|
|
1833
1848
|
}> | undefined;
|
|
1834
1849
|
network?: Record<string, import("@taqueria/protocol/Base").Flatten<{
|
|
1835
|
-
|
|
1836
|
-
|
|
1837
|
-
};
|
|
1838
|
-
rpcUrl: string & {
|
|
1839
|
-
readonly __kind: any;
|
|
1840
|
-
};
|
|
1841
|
-
protocol: string & {
|
|
1842
|
-
readonly __kind: any;
|
|
1843
|
-
};
|
|
1844
|
-
faucet: import("@taqueria/protocol/Base").Flatten<{
|
|
1850
|
+
accounts?: Record<string, any> | undefined;
|
|
1851
|
+
faucet?: import("@taqueria/protocol/Base").Flatten<{
|
|
1845
1852
|
email?: string | undefined;
|
|
1846
1853
|
password?: string | undefined;
|
|
1847
1854
|
amount?: string | undefined;
|
|
@@ -1852,15 +1859,20 @@ export declare const proxy: {
|
|
|
1852
1859
|
};
|
|
1853
1860
|
} & {
|
|
1854
1861
|
readonly __kind: any;
|
|
1855
|
-
}
|
|
1862
|
+
}> | undefined;
|
|
1863
|
+
label: string & {
|
|
1864
|
+
readonly __kind: any;
|
|
1865
|
+
};
|
|
1866
|
+
rpcUrl: string & {
|
|
1867
|
+
readonly __kind: any;
|
|
1868
|
+
};
|
|
1869
|
+
protocol: string & {
|
|
1870
|
+
readonly __kind: any;
|
|
1871
|
+
};
|
|
1856
1872
|
} & {
|
|
1857
1873
|
readonly __kind: any;
|
|
1858
1874
|
}>> | undefined;
|
|
1859
1875
|
sandbox?: Record<string, {
|
|
1860
|
-
attributes?: Record<string, string | number | boolean> | undefined;
|
|
1861
|
-
plugin?: (string & {
|
|
1862
|
-
readonly __kind: any;
|
|
1863
|
-
}) | undefined;
|
|
1864
1876
|
accounts?: Record<string, string | ({
|
|
1865
1877
|
encryptedKey: string;
|
|
1866
1878
|
publicKeyHash: string & {
|
|
@@ -1870,6 +1882,10 @@ export declare const proxy: {
|
|
|
1870
1882
|
} & {
|
|
1871
1883
|
readonly __kind: any;
|
|
1872
1884
|
})> | undefined;
|
|
1885
|
+
attributes?: Record<string, string | number | boolean> | undefined;
|
|
1886
|
+
plugin?: (string & {
|
|
1887
|
+
readonly __kind: any;
|
|
1888
|
+
}) | undefined;
|
|
1873
1889
|
tzkt?: {
|
|
1874
1890
|
disableAutostartWithSandbox: boolean;
|
|
1875
1891
|
postgresqlPort: number;
|
|
@@ -1956,16 +1972,8 @@ export declare const proxy: {
|
|
|
1956
1972
|
};
|
|
1957
1973
|
}> | undefined;
|
|
1958
1974
|
network?: Record<string, import("@taqueria/protocol/Base").Flatten<{
|
|
1959
|
-
|
|
1960
|
-
|
|
1961
|
-
};
|
|
1962
|
-
rpcUrl: string & {
|
|
1963
|
-
readonly __kind: any;
|
|
1964
|
-
};
|
|
1965
|
-
protocol: string & {
|
|
1966
|
-
readonly __kind: any;
|
|
1967
|
-
};
|
|
1968
|
-
faucet: import("@taqueria/protocol/Base").Flatten<{
|
|
1975
|
+
accounts?: Record<string, any> | undefined;
|
|
1976
|
+
faucet?: import("@taqueria/protocol/Base").Flatten<{
|
|
1969
1977
|
email?: string | undefined;
|
|
1970
1978
|
password?: string | undefined;
|
|
1971
1979
|
amount?: string | undefined;
|
|
@@ -1976,15 +1984,20 @@ export declare const proxy: {
|
|
|
1976
1984
|
};
|
|
1977
1985
|
} & {
|
|
1978
1986
|
readonly __kind: any;
|
|
1979
|
-
}
|
|
1987
|
+
}> | undefined;
|
|
1988
|
+
label: string & {
|
|
1989
|
+
readonly __kind: any;
|
|
1990
|
+
};
|
|
1991
|
+
rpcUrl: string & {
|
|
1992
|
+
readonly __kind: any;
|
|
1993
|
+
};
|
|
1994
|
+
protocol: string & {
|
|
1995
|
+
readonly __kind: any;
|
|
1996
|
+
};
|
|
1980
1997
|
} & {
|
|
1981
1998
|
readonly __kind: any;
|
|
1982
1999
|
}>> | undefined;
|
|
1983
2000
|
sandbox?: Record<string, {
|
|
1984
|
-
attributes?: Record<string, string | number | boolean> | undefined;
|
|
1985
|
-
plugin?: (string & {
|
|
1986
|
-
readonly __kind: any;
|
|
1987
|
-
}) | undefined;
|
|
1988
2001
|
accounts?: Record<string, string | ({
|
|
1989
2002
|
encryptedKey: string;
|
|
1990
2003
|
publicKeyHash: string & {
|
|
@@ -1994,6 +2007,10 @@ export declare const proxy: {
|
|
|
1994
2007
|
} & {
|
|
1995
2008
|
readonly __kind: any;
|
|
1996
2009
|
})> | undefined;
|
|
2010
|
+
attributes?: Record<string, string | number | boolean> | undefined;
|
|
2011
|
+
plugin?: (string & {
|
|
2012
|
+
readonly __kind: any;
|
|
2013
|
+
}) | undefined;
|
|
1997
2014
|
tzkt?: {
|
|
1998
2015
|
disableAutostartWithSandbox: boolean;
|
|
1999
2016
|
postgresqlPort: number;
|
|
@@ -2083,16 +2100,8 @@ export declare const proxy: {
|
|
|
2083
2100
|
};
|
|
2084
2101
|
}> | undefined;
|
|
2085
2102
|
network?: Record<string, import("@taqueria/protocol/Base").Flatten<{
|
|
2086
|
-
|
|
2087
|
-
|
|
2088
|
-
};
|
|
2089
|
-
rpcUrl: string & {
|
|
2090
|
-
readonly __kind: any;
|
|
2091
|
-
};
|
|
2092
|
-
protocol: string & {
|
|
2093
|
-
readonly __kind: any;
|
|
2094
|
-
};
|
|
2095
|
-
faucet: import("@taqueria/protocol/Base").Flatten<{
|
|
2103
|
+
accounts?: Record<string, any> | undefined;
|
|
2104
|
+
faucet?: import("@taqueria/protocol/Base").Flatten<{
|
|
2096
2105
|
email?: string | undefined;
|
|
2097
2106
|
password?: string | undefined;
|
|
2098
2107
|
amount?: string | undefined;
|
|
@@ -2103,15 +2112,20 @@ export declare const proxy: {
|
|
|
2103
2112
|
};
|
|
2104
2113
|
} & {
|
|
2105
2114
|
readonly __kind: any;
|
|
2106
|
-
}
|
|
2115
|
+
}> | undefined;
|
|
2116
|
+
label: string & {
|
|
2117
|
+
readonly __kind: any;
|
|
2118
|
+
};
|
|
2119
|
+
rpcUrl: string & {
|
|
2120
|
+
readonly __kind: any;
|
|
2121
|
+
};
|
|
2122
|
+
protocol: string & {
|
|
2123
|
+
readonly __kind: any;
|
|
2124
|
+
};
|
|
2107
2125
|
} & {
|
|
2108
2126
|
readonly __kind: any;
|
|
2109
2127
|
}>> | undefined;
|
|
2110
2128
|
sandbox?: Record<string, {
|
|
2111
|
-
attributes?: Record<string, string | number | boolean> | undefined;
|
|
2112
|
-
plugin?: (string & {
|
|
2113
|
-
readonly __kind: any;
|
|
2114
|
-
}) | undefined;
|
|
2115
2129
|
accounts?: Record<string, string | ({
|
|
2116
2130
|
encryptedKey: string;
|
|
2117
2131
|
publicKeyHash: string & {
|
|
@@ -2121,6 +2135,10 @@ export declare const proxy: {
|
|
|
2121
2135
|
} & {
|
|
2122
2136
|
readonly __kind: any;
|
|
2123
2137
|
})> | undefined;
|
|
2138
|
+
attributes?: Record<string, string | number | boolean> | undefined;
|
|
2139
|
+
plugin?: (string & {
|
|
2140
|
+
readonly __kind: any;
|
|
2141
|
+
}) | undefined;
|
|
2124
2142
|
tzkt?: {
|
|
2125
2143
|
disableAutostartWithSandbox: boolean;
|
|
2126
2144
|
postgresqlPort: number;
|
|
@@ -2215,21 +2233,20 @@ export declare const proxyTemplate: {
|
|
|
2215
2233
|
hash: string;
|
|
2216
2234
|
}> | undefined;
|
|
2217
2235
|
network?: Record<string, {
|
|
2218
|
-
|
|
2219
|
-
|
|
2220
|
-
protocol: string;
|
|
2221
|
-
faucet: {
|
|
2236
|
+
accounts?: Record<string, any> | undefined;
|
|
2237
|
+
faucet?: {
|
|
2222
2238
|
email?: string | undefined;
|
|
2223
2239
|
password?: string | undefined;
|
|
2224
2240
|
amount?: string | undefined;
|
|
2225
2241
|
activation_code?: string | undefined;
|
|
2226
2242
|
mnemonic: string[];
|
|
2227
2243
|
pkh: string;
|
|
2228
|
-
};
|
|
2244
|
+
} | undefined;
|
|
2245
|
+
label: string;
|
|
2246
|
+
rpcUrl: string;
|
|
2247
|
+
protocol: string;
|
|
2229
2248
|
}> | undefined;
|
|
2230
2249
|
sandbox?: Record<string, {
|
|
2231
|
-
attributes?: Record<string, string | number | boolean> | undefined;
|
|
2232
|
-
plugin?: string | undefined;
|
|
2233
2250
|
accounts?: {
|
|
2234
2251
|
default: string;
|
|
2235
2252
|
} | Record<string, {
|
|
@@ -2237,6 +2254,8 @@ export declare const proxyTemplate: {
|
|
|
2237
2254
|
publicKeyHash: string;
|
|
2238
2255
|
secretKey: string;
|
|
2239
2256
|
}> | undefined;
|
|
2257
|
+
attributes?: Record<string, string | number | boolean> | undefined;
|
|
2258
|
+
plugin?: string | undefined;
|
|
2240
2259
|
tzkt?: {
|
|
2241
2260
|
disableAutostartWithSandbox: boolean;
|
|
2242
2261
|
postgresqlPort: number;
|
|
@@ -2304,21 +2323,20 @@ export declare const proxyTemplate: {
|
|
|
2304
2323
|
hash: string;
|
|
2305
2324
|
}> | undefined;
|
|
2306
2325
|
network?: Record<string, {
|
|
2307
|
-
|
|
2308
|
-
|
|
2309
|
-
protocol: string;
|
|
2310
|
-
faucet: {
|
|
2326
|
+
accounts?: Record<string, any> | undefined;
|
|
2327
|
+
faucet?: {
|
|
2311
2328
|
email?: string | undefined;
|
|
2312
2329
|
password?: string | undefined;
|
|
2313
2330
|
amount?: string | undefined;
|
|
2314
2331
|
activation_code?: string | undefined;
|
|
2315
2332
|
mnemonic: string[];
|
|
2316
2333
|
pkh: string;
|
|
2317
|
-
};
|
|
2334
|
+
} | undefined;
|
|
2335
|
+
label: string;
|
|
2336
|
+
rpcUrl: string;
|
|
2337
|
+
protocol: string;
|
|
2318
2338
|
}> | undefined;
|
|
2319
2339
|
sandbox?: Record<string, {
|
|
2320
|
-
attributes?: Record<string, string | number | boolean> | undefined;
|
|
2321
|
-
plugin?: string | undefined;
|
|
2322
2340
|
accounts?: {
|
|
2323
2341
|
default: string;
|
|
2324
2342
|
} | Record<string, {
|
|
@@ -2326,6 +2344,8 @@ export declare const proxyTemplate: {
|
|
|
2326
2344
|
publicKeyHash: string;
|
|
2327
2345
|
secretKey: string;
|
|
2328
2346
|
}> | undefined;
|
|
2347
|
+
attributes?: Record<string, string | number | boolean> | undefined;
|
|
2348
|
+
plugin?: string | undefined;
|
|
2329
2349
|
tzkt?: {
|
|
2330
2350
|
disableAutostartWithSandbox: boolean;
|
|
2331
2351
|
postgresqlPort: number;
|
|
@@ -2388,21 +2408,20 @@ export declare const proxyTemplate: {
|
|
|
2388
2408
|
hash: string;
|
|
2389
2409
|
}> | undefined;
|
|
2390
2410
|
network?: Record<string, {
|
|
2391
|
-
|
|
2392
|
-
|
|
2393
|
-
protocol: string;
|
|
2394
|
-
faucet: {
|
|
2411
|
+
accounts?: Record<string, any> | undefined;
|
|
2412
|
+
faucet?: {
|
|
2395
2413
|
email?: string | undefined;
|
|
2396
2414
|
password?: string | undefined;
|
|
2397
2415
|
amount?: string | undefined;
|
|
2398
2416
|
activation_code?: string | undefined;
|
|
2399
2417
|
mnemonic: string[];
|
|
2400
2418
|
pkh: string;
|
|
2401
|
-
};
|
|
2419
|
+
} | undefined;
|
|
2420
|
+
label: string;
|
|
2421
|
+
rpcUrl: string;
|
|
2422
|
+
protocol: string;
|
|
2402
2423
|
}> | undefined;
|
|
2403
2424
|
sandbox?: Record<string, {
|
|
2404
|
-
attributes?: Record<string, string | number | boolean> | undefined;
|
|
2405
|
-
plugin?: string | undefined;
|
|
2406
2425
|
accounts?: {
|
|
2407
2426
|
default: string;
|
|
2408
2427
|
} | Record<string, {
|
|
@@ -2410,6 +2429,8 @@ export declare const proxyTemplate: {
|
|
|
2410
2429
|
publicKeyHash: string;
|
|
2411
2430
|
secretKey: string;
|
|
2412
2431
|
}> | undefined;
|
|
2432
|
+
attributes?: Record<string, string | number | boolean> | undefined;
|
|
2433
|
+
plugin?: string | undefined;
|
|
2413
2434
|
tzkt?: {
|
|
2414
2435
|
disableAutostartWithSandbox: boolean;
|
|
2415
2436
|
postgresqlPort: number;
|
|
@@ -2475,21 +2496,20 @@ export declare const proxyTemplate: {
|
|
|
2475
2496
|
hash: string;
|
|
2476
2497
|
}> | undefined;
|
|
2477
2498
|
network?: Record<string, {
|
|
2478
|
-
|
|
2479
|
-
|
|
2480
|
-
protocol: string;
|
|
2481
|
-
faucet: {
|
|
2499
|
+
accounts?: Record<string, any> | undefined;
|
|
2500
|
+
faucet?: {
|
|
2482
2501
|
email?: string | undefined;
|
|
2483
2502
|
password?: string | undefined;
|
|
2484
2503
|
amount?: string | undefined;
|
|
2485
2504
|
activation_code?: string | undefined;
|
|
2486
2505
|
mnemonic: string[];
|
|
2487
2506
|
pkh: string;
|
|
2488
|
-
};
|
|
2507
|
+
} | undefined;
|
|
2508
|
+
label: string;
|
|
2509
|
+
rpcUrl: string;
|
|
2510
|
+
protocol: string;
|
|
2489
2511
|
}> | undefined;
|
|
2490
2512
|
sandbox?: Record<string, {
|
|
2491
|
-
attributes?: Record<string, string | number | boolean> | undefined;
|
|
2492
|
-
plugin?: string | undefined;
|
|
2493
2513
|
accounts?: {
|
|
2494
2514
|
default: string;
|
|
2495
2515
|
} | Record<string, {
|
|
@@ -2497,6 +2517,8 @@ export declare const proxyTemplate: {
|
|
|
2497
2517
|
publicKeyHash: string;
|
|
2498
2518
|
secretKey: string;
|
|
2499
2519
|
}> | undefined;
|
|
2520
|
+
attributes?: Record<string, string | number | boolean> | undefined;
|
|
2521
|
+
plugin?: string | undefined;
|
|
2500
2522
|
tzkt?: {
|
|
2501
2523
|
disableAutostartWithSandbox: boolean;
|
|
2502
2524
|
postgresqlPort: number;
|
|
@@ -2562,21 +2584,20 @@ export declare const proxyTemplate: {
|
|
|
2562
2584
|
hash: string;
|
|
2563
2585
|
}> | undefined;
|
|
2564
2586
|
network?: Record<string, {
|
|
2565
|
-
|
|
2566
|
-
|
|
2567
|
-
protocol: string;
|
|
2568
|
-
faucet: {
|
|
2587
|
+
accounts?: Record<string, any> | undefined;
|
|
2588
|
+
faucet?: {
|
|
2569
2589
|
email?: string | undefined;
|
|
2570
2590
|
password?: string | undefined;
|
|
2571
2591
|
amount?: string | undefined;
|
|
2572
2592
|
activation_code?: string | undefined;
|
|
2573
2593
|
mnemonic: string[];
|
|
2574
2594
|
pkh: string;
|
|
2575
|
-
};
|
|
2595
|
+
} | undefined;
|
|
2596
|
+
label: string;
|
|
2597
|
+
rpcUrl: string;
|
|
2598
|
+
protocol: string;
|
|
2576
2599
|
}> | undefined;
|
|
2577
2600
|
sandbox?: Record<string, {
|
|
2578
|
-
attributes?: Record<string, string | number | boolean> | undefined;
|
|
2579
|
-
plugin?: string | undefined;
|
|
2580
2601
|
accounts?: {
|
|
2581
2602
|
default: string;
|
|
2582
2603
|
} | Record<string, {
|
|
@@ -2584,6 +2605,8 @@ export declare const proxyTemplate: {
|
|
|
2584
2605
|
publicKeyHash: string;
|
|
2585
2606
|
secretKey: string;
|
|
2586
2607
|
}> | undefined;
|
|
2608
|
+
attributes?: Record<string, string | number | boolean> | undefined;
|
|
2609
|
+
plugin?: string | undefined;
|
|
2587
2610
|
tzkt?: {
|
|
2588
2611
|
disableAutostartWithSandbox: boolean;
|
|
2589
2612
|
postgresqlPort: number;
|
|
@@ -2646,21 +2669,20 @@ export declare const proxyTemplate: {
|
|
|
2646
2669
|
hash: string;
|
|
2647
2670
|
}> | undefined;
|
|
2648
2671
|
network?: Record<string, {
|
|
2649
|
-
|
|
2650
|
-
|
|
2651
|
-
protocol: string;
|
|
2652
|
-
faucet: {
|
|
2672
|
+
accounts?: Record<string, any> | undefined;
|
|
2673
|
+
faucet?: {
|
|
2653
2674
|
email?: string | undefined;
|
|
2654
2675
|
password?: string | undefined;
|
|
2655
2676
|
amount?: string | undefined;
|
|
2656
2677
|
activation_code?: string | undefined;
|
|
2657
2678
|
mnemonic: string[];
|
|
2658
2679
|
pkh: string;
|
|
2659
|
-
};
|
|
2680
|
+
} | undefined;
|
|
2681
|
+
label: string;
|
|
2682
|
+
rpcUrl: string;
|
|
2683
|
+
protocol: string;
|
|
2660
2684
|
}> | undefined;
|
|
2661
2685
|
sandbox?: Record<string, {
|
|
2662
|
-
attributes?: Record<string, string | number | boolean> | undefined;
|
|
2663
|
-
plugin?: string | undefined;
|
|
2664
2686
|
accounts?: {
|
|
2665
2687
|
default: string;
|
|
2666
2688
|
} | Record<string, {
|
|
@@ -2668,6 +2690,8 @@ export declare const proxyTemplate: {
|
|
|
2668
2690
|
publicKeyHash: string;
|
|
2669
2691
|
secretKey: string;
|
|
2670
2692
|
}> | undefined;
|
|
2693
|
+
attributes?: Record<string, string | number | boolean> | undefined;
|
|
2694
|
+
plugin?: string | undefined;
|
|
2671
2695
|
tzkt?: {
|
|
2672
2696
|
disableAutostartWithSandbox: boolean;
|
|
2673
2697
|
postgresqlPort: number;
|
|
@@ -2730,21 +2754,20 @@ export declare const proxyTemplate: {
|
|
|
2730
2754
|
hash: string;
|
|
2731
2755
|
}> | undefined;
|
|
2732
2756
|
network?: Record<string, {
|
|
2733
|
-
|
|
2734
|
-
|
|
2735
|
-
protocol: string;
|
|
2736
|
-
faucet: {
|
|
2757
|
+
accounts?: Record<string, any> | undefined;
|
|
2758
|
+
faucet?: {
|
|
2737
2759
|
email?: string | undefined;
|
|
2738
2760
|
password?: string | undefined;
|
|
2739
2761
|
amount?: string | undefined;
|
|
2740
2762
|
activation_code?: string | undefined;
|
|
2741
2763
|
mnemonic: string[];
|
|
2742
2764
|
pkh: string;
|
|
2743
|
-
};
|
|
2765
|
+
} | undefined;
|
|
2766
|
+
label: string;
|
|
2767
|
+
rpcUrl: string;
|
|
2768
|
+
protocol: string;
|
|
2744
2769
|
}> | undefined;
|
|
2745
2770
|
sandbox?: Record<string, {
|
|
2746
|
-
attributes?: Record<string, string | number | boolean> | undefined;
|
|
2747
|
-
plugin?: string | undefined;
|
|
2748
2771
|
accounts?: {
|
|
2749
2772
|
default: string;
|
|
2750
2773
|
} | Record<string, {
|
|
@@ -2752,6 +2775,8 @@ export declare const proxyTemplate: {
|
|
|
2752
2775
|
publicKeyHash: string;
|
|
2753
2776
|
secretKey: string;
|
|
2754
2777
|
}> | undefined;
|
|
2778
|
+
attributes?: Record<string, string | number | boolean> | undefined;
|
|
2779
|
+
plugin?: string | undefined;
|
|
2755
2780
|
tzkt?: {
|
|
2756
2781
|
disableAutostartWithSandbox: boolean;
|
|
2757
2782
|
postgresqlPort: number;
|
|
@@ -2817,21 +2842,20 @@ export declare const proxyTemplate: {
|
|
|
2817
2842
|
hash: string;
|
|
2818
2843
|
}> | undefined;
|
|
2819
2844
|
network?: Record<string, {
|
|
2820
|
-
|
|
2821
|
-
|
|
2822
|
-
protocol: string;
|
|
2823
|
-
faucet: {
|
|
2845
|
+
accounts?: Record<string, any> | undefined;
|
|
2846
|
+
faucet?: {
|
|
2824
2847
|
email?: string | undefined;
|
|
2825
2848
|
password?: string | undefined;
|
|
2826
2849
|
amount?: string | undefined;
|
|
2827
2850
|
activation_code?: string | undefined;
|
|
2828
2851
|
mnemonic: string[];
|
|
2829
2852
|
pkh: string;
|
|
2830
|
-
};
|
|
2853
|
+
} | undefined;
|
|
2854
|
+
label: string;
|
|
2855
|
+
rpcUrl: string;
|
|
2856
|
+
protocol: string;
|
|
2831
2857
|
}> | undefined;
|
|
2832
2858
|
sandbox?: Record<string, {
|
|
2833
|
-
attributes?: Record<string, string | number | boolean> | undefined;
|
|
2834
|
-
plugin?: string | undefined;
|
|
2835
2859
|
accounts?: {
|
|
2836
2860
|
default: string;
|
|
2837
2861
|
} | Record<string, {
|
|
@@ -2839,6 +2863,8 @@ export declare const proxyTemplate: {
|
|
|
2839
2863
|
publicKeyHash: string;
|
|
2840
2864
|
secretKey: string;
|
|
2841
2865
|
}> | undefined;
|
|
2866
|
+
attributes?: Record<string, string | number | boolean> | undefined;
|
|
2867
|
+
plugin?: string | undefined;
|
|
2842
2868
|
tzkt?: {
|
|
2843
2869
|
disableAutostartWithSandbox: boolean;
|
|
2844
2870
|
postgresqlPort: number;
|
|
@@ -2910,16 +2936,8 @@ export declare const proxySchemas: {
|
|
|
2910
2936
|
};
|
|
2911
2937
|
}> | undefined;
|
|
2912
2938
|
network?: Record<string, import("@taqueria/protocol/Base").Flatten<{
|
|
2913
|
-
|
|
2914
|
-
|
|
2915
|
-
};
|
|
2916
|
-
rpcUrl: string & {
|
|
2917
|
-
readonly __kind: any;
|
|
2918
|
-
};
|
|
2919
|
-
protocol: string & {
|
|
2920
|
-
readonly __kind: any;
|
|
2921
|
-
};
|
|
2922
|
-
faucet: import("@taqueria/protocol/Base").Flatten<{
|
|
2939
|
+
accounts?: Record<string, any> | undefined;
|
|
2940
|
+
faucet?: import("@taqueria/protocol/Base").Flatten<{
|
|
2923
2941
|
email?: string | undefined;
|
|
2924
2942
|
password?: string | undefined;
|
|
2925
2943
|
amount?: string | undefined;
|
|
@@ -2930,15 +2948,20 @@ export declare const proxySchemas: {
|
|
|
2930
2948
|
};
|
|
2931
2949
|
} & {
|
|
2932
2950
|
readonly __kind: any;
|
|
2933
|
-
}
|
|
2951
|
+
}> | undefined;
|
|
2952
|
+
label: string & {
|
|
2953
|
+
readonly __kind: any;
|
|
2954
|
+
};
|
|
2955
|
+
rpcUrl: string & {
|
|
2956
|
+
readonly __kind: any;
|
|
2957
|
+
};
|
|
2958
|
+
protocol: string & {
|
|
2959
|
+
readonly __kind: any;
|
|
2960
|
+
};
|
|
2934
2961
|
} & {
|
|
2935
2962
|
readonly __kind: any;
|
|
2936
2963
|
}>> | undefined;
|
|
2937
2964
|
sandbox?: Record<string, {
|
|
2938
|
-
attributes?: Record<string, string | number | boolean> | undefined;
|
|
2939
|
-
plugin?: (string & {
|
|
2940
|
-
readonly __kind: any;
|
|
2941
|
-
}) | undefined;
|
|
2942
2965
|
accounts?: Record<string, string | ({
|
|
2943
2966
|
encryptedKey: string;
|
|
2944
2967
|
publicKeyHash: string & {
|
|
@@ -2948,6 +2971,10 @@ export declare const proxySchemas: {
|
|
|
2948
2971
|
} & {
|
|
2949
2972
|
readonly __kind: any;
|
|
2950
2973
|
})> | undefined;
|
|
2974
|
+
attributes?: Record<string, string | number | boolean> | undefined;
|
|
2975
|
+
plugin?: (string & {
|
|
2976
|
+
readonly __kind: any;
|
|
2977
|
+
}) | undefined;
|
|
2951
2978
|
tzkt?: {
|
|
2952
2979
|
disableAutostartWithSandbox: boolean;
|
|
2953
2980
|
postgresqlPort: number;
|
|
@@ -3039,16 +3066,8 @@ export declare const proxyFactory: {
|
|
|
3039
3066
|
};
|
|
3040
3067
|
}> | undefined;
|
|
3041
3068
|
network?: Record<string, import("@taqueria/protocol/Base").Flatten<{
|
|
3042
|
-
|
|
3043
|
-
|
|
3044
|
-
};
|
|
3045
|
-
rpcUrl: string & {
|
|
3046
|
-
readonly __kind: any;
|
|
3047
|
-
};
|
|
3048
|
-
protocol: string & {
|
|
3049
|
-
readonly __kind: any;
|
|
3050
|
-
};
|
|
3051
|
-
faucet: import("@taqueria/protocol/Base").Flatten<{
|
|
3069
|
+
accounts?: Record<string, any> | undefined;
|
|
3070
|
+
faucet?: import("@taqueria/protocol/Base").Flatten<{
|
|
3052
3071
|
email?: string | undefined;
|
|
3053
3072
|
password?: string | undefined;
|
|
3054
3073
|
amount?: string | undefined;
|
|
@@ -3059,15 +3078,20 @@ export declare const proxyFactory: {
|
|
|
3059
3078
|
};
|
|
3060
3079
|
} & {
|
|
3061
3080
|
readonly __kind: any;
|
|
3062
|
-
}
|
|
3081
|
+
}> | undefined;
|
|
3082
|
+
label: string & {
|
|
3083
|
+
readonly __kind: any;
|
|
3084
|
+
};
|
|
3085
|
+
rpcUrl: string & {
|
|
3086
|
+
readonly __kind: any;
|
|
3087
|
+
};
|
|
3088
|
+
protocol: string & {
|
|
3089
|
+
readonly __kind: any;
|
|
3090
|
+
};
|
|
3063
3091
|
} & {
|
|
3064
3092
|
readonly __kind: any;
|
|
3065
3093
|
}>> | undefined;
|
|
3066
3094
|
sandbox?: Record<string, {
|
|
3067
|
-
attributes?: Record<string, string | number | boolean> | undefined;
|
|
3068
|
-
plugin?: (string & {
|
|
3069
|
-
readonly __kind: any;
|
|
3070
|
-
}) | undefined;
|
|
3071
3095
|
accounts?: Record<string, string | ({
|
|
3072
3096
|
encryptedKey: string;
|
|
3073
3097
|
publicKeyHash: string & {
|
|
@@ -3077,6 +3101,10 @@ export declare const proxyFactory: {
|
|
|
3077
3101
|
} & {
|
|
3078
3102
|
readonly __kind: any;
|
|
3079
3103
|
})> | undefined;
|
|
3104
|
+
attributes?: Record<string, string | number | boolean> | undefined;
|
|
3105
|
+
plugin?: (string & {
|
|
3106
|
+
readonly __kind: any;
|
|
3107
|
+
}) | undefined;
|
|
3080
3108
|
tzkt?: {
|
|
3081
3109
|
disableAutostartWithSandbox: boolean;
|
|
3082
3110
|
postgresqlPort: number;
|
|
@@ -3163,16 +3191,8 @@ export declare const proxyFactory: {
|
|
|
3163
3191
|
};
|
|
3164
3192
|
}> | undefined;
|
|
3165
3193
|
network?: Record<string, import("@taqueria/protocol/Base").Flatten<{
|
|
3166
|
-
|
|
3167
|
-
|
|
3168
|
-
};
|
|
3169
|
-
rpcUrl: string & {
|
|
3170
|
-
readonly __kind: any;
|
|
3171
|
-
};
|
|
3172
|
-
protocol: string & {
|
|
3173
|
-
readonly __kind: any;
|
|
3174
|
-
};
|
|
3175
|
-
faucet: import("@taqueria/protocol/Base").Flatten<{
|
|
3194
|
+
accounts?: Record<string, any> | undefined;
|
|
3195
|
+
faucet?: import("@taqueria/protocol/Base").Flatten<{
|
|
3176
3196
|
email?: string | undefined;
|
|
3177
3197
|
password?: string | undefined;
|
|
3178
3198
|
amount?: string | undefined;
|
|
@@ -3183,15 +3203,20 @@ export declare const proxyFactory: {
|
|
|
3183
3203
|
};
|
|
3184
3204
|
} & {
|
|
3185
3205
|
readonly __kind: any;
|
|
3186
|
-
}
|
|
3206
|
+
}> | undefined;
|
|
3207
|
+
label: string & {
|
|
3208
|
+
readonly __kind: any;
|
|
3209
|
+
};
|
|
3210
|
+
rpcUrl: string & {
|
|
3211
|
+
readonly __kind: any;
|
|
3212
|
+
};
|
|
3213
|
+
protocol: string & {
|
|
3214
|
+
readonly __kind: any;
|
|
3215
|
+
};
|
|
3187
3216
|
} & {
|
|
3188
3217
|
readonly __kind: any;
|
|
3189
3218
|
}>> | undefined;
|
|
3190
3219
|
sandbox?: Record<string, {
|
|
3191
|
-
attributes?: Record<string, string | number | boolean> | undefined;
|
|
3192
|
-
plugin?: (string & {
|
|
3193
|
-
readonly __kind: any;
|
|
3194
|
-
}) | undefined;
|
|
3195
3220
|
accounts?: Record<string, string | ({
|
|
3196
3221
|
encryptedKey: string;
|
|
3197
3222
|
publicKeyHash: string & {
|
|
@@ -3201,6 +3226,10 @@ export declare const proxyFactory: {
|
|
|
3201
3226
|
} & {
|
|
3202
3227
|
readonly __kind: any;
|
|
3203
3228
|
})> | undefined;
|
|
3229
|
+
attributes?: Record<string, string | number | boolean> | undefined;
|
|
3230
|
+
plugin?: (string & {
|
|
3231
|
+
readonly __kind: any;
|
|
3232
|
+
}) | undefined;
|
|
3204
3233
|
tzkt?: {
|
|
3205
3234
|
disableAutostartWithSandbox: boolean;
|
|
3206
3235
|
postgresqlPort: number;
|
|
@@ -3290,16 +3319,8 @@ export declare const proxyFactory: {
|
|
|
3290
3319
|
};
|
|
3291
3320
|
}> | undefined;
|
|
3292
3321
|
network?: Record<string, import("@taqueria/protocol/Base").Flatten<{
|
|
3293
|
-
|
|
3294
|
-
|
|
3295
|
-
};
|
|
3296
|
-
rpcUrl: string & {
|
|
3297
|
-
readonly __kind: any;
|
|
3298
|
-
};
|
|
3299
|
-
protocol: string & {
|
|
3300
|
-
readonly __kind: any;
|
|
3301
|
-
};
|
|
3302
|
-
faucet: import("@taqueria/protocol/Base").Flatten<{
|
|
3322
|
+
accounts?: Record<string, any> | undefined;
|
|
3323
|
+
faucet?: import("@taqueria/protocol/Base").Flatten<{
|
|
3303
3324
|
email?: string | undefined;
|
|
3304
3325
|
password?: string | undefined;
|
|
3305
3326
|
amount?: string | undefined;
|
|
@@ -3310,15 +3331,20 @@ export declare const proxyFactory: {
|
|
|
3310
3331
|
};
|
|
3311
3332
|
} & {
|
|
3312
3333
|
readonly __kind: any;
|
|
3313
|
-
}
|
|
3334
|
+
}> | undefined;
|
|
3335
|
+
label: string & {
|
|
3336
|
+
readonly __kind: any;
|
|
3337
|
+
};
|
|
3338
|
+
rpcUrl: string & {
|
|
3339
|
+
readonly __kind: any;
|
|
3340
|
+
};
|
|
3341
|
+
protocol: string & {
|
|
3342
|
+
readonly __kind: any;
|
|
3343
|
+
};
|
|
3314
3344
|
} & {
|
|
3315
3345
|
readonly __kind: any;
|
|
3316
3346
|
}>> | undefined;
|
|
3317
3347
|
sandbox?: Record<string, {
|
|
3318
|
-
attributes?: Record<string, string | number | boolean> | undefined;
|
|
3319
|
-
plugin?: (string & {
|
|
3320
|
-
readonly __kind: any;
|
|
3321
|
-
}) | undefined;
|
|
3322
3348
|
accounts?: Record<string, string | ({
|
|
3323
3349
|
encryptedKey: string;
|
|
3324
3350
|
publicKeyHash: string & {
|
|
@@ -3328,6 +3354,10 @@ export declare const proxyFactory: {
|
|
|
3328
3354
|
} & {
|
|
3329
3355
|
readonly __kind: any;
|
|
3330
3356
|
})> | undefined;
|
|
3357
|
+
attributes?: Record<string, string | number | boolean> | undefined;
|
|
3358
|
+
plugin?: (string & {
|
|
3359
|
+
readonly __kind: any;
|
|
3360
|
+
}) | undefined;
|
|
3331
3361
|
tzkt?: {
|
|
3332
3362
|
disableAutostartWithSandbox: boolean;
|
|
3333
3363
|
postgresqlPort: number;
|
|
@@ -3416,21 +3446,20 @@ export declare const proxyFactory: {
|
|
|
3416
3446
|
hash: string;
|
|
3417
3447
|
}> | undefined;
|
|
3418
3448
|
network?: Record<string, {
|
|
3419
|
-
|
|
3420
|
-
|
|
3421
|
-
protocol: string;
|
|
3422
|
-
faucet: {
|
|
3449
|
+
accounts?: Record<string, any> | undefined;
|
|
3450
|
+
faucet?: {
|
|
3423
3451
|
email?: string | undefined;
|
|
3424
3452
|
password?: string | undefined;
|
|
3425
3453
|
amount?: string | undefined;
|
|
3426
3454
|
activation_code?: string | undefined;
|
|
3427
3455
|
mnemonic: string[];
|
|
3428
3456
|
pkh: string;
|
|
3429
|
-
};
|
|
3457
|
+
} | undefined;
|
|
3458
|
+
label: string;
|
|
3459
|
+
rpcUrl: string;
|
|
3460
|
+
protocol: string;
|
|
3430
3461
|
}> | undefined;
|
|
3431
3462
|
sandbox?: Record<string, {
|
|
3432
|
-
attributes?: Record<string, string | number | boolean> | undefined;
|
|
3433
|
-
plugin?: string | undefined;
|
|
3434
3463
|
accounts?: {
|
|
3435
3464
|
default: string;
|
|
3436
3465
|
} | Record<string, {
|
|
@@ -3438,6 +3467,8 @@ export declare const proxyFactory: {
|
|
|
3438
3467
|
publicKeyHash: string;
|
|
3439
3468
|
secretKey: string;
|
|
3440
3469
|
}> | undefined;
|
|
3470
|
+
attributes?: Record<string, string | number | boolean> | undefined;
|
|
3471
|
+
plugin?: string | undefined;
|
|
3441
3472
|
tzkt?: {
|
|
3442
3473
|
disableAutostartWithSandbox: boolean;
|
|
3443
3474
|
postgresqlPort: number;
|
|
@@ -3501,16 +3532,8 @@ export declare const proxyFactory: {
|
|
|
3501
3532
|
};
|
|
3502
3533
|
}> | undefined;
|
|
3503
3534
|
network?: Record<string, import("@taqueria/protocol/Base").Flatten<{
|
|
3504
|
-
|
|
3505
|
-
|
|
3506
|
-
};
|
|
3507
|
-
rpcUrl: string & {
|
|
3508
|
-
readonly __kind: any;
|
|
3509
|
-
};
|
|
3510
|
-
protocol: string & {
|
|
3511
|
-
readonly __kind: any;
|
|
3512
|
-
};
|
|
3513
|
-
faucet: import("@taqueria/protocol/Base").Flatten<{
|
|
3535
|
+
accounts?: Record<string, any> | undefined;
|
|
3536
|
+
faucet?: import("@taqueria/protocol/Base").Flatten<{
|
|
3514
3537
|
email?: string | undefined;
|
|
3515
3538
|
password?: string | undefined;
|
|
3516
3539
|
amount?: string | undefined;
|
|
@@ -3521,15 +3544,20 @@ export declare const proxyFactory: {
|
|
|
3521
3544
|
};
|
|
3522
3545
|
} & {
|
|
3523
3546
|
readonly __kind: any;
|
|
3524
|
-
}
|
|
3547
|
+
}> | undefined;
|
|
3548
|
+
label: string & {
|
|
3549
|
+
readonly __kind: any;
|
|
3550
|
+
};
|
|
3551
|
+
rpcUrl: string & {
|
|
3552
|
+
readonly __kind: any;
|
|
3553
|
+
};
|
|
3554
|
+
protocol: string & {
|
|
3555
|
+
readonly __kind: any;
|
|
3556
|
+
};
|
|
3525
3557
|
} & {
|
|
3526
3558
|
readonly __kind: any;
|
|
3527
3559
|
}>> | undefined;
|
|
3528
3560
|
sandbox?: Record<string, {
|
|
3529
|
-
attributes?: Record<string, string | number | boolean> | undefined;
|
|
3530
|
-
plugin?: (string & {
|
|
3531
|
-
readonly __kind: any;
|
|
3532
|
-
}) | undefined;
|
|
3533
3561
|
accounts?: Record<string, string | ({
|
|
3534
3562
|
encryptedKey: string;
|
|
3535
3563
|
publicKeyHash: string & {
|
|
@@ -3539,6 +3567,10 @@ export declare const proxyFactory: {
|
|
|
3539
3567
|
} & {
|
|
3540
3568
|
readonly __kind: any;
|
|
3541
3569
|
})> | undefined;
|
|
3570
|
+
attributes?: Record<string, string | number | boolean> | undefined;
|
|
3571
|
+
plugin?: (string & {
|
|
3572
|
+
readonly __kind: any;
|
|
3573
|
+
}) | undefined;
|
|
3542
3574
|
tzkt?: {
|
|
3543
3575
|
disableAutostartWithSandbox: boolean;
|
|
3544
3576
|
postgresqlPort: number;
|
|
@@ -3625,16 +3657,8 @@ export declare const proxyFactory: {
|
|
|
3625
3657
|
};
|
|
3626
3658
|
}> | undefined;
|
|
3627
3659
|
network?: Record<string, import("@taqueria/protocol/Base").Flatten<{
|
|
3628
|
-
|
|
3629
|
-
|
|
3630
|
-
};
|
|
3631
|
-
rpcUrl: string & {
|
|
3632
|
-
readonly __kind: any;
|
|
3633
|
-
};
|
|
3634
|
-
protocol: string & {
|
|
3635
|
-
readonly __kind: any;
|
|
3636
|
-
};
|
|
3637
|
-
faucet: import("@taqueria/protocol/Base").Flatten<{
|
|
3660
|
+
accounts?: Record<string, any> | undefined;
|
|
3661
|
+
faucet?: import("@taqueria/protocol/Base").Flatten<{
|
|
3638
3662
|
email?: string | undefined;
|
|
3639
3663
|
password?: string | undefined;
|
|
3640
3664
|
amount?: string | undefined;
|
|
@@ -3645,15 +3669,20 @@ export declare const proxyFactory: {
|
|
|
3645
3669
|
};
|
|
3646
3670
|
} & {
|
|
3647
3671
|
readonly __kind: any;
|
|
3648
|
-
}
|
|
3672
|
+
}> | undefined;
|
|
3673
|
+
label: string & {
|
|
3674
|
+
readonly __kind: any;
|
|
3675
|
+
};
|
|
3676
|
+
rpcUrl: string & {
|
|
3677
|
+
readonly __kind: any;
|
|
3678
|
+
};
|
|
3679
|
+
protocol: string & {
|
|
3680
|
+
readonly __kind: any;
|
|
3681
|
+
};
|
|
3649
3682
|
} & {
|
|
3650
3683
|
readonly __kind: any;
|
|
3651
3684
|
}>> | undefined;
|
|
3652
3685
|
sandbox?: Record<string, {
|
|
3653
|
-
attributes?: Record<string, string | number | boolean> | undefined;
|
|
3654
|
-
plugin?: (string & {
|
|
3655
|
-
readonly __kind: any;
|
|
3656
|
-
}) | undefined;
|
|
3657
3686
|
accounts?: Record<string, string | ({
|
|
3658
3687
|
encryptedKey: string;
|
|
3659
3688
|
publicKeyHash: string & {
|
|
@@ -3663,6 +3692,10 @@ export declare const proxyFactory: {
|
|
|
3663
3692
|
} & {
|
|
3664
3693
|
readonly __kind: any;
|
|
3665
3694
|
})> | undefined;
|
|
3695
|
+
attributes?: Record<string, string | number | boolean> | undefined;
|
|
3696
|
+
plugin?: (string & {
|
|
3697
|
+
readonly __kind: any;
|
|
3698
|
+
}) | undefined;
|
|
3666
3699
|
tzkt?: {
|
|
3667
3700
|
disableAutostartWithSandbox: boolean;
|
|
3668
3701
|
postgresqlPort: number;
|
|
@@ -3752,16 +3785,8 @@ export declare const proxyFactory: {
|
|
|
3752
3785
|
};
|
|
3753
3786
|
}> | undefined;
|
|
3754
3787
|
network?: Record<string, import("@taqueria/protocol/Base").Flatten<{
|
|
3755
|
-
|
|
3756
|
-
|
|
3757
|
-
};
|
|
3758
|
-
rpcUrl: string & {
|
|
3759
|
-
readonly __kind: any;
|
|
3760
|
-
};
|
|
3761
|
-
protocol: string & {
|
|
3762
|
-
readonly __kind: any;
|
|
3763
|
-
};
|
|
3764
|
-
faucet: import("@taqueria/protocol/Base").Flatten<{
|
|
3788
|
+
accounts?: Record<string, any> | undefined;
|
|
3789
|
+
faucet?: import("@taqueria/protocol/Base").Flatten<{
|
|
3765
3790
|
email?: string | undefined;
|
|
3766
3791
|
password?: string | undefined;
|
|
3767
3792
|
amount?: string | undefined;
|
|
@@ -3772,15 +3797,20 @@ export declare const proxyFactory: {
|
|
|
3772
3797
|
};
|
|
3773
3798
|
} & {
|
|
3774
3799
|
readonly __kind: any;
|
|
3775
|
-
}
|
|
3800
|
+
}> | undefined;
|
|
3801
|
+
label: string & {
|
|
3802
|
+
readonly __kind: any;
|
|
3803
|
+
};
|
|
3804
|
+
rpcUrl: string & {
|
|
3805
|
+
readonly __kind: any;
|
|
3806
|
+
};
|
|
3807
|
+
protocol: string & {
|
|
3808
|
+
readonly __kind: any;
|
|
3809
|
+
};
|
|
3776
3810
|
} & {
|
|
3777
3811
|
readonly __kind: any;
|
|
3778
3812
|
}>> | undefined;
|
|
3779
3813
|
sandbox?: Record<string, {
|
|
3780
|
-
attributes?: Record<string, string | number | boolean> | undefined;
|
|
3781
|
-
plugin?: (string & {
|
|
3782
|
-
readonly __kind: any;
|
|
3783
|
-
}) | undefined;
|
|
3784
3814
|
accounts?: Record<string, string | ({
|
|
3785
3815
|
encryptedKey: string;
|
|
3786
3816
|
publicKeyHash: string & {
|
|
@@ -3790,6 +3820,10 @@ export declare const proxyFactory: {
|
|
|
3790
3820
|
} & {
|
|
3791
3821
|
readonly __kind: any;
|
|
3792
3822
|
})> | undefined;
|
|
3823
|
+
attributes?: Record<string, string | number | boolean> | undefined;
|
|
3824
|
+
plugin?: (string & {
|
|
3825
|
+
readonly __kind: any;
|
|
3826
|
+
}) | undefined;
|
|
3793
3827
|
tzkt?: {
|
|
3794
3828
|
disableAutostartWithSandbox: boolean;
|
|
3795
3829
|
postgresqlPort: number;
|
|
@@ -3882,16 +3916,8 @@ export declare const createProxyRequestArgs: (input: unknown) => {
|
|
|
3882
3916
|
};
|
|
3883
3917
|
}> | undefined;
|
|
3884
3918
|
network?: Record<string, import("@taqueria/protocol/Base").Flatten<{
|
|
3885
|
-
|
|
3886
|
-
|
|
3887
|
-
};
|
|
3888
|
-
rpcUrl: string & {
|
|
3889
|
-
readonly __kind: any;
|
|
3890
|
-
};
|
|
3891
|
-
protocol: string & {
|
|
3892
|
-
readonly __kind: any;
|
|
3893
|
-
};
|
|
3894
|
-
faucet: import("@taqueria/protocol/Base").Flatten<{
|
|
3919
|
+
accounts?: Record<string, any> | undefined;
|
|
3920
|
+
faucet?: import("@taqueria/protocol/Base").Flatten<{
|
|
3895
3921
|
email?: string | undefined;
|
|
3896
3922
|
password?: string | undefined;
|
|
3897
3923
|
amount?: string | undefined;
|
|
@@ -3902,15 +3928,20 @@ export declare const createProxyRequestArgs: (input: unknown) => {
|
|
|
3902
3928
|
};
|
|
3903
3929
|
} & {
|
|
3904
3930
|
readonly __kind: any;
|
|
3905
|
-
}
|
|
3931
|
+
}> | undefined;
|
|
3932
|
+
label: string & {
|
|
3933
|
+
readonly __kind: any;
|
|
3934
|
+
};
|
|
3935
|
+
rpcUrl: string & {
|
|
3936
|
+
readonly __kind: any;
|
|
3937
|
+
};
|
|
3938
|
+
protocol: string & {
|
|
3939
|
+
readonly __kind: any;
|
|
3940
|
+
};
|
|
3906
3941
|
} & {
|
|
3907
3942
|
readonly __kind: any;
|
|
3908
3943
|
}>> | undefined;
|
|
3909
3944
|
sandbox?: Record<string, {
|
|
3910
|
-
attributes?: Record<string, string | number | boolean> | undefined;
|
|
3911
|
-
plugin?: (string & {
|
|
3912
|
-
readonly __kind: any;
|
|
3913
|
-
}) | undefined;
|
|
3914
3945
|
accounts?: Record<string, string | ({
|
|
3915
3946
|
encryptedKey: string;
|
|
3916
3947
|
publicKeyHash: string & {
|
|
@@ -3920,6 +3951,10 @@ export declare const createProxyRequestArgs: (input: unknown) => {
|
|
|
3920
3951
|
} & {
|
|
3921
3952
|
readonly __kind: any;
|
|
3922
3953
|
})> | undefined;
|
|
3954
|
+
attributes?: Record<string, string | number | boolean> | undefined;
|
|
3955
|
+
plugin?: (string & {
|
|
3956
|
+
readonly __kind: any;
|
|
3957
|
+
}) | undefined;
|
|
3923
3958
|
tzkt?: {
|
|
3924
3959
|
disableAutostartWithSandbox: boolean;
|
|
3925
3960
|
postgresqlPort: number;
|
|
@@ -4009,16 +4044,8 @@ export declare const makeProxyRequestArgs: (input: {
|
|
|
4009
4044
|
};
|
|
4010
4045
|
}> | undefined;
|
|
4011
4046
|
network?: Record<string, import("@taqueria/protocol/Base").Flatten<{
|
|
4012
|
-
|
|
4013
|
-
|
|
4014
|
-
};
|
|
4015
|
-
rpcUrl: string & {
|
|
4016
|
-
readonly __kind: any;
|
|
4017
|
-
};
|
|
4018
|
-
protocol: string & {
|
|
4019
|
-
readonly __kind: any;
|
|
4020
|
-
};
|
|
4021
|
-
faucet: import("@taqueria/protocol/Base").Flatten<{
|
|
4047
|
+
accounts?: Record<string, any> | undefined;
|
|
4048
|
+
faucet?: import("@taqueria/protocol/Base").Flatten<{
|
|
4022
4049
|
email?: string | undefined;
|
|
4023
4050
|
password?: string | undefined;
|
|
4024
4051
|
amount?: string | undefined;
|
|
@@ -4029,15 +4056,20 @@ export declare const makeProxyRequestArgs: (input: {
|
|
|
4029
4056
|
};
|
|
4030
4057
|
} & {
|
|
4031
4058
|
readonly __kind: any;
|
|
4032
|
-
}
|
|
4059
|
+
}> | undefined;
|
|
4060
|
+
label: string & {
|
|
4061
|
+
readonly __kind: any;
|
|
4062
|
+
};
|
|
4063
|
+
rpcUrl: string & {
|
|
4064
|
+
readonly __kind: any;
|
|
4065
|
+
};
|
|
4066
|
+
protocol: string & {
|
|
4067
|
+
readonly __kind: any;
|
|
4068
|
+
};
|
|
4033
4069
|
} & {
|
|
4034
4070
|
readonly __kind: any;
|
|
4035
4071
|
}>> | undefined;
|
|
4036
4072
|
sandbox?: Record<string, {
|
|
4037
|
-
attributes?: Record<string, string | number | boolean> | undefined;
|
|
4038
|
-
plugin?: (string & {
|
|
4039
|
-
readonly __kind: any;
|
|
4040
|
-
}) | undefined;
|
|
4041
4073
|
accounts?: Record<string, string | ({
|
|
4042
4074
|
encryptedKey: string;
|
|
4043
4075
|
publicKeyHash: string & {
|
|
@@ -4047,6 +4079,10 @@ export declare const makeProxyRequestArgs: (input: {
|
|
|
4047
4079
|
} & {
|
|
4048
4080
|
readonly __kind: any;
|
|
4049
4081
|
})> | undefined;
|
|
4082
|
+
attributes?: Record<string, string | number | boolean> | undefined;
|
|
4083
|
+
plugin?: (string & {
|
|
4084
|
+
readonly __kind: any;
|
|
4085
|
+
}) | undefined;
|
|
4050
4086
|
tzkt?: {
|
|
4051
4087
|
disableAutostartWithSandbox: boolean;
|
|
4052
4088
|
postgresqlPort: number;
|
|
@@ -4133,16 +4169,8 @@ export declare const makeProxyRequestArgs: (input: {
|
|
|
4133
4169
|
};
|
|
4134
4170
|
}> | undefined;
|
|
4135
4171
|
network?: Record<string, import("@taqueria/protocol/Base").Flatten<{
|
|
4136
|
-
|
|
4137
|
-
|
|
4138
|
-
};
|
|
4139
|
-
rpcUrl: string & {
|
|
4140
|
-
readonly __kind: any;
|
|
4141
|
-
};
|
|
4142
|
-
protocol: string & {
|
|
4143
|
-
readonly __kind: any;
|
|
4144
|
-
};
|
|
4145
|
-
faucet: import("@taqueria/protocol/Base").Flatten<{
|
|
4172
|
+
accounts?: Record<string, any> | undefined;
|
|
4173
|
+
faucet?: import("@taqueria/protocol/Base").Flatten<{
|
|
4146
4174
|
email?: string | undefined;
|
|
4147
4175
|
password?: string | undefined;
|
|
4148
4176
|
amount?: string | undefined;
|
|
@@ -4153,15 +4181,20 @@ export declare const makeProxyRequestArgs: (input: {
|
|
|
4153
4181
|
};
|
|
4154
4182
|
} & {
|
|
4155
4183
|
readonly __kind: any;
|
|
4156
|
-
}
|
|
4157
|
-
|
|
4158
|
-
readonly __kind: any;
|
|
4159
|
-
}>> | undefined;
|
|
4160
|
-
sandbox?: Record<string, {
|
|
4161
|
-
attributes?: Record<string, string | number | boolean> | undefined;
|
|
4162
|
-
plugin?: (string & {
|
|
4184
|
+
}> | undefined;
|
|
4185
|
+
label: string & {
|
|
4163
4186
|
readonly __kind: any;
|
|
4164
|
-
}
|
|
4187
|
+
};
|
|
4188
|
+
rpcUrl: string & {
|
|
4189
|
+
readonly __kind: any;
|
|
4190
|
+
};
|
|
4191
|
+
protocol: string & {
|
|
4192
|
+
readonly __kind: any;
|
|
4193
|
+
};
|
|
4194
|
+
} & {
|
|
4195
|
+
readonly __kind: any;
|
|
4196
|
+
}>> | undefined;
|
|
4197
|
+
sandbox?: Record<string, {
|
|
4165
4198
|
accounts?: Record<string, string | ({
|
|
4166
4199
|
encryptedKey: string;
|
|
4167
4200
|
publicKeyHash: string & {
|
|
@@ -4171,6 +4204,10 @@ export declare const makeProxyRequestArgs: (input: {
|
|
|
4171
4204
|
} & {
|
|
4172
4205
|
readonly __kind: any;
|
|
4173
4206
|
})> | undefined;
|
|
4207
|
+
attributes?: Record<string, string | number | boolean> | undefined;
|
|
4208
|
+
plugin?: (string & {
|
|
4209
|
+
readonly __kind: any;
|
|
4210
|
+
}) | undefined;
|
|
4174
4211
|
tzkt?: {
|
|
4175
4212
|
disableAutostartWithSandbox: boolean;
|
|
4176
4213
|
postgresqlPort: number;
|
|
@@ -4260,16 +4297,8 @@ export declare const ofProxyRequestArgs: (input: unknown) => import("fluture").F
|
|
|
4260
4297
|
};
|
|
4261
4298
|
}> | undefined;
|
|
4262
4299
|
network?: Record<string, import("@taqueria/protocol/Base").Flatten<{
|
|
4263
|
-
|
|
4264
|
-
|
|
4265
|
-
};
|
|
4266
|
-
rpcUrl: string & {
|
|
4267
|
-
readonly __kind: any;
|
|
4268
|
-
};
|
|
4269
|
-
protocol: string & {
|
|
4270
|
-
readonly __kind: any;
|
|
4271
|
-
};
|
|
4272
|
-
faucet: import("@taqueria/protocol/Base").Flatten<{
|
|
4300
|
+
accounts?: Record<string, any> | undefined;
|
|
4301
|
+
faucet?: import("@taqueria/protocol/Base").Flatten<{
|
|
4273
4302
|
email?: string | undefined;
|
|
4274
4303
|
password?: string | undefined;
|
|
4275
4304
|
amount?: string | undefined;
|
|
@@ -4280,15 +4309,20 @@ export declare const ofProxyRequestArgs: (input: unknown) => import("fluture").F
|
|
|
4280
4309
|
};
|
|
4281
4310
|
} & {
|
|
4282
4311
|
readonly __kind: any;
|
|
4283
|
-
}
|
|
4312
|
+
}> | undefined;
|
|
4313
|
+
label: string & {
|
|
4314
|
+
readonly __kind: any;
|
|
4315
|
+
};
|
|
4316
|
+
rpcUrl: string & {
|
|
4317
|
+
readonly __kind: any;
|
|
4318
|
+
};
|
|
4319
|
+
protocol: string & {
|
|
4320
|
+
readonly __kind: any;
|
|
4321
|
+
};
|
|
4284
4322
|
} & {
|
|
4285
4323
|
readonly __kind: any;
|
|
4286
4324
|
}>> | undefined;
|
|
4287
4325
|
sandbox?: Record<string, {
|
|
4288
|
-
attributes?: Record<string, string | number | boolean> | undefined;
|
|
4289
|
-
plugin?: (string & {
|
|
4290
|
-
readonly __kind: any;
|
|
4291
|
-
}) | undefined;
|
|
4292
4326
|
accounts?: Record<string, string | ({
|
|
4293
4327
|
encryptedKey: string;
|
|
4294
4328
|
publicKeyHash: string & {
|
|
@@ -4298,6 +4332,10 @@ export declare const ofProxyRequestArgs: (input: unknown) => import("fluture").F
|
|
|
4298
4332
|
} & {
|
|
4299
4333
|
readonly __kind: any;
|
|
4300
4334
|
})> | undefined;
|
|
4335
|
+
attributes?: Record<string, string | number | boolean> | undefined;
|
|
4336
|
+
plugin?: (string & {
|
|
4337
|
+
readonly __kind: any;
|
|
4338
|
+
}) | undefined;
|
|
4301
4339
|
tzkt?: {
|
|
4302
4340
|
disableAutostartWithSandbox: boolean;
|
|
4303
4341
|
postgresqlPort: number;
|
|
@@ -4386,21 +4424,20 @@ export declare const createProxyTemplateRequestArgs: (input: unknown) => {
|
|
|
4386
4424
|
hash: string;
|
|
4387
4425
|
}> | undefined;
|
|
4388
4426
|
network?: Record<string, {
|
|
4389
|
-
|
|
4390
|
-
|
|
4391
|
-
protocol: string;
|
|
4392
|
-
faucet: {
|
|
4427
|
+
accounts?: Record<string, any> | undefined;
|
|
4428
|
+
faucet?: {
|
|
4393
4429
|
email?: string | undefined;
|
|
4394
4430
|
password?: string | undefined;
|
|
4395
4431
|
amount?: string | undefined;
|
|
4396
4432
|
activation_code?: string | undefined;
|
|
4397
4433
|
mnemonic: string[];
|
|
4398
4434
|
pkh: string;
|
|
4399
|
-
};
|
|
4435
|
+
} | undefined;
|
|
4436
|
+
label: string;
|
|
4437
|
+
rpcUrl: string;
|
|
4438
|
+
protocol: string;
|
|
4400
4439
|
}> | undefined;
|
|
4401
4440
|
sandbox?: Record<string, {
|
|
4402
|
-
attributes?: Record<string, string | number | boolean> | undefined;
|
|
4403
|
-
plugin?: string | undefined;
|
|
4404
4441
|
accounts?: {
|
|
4405
4442
|
default: string;
|
|
4406
4443
|
} | Record<string, {
|
|
@@ -4408,6 +4445,8 @@ export declare const createProxyTemplateRequestArgs: (input: unknown) => {
|
|
|
4408
4445
|
publicKeyHash: string;
|
|
4409
4446
|
secretKey: string;
|
|
4410
4447
|
}> | undefined;
|
|
4448
|
+
attributes?: Record<string, string | number | boolean> | undefined;
|
|
4449
|
+
plugin?: string | undefined;
|
|
4411
4450
|
tzkt?: {
|
|
4412
4451
|
disableAutostartWithSandbox: boolean;
|
|
4413
4452
|
postgresqlPort: number;
|
|
@@ -4473,21 +4512,20 @@ export declare const makeProxyTemplateRequestArgs: (input: {
|
|
|
4473
4512
|
hash: string;
|
|
4474
4513
|
}> | undefined;
|
|
4475
4514
|
network?: Record<string, {
|
|
4476
|
-
|
|
4477
|
-
|
|
4478
|
-
protocol: string;
|
|
4479
|
-
faucet: {
|
|
4515
|
+
accounts?: Record<string, any> | undefined;
|
|
4516
|
+
faucet?: {
|
|
4480
4517
|
email?: string | undefined;
|
|
4481
4518
|
password?: string | undefined;
|
|
4482
4519
|
amount?: string | undefined;
|
|
4483
4520
|
activation_code?: string | undefined;
|
|
4484
4521
|
mnemonic: string[];
|
|
4485
4522
|
pkh: string;
|
|
4486
|
-
};
|
|
4523
|
+
} | undefined;
|
|
4524
|
+
label: string;
|
|
4525
|
+
rpcUrl: string;
|
|
4526
|
+
protocol: string;
|
|
4487
4527
|
}> | undefined;
|
|
4488
4528
|
sandbox?: Record<string, {
|
|
4489
|
-
attributes?: Record<string, string | number | boolean> | undefined;
|
|
4490
|
-
plugin?: string | undefined;
|
|
4491
4529
|
accounts?: {
|
|
4492
4530
|
default: string;
|
|
4493
4531
|
} | Record<string, {
|
|
@@ -4495,6 +4533,8 @@ export declare const makeProxyTemplateRequestArgs: (input: {
|
|
|
4495
4533
|
publicKeyHash: string;
|
|
4496
4534
|
secretKey: string;
|
|
4497
4535
|
}> | undefined;
|
|
4536
|
+
attributes?: Record<string, string | number | boolean> | undefined;
|
|
4537
|
+
plugin?: string | undefined;
|
|
4498
4538
|
tzkt?: {
|
|
4499
4539
|
disableAutostartWithSandbox: boolean;
|
|
4500
4540
|
postgresqlPort: number;
|
|
@@ -4557,21 +4597,20 @@ export declare const makeProxyTemplateRequestArgs: (input: {
|
|
|
4557
4597
|
hash: string;
|
|
4558
4598
|
}> | undefined;
|
|
4559
4599
|
network?: Record<string, {
|
|
4560
|
-
|
|
4561
|
-
|
|
4562
|
-
protocol: string;
|
|
4563
|
-
faucet: {
|
|
4600
|
+
accounts?: Record<string, any> | undefined;
|
|
4601
|
+
faucet?: {
|
|
4564
4602
|
email?: string | undefined;
|
|
4565
4603
|
password?: string | undefined;
|
|
4566
4604
|
amount?: string | undefined;
|
|
4567
4605
|
activation_code?: string | undefined;
|
|
4568
4606
|
mnemonic: string[];
|
|
4569
4607
|
pkh: string;
|
|
4570
|
-
};
|
|
4608
|
+
} | undefined;
|
|
4609
|
+
label: string;
|
|
4610
|
+
rpcUrl: string;
|
|
4611
|
+
protocol: string;
|
|
4571
4612
|
}> | undefined;
|
|
4572
4613
|
sandbox?: Record<string, {
|
|
4573
|
-
attributes?: Record<string, string | number | boolean> | undefined;
|
|
4574
|
-
plugin?: string | undefined;
|
|
4575
4614
|
accounts?: {
|
|
4576
4615
|
default: string;
|
|
4577
4616
|
} | Record<string, {
|
|
@@ -4579,6 +4618,8 @@ export declare const makeProxyTemplateRequestArgs: (input: {
|
|
|
4579
4618
|
publicKeyHash: string;
|
|
4580
4619
|
secretKey: string;
|
|
4581
4620
|
}> | undefined;
|
|
4621
|
+
attributes?: Record<string, string | number | boolean> | undefined;
|
|
4622
|
+
plugin?: string | undefined;
|
|
4582
4623
|
tzkt?: {
|
|
4583
4624
|
disableAutostartWithSandbox: boolean;
|
|
4584
4625
|
postgresqlPort: number;
|
|
@@ -4644,21 +4685,20 @@ export declare const ofProxyTemplateRequestArgs: (input: unknown) => import("flu
|
|
|
4644
4685
|
hash: string;
|
|
4645
4686
|
}> | undefined;
|
|
4646
4687
|
network?: Record<string, {
|
|
4647
|
-
|
|
4648
|
-
|
|
4649
|
-
protocol: string;
|
|
4650
|
-
faucet: {
|
|
4688
|
+
accounts?: Record<string, any> | undefined;
|
|
4689
|
+
faucet?: {
|
|
4651
4690
|
email?: string | undefined;
|
|
4652
4691
|
password?: string | undefined;
|
|
4653
4692
|
amount?: string | undefined;
|
|
4654
4693
|
activation_code?: string | undefined;
|
|
4655
4694
|
mnemonic: string[];
|
|
4656
4695
|
pkh: string;
|
|
4657
|
-
};
|
|
4696
|
+
} | undefined;
|
|
4697
|
+
label: string;
|
|
4698
|
+
rpcUrl: string;
|
|
4699
|
+
protocol: string;
|
|
4658
4700
|
}> | undefined;
|
|
4659
4701
|
sandbox?: Record<string, {
|
|
4660
|
-
attributes?: Record<string, string | number | boolean> | undefined;
|
|
4661
|
-
plugin?: string | undefined;
|
|
4662
4702
|
accounts?: {
|
|
4663
4703
|
default: string;
|
|
4664
4704
|
} | Record<string, {
|
|
@@ -4666,6 +4706,8 @@ export declare const ofProxyTemplateRequestArgs: (input: unknown) => import("flu
|
|
|
4666
4706
|
publicKeyHash: string;
|
|
4667
4707
|
secretKey: string;
|
|
4668
4708
|
}> | undefined;
|
|
4709
|
+
attributes?: Record<string, string | number | boolean> | undefined;
|
|
4710
|
+
plugin?: string | undefined;
|
|
4669
4711
|
tzkt?: {
|
|
4670
4712
|
disableAutostartWithSandbox: boolean;
|
|
4671
4713
|
postgresqlPort: number;
|
|
@@ -4731,21 +4773,20 @@ export declare const create: (input: {
|
|
|
4731
4773
|
hash: string;
|
|
4732
4774
|
}> | undefined;
|
|
4733
4775
|
network?: Record<string, {
|
|
4734
|
-
|
|
4735
|
-
|
|
4736
|
-
protocol: string;
|
|
4737
|
-
faucet: {
|
|
4776
|
+
accounts?: Record<string, any> | undefined;
|
|
4777
|
+
faucet?: {
|
|
4738
4778
|
email?: string | undefined;
|
|
4739
4779
|
password?: string | undefined;
|
|
4740
4780
|
amount?: string | undefined;
|
|
4741
4781
|
activation_code?: string | undefined;
|
|
4742
4782
|
mnemonic: string[];
|
|
4743
4783
|
pkh: string;
|
|
4744
|
-
};
|
|
4784
|
+
} | undefined;
|
|
4785
|
+
label: string;
|
|
4786
|
+
rpcUrl: string;
|
|
4787
|
+
protocol: string;
|
|
4745
4788
|
}> | undefined;
|
|
4746
4789
|
sandbox?: Record<string, {
|
|
4747
|
-
attributes?: Record<string, string | number | boolean> | undefined;
|
|
4748
|
-
plugin?: string | undefined;
|
|
4749
4790
|
accounts?: {
|
|
4750
4791
|
default: string;
|
|
4751
4792
|
} | Record<string, {
|
|
@@ -4753,6 +4794,8 @@ export declare const create: (input: {
|
|
|
4753
4794
|
publicKeyHash: string;
|
|
4754
4795
|
secretKey: string;
|
|
4755
4796
|
}> | undefined;
|
|
4797
|
+
attributes?: Record<string, string | number | boolean> | undefined;
|
|
4798
|
+
plugin?: string | undefined;
|
|
4756
4799
|
tzkt?: {
|
|
4757
4800
|
disableAutostartWithSandbox: boolean;
|
|
4758
4801
|
postgresqlPort: number;
|
|
@@ -4815,16 +4858,8 @@ export declare const create: (input: {
|
|
|
4815
4858
|
};
|
|
4816
4859
|
}> | undefined;
|
|
4817
4860
|
network?: Record<string, import("@taqueria/protocol/Base").Flatten<{
|
|
4818
|
-
|
|
4819
|
-
|
|
4820
|
-
};
|
|
4821
|
-
rpcUrl: string & {
|
|
4822
|
-
readonly __kind: any;
|
|
4823
|
-
};
|
|
4824
|
-
protocol: string & {
|
|
4825
|
-
readonly __kind: any;
|
|
4826
|
-
};
|
|
4827
|
-
faucet: import("@taqueria/protocol/Base").Flatten<{
|
|
4861
|
+
accounts?: Record<string, any> | undefined;
|
|
4862
|
+
faucet?: import("@taqueria/protocol/Base").Flatten<{
|
|
4828
4863
|
email?: string | undefined;
|
|
4829
4864
|
password?: string | undefined;
|
|
4830
4865
|
amount?: string | undefined;
|
|
@@ -4835,15 +4870,20 @@ export declare const create: (input: {
|
|
|
4835
4870
|
};
|
|
4836
4871
|
} & {
|
|
4837
4872
|
readonly __kind: any;
|
|
4838
|
-
}
|
|
4873
|
+
}> | undefined;
|
|
4874
|
+
label: string & {
|
|
4875
|
+
readonly __kind: any;
|
|
4876
|
+
};
|
|
4877
|
+
rpcUrl: string & {
|
|
4878
|
+
readonly __kind: any;
|
|
4879
|
+
};
|
|
4880
|
+
protocol: string & {
|
|
4881
|
+
readonly __kind: any;
|
|
4882
|
+
};
|
|
4839
4883
|
} & {
|
|
4840
4884
|
readonly __kind: any;
|
|
4841
4885
|
}>> | undefined;
|
|
4842
4886
|
sandbox?: Record<string, {
|
|
4843
|
-
attributes?: Record<string, string | number | boolean> | undefined;
|
|
4844
|
-
plugin?: (string & {
|
|
4845
|
-
readonly __kind: any;
|
|
4846
|
-
}) | undefined;
|
|
4847
4887
|
accounts?: Record<string, string | ({
|
|
4848
4888
|
encryptedKey: string;
|
|
4849
4889
|
publicKeyHash: string & {
|
|
@@ -4853,6 +4893,10 @@ export declare const create: (input: {
|
|
|
4853
4893
|
} & {
|
|
4854
4894
|
readonly __kind: any;
|
|
4855
4895
|
})> | undefined;
|
|
4896
|
+
attributes?: Record<string, string | number | boolean> | undefined;
|
|
4897
|
+
plugin?: (string & {
|
|
4898
|
+
readonly __kind: any;
|
|
4899
|
+
}) | undefined;
|
|
4856
4900
|
tzkt?: {
|
|
4857
4901
|
disableAutostartWithSandbox: boolean;
|
|
4858
4902
|
postgresqlPort: number;
|
|
@@ -4938,16 +4982,8 @@ export declare const create: (input: {
|
|
|
4938
4982
|
};
|
|
4939
4983
|
}> | undefined;
|
|
4940
4984
|
network?: Record<string, import("@taqueria/protocol/Base").Flatten<{
|
|
4941
|
-
|
|
4942
|
-
|
|
4943
|
-
};
|
|
4944
|
-
rpcUrl: string & {
|
|
4945
|
-
readonly __kind: any;
|
|
4946
|
-
};
|
|
4947
|
-
protocol: string & {
|
|
4948
|
-
readonly __kind: any;
|
|
4949
|
-
};
|
|
4950
|
-
faucet: import("@taqueria/protocol/Base").Flatten<{
|
|
4985
|
+
accounts?: Record<string, any> | undefined;
|
|
4986
|
+
faucet?: import("@taqueria/protocol/Base").Flatten<{
|
|
4951
4987
|
email?: string | undefined;
|
|
4952
4988
|
password?: string | undefined;
|
|
4953
4989
|
amount?: string | undefined;
|
|
@@ -4958,15 +4994,20 @@ export declare const create: (input: {
|
|
|
4958
4994
|
};
|
|
4959
4995
|
} & {
|
|
4960
4996
|
readonly __kind: any;
|
|
4961
|
-
}
|
|
4997
|
+
}> | undefined;
|
|
4998
|
+
label: string & {
|
|
4999
|
+
readonly __kind: any;
|
|
5000
|
+
};
|
|
5001
|
+
rpcUrl: string & {
|
|
5002
|
+
readonly __kind: any;
|
|
5003
|
+
};
|
|
5004
|
+
protocol: string & {
|
|
5005
|
+
readonly __kind: any;
|
|
5006
|
+
};
|
|
4962
5007
|
} & {
|
|
4963
5008
|
readonly __kind: any;
|
|
4964
5009
|
}>> | undefined;
|
|
4965
5010
|
sandbox?: Record<string, {
|
|
4966
|
-
attributes?: Record<string, string | number | boolean> | undefined;
|
|
4967
|
-
plugin?: (string & {
|
|
4968
|
-
readonly __kind: any;
|
|
4969
|
-
}) | undefined;
|
|
4970
5011
|
accounts?: Record<string, string | ({
|
|
4971
5012
|
encryptedKey: string;
|
|
4972
5013
|
publicKeyHash: string & {
|
|
@@ -4976,6 +5017,10 @@ export declare const create: (input: {
|
|
|
4976
5017
|
} & {
|
|
4977
5018
|
readonly __kind: any;
|
|
4978
5019
|
})> | undefined;
|
|
5020
|
+
attributes?: Record<string, string | number | boolean> | undefined;
|
|
5021
|
+
plugin?: (string & {
|
|
5022
|
+
readonly __kind: any;
|
|
5023
|
+
}) | undefined;
|
|
4979
5024
|
tzkt?: {
|
|
4980
5025
|
disableAutostartWithSandbox: boolean;
|
|
4981
5026
|
postgresqlPort: number;
|
|
@@ -5063,16 +5108,8 @@ export declare const create: (input: {
|
|
|
5063
5108
|
};
|
|
5064
5109
|
}> | undefined;
|
|
5065
5110
|
network?: Record<string, import("@taqueria/protocol/Base").Flatten<{
|
|
5066
|
-
|
|
5067
|
-
|
|
5068
|
-
};
|
|
5069
|
-
rpcUrl: string & {
|
|
5070
|
-
readonly __kind: any;
|
|
5071
|
-
};
|
|
5072
|
-
protocol: string & {
|
|
5073
|
-
readonly __kind: any;
|
|
5074
|
-
};
|
|
5075
|
-
faucet: import("@taqueria/protocol/Base").Flatten<{
|
|
5111
|
+
accounts?: Record<string, any> | undefined;
|
|
5112
|
+
faucet?: import("@taqueria/protocol/Base").Flatten<{
|
|
5076
5113
|
email?: string | undefined;
|
|
5077
5114
|
password?: string | undefined;
|
|
5078
5115
|
amount?: string | undefined;
|
|
@@ -5083,15 +5120,20 @@ export declare const create: (input: {
|
|
|
5083
5120
|
};
|
|
5084
5121
|
} & {
|
|
5085
5122
|
readonly __kind: any;
|
|
5086
|
-
}
|
|
5123
|
+
}> | undefined;
|
|
5124
|
+
label: string & {
|
|
5125
|
+
readonly __kind: any;
|
|
5126
|
+
};
|
|
5127
|
+
rpcUrl: string & {
|
|
5128
|
+
readonly __kind: any;
|
|
5129
|
+
};
|
|
5130
|
+
protocol: string & {
|
|
5131
|
+
readonly __kind: any;
|
|
5132
|
+
};
|
|
5087
5133
|
} & {
|
|
5088
5134
|
readonly __kind: any;
|
|
5089
5135
|
}>> | undefined;
|
|
5090
5136
|
sandbox?: Record<string, {
|
|
5091
|
-
attributes?: Record<string, string | number | boolean> | undefined;
|
|
5092
|
-
plugin?: (string & {
|
|
5093
|
-
readonly __kind: any;
|
|
5094
|
-
}) | undefined;
|
|
5095
5137
|
accounts?: Record<string, string | ({
|
|
5096
5138
|
encryptedKey: string;
|
|
5097
5139
|
publicKeyHash: string & {
|
|
@@ -5101,6 +5143,10 @@ export declare const create: (input: {
|
|
|
5101
5143
|
} & {
|
|
5102
5144
|
readonly __kind: any;
|
|
5103
5145
|
})> | undefined;
|
|
5146
|
+
attributes?: Record<string, string | number | boolean> | undefined;
|
|
5147
|
+
plugin?: (string & {
|
|
5148
|
+
readonly __kind: any;
|
|
5149
|
+
}) | undefined;
|
|
5104
5150
|
tzkt?: {
|
|
5105
5151
|
disableAutostartWithSandbox: boolean;
|
|
5106
5152
|
postgresqlPort: number;
|
|
@@ -5186,16 +5232,8 @@ export declare const create: (input: {
|
|
|
5186
5232
|
};
|
|
5187
5233
|
}> | undefined;
|
|
5188
5234
|
network?: Record<string, import("@taqueria/protocol/Base").Flatten<{
|
|
5189
|
-
|
|
5190
|
-
|
|
5191
|
-
};
|
|
5192
|
-
rpcUrl: string & {
|
|
5193
|
-
readonly __kind: any;
|
|
5194
|
-
};
|
|
5195
|
-
protocol: string & {
|
|
5196
|
-
readonly __kind: any;
|
|
5197
|
-
};
|
|
5198
|
-
faucet: import("@taqueria/protocol/Base").Flatten<{
|
|
5235
|
+
accounts?: Record<string, any> | undefined;
|
|
5236
|
+
faucet?: import("@taqueria/protocol/Base").Flatten<{
|
|
5199
5237
|
email?: string | undefined;
|
|
5200
5238
|
password?: string | undefined;
|
|
5201
5239
|
amount?: string | undefined;
|
|
@@ -5206,15 +5244,20 @@ export declare const create: (input: {
|
|
|
5206
5244
|
};
|
|
5207
5245
|
} & {
|
|
5208
5246
|
readonly __kind: any;
|
|
5209
|
-
}
|
|
5247
|
+
}> | undefined;
|
|
5248
|
+
label: string & {
|
|
5249
|
+
readonly __kind: any;
|
|
5250
|
+
};
|
|
5251
|
+
rpcUrl: string & {
|
|
5252
|
+
readonly __kind: any;
|
|
5253
|
+
};
|
|
5254
|
+
protocol: string & {
|
|
5255
|
+
readonly __kind: any;
|
|
5256
|
+
};
|
|
5210
5257
|
} & {
|
|
5211
5258
|
readonly __kind: any;
|
|
5212
5259
|
}>> | undefined;
|
|
5213
5260
|
sandbox?: Record<string, {
|
|
5214
|
-
attributes?: Record<string, string | number | boolean> | undefined;
|
|
5215
|
-
plugin?: (string & {
|
|
5216
|
-
readonly __kind: any;
|
|
5217
|
-
}) | undefined;
|
|
5218
5261
|
accounts?: Record<string, string | ({
|
|
5219
5262
|
encryptedKey: string;
|
|
5220
5263
|
publicKeyHash: string & {
|
|
@@ -5224,6 +5267,10 @@ export declare const create: (input: {
|
|
|
5224
5267
|
} & {
|
|
5225
5268
|
readonly __kind: any;
|
|
5226
5269
|
})> | undefined;
|
|
5270
|
+
attributes?: Record<string, string | number | boolean> | undefined;
|
|
5271
|
+
plugin?: (string & {
|
|
5272
|
+
readonly __kind: any;
|
|
5273
|
+
}) | undefined;
|
|
5227
5274
|
tzkt?: {
|
|
5228
5275
|
disableAutostartWithSandbox: boolean;
|
|
5229
5276
|
postgresqlPort: number;
|
|
@@ -5311,16 +5358,8 @@ export declare const create: (input: {
|
|
|
5311
5358
|
};
|
|
5312
5359
|
}> | undefined;
|
|
5313
5360
|
network?: Record<string, import("@taqueria/protocol/Base").Flatten<{
|
|
5314
|
-
|
|
5315
|
-
|
|
5316
|
-
};
|
|
5317
|
-
rpcUrl: string & {
|
|
5318
|
-
readonly __kind: any;
|
|
5319
|
-
};
|
|
5320
|
-
protocol: string & {
|
|
5321
|
-
readonly __kind: any;
|
|
5322
|
-
};
|
|
5323
|
-
faucet: import("@taqueria/protocol/Base").Flatten<{
|
|
5361
|
+
accounts?: Record<string, any> | undefined;
|
|
5362
|
+
faucet?: import("@taqueria/protocol/Base").Flatten<{
|
|
5324
5363
|
email?: string | undefined;
|
|
5325
5364
|
password?: string | undefined;
|
|
5326
5365
|
amount?: string | undefined;
|
|
@@ -5331,15 +5370,20 @@ export declare const create: (input: {
|
|
|
5331
5370
|
};
|
|
5332
5371
|
} & {
|
|
5333
5372
|
readonly __kind: any;
|
|
5334
|
-
}
|
|
5373
|
+
}> | undefined;
|
|
5374
|
+
label: string & {
|
|
5375
|
+
readonly __kind: any;
|
|
5376
|
+
};
|
|
5377
|
+
rpcUrl: string & {
|
|
5378
|
+
readonly __kind: any;
|
|
5379
|
+
};
|
|
5380
|
+
protocol: string & {
|
|
5381
|
+
readonly __kind: any;
|
|
5382
|
+
};
|
|
5335
5383
|
} & {
|
|
5336
5384
|
readonly __kind: any;
|
|
5337
5385
|
}>> | undefined;
|
|
5338
5386
|
sandbox?: Record<string, {
|
|
5339
|
-
attributes?: Record<string, string | number | boolean> | undefined;
|
|
5340
|
-
plugin?: (string & {
|
|
5341
|
-
readonly __kind: any;
|
|
5342
|
-
}) | undefined;
|
|
5343
5387
|
accounts?: Record<string, string | ({
|
|
5344
5388
|
encryptedKey: string;
|
|
5345
5389
|
publicKeyHash: string & {
|
|
@@ -5349,6 +5393,10 @@ export declare const create: (input: {
|
|
|
5349
5393
|
} & {
|
|
5350
5394
|
readonly __kind: any;
|
|
5351
5395
|
})> | undefined;
|
|
5396
|
+
attributes?: Record<string, string | number | boolean> | undefined;
|
|
5397
|
+
plugin?: (string & {
|
|
5398
|
+
readonly __kind: any;
|
|
5399
|
+
}) | undefined;
|
|
5352
5400
|
tzkt?: {
|
|
5353
5401
|
disableAutostartWithSandbox: boolean;
|
|
5354
5402
|
postgresqlPort: number;
|
|
@@ -5436,16 +5484,8 @@ export declare const create: (input: {
|
|
|
5436
5484
|
};
|
|
5437
5485
|
}> | undefined;
|
|
5438
5486
|
network?: Record<string, import("@taqueria/protocol/Base").Flatten<{
|
|
5439
|
-
|
|
5440
|
-
|
|
5441
|
-
};
|
|
5442
|
-
rpcUrl: string & {
|
|
5443
|
-
readonly __kind: any;
|
|
5444
|
-
};
|
|
5445
|
-
protocol: string & {
|
|
5446
|
-
readonly __kind: any;
|
|
5447
|
-
};
|
|
5448
|
-
faucet: import("@taqueria/protocol/Base").Flatten<{
|
|
5487
|
+
accounts?: Record<string, any> | undefined;
|
|
5488
|
+
faucet?: import("@taqueria/protocol/Base").Flatten<{
|
|
5449
5489
|
email?: string | undefined;
|
|
5450
5490
|
password?: string | undefined;
|
|
5451
5491
|
amount?: string | undefined;
|
|
@@ -5456,15 +5496,20 @@ export declare const create: (input: {
|
|
|
5456
5496
|
};
|
|
5457
5497
|
} & {
|
|
5458
5498
|
readonly __kind: any;
|
|
5459
|
-
}
|
|
5499
|
+
}> | undefined;
|
|
5500
|
+
label: string & {
|
|
5501
|
+
readonly __kind: any;
|
|
5502
|
+
};
|
|
5503
|
+
rpcUrl: string & {
|
|
5504
|
+
readonly __kind: any;
|
|
5505
|
+
};
|
|
5506
|
+
protocol: string & {
|
|
5507
|
+
readonly __kind: any;
|
|
5508
|
+
};
|
|
5460
5509
|
} & {
|
|
5461
5510
|
readonly __kind: any;
|
|
5462
5511
|
}>> | undefined;
|
|
5463
5512
|
sandbox?: Record<string, {
|
|
5464
|
-
attributes?: Record<string, string | number | boolean> | undefined;
|
|
5465
|
-
plugin?: (string & {
|
|
5466
|
-
readonly __kind: any;
|
|
5467
|
-
}) | undefined;
|
|
5468
5513
|
accounts?: Record<string, string | ({
|
|
5469
5514
|
encryptedKey: string;
|
|
5470
5515
|
publicKeyHash: string & {
|
|
@@ -5474,6 +5519,10 @@ export declare const create: (input: {
|
|
|
5474
5519
|
} & {
|
|
5475
5520
|
readonly __kind: any;
|
|
5476
5521
|
})> | undefined;
|
|
5522
|
+
attributes?: Record<string, string | number | boolean> | undefined;
|
|
5523
|
+
plugin?: (string & {
|
|
5524
|
+
readonly __kind: any;
|
|
5525
|
+
}) | undefined;
|
|
5477
5526
|
tzkt?: {
|
|
5478
5527
|
disableAutostartWithSandbox: boolean;
|
|
5479
5528
|
postgresqlPort: number;
|