@layerzerolabs/lz-v2-stellar-sdk 0.2.8 → 0.2.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/generated/bml.d.ts +88 -17
- package/dist/generated/bml.js +62 -16
- package/dist/generated/counter.d.ts +281 -102
- package/dist/generated/counter.js +93 -41
- package/dist/generated/endpoint.d.ts +128 -105
- package/dist/generated/endpoint.js +47 -45
- package/dist/generated/sml.d.ts +212 -69
- package/dist/generated/sml.js +103 -53
- package/dist/generated/uln302.d.ts +270 -173
- package/dist/generated/uln302.js +112 -64
- package/package.json +15 -15
- package/src/generated/bml.ts +87 -21
- package/src/generated/counter.ts +268 -91
- package/src/generated/endpoint.ts +133 -105
- package/src/generated/executor.ts +1816 -0
- package/src/generated/executor_helper.ts +843 -0
- package/src/generated/sml.ts +241 -85
- package/src/generated/uln302.ts +285 -191
- package/test/index.test.ts +147 -42
- package/test/suites/constants.ts +7 -3
- package/test/suites/deploy.ts +65 -42
- package/test/suites/localnet.ts +2 -2
- package/test/suites/scan.ts +28 -25
- package/test/utils.ts +199 -0
- package/tsconfig.json +93 -95
package/src/generated/uln302.ts
CHANGED
|
@@ -26,6 +26,42 @@ export * as contract from '@stellar/stellar-sdk/contract'
|
|
|
26
26
|
export * as rpc from '@stellar/stellar-sdk/rpc'
|
|
27
27
|
|
|
28
28
|
|
|
29
|
+
export const Uln302Error = {
|
|
30
|
+
1: {message:"DefaultExecutorConfigNotFound"},
|
|
31
|
+
2: {message:"DefaultReceiveUlnConfigNotFound"},
|
|
32
|
+
3: {message:"DefaultSendUlnConfigNotFound"},
|
|
33
|
+
4: {message:"DuplicateOptionalDVNs"},
|
|
34
|
+
5: {message:"DuplicateRequiredDVNs"},
|
|
35
|
+
6: {message:"InvalidConfig"},
|
|
36
|
+
7: {message:"InvalidConfigType"},
|
|
37
|
+
8: {message:"InvalidConfirmations"},
|
|
38
|
+
9: {message:"InvalidEID"},
|
|
39
|
+
10: {message:"InvalidMessageSize"},
|
|
40
|
+
11: {message:"InvalidOptionalDVNCount"},
|
|
41
|
+
12: {message:"InvalidOptionalDVNs"},
|
|
42
|
+
13: {message:"InvalidOptionalDVNThreshold"},
|
|
43
|
+
14: {message:"InvalidPacketHeader"},
|
|
44
|
+
15: {message:"InvalidRequiredDVNCount"},
|
|
45
|
+
16: {message:"InvalidRequiredDVNs"},
|
|
46
|
+
17: {message:"OAppExecutorConfigNotFound"},
|
|
47
|
+
18: {message:"OAppReceiveUlnConfigNotFound"},
|
|
48
|
+
19: {message:"OAppSendUlnConfigNotFound"},
|
|
49
|
+
20: {message:"OnlyEndpoint"},
|
|
50
|
+
21: {message:"UlnAtLeastOneDVN"},
|
|
51
|
+
22: {message:"UnsupportedEid"},
|
|
52
|
+
23: {message:"Verifying"},
|
|
53
|
+
24: {message:"ZeroMessageSize"}
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
|
|
57
|
+
|
|
58
|
+
|
|
59
|
+
|
|
60
|
+
|
|
61
|
+
|
|
62
|
+
|
|
63
|
+
|
|
64
|
+
|
|
29
65
|
|
|
30
66
|
/**
|
|
31
67
|
* Ultra Light Node configuration for message verification.
|
|
@@ -136,6 +172,42 @@ dst_eid: u32;
|
|
|
136
172
|
|
|
137
173
|
export type UlnStorage = {tag: "Endpoint", values: void} | {tag: "Treasury", values: void} | {tag: "DefaultExecutorConfigs", values: readonly [u32]} | {tag: "DefaultSendUlnConfigs", values: readonly [u32]} | {tag: "DefaultReceiveUlnConfigs", values: readonly [u32]} | {tag: "OAppSendUlnConfigs", values: readonly [string, u32]} | {tag: "OAppReceiveUlnConfigs", values: readonly [string, u32]} | {tag: "OAppExecutorConfigs", values: readonly [string, u32]} | {tag: "Confirmations", values: readonly [string, Buffer, Buffer]};
|
|
138
174
|
|
|
175
|
+
export const EndpointError = {
|
|
176
|
+
1: {message:"AlreadyRegistered"},
|
|
177
|
+
2: {message:"ComposeExists"},
|
|
178
|
+
3: {message:"ComposeNotFound"},
|
|
179
|
+
4: {message:"DefaultReceiveLibUnavailable"},
|
|
180
|
+
5: {message:"DefaultSendLibUnavailable"},
|
|
181
|
+
6: {message:"InsufficientNativeFee"},
|
|
182
|
+
7: {message:"InsufficientZROFee"},
|
|
183
|
+
8: {message:"InvalidExpiry"},
|
|
184
|
+
9: {message:"InvalidIndex"},
|
|
185
|
+
10: {message:"InvalidNonce"},
|
|
186
|
+
11: {message:"InvalidPayloadHash"},
|
|
187
|
+
12: {message:"InvalidReceiveLibrary"},
|
|
188
|
+
13: {message:"OnlyNonDefaultLib"},
|
|
189
|
+
14: {message:"OnlyReceiveLib"},
|
|
190
|
+
15: {message:"OnlyRegisteredLib"},
|
|
191
|
+
16: {message:"OnlySendLib"},
|
|
192
|
+
17: {message:"PathNotInitializable"},
|
|
193
|
+
18: {message:"PathNotVerifiable"},
|
|
194
|
+
19: {message:"PayloadHashNotFound"},
|
|
195
|
+
20: {message:"SameValue"},
|
|
196
|
+
21: {message:"Unauthorized"},
|
|
197
|
+
22: {message:"UnsupportedEid"},
|
|
198
|
+
23: {message:"ZeroZROFee"},
|
|
199
|
+
24: {message:"ZROUnavailable"}
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
|
|
203
|
+
|
|
204
|
+
|
|
205
|
+
|
|
206
|
+
|
|
207
|
+
|
|
208
|
+
|
|
209
|
+
|
|
210
|
+
|
|
139
211
|
|
|
140
212
|
|
|
141
213
|
|
|
@@ -145,32 +217,6 @@ export type UlnStorage = {tag: "Endpoint", values: void} | {tag: "Treasury", val
|
|
|
145
217
|
|
|
146
218
|
|
|
147
219
|
|
|
148
|
-
export const Uln302Error = {
|
|
149
|
-
1: {message:"DefaultExecutorConfigNotFound"},
|
|
150
|
-
2: {message:"DefaultReceiveUlnConfigNotFound"},
|
|
151
|
-
3: {message:"DefaultSendUlnConfigNotFound"},
|
|
152
|
-
4: {message:"DuplicateOptionalDVNs"},
|
|
153
|
-
5: {message:"DuplicateRequiredDVNs"},
|
|
154
|
-
6: {message:"InvalidConfig"},
|
|
155
|
-
7: {message:"InvalidConfigType"},
|
|
156
|
-
8: {message:"InvalidConfirmations"},
|
|
157
|
-
9: {message:"InvalidEID"},
|
|
158
|
-
10: {message:"InvalidMessageSize"},
|
|
159
|
-
11: {message:"InvalidOptionalDVNCount"},
|
|
160
|
-
12: {message:"InvalidOptionalDVNs"},
|
|
161
|
-
13: {message:"InvalidOptionalDVNThreshold"},
|
|
162
|
-
14: {message:"InvalidPacketHeader"},
|
|
163
|
-
15: {message:"InvalidRequiredDVNCount"},
|
|
164
|
-
16: {message:"InvalidRequiredDVNs"},
|
|
165
|
-
17: {message:"OAppExecutorConfigNotFound"},
|
|
166
|
-
18: {message:"OAppReceiveUlnConfigNotFound"},
|
|
167
|
-
19: {message:"OAppSendUlnConfigNotFound"},
|
|
168
|
-
20: {message:"OnlyEndpoint"},
|
|
169
|
-
21: {message:"UlnAtLeastOneDVN"},
|
|
170
|
-
22: {message:"UnsupportedEid"},
|
|
171
|
-
23: {message:"Verifying"},
|
|
172
|
-
24: {message:"ZeroMessageSize"}
|
|
173
|
-
}
|
|
174
220
|
|
|
175
221
|
|
|
176
222
|
/**
|
|
@@ -369,13 +415,13 @@ src_eid: u32;
|
|
|
369
415
|
*/
|
|
370
416
|
export interface FeeRecipient {
|
|
371
417
|
/**
|
|
372
|
-
* Address to receive the fee.
|
|
373
|
-
*/
|
|
374
|
-
address: string;
|
|
375
|
-
/**
|
|
376
418
|
* Amount of fee to pay.
|
|
377
419
|
*/
|
|
378
420
|
amount: i128;
|
|
421
|
+
/**
|
|
422
|
+
* The address to send the fee to.
|
|
423
|
+
*/
|
|
424
|
+
to: string;
|
|
379
425
|
}
|
|
380
426
|
|
|
381
427
|
|
|
@@ -398,44 +444,44 @@ zro_fee_recipients: Array<FeeRecipient>;
|
|
|
398
444
|
}
|
|
399
445
|
|
|
400
446
|
export const PacketCodecV1Error = {
|
|
401
|
-
|
|
402
|
-
|
|
447
|
+
1001: {message:"InvalidPacketHeader"},
|
|
448
|
+
1002: {message:"InvalidPacketVersion"}
|
|
403
449
|
}
|
|
404
450
|
|
|
405
451
|
export const WorkerOptionsError = {
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
452
|
+
1101: {message:"InvalidBytesLength"},
|
|
453
|
+
1102: {message:"InvalidLegacyOptionsType1"},
|
|
454
|
+
1103: {message:"InvalidLegacyOptionsType2"},
|
|
455
|
+
1104: {message:"InvalidOptionType"},
|
|
456
|
+
1105: {message:"InvalidOptions"},
|
|
457
|
+
1106: {message:"InvalidWorkerId"},
|
|
458
|
+
1107: {message:"LegacyOptionsType1GasOverflow"},
|
|
459
|
+
1108: {message:"LegacyOptionsType2AmountOverflow"},
|
|
460
|
+
1109: {message:"LegacyOptionsType2GasOverflow"}
|
|
415
461
|
}
|
|
416
462
|
|
|
417
463
|
export const BufferReaderError = {
|
|
418
|
-
|
|
419
|
-
|
|
464
|
+
1000: {message:"InvalidLength"},
|
|
465
|
+
1001: {message:"InvalidAddressPayload"}
|
|
420
466
|
}
|
|
421
467
|
|
|
422
468
|
export const BufferWriterError = {
|
|
423
|
-
|
|
469
|
+
1100: {message:"InvalidAddressPayload"}
|
|
424
470
|
}
|
|
425
471
|
|
|
426
472
|
export const TtlError = {
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
473
|
+
1200: {message:"InvalidTtlConfig"},
|
|
474
|
+
1201: {message:"TtlConfigFrozen"},
|
|
475
|
+
1202: {message:"TtlConfigAlreadyFrozen"}
|
|
430
476
|
}
|
|
431
477
|
|
|
432
478
|
export const OwnableError = {
|
|
433
|
-
|
|
434
|
-
|
|
479
|
+
1300: {message:"OwnerAlreadySet"},
|
|
480
|
+
1301: {message:"OwnerNotSet"}
|
|
435
481
|
}
|
|
436
482
|
|
|
437
483
|
export const BytesExtError = {
|
|
438
|
-
|
|
484
|
+
1400: {message:"LengthMismatch"}
|
|
439
485
|
}
|
|
440
486
|
|
|
441
487
|
|
|
@@ -457,16 +503,14 @@ extend_to: u32;
|
|
|
457
503
|
threshold: u32;
|
|
458
504
|
}
|
|
459
505
|
|
|
460
|
-
export type
|
|
506
|
+
export type TtlConfigStorage = {tag: "Frozen", values: void} | {tag: "Instance", values: void} | {tag: "Persistent", values: void};
|
|
461
507
|
|
|
462
508
|
export interface Client {
|
|
463
509
|
/**
|
|
464
|
-
* Construct and simulate a
|
|
465
|
-
*
|
|
466
|
-
*
|
|
467
|
-
* Stores the DVN's verification attestation which will be checked during commit_verification.
|
|
510
|
+
* Construct and simulate a set_default_executor_configs transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
|
|
511
|
+
* Sets default executor configurations for multiple destination endpoints.
|
|
468
512
|
*/
|
|
469
|
-
|
|
513
|
+
set_default_executor_configs: ({params}: {params: Array<SetDefaultExecutorConfigParam>}, txnOptions?: {
|
|
470
514
|
/**
|
|
471
515
|
* The fee to pay for the transaction. Default: BASE_FEE
|
|
472
516
|
*/
|
|
@@ -484,14 +528,10 @@ export interface Client {
|
|
|
484
528
|
}) => Promise<AssembledTransaction<null>>
|
|
485
529
|
|
|
486
530
|
/**
|
|
487
|
-
* Construct and simulate a
|
|
488
|
-
*
|
|
489
|
-
*
|
|
490
|
-
* Validates the packet header and checks that enough DVNs have verified the message
|
|
491
|
-
* (all required DVNs + optional DVN threshold). Once verified, cleans up DVN confirmation
|
|
492
|
-
* storage and calls the endpoint to mark the message as verified and executable.
|
|
531
|
+
* Construct and simulate a set_default_send_uln_configs transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
|
|
532
|
+
* Sets default send ULN configurations for multiple destination endpoints.
|
|
493
533
|
*/
|
|
494
|
-
|
|
534
|
+
set_default_send_uln_configs: ({params}: {params: Array<SetDefaultUlnConfigParam>}, txnOptions?: {
|
|
495
535
|
/**
|
|
496
536
|
* The fee to pay for the transaction. Default: BASE_FEE
|
|
497
537
|
*/
|
|
@@ -509,12 +549,10 @@ export interface Client {
|
|
|
509
549
|
}) => Promise<AssembledTransaction<null>>
|
|
510
550
|
|
|
511
551
|
/**
|
|
512
|
-
* Construct and simulate a
|
|
513
|
-
*
|
|
514
|
-
*
|
|
515
|
-
* Validates each config and stores it as the default for the specified source EID.
|
|
552
|
+
* Construct and simulate a treasury transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
|
|
553
|
+
* Returns the treasury address for fee collection.
|
|
516
554
|
*/
|
|
517
|
-
|
|
555
|
+
treasury: (txnOptions?: {
|
|
518
556
|
/**
|
|
519
557
|
* The fee to pay for the transaction. Default: BASE_FEE
|
|
520
558
|
*/
|
|
@@ -529,13 +567,13 @@ export interface Client {
|
|
|
529
567
|
* Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
|
|
530
568
|
*/
|
|
531
569
|
simulate?: boolean;
|
|
532
|
-
}) => Promise<AssembledTransaction<
|
|
570
|
+
}) => Promise<AssembledTransaction<string>>
|
|
533
571
|
|
|
534
572
|
/**
|
|
535
|
-
* Construct and simulate a
|
|
536
|
-
* Returns the
|
|
573
|
+
* Construct and simulate a default_executor_config transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
|
|
574
|
+
* Returns the default executor configuration for a destination endpoint.
|
|
537
575
|
*/
|
|
538
|
-
|
|
576
|
+
default_executor_config: ({dst_eid}: {dst_eid: u32}, txnOptions?: {
|
|
539
577
|
/**
|
|
540
578
|
* The fee to pay for the transaction. Default: BASE_FEE
|
|
541
579
|
*/
|
|
@@ -550,13 +588,13 @@ export interface Client {
|
|
|
550
588
|
* Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
|
|
551
589
|
*/
|
|
552
590
|
simulate?: boolean;
|
|
553
|
-
}) => Promise<AssembledTransaction<Option<
|
|
591
|
+
}) => Promise<AssembledTransaction<Option<ExecutorConfig>>>
|
|
554
592
|
|
|
555
593
|
/**
|
|
556
|
-
* Construct and simulate a
|
|
557
|
-
*
|
|
594
|
+
* Construct and simulate a oapp_executor_config transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
|
|
595
|
+
* Returns the OApp-specific executor configuration for a destination endpoint.
|
|
558
596
|
*/
|
|
559
|
-
|
|
597
|
+
oapp_executor_config: ({sender, dst_eid}: {sender: string, dst_eid: u32}, txnOptions?: {
|
|
560
598
|
/**
|
|
561
599
|
* The fee to pay for the transaction. Default: BASE_FEE
|
|
562
600
|
*/
|
|
@@ -571,13 +609,13 @@ export interface Client {
|
|
|
571
609
|
* Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
|
|
572
610
|
*/
|
|
573
611
|
simulate?: boolean;
|
|
574
|
-
}) => Promise<AssembledTransaction<
|
|
612
|
+
}) => Promise<AssembledTransaction<Option<OAppExecutorConfig>>>
|
|
575
613
|
|
|
576
614
|
/**
|
|
577
|
-
* Construct and simulate a
|
|
578
|
-
* Returns the
|
|
615
|
+
* Construct and simulate a effective_executor_config transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
|
|
616
|
+
* Returns the effective executor configuration by merging OApp config with default.
|
|
579
617
|
*/
|
|
580
|
-
|
|
618
|
+
effective_executor_config: ({sender, dst_eid}: {sender: string, dst_eid: u32}, txnOptions?: {
|
|
581
619
|
/**
|
|
582
620
|
* The fee to pay for the transaction. Default: BASE_FEE
|
|
583
621
|
*/
|
|
@@ -592,13 +630,13 @@ export interface Client {
|
|
|
592
630
|
* Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
|
|
593
631
|
*/
|
|
594
632
|
simulate?: boolean;
|
|
595
|
-
}) => Promise<AssembledTransaction<
|
|
633
|
+
}) => Promise<AssembledTransaction<ExecutorConfig>>
|
|
596
634
|
|
|
597
635
|
/**
|
|
598
|
-
* Construct and simulate a
|
|
599
|
-
* Returns the
|
|
636
|
+
* Construct and simulate a default_send_uln_config transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
|
|
637
|
+
* Returns the default send ULN configuration for a destination endpoint.
|
|
600
638
|
*/
|
|
601
|
-
|
|
639
|
+
default_send_uln_config: ({dst_eid}: {dst_eid: u32}, txnOptions?: {
|
|
602
640
|
/**
|
|
603
641
|
* The fee to pay for the transaction. Default: BASE_FEE
|
|
604
642
|
*/
|
|
@@ -613,13 +651,13 @@ export interface Client {
|
|
|
613
651
|
* Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
|
|
614
652
|
*/
|
|
615
653
|
simulate?: boolean;
|
|
616
|
-
}) => Promise<AssembledTransaction<Option<
|
|
654
|
+
}) => Promise<AssembledTransaction<Option<UlnConfig>>>
|
|
617
655
|
|
|
618
656
|
/**
|
|
619
|
-
* Construct and simulate a
|
|
620
|
-
* Returns the
|
|
657
|
+
* Construct and simulate a oapp_send_uln_config transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
|
|
658
|
+
* Returns the OApp-specific send ULN configuration for a destination endpoint.
|
|
621
659
|
*/
|
|
622
|
-
|
|
660
|
+
oapp_send_uln_config: ({sender, dst_eid}: {sender: string, dst_eid: u32}, txnOptions?: {
|
|
623
661
|
/**
|
|
624
662
|
* The fee to pay for the transaction. Default: BASE_FEE
|
|
625
663
|
*/
|
|
@@ -634,13 +672,13 @@ export interface Client {
|
|
|
634
672
|
* Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
|
|
635
673
|
*/
|
|
636
674
|
simulate?: boolean;
|
|
637
|
-
}) => Promise<AssembledTransaction<
|
|
675
|
+
}) => Promise<AssembledTransaction<Option<OAppUlnConfig>>>
|
|
638
676
|
|
|
639
677
|
/**
|
|
640
|
-
* Construct and simulate a
|
|
641
|
-
*
|
|
678
|
+
* Construct and simulate a effective_send_uln_config transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
|
|
679
|
+
* Returns the effective send ULN configuration by merging OApp config with default.
|
|
642
680
|
*/
|
|
643
|
-
|
|
681
|
+
effective_send_uln_config: ({sender, dst_eid}: {sender: string, dst_eid: u32}, txnOptions?: {
|
|
644
682
|
/**
|
|
645
683
|
* The fee to pay for the transaction. Default: BASE_FEE
|
|
646
684
|
*/
|
|
@@ -655,13 +693,15 @@ export interface Client {
|
|
|
655
693
|
* Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
|
|
656
694
|
*/
|
|
657
695
|
simulate?: boolean;
|
|
658
|
-
}) => Promise<AssembledTransaction<
|
|
696
|
+
}) => Promise<AssembledTransaction<UlnConfig>>
|
|
659
697
|
|
|
660
698
|
/**
|
|
661
|
-
* Construct and simulate a
|
|
662
|
-
*
|
|
699
|
+
* Construct and simulate a quote transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
|
|
700
|
+
* Quotes the total fee for sending a cross-chain message.
|
|
701
|
+
*
|
|
702
|
+
* Calculates fees from: executor (message execution), DVNs (verification), and treasury (protocol fee).
|
|
663
703
|
*/
|
|
664
|
-
|
|
704
|
+
quote: ({packet, options, pay_in_zro}: {packet: OutboundPacket, options: Buffer, pay_in_zro: boolean}, txnOptions?: {
|
|
665
705
|
/**
|
|
666
706
|
* The fee to pay for the transaction. Default: BASE_FEE
|
|
667
707
|
*/
|
|
@@ -676,13 +716,15 @@ export interface Client {
|
|
|
676
716
|
* Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
|
|
677
717
|
*/
|
|
678
718
|
simulate?: boolean;
|
|
679
|
-
}) => Promise<AssembledTransaction<
|
|
719
|
+
}) => Promise<AssembledTransaction<MessagingFee>>
|
|
680
720
|
|
|
681
721
|
/**
|
|
682
|
-
* Construct and simulate a
|
|
683
|
-
*
|
|
722
|
+
* Construct and simulate a send transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
|
|
723
|
+
* Sends a cross-chain message and returns fee recipients for payment.
|
|
724
|
+
*
|
|
725
|
+
* Assigns executor and DVNs, calculates fees, and encodes the packet for transmission.
|
|
684
726
|
*/
|
|
685
|
-
|
|
727
|
+
send: ({packet, options, pay_in_zro}: {packet: OutboundPacket, options: Buffer, pay_in_zro: boolean}, txnOptions?: {
|
|
686
728
|
/**
|
|
687
729
|
* The fee to pay for the transaction. Default: BASE_FEE
|
|
688
730
|
*/
|
|
@@ -697,13 +739,15 @@ export interface Client {
|
|
|
697
739
|
* Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
|
|
698
740
|
*/
|
|
699
741
|
simulate?: boolean;
|
|
700
|
-
}) => Promise<AssembledTransaction<
|
|
742
|
+
}) => Promise<AssembledTransaction<FeesAndPacket>>
|
|
701
743
|
|
|
702
744
|
/**
|
|
703
|
-
* Construct and simulate a
|
|
704
|
-
*
|
|
745
|
+
* Construct and simulate a verify transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
|
|
746
|
+
* Called by a DVN to verify a message with a specific number of block confirmations.
|
|
747
|
+
*
|
|
748
|
+
* Stores the DVN's verification attestation which will be checked during commit_verification.
|
|
705
749
|
*/
|
|
706
|
-
|
|
750
|
+
verify: ({dvn, packet_header, payload_hash, confirmations}: {dvn: string, packet_header: Buffer, payload_hash: Buffer, confirmations: u64}, txnOptions?: {
|
|
707
751
|
/**
|
|
708
752
|
* The fee to pay for the transaction. Default: BASE_FEE
|
|
709
753
|
*/
|
|
@@ -718,13 +762,17 @@ export interface Client {
|
|
|
718
762
|
* Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
|
|
719
763
|
*/
|
|
720
764
|
simulate?: boolean;
|
|
721
|
-
}) => Promise<AssembledTransaction<
|
|
765
|
+
}) => Promise<AssembledTransaction<null>>
|
|
722
766
|
|
|
723
767
|
/**
|
|
724
|
-
* Construct and simulate a
|
|
725
|
-
*
|
|
768
|
+
* Construct and simulate a commit_verification transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
|
|
769
|
+
* Permissonless to commit a verified message to the endpoint after sufficient DVN verification.
|
|
770
|
+
*
|
|
771
|
+
* Validates the packet header and checks that enough DVNs have verified the message
|
|
772
|
+
* (all required DVNs + optional DVN threshold). Once verified, cleans up DVN confirmation
|
|
773
|
+
* storage and calls the endpoint to mark the message as verified and executable.
|
|
726
774
|
*/
|
|
727
|
-
|
|
775
|
+
commit_verification: ({packet_header, payload_hash}: {packet_header: Buffer, payload_hash: Buffer}, txnOptions?: {
|
|
728
776
|
/**
|
|
729
777
|
* The fee to pay for the transaction. Default: BASE_FEE
|
|
730
778
|
*/
|
|
@@ -739,13 +787,15 @@ export interface Client {
|
|
|
739
787
|
* Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
|
|
740
788
|
*/
|
|
741
789
|
simulate?: boolean;
|
|
742
|
-
}) => Promise<AssembledTransaction<
|
|
790
|
+
}) => Promise<AssembledTransaction<null>>
|
|
743
791
|
|
|
744
792
|
/**
|
|
745
|
-
* Construct and simulate a
|
|
746
|
-
*
|
|
793
|
+
* Construct and simulate a set_default_receive_uln_configs transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
|
|
794
|
+
* Sets default receive ULN configurations for multiple source endpoints.
|
|
795
|
+
*
|
|
796
|
+
* Validates each config and stores it as the default for the specified source EID.
|
|
747
797
|
*/
|
|
748
|
-
|
|
798
|
+
set_default_receive_uln_configs: ({params}: {params: Array<SetDefaultUlnConfigParam>}, txnOptions?: {
|
|
749
799
|
/**
|
|
750
800
|
* The fee to pay for the transaction. Default: BASE_FEE
|
|
751
801
|
*/
|
|
@@ -760,13 +810,13 @@ export interface Client {
|
|
|
760
810
|
* Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
|
|
761
811
|
*/
|
|
762
812
|
simulate?: boolean;
|
|
763
|
-
}) => Promise<AssembledTransaction<
|
|
813
|
+
}) => Promise<AssembledTransaction<null>>
|
|
764
814
|
|
|
765
815
|
/**
|
|
766
|
-
* Construct and simulate a
|
|
767
|
-
* Returns the
|
|
816
|
+
* Construct and simulate a confirmations transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
|
|
817
|
+
* Returns the number of block confirmations a DVN has submitted for a specific message.
|
|
768
818
|
*/
|
|
769
|
-
|
|
819
|
+
confirmations: ({dvn, header_hash, payload_hash}: {dvn: string, header_hash: Buffer, payload_hash: Buffer}, txnOptions?: {
|
|
770
820
|
/**
|
|
771
821
|
* The fee to pay for the transaction. Default: BASE_FEE
|
|
772
822
|
*/
|
|
@@ -781,13 +831,13 @@ export interface Client {
|
|
|
781
831
|
* Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
|
|
782
832
|
*/
|
|
783
833
|
simulate?: boolean;
|
|
784
|
-
}) => Promise<AssembledTransaction<Option<
|
|
834
|
+
}) => Promise<AssembledTransaction<Option<u64>>>
|
|
785
835
|
|
|
786
836
|
/**
|
|
787
|
-
* Construct and simulate a
|
|
788
|
-
*
|
|
837
|
+
* Construct and simulate a verifiable transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
|
|
838
|
+
* Checks if a message has been sufficiently verified by DVNs and is ready to commit.
|
|
789
839
|
*/
|
|
790
|
-
|
|
840
|
+
verifiable: ({packet_header, payload_hash}: {packet_header: Buffer, payload_hash: Buffer}, txnOptions?: {
|
|
791
841
|
/**
|
|
792
842
|
* The fee to pay for the transaction. Default: BASE_FEE
|
|
793
843
|
*/
|
|
@@ -802,13 +852,13 @@ export interface Client {
|
|
|
802
852
|
* Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
|
|
803
853
|
*/
|
|
804
854
|
simulate?: boolean;
|
|
805
|
-
}) => Promise<AssembledTransaction<
|
|
855
|
+
}) => Promise<AssembledTransaction<boolean>>
|
|
806
856
|
|
|
807
857
|
/**
|
|
808
|
-
* Construct and simulate a
|
|
809
|
-
* Returns the
|
|
858
|
+
* Construct and simulate a default_receive_uln_config transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
|
|
859
|
+
* Returns the default receive ULN configuration for a source endpoint.
|
|
810
860
|
*/
|
|
811
|
-
|
|
861
|
+
default_receive_uln_config: ({src_eid}: {src_eid: u32}, txnOptions?: {
|
|
812
862
|
/**
|
|
813
863
|
* The fee to pay for the transaction. Default: BASE_FEE
|
|
814
864
|
*/
|
|
@@ -823,15 +873,13 @@ export interface Client {
|
|
|
823
873
|
* Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
|
|
824
874
|
*/
|
|
825
875
|
simulate?: boolean;
|
|
826
|
-
}) => Promise<AssembledTransaction<UlnConfig
|
|
876
|
+
}) => Promise<AssembledTransaction<Option<UlnConfig>>>
|
|
827
877
|
|
|
828
878
|
/**
|
|
829
|
-
* Construct and simulate a
|
|
830
|
-
*
|
|
831
|
-
*
|
|
832
|
-
* Calculates fees from: executor (message execution), DVNs (verification), and treasury (protocol fee).
|
|
879
|
+
* Construct and simulate a oapp_receive_uln_config transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
|
|
880
|
+
* Returns the OApp-specific receive ULN configuration override for a source endpoint.
|
|
833
881
|
*/
|
|
834
|
-
|
|
882
|
+
oapp_receive_uln_config: ({receiver, src_eid}: {receiver: string, src_eid: u32}, txnOptions?: {
|
|
835
883
|
/**
|
|
836
884
|
* The fee to pay for the transaction. Default: BASE_FEE
|
|
837
885
|
*/
|
|
@@ -846,15 +894,13 @@ export interface Client {
|
|
|
846
894
|
* Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
|
|
847
895
|
*/
|
|
848
896
|
simulate?: boolean;
|
|
849
|
-
}) => Promise<AssembledTransaction<
|
|
897
|
+
}) => Promise<AssembledTransaction<Option<OAppUlnConfig>>>
|
|
850
898
|
|
|
851
899
|
/**
|
|
852
|
-
* Construct and simulate a
|
|
853
|
-
*
|
|
854
|
-
*
|
|
855
|
-
* Assigns executor and DVNs, calculates fees, and encodes the packet for transmission.
|
|
900
|
+
* Construct and simulate a effective_receive_uln_config transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
|
|
901
|
+
* Returns the effective receive ULN configuration by merging OApp config with defaults.
|
|
856
902
|
*/
|
|
857
|
-
|
|
903
|
+
effective_receive_uln_config: ({receiver, src_eid}: {receiver: string, src_eid: u32}, txnOptions?: {
|
|
858
904
|
/**
|
|
859
905
|
* The fee to pay for the transaction. Default: BASE_FEE
|
|
860
906
|
*/
|
|
@@ -869,7 +915,7 @@ export interface Client {
|
|
|
869
915
|
* Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
|
|
870
916
|
*/
|
|
871
917
|
simulate?: boolean;
|
|
872
|
-
}) => Promise<AssembledTransaction<
|
|
918
|
+
}) => Promise<AssembledTransaction<UlnConfig>>
|
|
873
919
|
|
|
874
920
|
/**
|
|
875
921
|
* Construct and simulate a set_config transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
|
|
@@ -1061,9 +1107,9 @@ export interface Client {
|
|
|
1061
1107
|
}) => Promise<AssembledTransaction<null>>
|
|
1062
1108
|
|
|
1063
1109
|
/**
|
|
1064
|
-
* Construct and simulate a
|
|
1110
|
+
* Construct and simulate a set_ttl_configs transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
|
|
1065
1111
|
*/
|
|
1066
|
-
|
|
1112
|
+
set_ttl_configs: ({instance, persistent}: {instance: Option<TtlConfig>, persistent: Option<TtlConfig>}, txnOptions?: {
|
|
1067
1113
|
/**
|
|
1068
1114
|
* The fee to pay for the transaction. Default: BASE_FEE
|
|
1069
1115
|
*/
|
|
@@ -1081,9 +1127,9 @@ export interface Client {
|
|
|
1081
1127
|
}) => Promise<AssembledTransaction<null>>
|
|
1082
1128
|
|
|
1083
1129
|
/**
|
|
1084
|
-
* Construct and simulate a
|
|
1130
|
+
* Construct and simulate a ttl_configs transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
|
|
1085
1131
|
*/
|
|
1086
|
-
|
|
1132
|
+
ttl_configs: (txnOptions?: {
|
|
1087
1133
|
/**
|
|
1088
1134
|
* The fee to pay for the transaction. Default: BASE_FEE
|
|
1089
1135
|
*/
|
|
@@ -1098,12 +1144,12 @@ export interface Client {
|
|
|
1098
1144
|
* Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
|
|
1099
1145
|
*/
|
|
1100
1146
|
simulate?: boolean;
|
|
1101
|
-
}) => Promise<AssembledTransaction<readonly [Option<TtlConfig>, Option<TtlConfig
|
|
1147
|
+
}) => Promise<AssembledTransaction<readonly [Option<TtlConfig>, Option<TtlConfig>]>>
|
|
1102
1148
|
|
|
1103
1149
|
/**
|
|
1104
|
-
* Construct and simulate a
|
|
1150
|
+
* Construct and simulate a freeze_ttl_configs transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
|
|
1105
1151
|
*/
|
|
1106
|
-
|
|
1152
|
+
freeze_ttl_configs: (txnOptions?: {
|
|
1107
1153
|
/**
|
|
1108
1154
|
* The fee to pay for the transaction. Default: BASE_FEE
|
|
1109
1155
|
*/
|
|
@@ -1121,9 +1167,9 @@ export interface Client {
|
|
|
1121
1167
|
}) => Promise<AssembledTransaction<null>>
|
|
1122
1168
|
|
|
1123
1169
|
/**
|
|
1124
|
-
* Construct and simulate a
|
|
1170
|
+
* Construct and simulate a is_ttl_configs_frozen transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
|
|
1125
1171
|
*/
|
|
1126
|
-
|
|
1172
|
+
is_ttl_configs_frozen: (txnOptions?: {
|
|
1127
1173
|
/**
|
|
1128
1174
|
* The fee to pay for the transaction. Default: BASE_FEE
|
|
1129
1175
|
*/
|
|
@@ -1140,6 +1186,32 @@ export interface Client {
|
|
|
1140
1186
|
simulate?: boolean;
|
|
1141
1187
|
}) => Promise<AssembledTransaction<boolean>>
|
|
1142
1188
|
|
|
1189
|
+
/**
|
|
1190
|
+
* Construct and simulate a extend_instance_ttl transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
|
|
1191
|
+
* Extends the instance TTL.
|
|
1192
|
+
*
|
|
1193
|
+
* # Arguments
|
|
1194
|
+
*
|
|
1195
|
+
* * `threshold` - The threshold to extend the TTL.
|
|
1196
|
+
* * `extend_to` - The TTL to extend to.
|
|
1197
|
+
*/
|
|
1198
|
+
extend_instance_ttl: ({threshold, extend_to}: {threshold: u32, extend_to: u32}, txnOptions?: {
|
|
1199
|
+
/**
|
|
1200
|
+
* The fee to pay for the transaction. Default: BASE_FEE
|
|
1201
|
+
*/
|
|
1202
|
+
fee?: number;
|
|
1203
|
+
|
|
1204
|
+
/**
|
|
1205
|
+
* The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
|
|
1206
|
+
*/
|
|
1207
|
+
timeoutInSeconds?: number;
|
|
1208
|
+
|
|
1209
|
+
/**
|
|
1210
|
+
* Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
|
|
1211
|
+
*/
|
|
1212
|
+
simulate?: boolean;
|
|
1213
|
+
}) => Promise<AssembledTransaction<null>>
|
|
1214
|
+
|
|
1143
1215
|
}
|
|
1144
1216
|
export class Client extends ContractClient {
|
|
1145
1217
|
static async deploy<T = Client>(
|
|
@@ -1160,20 +1232,22 @@ export class Client extends ContractClient {
|
|
|
1160
1232
|
}
|
|
1161
1233
|
constructor(public readonly options: ContractClientOptions) {
|
|
1162
1234
|
super(
|
|
1163
|
-
new ContractSpec([ "
|
|
1235
|
+
new ContractSpec([ "AAAABAAAAAAAAAAAAAAAC1VsbjMwMkVycm9yAAAAABgAAAAAAAAAHURlZmF1bHRFeGVjdXRvckNvbmZpZ05vdEZvdW5kAAAAAAAAAQAAAAAAAAAfRGVmYXVsdFJlY2VpdmVVbG5Db25maWdOb3RGb3VuZAAAAAACAAAAAAAAABxEZWZhdWx0U2VuZFVsbkNvbmZpZ05vdEZvdW5kAAAAAwAAAAAAAAAVRHVwbGljYXRlT3B0aW9uYWxEVk5zAAAAAAAABAAAAAAAAAAVRHVwbGljYXRlUmVxdWlyZWREVk5zAAAAAAAABQAAAAAAAAANSW52YWxpZENvbmZpZwAAAAAAAAYAAAAAAAAAEUludmFsaWRDb25maWdUeXBlAAAAAAAABwAAAAAAAAAUSW52YWxpZENvbmZpcm1hdGlvbnMAAAAIAAAAAAAAAApJbnZhbGlkRUlEAAAAAAAJAAAAAAAAABJJbnZhbGlkTWVzc2FnZVNpemUAAAAAAAoAAAAAAAAAF0ludmFsaWRPcHRpb25hbERWTkNvdW50AAAAAAsAAAAAAAAAE0ludmFsaWRPcHRpb25hbERWTnMAAAAADAAAAAAAAAAbSW52YWxpZE9wdGlvbmFsRFZOVGhyZXNob2xkAAAAAA0AAAAAAAAAE0ludmFsaWRQYWNrZXRIZWFkZXIAAAAADgAAAAAAAAAXSW52YWxpZFJlcXVpcmVkRFZOQ291bnQAAAAADwAAAAAAAAATSW52YWxpZFJlcXVpcmVkRFZOcwAAAAAQAAAAAAAAABpPQXBwRXhlY3V0b3JDb25maWdOb3RGb3VuZAAAAAAAEQAAAAAAAAAcT0FwcFJlY2VpdmVVbG5Db25maWdOb3RGb3VuZAAAABIAAAAAAAAAGU9BcHBTZW5kVWxuQ29uZmlnTm90Rm91bmQAAAAAAAATAAAAAAAAAAxPbmx5RW5kcG9pbnQAAAAUAAAAAAAAABBVbG5BdExlYXN0T25lRFZOAAAAFQAAAAAAAAAOVW5zdXBwb3J0ZWRFaWQAAAAAABYAAAAAAAAACVZlcmlmeWluZwAAAAAAABcAAAAAAAAAD1plcm9NZXNzYWdlU2l6ZQAAAAAY",
|
|
1236
|
+
"AAAABQAAAAAAAAAAAAAAEUV4ZWN1dG9yQ29uZmlnU2V0AAAAAAAAAQAAABFFeGVjdXRvckNvbmZpZ1NldAAAAAAAAAMAAAAAAAAABnNlbmRlcgAAAAAAEwAAAAEAAAAAAAAAB2RzdF9laWQAAAAABAAAAAEAAAAAAAAABmNvbmZpZwAAAAAH0AAAABJPQXBwRXhlY3V0b3JDb25maWcAAAAAAAAAAAAC",
|
|
1237
|
+
"AAAABQAAAAAAAAAAAAAAEFVsblNlbmRDb25maWdTZXQAAAABAAAAEFVsblNlbmRDb25maWdTZXQAAAADAAAAAAAAAAZzZW5kZXIAAAAAABMAAAABAAAAAAAAAAdkc3RfZWlkAAAAAAQAAAABAAAAAAAAAAZjb25maWcAAAAAB9AAAAANT0FwcFVsbkNvbmZpZwAAAAAAAAAAAAAC",
|
|
1238
|
+
"AAAABQAAAAAAAAAAAAAAE1VsblJlY2VpdmVDb25maWdTZXQAAAAAAQAAABNVbG5SZWNlaXZlQ29uZmlnU2V0AAAAAAMAAAAAAAAACHJlY2VpdmVyAAAAEwAAAAEAAAAAAAAAB3NyY19laWQAAAAABAAAAAEAAAAAAAAABmNvbmZpZwAAAAAH0AAAAA1PQXBwVWxuQ29uZmlnAAAAAAAAAAAAAAI=",
|
|
1239
|
+
"AAAABQAAAAAAAAAAAAAAGERlZmF1bHRFeGVjdXRvckNvbmZpZ1NldAAAAAEAAAAYRGVmYXVsdEV4ZWN1dG9yQ29uZmlnU2V0AAAAAQAAAAAAAAAGcGFyYW1zAAAAAAPqAAAH0AAAAB1TZXREZWZhdWx0RXhlY3V0b3JDb25maWdQYXJhbQAAAAAAAAAAAAAC",
|
|
1240
|
+
"AAAABQAAAAAAAAAAAAAAF0RlZmF1bHRVbG5TZW5kQ29uZmlnU2V0AAAAAAEAAAAXRGVmYXVsdFVsblNlbmRDb25maWdTZXQAAAAAAQAAAAAAAAAGcGFyYW1zAAAAAAPqAAAH0AAAABhTZXREZWZhdWx0VWxuQ29uZmlnUGFyYW0AAAAAAAAAAg==",
|
|
1241
|
+
"AAAABQAAAAAAAAAAAAAAGkRlZmF1bHRVbG5SZWNlaXZlQ29uZmlnU2V0AAAAAAABAAAAGkRlZmF1bHRVbG5SZWNlaXZlQ29uZmlnU2V0AAAAAAABAAAAAAAAAAZwYXJhbXMAAAAAA+oAAAfQAAAAGFNldERlZmF1bHRVbG5Db25maWdQYXJhbQAAAAAAAAAC",
|
|
1242
|
+
"AAAABQAAAAAAAAAAAAAAD0V4ZWN1dG9yRmVlUGFpZAAAAAABAAAAD0V4ZWN1dG9yRmVlUGFpZAAAAAACAAAAAAAAAAhleGVjdXRvcgAAABMAAAABAAAAAAAAAANmZWUAAAAH0AAAAAxGZWVSZWNpcGllbnQAAAAAAAAAAg==",
|
|
1243
|
+
"AAAABQAAAAAAAAAAAAAACkRWTkZlZVBhaWQAAAAAAAEAAAAKRFZORmVlUGFpZAAAAAAAAgAAAAAAAAAEZHZucwAAA+oAAAATAAAAAQAAAAAAAAAEZmVlcwAAA+oAAAfQAAAADEZlZVJlY2lwaWVudAAAAAAAAAAC",
|
|
1244
|
+
"AAAABQAAAAAAAAAAAAAAD1BheWxvYWRWZXJpZmllZAAAAAABAAAAD1BheWxvYWRWZXJpZmllZAAAAAAEAAAAAAAAAANkdm4AAAAAEwAAAAEAAAAAAAAABmhlYWRlcgAAAAAADgAAAAAAAAAAAAAADWNvbmZpcm1hdGlvbnMAAAAAAAAGAAAAAAAAAAAAAAAKcHJvb2ZfaGFzaAAAAAAD7gAAACAAAAAAAAAAAg==",
|
|
1245
|
+
"AAAAAQAAADhVbHRyYSBMaWdodCBOb2RlIGNvbmZpZ3VyYXRpb24gZm9yIG1lc3NhZ2UgdmVyaWZpY2F0aW9uLgAAAAAAAAAJVWxuQ29uZmlnAAAAAAAABAAAAEpOdW1iZXIgb2YgYmxvY2sgY29uZmlybWF0aW9ucyByZXF1aXJlZCBiZWZvcmUgbWVzc2FnZSB2ZXJpZmljYXRpb24gYmVnaW5zLgAAAAAADWNvbmZpcm1hdGlvbnMAAAAAAAAGAAAAM01pbmltdW0gbnVtYmVyIG9mIG9wdGlvbmFsIERWTnMgcmVxdWlyZWQgdG8gdmVyaWZ5LgAAAAAWb3B0aW9uYWxfZHZuX3RocmVzaG9sZAAAAAAABAAAAEBMaXN0IG9mIERWTiBhZGRyZXNzZXMgZnJvbSB3aGljaCBhIHRocmVzaG9sZCBudW1iZXIgbXVzdCB2ZXJpZnkuAAAADW9wdGlvbmFsX2R2bnMAAAAAAAPqAAAAEwAAAEZMaXN0IG9mIERWTiBhZGRyZXNzZXMgdGhhdCBtdXN0IEFMTCB2ZXJpZnkgdGhlIG1lc3NhZ2UgKG5vIHRocmVzaG9sZCkuAAAAAAANcmVxdWlyZWRfZHZucwAAAAAAA+oAAAAT",
|
|
1164
1246
|
"AAAAAQAAADxPQXBwLXNwZWNpZmljIFVMTiBjb25maWd1cmF0aW9uIHdpdGggZGVmYXVsdCBvdmVycmlkZSBmbGFncy4AAAAAAAAADU9BcHBVbG5Db25maWcAAAAAAAAEAAAARU9BcHAtc3BlY2lmaWMgVUxOIGNvbmZpZ3VyYXRpb24gKHVzZWQgd2hlbiBkZWZhdWx0cyBhcmUgbm90IGFwcGxpZWQpLgAAAAAAAAp1bG5fY29uZmlnAAAAAAfQAAAACVVsbkNvbmZpZwAAAAAAACVXaGV0aGVyIHRvIHVzZSBkZWZhdWx0IGNvbmZpcm1hdGlvbnMuAAAAAAAAGXVzZV9kZWZhdWx0X2NvbmZpcm1hdGlvbnMAAAAAAAABAAAAJVdoZXRoZXIgdG8gdXNlIGRlZmF1bHQgb3B0aW9uYWwgRFZOcy4AAAAAAAAZdXNlX2RlZmF1bHRfb3B0aW9uYWxfZHZucwAAAAAAAAEAAAAlV2hldGhlciB0byB1c2UgZGVmYXVsdCByZXF1aXJlZCBEVk5zLgAAAAAAABl1c2VfZGVmYXVsdF9yZXF1aXJlZF9kdm5zAAAAAAAAAQ==",
|
|
1165
1247
|
"AAAAAQAAAFJQYXJhbWV0ZXIgZm9yIHNldHRpbmcgZGVmYXVsdCBVTE4gY29uZmlndXJhdGlvbiBmb3IgYSBkZXN0aW5hdGlvbi9zb3VyY2UgZW5kcG9pbnQuAAAAAAAAAAAAGFNldERlZmF1bHRVbG5Db25maWdQYXJhbQAAAAIAAAAoVGhlIFVMTiBjb25maWd1cmF0aW9uIHRvIHNldCBhcyBkZWZhdWx0LgAAAAZjb25maWcAAAAAB9AAAAAJVWxuQ29uZmlnAAAAAAAAS1RoZSBkZXN0aW5hdGlvbiBlbmRwb2ludCBJRCAoZm9yIHNlbmQpIG9yIHNvdXJjZSBlbmRwb2ludCBJRCAoZm9yIHJlY2VpdmUpLgAAAAAHZHN0X2VpZAAAAAAE",
|
|
1166
1248
|
"AAAAAQAAACxFeGVjdXRvciBjb25maWd1cmF0aW9uIGZvciBtZXNzYWdlIGRlbGl2ZXJ5LgAAAAAAAAAORXhlY3V0b3JDb25maWcAAAAAAAIAAABDQWRkcmVzcyBvZiB0aGUgZXhlY3V0b3IgY29udHJhY3QgcmVzcG9uc2libGUgZm9yIG1lc3NhZ2UgZXhlY3V0aW9uLgAAAAAIZXhlY3V0b3IAAAATAAAAOU1heGltdW0gc2l6ZSBvZiBtZXNzYWdlcyB0aGF0IGNhbiBiZSBleGVjdXRlZCAoaW4gYnl0ZXMpLgAAAAAAABBtYXhfbWVzc2FnZV9zaXplAAAABA==",
|
|
1167
1249
|
"AAAAAQAAAFtPQXBwLXNwZWNpZmljIGV4ZWN1dG9yIGNvbmZpZ3VyYXRpb24uCgpJZiBleGVjdXRvciBpcyBgTm9uZWAsIHRoZSBkZWZhdWx0IGV4ZWN1dG9yIGlzIHVzZWQuAAAAAAAAAAAST0FwcEV4ZWN1dG9yQ29uZmlnAAAAAAACAAAAaEFkZHJlc3Mgb2YgdGhlIGV4ZWN1dG9yIGNvbnRyYWN0IHRvIGJlIHVzZWQgZm9yIG1lc3NhZ2UgZXhlY3V0aW9uLiBOb25lIG1lYW5zIHVzZSBkZWZhdWx0IGNvbmZpZ3VyYXRpb24uAAAACGV4ZWN1dG9yAAAD6AAAABMAAABcTWF4aW11bSBzaXplIG9mIG1lc3NhZ2VzIHRoYXQgY2FuIGJlIGV4ZWN1dGVkIChpbiBieXRlcykuIDAgbWVhbnMgdXNlIGRlZmF1bHQgY29uZmlndXJhdGlvbi4AAAAQbWF4X21lc3NhZ2Vfc2l6ZQAAAAQ=",
|
|
1168
1250
|
"AAAAAQAAAFBQYXJhbWV0ZXIgZm9yIHNldHRpbmcgZGVmYXVsdCBleGVjdXRvciBjb25maWd1cmF0aW9uIGZvciBhIGRlc3RpbmF0aW9uIGVuZHBvaW50LgAAAAAAAAAdU2V0RGVmYXVsdEV4ZWN1dG9yQ29uZmlnUGFyYW0AAAAAAAACAAAALVRoZSBleGVjdXRvciBjb25maWd1cmF0aW9uIHRvIHNldCBhcyBkZWZhdWx0LgAAAAAAAAZjb25maWcAAAAAB9AAAAAORXhlY3V0b3JDb25maWcAAAAAABxUaGUgZGVzdGluYXRpb24gZW5kcG9pbnQgSUQuAAAAB2RzdF9laWQAAAAABA==",
|
|
1169
|
-
"AAAAAAAAAK9DYWxsZWQgYnkgYSBEVk4gdG8gdmVyaWZ5IGEgbWVzc2FnZSB3aXRoIGEgc3BlY2lmaWMgbnVtYmVyIG9mIGJsb2NrIGNvbmZpcm1hdGlvbnMuCgpTdG9yZXMgdGhlIERWTidzIHZlcmlmaWNhdGlvbiBhdHRlc3RhdGlvbiB3aGljaCB3aWxsIGJlIGNoZWNrZWQgZHVyaW5nIGNvbW1pdF92ZXJpZmljYXRpb24uAAAAAAZ2ZXJpZnkAAAAAAAQAAAAAAAAAA2R2bgAAAAATAAAAAAAAAA1wYWNrZXRfaGVhZGVyAAAAAAAADgAAAAAAAAAMcGF5bG9hZF9oYXNoAAAD7gAAACAAAAAAAAAADWNvbmZpcm1hdGlvbnMAAAAAAAAGAAAAAA==",
|
|
1170
|
-
"AAAAAAAAAVdQZXJtaXNzb25sZXNzIHRvIGNvbW1pdCBhIHZlcmlmaWVkIG1lc3NhZ2UgdG8gdGhlIGVuZHBvaW50IGFmdGVyIHN1ZmZpY2llbnQgRFZOIHZlcmlmaWNhdGlvbi4KClZhbGlkYXRlcyB0aGUgcGFja2V0IGhlYWRlciBhbmQgY2hlY2tzIHRoYXQgZW5vdWdoIERWTnMgaGF2ZSB2ZXJpZmllZCB0aGUgbWVzc2FnZQooYWxsIHJlcXVpcmVkIERWTnMgKyBvcHRpb25hbCBEVk4gdGhyZXNob2xkKS4gT25jZSB2ZXJpZmllZCwgY2xlYW5zIHVwIERWTiBjb25maXJtYXRpb24Kc3RvcmFnZSBhbmQgY2FsbHMgdGhlIGVuZHBvaW50IHRvIG1hcmsgdGhlIG1lc3NhZ2UgYXMgdmVyaWZpZWQgYW5kIGV4ZWN1dGFibGUuAAAAABNjb21taXRfdmVyaWZpY2F0aW9uAAAAAAIAAAAAAAAADXBhY2tldF9oZWFkZXIAAAAAAAAOAAAAAAAAAAxwYXlsb2FkX2hhc2gAAAPuAAAAIAAAAAA=",
|
|
1171
|
-
"AAAAAAAAAJhTZXRzIGRlZmF1bHQgcmVjZWl2ZSBVTE4gY29uZmlndXJhdGlvbnMgZm9yIG11bHRpcGxlIHNvdXJjZSBlbmRwb2ludHMuCgpWYWxpZGF0ZXMgZWFjaCBjb25maWcgYW5kIHN0b3JlcyBpdCBhcyB0aGUgZGVmYXVsdCBmb3IgdGhlIHNwZWNpZmllZCBzb3VyY2UgRUlELgAAAB9zZXRfZGVmYXVsdF9yZWNlaXZlX3Vsbl9jb25maWdzAAAAAAEAAAAAAAAABnBhcmFtcwAAAAAD6gAAB9AAAAAYU2V0RGVmYXVsdFVsbkNvbmZpZ1BhcmFtAAAAAA==",
|
|
1172
|
-
"AAAAAAAAAFVSZXR1cm5zIHRoZSBudW1iZXIgb2YgYmxvY2sgY29uZmlybWF0aW9ucyBhIERWTiBoYXMgc3VibWl0dGVkIGZvciBhIHNwZWNpZmljIG1lc3NhZ2UuAAAAAAAADWNvbmZpcm1hdGlvbnMAAAAAAAADAAAAAAAAAANkdm4AAAAAEwAAAAAAAAALaGVhZGVyX2hhc2gAAAAD7gAAACAAAAAAAAAADHBheWxvYWRfaGFzaAAAA+4AAAAgAAAAAQAAA+gAAAAG",
|
|
1173
|
-
"AAAAAAAAAFJDaGVja3MgaWYgYSBtZXNzYWdlIGhhcyBiZWVuIHN1ZmZpY2llbnRseSB2ZXJpZmllZCBieSBEVk5zIGFuZCBpcyByZWFkeSB0byBjb21taXQuAAAAAAAKdmVyaWZpYWJsZQAAAAAAAgAAAAAAAAANcGFja2V0X2hlYWRlcgAAAAAAAA4AAAAAAAAADHBheWxvYWRfaGFzaAAAA+4AAAAgAAAAAQAAAAE=",
|
|
1174
|
-
"AAAAAAAAAERSZXR1cm5zIHRoZSBkZWZhdWx0IHJlY2VpdmUgVUxOIGNvbmZpZ3VyYXRpb24gZm9yIGEgc291cmNlIGVuZHBvaW50LgAAABpkZWZhdWx0X3JlY2VpdmVfdWxuX2NvbmZpZwAAAAAAAQAAAAAAAAAHc3JjX2VpZAAAAAAEAAAAAQAAA+gAAAfQAAAACVVsbkNvbmZpZwAAAA==",
|
|
1175
|
-
"AAAAAAAAAFNSZXR1cm5zIHRoZSBPQXBwLXNwZWNpZmljIHJlY2VpdmUgVUxOIGNvbmZpZ3VyYXRpb24gb3ZlcnJpZGUgZm9yIGEgc291cmNlIGVuZHBvaW50LgAAAAAXb2FwcF9yZWNlaXZlX3Vsbl9jb25maWcAAAAAAgAAAAAAAAAIcmVjZWl2ZXIAAAATAAAAAAAAAAdzcmNfZWlkAAAAAAQAAAABAAAD6AAAB9AAAAANT0FwcFVsbkNvbmZpZwAAAA==",
|
|
1176
|
-
"AAAAAAAAAFVSZXR1cm5zIHRoZSBlZmZlY3RpdmUgcmVjZWl2ZSBVTE4gY29uZmlndXJhdGlvbiBieSBtZXJnaW5nIE9BcHAgY29uZmlnIHdpdGggZGVmYXVsdHMuAAAAAAAAHGVmZmVjdGl2ZV9yZWNlaXZlX3Vsbl9jb25maWcAAAACAAAAAAAAAAhyZWNlaXZlcgAAABMAAAAAAAAAB3NyY19laWQAAAAABAAAAAEAAAfQAAAACVVsbkNvbmZpZwAAAA==",
|
|
1177
1251
|
"AAAAAAAAAEhTZXRzIGRlZmF1bHQgZXhlY3V0b3IgY29uZmlndXJhdGlvbnMgZm9yIG11bHRpcGxlIGRlc3RpbmF0aW9uIGVuZHBvaW50cy4AAAAcc2V0X2RlZmF1bHRfZXhlY3V0b3JfY29uZmlncwAAAAEAAAAAAAAABnBhcmFtcwAAAAAD6gAAB9AAAAAdU2V0RGVmYXVsdEV4ZWN1dG9yQ29uZmlnUGFyYW0AAAAAAAAA",
|
|
1178
1252
|
"AAAAAAAAAEhTZXRzIGRlZmF1bHQgc2VuZCBVTE4gY29uZmlndXJhdGlvbnMgZm9yIG11bHRpcGxlIGRlc3RpbmF0aW9uIGVuZHBvaW50cy4AAAAcc2V0X2RlZmF1bHRfc2VuZF91bG5fY29uZmlncwAAAAEAAAAAAAAABnBhcmFtcwAAAAAD6gAAB9AAAAAYU2V0RGVmYXVsdFVsbkNvbmZpZ1BhcmFtAAAAAA==",
|
|
1179
1253
|
"AAAAAAAAADBSZXR1cm5zIHRoZSB0cmVhc3VyeSBhZGRyZXNzIGZvciBmZWUgY29sbGVjdGlvbi4AAAAIdHJlYXN1cnkAAAAAAAAAAQAAABM=",
|
|
@@ -1185,6 +1259,14 @@ export class Client extends ContractClient {
|
|
|
1185
1259
|
"AAAAAAAAAFFSZXR1cm5zIHRoZSBlZmZlY3RpdmUgc2VuZCBVTE4gY29uZmlndXJhdGlvbiBieSBtZXJnaW5nIE9BcHAgY29uZmlnIHdpdGggZGVmYXVsdC4AAAAAAAAZZWZmZWN0aXZlX3NlbmRfdWxuX2NvbmZpZwAAAAAAAAIAAAAAAAAABnNlbmRlcgAAAAAAEwAAAAAAAAAHZHN0X2VpZAAAAAAEAAAAAQAAB9AAAAAJVWxuQ29uZmlnAAAA",
|
|
1186
1260
|
"AAAAAAAAAJ5RdW90ZXMgdGhlIHRvdGFsIGZlZSBmb3Igc2VuZGluZyBhIGNyb3NzLWNoYWluIG1lc3NhZ2UuCgpDYWxjdWxhdGVzIGZlZXMgZnJvbTogZXhlY3V0b3IgKG1lc3NhZ2UgZXhlY3V0aW9uKSwgRFZOcyAodmVyaWZpY2F0aW9uKSwgYW5kIHRyZWFzdXJ5IChwcm90b2NvbCBmZWUpLgAAAAAABXF1b3RlAAAAAAAAAwAAAAAAAAAGcGFja2V0AAAAAAfQAAAADk91dGJvdW5kUGFja2V0AAAAAAAAAAAAB29wdGlvbnMAAAAADgAAAAAAAAAKcGF5X2luX3pybwAAAAAAAQAAAAEAAAfQAAAADE1lc3NhZ2luZ0ZlZQ==",
|
|
1187
1261
|
"AAAAAAAAAJlTZW5kcyBhIGNyb3NzLWNoYWluIG1lc3NhZ2UgYW5kIHJldHVybnMgZmVlIHJlY2lwaWVudHMgZm9yIHBheW1lbnQuCgpBc3NpZ25zIGV4ZWN1dG9yIGFuZCBEVk5zLCBjYWxjdWxhdGVzIGZlZXMsIGFuZCBlbmNvZGVzIHRoZSBwYWNrZXQgZm9yIHRyYW5zbWlzc2lvbi4AAAAAAAAEc2VuZAAAAAMAAAAAAAAABnBhY2tldAAAAAAH0AAAAA5PdXRib3VuZFBhY2tldAAAAAAAAAAAAAdvcHRpb25zAAAAAA4AAAAAAAAACnBheV9pbl96cm8AAAAAAAEAAAABAAAH0AAAAA1GZWVzQW5kUGFja2V0AAAA",
|
|
1262
|
+
"AAAAAAAAAK9DYWxsZWQgYnkgYSBEVk4gdG8gdmVyaWZ5IGEgbWVzc2FnZSB3aXRoIGEgc3BlY2lmaWMgbnVtYmVyIG9mIGJsb2NrIGNvbmZpcm1hdGlvbnMuCgpTdG9yZXMgdGhlIERWTidzIHZlcmlmaWNhdGlvbiBhdHRlc3RhdGlvbiB3aGljaCB3aWxsIGJlIGNoZWNrZWQgZHVyaW5nIGNvbW1pdF92ZXJpZmljYXRpb24uAAAAAAZ2ZXJpZnkAAAAAAAQAAAAAAAAAA2R2bgAAAAATAAAAAAAAAA1wYWNrZXRfaGVhZGVyAAAAAAAADgAAAAAAAAAMcGF5bG9hZF9oYXNoAAAD7gAAACAAAAAAAAAADWNvbmZpcm1hdGlvbnMAAAAAAAAGAAAAAA==",
|
|
1263
|
+
"AAAAAAAAAVdQZXJtaXNzb25sZXNzIHRvIGNvbW1pdCBhIHZlcmlmaWVkIG1lc3NhZ2UgdG8gdGhlIGVuZHBvaW50IGFmdGVyIHN1ZmZpY2llbnQgRFZOIHZlcmlmaWNhdGlvbi4KClZhbGlkYXRlcyB0aGUgcGFja2V0IGhlYWRlciBhbmQgY2hlY2tzIHRoYXQgZW5vdWdoIERWTnMgaGF2ZSB2ZXJpZmllZCB0aGUgbWVzc2FnZQooYWxsIHJlcXVpcmVkIERWTnMgKyBvcHRpb25hbCBEVk4gdGhyZXNob2xkKS4gT25jZSB2ZXJpZmllZCwgY2xlYW5zIHVwIERWTiBjb25maXJtYXRpb24Kc3RvcmFnZSBhbmQgY2FsbHMgdGhlIGVuZHBvaW50IHRvIG1hcmsgdGhlIG1lc3NhZ2UgYXMgdmVyaWZpZWQgYW5kIGV4ZWN1dGFibGUuAAAAABNjb21taXRfdmVyaWZpY2F0aW9uAAAAAAIAAAAAAAAADXBhY2tldF9oZWFkZXIAAAAAAAAOAAAAAAAAAAxwYXlsb2FkX2hhc2gAAAPuAAAAIAAAAAA=",
|
|
1264
|
+
"AAAAAAAAAJhTZXRzIGRlZmF1bHQgcmVjZWl2ZSBVTE4gY29uZmlndXJhdGlvbnMgZm9yIG11bHRpcGxlIHNvdXJjZSBlbmRwb2ludHMuCgpWYWxpZGF0ZXMgZWFjaCBjb25maWcgYW5kIHN0b3JlcyBpdCBhcyB0aGUgZGVmYXVsdCBmb3IgdGhlIHNwZWNpZmllZCBzb3VyY2UgRUlELgAAAB9zZXRfZGVmYXVsdF9yZWNlaXZlX3Vsbl9jb25maWdzAAAAAAEAAAAAAAAABnBhcmFtcwAAAAAD6gAAB9AAAAAYU2V0RGVmYXVsdFVsbkNvbmZpZ1BhcmFtAAAAAA==",
|
|
1265
|
+
"AAAAAAAAAFVSZXR1cm5zIHRoZSBudW1iZXIgb2YgYmxvY2sgY29uZmlybWF0aW9ucyBhIERWTiBoYXMgc3VibWl0dGVkIGZvciBhIHNwZWNpZmljIG1lc3NhZ2UuAAAAAAAADWNvbmZpcm1hdGlvbnMAAAAAAAADAAAAAAAAAANkdm4AAAAAEwAAAAAAAAALaGVhZGVyX2hhc2gAAAAD7gAAACAAAAAAAAAADHBheWxvYWRfaGFzaAAAA+4AAAAgAAAAAQAAA+gAAAAG",
|
|
1266
|
+
"AAAAAAAAAFJDaGVja3MgaWYgYSBtZXNzYWdlIGhhcyBiZWVuIHN1ZmZpY2llbnRseSB2ZXJpZmllZCBieSBEVk5zIGFuZCBpcyByZWFkeSB0byBjb21taXQuAAAAAAAKdmVyaWZpYWJsZQAAAAAAAgAAAAAAAAANcGFja2V0X2hlYWRlcgAAAAAAAA4AAAAAAAAADHBheWxvYWRfaGFzaAAAA+4AAAAgAAAAAQAAAAE=",
|
|
1267
|
+
"AAAAAAAAAERSZXR1cm5zIHRoZSBkZWZhdWx0IHJlY2VpdmUgVUxOIGNvbmZpZ3VyYXRpb24gZm9yIGEgc291cmNlIGVuZHBvaW50LgAAABpkZWZhdWx0X3JlY2VpdmVfdWxuX2NvbmZpZwAAAAAAAQAAAAAAAAAHc3JjX2VpZAAAAAAEAAAAAQAAA+gAAAfQAAAACVVsbkNvbmZpZwAAAA==",
|
|
1268
|
+
"AAAAAAAAAFNSZXR1cm5zIHRoZSBPQXBwLXNwZWNpZmljIHJlY2VpdmUgVUxOIGNvbmZpZ3VyYXRpb24gb3ZlcnJpZGUgZm9yIGEgc291cmNlIGVuZHBvaW50LgAAAAAXb2FwcF9yZWNlaXZlX3Vsbl9jb25maWcAAAAAAgAAAAAAAAAIcmVjZWl2ZXIAAAATAAAAAAAAAAdzcmNfZWlkAAAAAAQAAAABAAAD6AAAB9AAAAANT0FwcFVsbkNvbmZpZwAAAA==",
|
|
1269
|
+
"AAAAAAAAAFVSZXR1cm5zIHRoZSBlZmZlY3RpdmUgcmVjZWl2ZSBVTE4gY29uZmlndXJhdGlvbiBieSBtZXJnaW5nIE9BcHAgY29uZmlnIHdpdGggZGVmYXVsdHMuAAAAAAAAHGVmZmVjdGl2ZV9yZWNlaXZlX3Vsbl9jb25maWcAAAACAAAAAAAAAAhyZWNlaXZlcgAAABMAAAAAAAAAB3NyY19laWQAAAAABAAAAAEAAAfQAAAACVVsbkNvbmZpZwAAAA==",
|
|
1188
1270
|
"AAAAAAAAANxTZXRzIE9BcHAtc3BlY2lmaWMgY29uZmlndXJhdGlvbiBwYXJhbWV0ZXJzIGZvciB0aGUgbWVzc2FnZSBsaWJyYXJ5LgoKQ2FsbGVkIGJ5IHRoZSBlbmRwb2ludCBvbiBiZWhhbGYgb2YgdGhlIE9BcHAgdG8gY29uZmlndXJlIGV4ZWN1dG9yIGFuZCBVTE4gc2V0dGluZ3MuClN1cHBvcnRzIHRocmVlIGNvbmZpZyB0eXBlczogRVhFQ1VUT1IsIFNFTkRfVUxOLCBhbmQgUkVDRUlWRV9VTE4uAAAACnNldF9jb25maWcAAAAAAAIAAAAAAAAABG9hcHAAAAATAAAAAAAAAAZwYXJhbXMAAAAAA+oAAAfQAAAADlNldENvbmZpZ1BhcmFtAAAAAAAA",
|
|
1189
1271
|
"AAAAAAAAADZSZXR1cm5zIHRoZSBYRFItZW5jb2RlZCBlZmZlY3RpdmUgY29uZmlndXJhdGlvbiBieXRlcy4AAAAAAApnZXRfY29uZmlnAAAAAAADAAAAAAAAAANlaWQAAAAABAAAAAAAAAAEb2FwcAAAABMAAAAAAAAAC2NvbmZpZ190eXBlAAAAAAQAAAABAAAADg==",
|
|
1190
1272
|
"AAAAAAAAAGhSZXR1cm5zIHRydWUgaWYgdGhlIG1lc3NhZ2UgbGlicmFyeSBoYXMgZGVmYXVsdCBzZW5kIGFuZCByZWNlaXZlIFVMTiBjb25maWd1cmF0aW9ucyBmb3IgdGhlIGVuZHBvaW50IElELgAAABBpc19zdXBwb3J0ZWRfZWlkAAAAAQAAAAAAAAADZWlkAAAAAAQAAAABAAAAAQ==",
|
|
@@ -1195,21 +1277,32 @@ export class Client extends ContractClient {
|
|
|
1195
1277
|
"AAAAAAAAAAAAAAAFb3duZXIAAAAAAAAAAAAAAQAAA+gAAAAT",
|
|
1196
1278
|
"AAAAAAAAAAAAAAASdHJhbnNmZXJfb3duZXJzaGlwAAAAAAABAAAAAAAAAAluZXdfb3duZXIAAAAAAAATAAAAAA==",
|
|
1197
1279
|
"AAAAAAAAAAAAAAAScmVub3VuY2Vfb3duZXJzaGlwAAAAAAAAAAAAAA==",
|
|
1198
|
-
"
|
|
1199
|
-
"
|
|
1200
|
-
"
|
|
1201
|
-
"
|
|
1280
|
+
"AAAAAAAAAAAAAAAPc2V0X3R0bF9jb25maWdzAAAAAAIAAAAAAAAACGluc3RhbmNlAAAD6AAAB9AAAAAJVHRsQ29uZmlnAAAAAAAAAAAAAApwZXJzaXN0ZW50AAAAAAPoAAAH0AAAAAlUdGxDb25maWcAAAAAAAAA",
|
|
1281
|
+
"AAAAAAAAAAAAAAALdHRsX2NvbmZpZ3MAAAAAAAAAAAEAAAPtAAAAAgAAA+gAAAfQAAAACVR0bENvbmZpZwAAAAAAA+gAAAfQAAAACVR0bENvbmZpZwAAAA==",
|
|
1282
|
+
"AAAAAAAAAAAAAAASZnJlZXplX3R0bF9jb25maWdzAAAAAAAAAAAAAA==",
|
|
1283
|
+
"AAAAAAAAAAAAAAAVaXNfdHRsX2NvbmZpZ3NfZnJvemVuAAAAAAAAAAAAAAEAAAAB",
|
|
1284
|
+
"AAAAAAAAAH5FeHRlbmRzIHRoZSBpbnN0YW5jZSBUVEwuCgojIEFyZ3VtZW50cwoKKiBgdGhyZXNob2xkYCAtIFRoZSB0aHJlc2hvbGQgdG8gZXh0ZW5kIHRoZSBUVEwuCiogYGV4dGVuZF90b2AgLSBUaGUgVFRMIHRvIGV4dGVuZCB0by4AAAAAABNleHRlbmRfaW5zdGFuY2VfdHRsAAAAAAIAAAAAAAAACXRocmVzaG9sZAAAAAAAAAQAAAAAAAAACWV4dGVuZF90bwAAAAAAAAQAAAAA",
|
|
1202
1285
|
"AAAAAgAAAAAAAAAAAAAAClVsblN0b3JhZ2UAAAAAAAkAAAAAAAAAAAAAAAhFbmRwb2ludAAAAAAAAAAAAAAACFRyZWFzdXJ5AAAAAQAAAAAAAAAWRGVmYXVsdEV4ZWN1dG9yQ29uZmlncwAAAAAAAQAAAAQAAAABAAAAAAAAABVEZWZhdWx0U2VuZFVsbkNvbmZpZ3MAAAAAAAABAAAABAAAAAEAAAAAAAAAGERlZmF1bHRSZWNlaXZlVWxuQ29uZmlncwAAAAEAAAAEAAAAAQAAAAAAAAAST0FwcFNlbmRVbG5Db25maWdzAAAAAAACAAAAEwAAAAQAAAABAAAAAAAAABVPQXBwUmVjZWl2ZVVsbkNvbmZpZ3MAAAAAAAACAAAAEwAAAAQAAAABAAAAAAAAABNPQXBwRXhlY3V0b3JDb25maWdzAAAAAAIAAAATAAAABAAAAAEAAAAAAAAADUNvbmZpcm1hdGlvbnMAAAAAAAADAAAAEwAAA+4AAAAgAAAD7gAAACA=",
|
|
1203
|
-
"
|
|
1204
|
-
"
|
|
1205
|
-
"
|
|
1206
|
-
"
|
|
1207
|
-
"
|
|
1208
|
-
"
|
|
1209
|
-
"
|
|
1210
|
-
"
|
|
1211
|
-
"
|
|
1212
|
-
"
|
|
1286
|
+
"AAAABAAAAAAAAAAAAAAADUVuZHBvaW50RXJyb3IAAAAAAAAYAAAAAAAAABFBbHJlYWR5UmVnaXN0ZXJlZAAAAAAAAAEAAAAAAAAADUNvbXBvc2VFeGlzdHMAAAAAAAACAAAAAAAAAA9Db21wb3NlTm90Rm91bmQAAAAAAwAAAAAAAAAcRGVmYXVsdFJlY2VpdmVMaWJVbmF2YWlsYWJsZQAAAAQAAAAAAAAAGURlZmF1bHRTZW5kTGliVW5hdmFpbGFibGUAAAAAAAAFAAAAAAAAABVJbnN1ZmZpY2llbnROYXRpdmVGZWUAAAAAAAAGAAAAAAAAABJJbnN1ZmZpY2llbnRaUk9GZWUAAAAAAAcAAAAAAAAADUludmFsaWRFeHBpcnkAAAAAAAAIAAAAAAAAAAxJbnZhbGlkSW5kZXgAAAAJAAAAAAAAAAxJbnZhbGlkTm9uY2UAAAAKAAAAAAAAABJJbnZhbGlkUGF5bG9hZEhhc2gAAAAAAAsAAAAAAAAAFUludmFsaWRSZWNlaXZlTGlicmFyeQAAAAAAAAwAAAAAAAAAEU9ubHlOb25EZWZhdWx0TGliAAAAAAAADQAAAAAAAAAOT25seVJlY2VpdmVMaWIAAAAAAA4AAAAAAAAAEU9ubHlSZWdpc3RlcmVkTGliAAAAAAAADwAAAAAAAAALT25seVNlbmRMaWIAAAAAEAAAAAAAAAAUUGF0aE5vdEluaXRpYWxpemFibGUAAAARAAAAAAAAABFQYXRoTm90VmVyaWZpYWJsZQAAAAAAABIAAAAAAAAAE1BheWxvYWRIYXNoTm90Rm91bmQAAAAAEwAAAAAAAAAJU2FtZVZhbHVlAAAAAAAAFAAAAAAAAAAMVW5hdXRob3JpemVkAAAAFQAAAAAAAAAOVW5zdXBwb3J0ZWRFaWQAAAAAABYAAAAAAAAAClplcm9aUk9GZWUAAAAAABcAAAAAAAAADlpST1VuYXZhaWxhYmxlAAAAAAAY",
|
|
1287
|
+
"AAAABQAAAAAAAAAAAAAAClBhY2tldFNlbnQAAAAAAAEAAAAKUGFja2V0U2VudAAAAAAAAwAAAAAAAAAOZW5jb2RlZF9wYWNrZXQAAAAAAA4AAAAAAAAAAAAAAAdvcHRpb25zAAAAAA4AAAAAAAAAAAAAAAxzZW5kX2xpYnJhcnkAAAATAAAAAAAAAAI=",
|
|
1288
|
+
"AAAABQAAAAAAAAAAAAAADlBhY2tldFZlcmlmaWVkAAAAAAABAAAADlBhY2tldFZlcmlmaWVkAAAAAAADAAAAAAAAAAZvcmlnaW4AAAAAB9AAAAAGT3JpZ2luAAAAAAABAAAAAAAAAAhyZWNlaXZlcgAAABMAAAABAAAAAAAAAAxwYXlsb2FkX2hhc2gAAAPuAAAAIAAAAAAAAAAC",
|
|
1289
|
+
"AAAABQAAAAAAAAAAAAAAD1BhY2tldERlbGl2ZXJlZAAAAAABAAAAD1BhY2tldERlbGl2ZXJlZAAAAAACAAAAAAAAAAZvcmlnaW4AAAAAB9AAAAAGT3JpZ2luAAAAAAABAAAAAAAAAAhyZWNlaXZlcgAAABMAAAABAAAAAg==",
|
|
1290
|
+
"AAAABQAAAAAAAAAAAAAADkx6UmVjZWl2ZUFsZXJ0AAAAAAABAAAADkx6UmVjZWl2ZUFsZXJ0AAAAAAAJAAAAAAAAAAhyZWNlaXZlcgAAABMAAAABAAAAAAAAAAhleGVjdXRvcgAAABMAAAABAAAAAAAAAAZvcmlnaW4AAAAAB9AAAAAGT3JpZ2luAAAAAAABAAAAAAAAAARndWlkAAAD7gAAACAAAAABAAAAAAAAAANnYXMAAAAACwAAAAAAAAAAAAAABXZhbHVlAAAAAAAACwAAAAAAAAAAAAAAB21lc3NhZ2UAAAAADgAAAAAAAAAAAAAACmV4dHJhX2RhdGEAAAAAAA4AAAAAAAAAAAAAAAZyZWFzb24AAAAAAA4AAAAAAAAAAg==",
|
|
1291
|
+
"AAAABQAAAAAAAAAAAAAABlpST1NldAAAAAAAAQAAAAZaUk9TZXQAAAAAAAEAAAAAAAAAA3pybwAAAAATAAAAAAAAAAI=",
|
|
1292
|
+
"AAAABQAAAAAAAAAAAAAAC0RlbGVnYXRlU2V0AAAAAAEAAAALRGVsZWdhdGVTZXQAAAAAAgAAAAAAAAAEb2FwcAAAABMAAAABAAAAAAAAAAhkZWxlZ2F0ZQAAA+gAAAATAAAAAAAAAAI=",
|
|
1293
|
+
"AAAABQAAAAAAAAAAAAAAE0luYm91bmROb25jZVNraXBwZWQAAAAAAQAAABNJbmJvdW5kTm9uY2VTa2lwcGVkAAAAAAQAAAAAAAAAB3NyY19laWQAAAAABAAAAAEAAAAAAAAABnNlbmRlcgAAAAAD7gAAACAAAAABAAAAAAAAAAhyZWNlaXZlcgAAABMAAAABAAAAAAAAAAVub25jZQAAAAAAAAYAAAABAAAAAg==",
|
|
1294
|
+
"AAAABQAAAAAAAAAAAAAADlBhY2tldE5pbGlmaWVkAAAAAAABAAAADlBhY2tldE5pbGlmaWVkAAAAAAAFAAAAAAAAAAdzcmNfZWlkAAAAAAQAAAABAAAAAAAAAAZzZW5kZXIAAAAAA+4AAAAgAAAAAQAAAAAAAAAIcmVjZWl2ZXIAAAATAAAAAQAAAAAAAAAFbm9uY2UAAAAAAAAGAAAAAQAAAAAAAAAMcGF5bG9hZF9oYXNoAAAD6AAAA+4AAAAgAAAAAAAAAAI=",
|
|
1295
|
+
"AAAABQAAAAAAAAAAAAAAC1BhY2tldEJ1cm50AAAAAAEAAAALUGFja2V0QnVybnQAAAAABQAAAAAAAAAHc3JjX2VpZAAAAAAEAAAAAQAAAAAAAAAGc2VuZGVyAAAAAAPuAAAAIAAAAAEAAAAAAAAACHJlY2VpdmVyAAAAEwAAAAEAAAAAAAAABW5vbmNlAAAAAAAABgAAAAEAAAAAAAAADHBheWxvYWRfaGFzaAAAA+4AAAAgAAAAAAAAAAI=",
|
|
1296
|
+
"AAAABQAAAAAAAAAAAAAAEUxpYnJhcnlSZWdpc3RlcmVkAAAAAAAAAQAAABFMaWJyYXJ5UmVnaXN0ZXJlZAAAAAAAAAEAAAAAAAAAB25ld19saWIAAAAAEwAAAAAAAAAC",
|
|
1297
|
+
"AAAABQAAAAAAAAAAAAAAFURlZmF1bHRTZW5kTGlicmFyeVNldAAAAAAAAAEAAAAVRGVmYXVsdFNlbmRMaWJyYXJ5U2V0AAAAAAAAAgAAAAAAAAAHZHN0X2VpZAAAAAAEAAAAAQAAAAAAAAAHbmV3X2xpYgAAAAATAAAAAAAAAAI=",
|
|
1298
|
+
"AAAABQAAAAAAAAAAAAAAGERlZmF1bHRSZWNlaXZlTGlicmFyeVNldAAAAAEAAAAYRGVmYXVsdFJlY2VpdmVMaWJyYXJ5U2V0AAAAAgAAAAAAAAAHc3JjX2VpZAAAAAAEAAAAAQAAAAAAAAAHbmV3X2xpYgAAAAATAAAAAAAAAAI=",
|
|
1299
|
+
"AAAABQAAAAAAAAAAAAAAH0RlZmF1bHRSZWNlaXZlTGlicmFyeVRpbWVvdXRTZXQAAAAAAQAAAB9EZWZhdWx0UmVjZWl2ZUxpYnJhcnlUaW1lb3V0U2V0AAAAAAIAAAAAAAAAB3NyY19laWQAAAAABAAAAAEAAAAAAAAAB3RpbWVvdXQAAAAD6AAAB9AAAAAHVGltZW91dAAAAAAAAAAAAg==",
|
|
1300
|
+
"AAAABQAAAAAAAAAAAAAADlNlbmRMaWJyYXJ5U2V0AAAAAAABAAAADlNlbmRMaWJyYXJ5U2V0AAAAAAADAAAAAAAAAAZzZW5kZXIAAAAAABMAAAABAAAAAAAAAAdkc3RfZWlkAAAAAAQAAAABAAAAAAAAAAduZXdfbGliAAAAA+gAAAATAAAAAAAAAAI=",
|
|
1301
|
+
"AAAABQAAAAAAAAAAAAAAEVJlY2VpdmVMaWJyYXJ5U2V0AAAAAAAAAQAAABFSZWNlaXZlTGlicmFyeVNldAAAAAAAAAMAAAAAAAAACHJlY2VpdmVyAAAAEwAAAAEAAAAAAAAAB3NyY19laWQAAAAABAAAAAEAAAAAAAAAB25ld19saWIAAAAD6AAAABMAAAAAAAAAAg==",
|
|
1302
|
+
"AAAABQAAAAAAAAAAAAAAGFJlY2VpdmVMaWJyYXJ5VGltZW91dFNldAAAAAEAAAAYUmVjZWl2ZUxpYnJhcnlUaW1lb3V0U2V0AAAAAwAAAAAAAAAIcmVjZWl2ZXIAAAATAAAAAQAAAAAAAAADZWlkAAAAAAQAAAABAAAAAAAAAAd0aW1lb3V0AAAAA+gAAAfQAAAAB1RpbWVvdXQAAAAAAAAAAAI=",
|
|
1303
|
+
"AAAABQAAAAAAAAAAAAAAC0NvbXBvc2VTZW50AAAAAAEAAAALQ29tcG9zZVNlbnQAAAAABQAAAAAAAAAEZnJvbQAAABMAAAABAAAAAAAAAAJ0bwAAAAAAEwAAAAEAAAAAAAAABGd1aWQAAAPuAAAAIAAAAAEAAAAAAAAABWluZGV4AAAAAAAABAAAAAEAAAAAAAAAB21lc3NhZ2UAAAAADgAAAAAAAAAC",
|
|
1304
|
+
"AAAABQAAAAAAAAAAAAAAEENvbXBvc2VEZWxpdmVyZWQAAAABAAAAEENvbXBvc2VEZWxpdmVyZWQAAAAEAAAAAAAAAARmcm9tAAAAEwAAAAEAAAAAAAAAAnRvAAAAAAATAAAAAQAAAAAAAAAEZ3VpZAAAA+4AAAAgAAAAAQAAAAAAAAAFaW5kZXgAAAAAAAAEAAAAAQAAAAI=",
|
|
1305
|
+
"AAAABQAAAAAAAAAAAAAADkx6Q29tcG9zZUFsZXJ0AAAAAAABAAAADkx6Q29tcG9zZUFsZXJ0AAAAAAAKAAAAAAAAAARmcm9tAAAAEwAAAAEAAAAAAAAAAnRvAAAAAAATAAAAAQAAAAAAAAAIZXhlY3V0b3IAAAATAAAAAQAAAAAAAAAEZ3VpZAAAA+4AAAAgAAAAAQAAAAAAAAAFaW5kZXgAAAAAAAAEAAAAAQAAAAAAAAADZ2FzAAAAAAsAAAAAAAAAAAAAAAV2YWx1ZQAAAAAAAAsAAAAAAAAAAAAAAAdtZXNzYWdlAAAAAA4AAAAAAAAAAAAAAApleHRyYV9kYXRhAAAAAAAOAAAAAAAAAAAAAAAGcmVhc29uAAAAAAAOAAAAAAAAAAI=",
|
|
1213
1306
|
"AAAAAQAAAC1QYXJhbWV0ZXJzIGZvciBzZW5kaW5nIGEgY3Jvc3MtY2hhaW4gbWVzc2FnZS4AAAAAAAAAAAAAD01lc3NhZ2luZ1BhcmFtcwAAAAAFAAAAK0Rlc3RpbmF0aW9uIGVuZHBvaW50IElEIChjaGFpbiBpZGVudGlmaWVyKS4AAAAAB2RzdF9laWQAAAAABAAAABxUaGUgbWVzc2FnZSBwYXlsb2FkIHRvIHNlbmQuAAAAB21lc3NhZ2UAAAAADgAAACFFbmNvZGVkIGV4ZWN1dG9yIGFuZCBEVk4gb3B0aW9ucy4AAAAAAAAHb3B0aW9ucwAAAAAOAAAAOVdoZXRoZXIgdG8gcGF5IGZlZXMgaW4gWlJPIHRva2VuIGluc3RlYWQgb2YgbmF0aXZlIHRva2VuLgAAAAAAAApwYXlfaW5fenJvAAAAAAABAAAANVJlY2VpdmVyIGFkZHJlc3Mgb24gdGhlIGRlc3RpbmF0aW9uIGNoYWluICgzMiBieXRlcykuAAAAAAAACHJlY2VpdmVyAAAD7gAAACA=",
|
|
1214
1307
|
"AAAAAQAAAE1Tb3VyY2UgbWVzc2FnZSBpbmZvcm1hdGlvbiBpZGVudGlmeWluZyB3aGVyZSBhIGNyb3NzLWNoYWluIG1lc3NhZ2UgY2FtZSBmcm9tLgAAAAAAAAAAAAAGT3JpZ2luAAAAAAADAAAAF05vbmNlIGZvciB0aGlzIHBhdGh3YXkuAAAAAAVub25jZQAAAAAAAAYAAAAuU2VuZGVyIGFkZHJlc3Mgb24gdGhlIHNvdXJjZSBjaGFpbiAoMzIgYnl0ZXMpLgAAAAAABnNlbmRlcgAAAAAD7gAAACAAAAAmU291cmNlIGVuZHBvaW50IElEIChjaGFpbiBpZGVudGlmaWVyKS4AAAAAAAdzcmNfZWlkAAAAAAQ=",
|
|
1215
1308
|
"AAAAAQAAAChGZWUgc3RydWN0dXJlIGZvciBjcm9zcy1jaGFpbiBtZXNzYWdpbmcuAAAAAAAAAAxNZXNzYWdpbmdGZWUAAAACAAAAH0ZlZSBwYWlkIGluIG5hdGl2ZSB0b2tlbiAoWExNKS4AAAAACm5hdGl2ZV9mZWUAAAAAAAsAAAAoRmVlIHBhaWQgaW4gWlJPIHRva2VuIChMYXllclplcm8gdG9rZW4pLgAAAAd6cm9fZmVlAAAAAAs=",
|
|
@@ -1220,33 +1313,25 @@ export class Client extends ContractClient {
|
|
|
1220
1313
|
"AAAAAQAAADVQYXJhbWV0ZXJzIGZvciBzZXR0aW5nIG1lc3NhZ2UgbGlicmFyeSBjb25maWd1cmF0aW9uLgAAAAAAAAAAAAAOU2V0Q29uZmlnUGFyYW0AAAAAAAMAAAAfWERSLWVuY29kZWQgY29uZmlndXJhdGlvbiBkYXRhLgAAAAAGY29uZmlnAAAAAAAOAAAAMFRoZSB0eXBlIG9mIGNvbmZpZ3VyYXRpb24gKGUuZy4sIGV4ZWN1dG9yLCBVTE4pLgAAAAtjb25maWdfdHlwZQAAAAAEAAAAJ1RoZSBlbmRwb2ludCBJRCB0aGlzIGNvbmZpZyBhcHBsaWVzIHRvLgAAAAADZWlkAAAAAAQ=",
|
|
1221
1314
|
"AAAAAQAAADFSZXNvbHZlZCBsaWJyYXJ5IGluZm9ybWF0aW9uIHdpdGggZGVmYXVsdCBzdGF0dXMuAAAAAAAAAAAAAA9SZXNvbHZlZExpYnJhcnkAAAAAAgAAAERXaGV0aGVyIHRoaXMgaXMgdGhlIGRlZmF1bHQgbGlicmFyeSAodHJ1ZSkgb3IgT0FwcC1zcGVjaWZpYyAoZmFsc2UpLgAAAAppc19kZWZhdWx0AAAAAAABAAAAHVRoZSByZXNvbHZlZCBsaWJyYXJ5IGFkZHJlc3MuAAAAAAAAA2xpYgAAAAAT",
|
|
1222
1315
|
"AAAAAQAAAEhPdXRib3VuZCBwYWNrZXQgY29udGFpbmluZyBhbGwgaW5mb3JtYXRpb24gZm9yIGNyb3NzLWNoYWluIHRyYW5zbWlzc2lvbi4AAAAAAAAADk91dGJvdW5kUGFja2V0AAAAAAAHAAAAGERlc3RpbmF0aW9uIGVuZHBvaW50IElELgAAAAdkc3RfZWlkAAAAAAQAAAAsR2xvYmFsbHkgdW5pcXVlIGlkZW50aWZpZXIgZm9yIHRoaXMgbWVzc2FnZS4AAAAEZ3VpZAAAA+4AAAAgAAAAFFRoZSBtZXNzYWdlIHBheWxvYWQuAAAAB21lc3NhZ2UAAAAADgAAACBPdXRib3VuZCBub25jZSBmb3IgdGhpcyBwYXRod2F5LgAAAAVub25jZQAAAAAAAAYAAAAxUmVjZWl2ZXIgYWRkcmVzcyBvbiBkZXN0aW5hdGlvbiBjaGFpbiAoMzIgYnl0ZXMpLgAAAAAAAAhyZWNlaXZlcgAAA+4AAAAgAAAAH1NlbmRlciBhZGRyZXNzIG9uIHNvdXJjZSBjaGFpbi4AAAAABnNlbmRlcgAAAAAAEwAAABNTb3VyY2UgZW5kcG9pbnQgSUQuAAAAAAdzcmNfZWlkAAAAAAQ=",
|
|
1223
|
-
"
|
|
1316
|
+
"AAAAAQAAACtBIGZlZSByZWNpcGllbnQgd2l0aCB0aGUgYW1vdW50IHRvIGJlIHBhaWQuAAAAAAAAAAAMRmVlUmVjaXBpZW50AAAAAgAAABVBbW91bnQgb2YgZmVlIHRvIHBheS4AAAAAAAAGYW1vdW50AAAAAAALAAAAH1RoZSBhZGRyZXNzIHRvIHNlbmQgdGhlIGZlZSB0by4AAAAAAnRvAAAAAAAT",
|
|
1224
1317
|
"AAAAAQAAADxSZXN1bHQgb2Ygc2VuZCBvcGVyYXRpb24gY29udGFpbmluZyBmZWVzIGFuZCBlbmNvZGVkIHBhY2tldC4AAAAAAAAADUZlZXNBbmRQYWNrZXQAAAAAAAADAAAAKlRoZSBlbmNvZGVkIHBhY2tldCByZWFkeSBmb3IgdHJhbnNtaXNzaW9uLgAAAAAADmVuY29kZWRfcGFja2V0AAAAAAAOAAAAP0xpc3Qgb2YgbmF0aXZlIHRva2VuIGZlZSByZWNpcGllbnRzIChleGVjdXRvciwgRFZOcywgdHJlYXN1cnkpLgAAAAAVbmF0aXZlX2ZlZV9yZWNpcGllbnRzAAAAAAAD6gAAB9AAAAAMRmVlUmVjaXBpZW50AAAALExpc3Qgb2YgWlJPIHRva2VuIGZlZSByZWNpcGllbnRzICh0cmVhc3VyeSkuAAAAEnpyb19mZWVfcmVjaXBpZW50cwAAAAAD6gAAB9AAAAAMRmVlUmVjaXBpZW50",
|
|
1225
|
-
"
|
|
1226
|
-
"
|
|
1227
|
-
"
|
|
1228
|
-
"
|
|
1229
|
-
"
|
|
1230
|
-
"
|
|
1231
|
-
"
|
|
1318
|
+
"AAAABAAAAAAAAAAAAAAAElBhY2tldENvZGVjVjFFcnJvcgAAAAAAAgAAAAAAAAATSW52YWxpZFBhY2tldEhlYWRlcgAAAAPpAAAAAAAAABRJbnZhbGlkUGFja2V0VmVyc2lvbgAAA+o=",
|
|
1319
|
+
"AAAABAAAAAAAAAAAAAAAEldvcmtlck9wdGlvbnNFcnJvcgAAAAAACQAAAAAAAAASSW52YWxpZEJ5dGVzTGVuZ3RoAAAAAARNAAAAAAAAABlJbnZhbGlkTGVnYWN5T3B0aW9uc1R5cGUxAAAAAAAETgAAAAAAAAAZSW52YWxpZExlZ2FjeU9wdGlvbnNUeXBlMgAAAAAABE8AAAAAAAAAEUludmFsaWRPcHRpb25UeXBlAAAAAAAEUAAAAAAAAAAOSW52YWxpZE9wdGlvbnMAAAAABFEAAAAAAAAAD0ludmFsaWRXb3JrZXJJZAAAAARSAAAAAAAAAB1MZWdhY3lPcHRpb25zVHlwZTFHYXNPdmVyZmxvdwAAAAAABFMAAAAAAAAAIExlZ2FjeU9wdGlvbnNUeXBlMkFtb3VudE92ZXJmbG93AAAEVAAAAAAAAAAdTGVnYWN5T3B0aW9uc1R5cGUyR2FzT3ZlcmZsb3cAAAAAAARV",
|
|
1320
|
+
"AAAABAAAAAAAAAAAAAAAEUJ1ZmZlclJlYWRlckVycm9yAAAAAAAAAgAAAAAAAAANSW52YWxpZExlbmd0aAAAAAAAA+gAAAAAAAAAFUludmFsaWRBZGRyZXNzUGF5bG9hZAAAAAAAA+k=",
|
|
1321
|
+
"AAAABAAAAAAAAAAAAAAAEUJ1ZmZlcldyaXRlckVycm9yAAAAAAAAAQAAAAAAAAAVSW52YWxpZEFkZHJlc3NQYXlsb2FkAAAAAAAETA==",
|
|
1322
|
+
"AAAABAAAAAAAAAAAAAAACFR0bEVycm9yAAAAAwAAAAAAAAAQSW52YWxpZFR0bENvbmZpZwAABLAAAAAAAAAAD1R0bENvbmZpZ0Zyb3plbgAAAASxAAAAAAAAABZUdGxDb25maWdBbHJlYWR5RnJvemVuAAAAAASy",
|
|
1323
|
+
"AAAABAAAAAAAAAAAAAAADE93bmFibGVFcnJvcgAAAAIAAAAAAAAAD093bmVyQWxyZWFkeVNldAAAAAUUAAAAAAAAAAtPd25lck5vdFNldAAAAAUV",
|
|
1324
|
+
"AAAABAAAAAAAAAAAAAAADUJ5dGVzRXh0RXJyb3IAAAAAAAABAAAAAAAAAA5MZW5ndGhNaXNtYXRjaAAAAAAFeA==",
|
|
1232
1325
|
"AAAABQAAACxFdmVudCBlbWl0dGVkIHdoZW4gb3duZXJzaGlwIGlzIHRyYW5zZmVycmVkLgAAAAAAAAAUT3duZXJzaGlwVHJhbnNmZXJyZWQAAAABAAAAFE93bmVyc2hpcFRyYW5zZmVycmVkAAAAAgAAAAAAAAAJb2xkX293bmVyAAAAAAAAEwAAAAAAAAAAAAAACW5ld19vd25lcgAAAAAAABMAAAAAAAAAAg==",
|
|
1233
1326
|
"AAAABQAAACpFdmVudCBlbWl0dGVkIHdoZW4gb3duZXJzaGlwIGlzIHJlbm91bmNlZC4AAAAAAAAAAAAST3duZXJzaGlwUmVub3VuY2VkAAAAAAABAAAAEk93bmVyc2hpcFJlbm91bmNlZAAAAAAAAQAAAAAAAAAJb2xkX293bmVyAAAAAAAAEwAAAAAAAAAC",
|
|
1234
1327
|
"AAAAAgAAAAAAAAAAAAAAFURlZmF1bHRPd25hYmxlU3RvcmFnZQAAAAAAAAEAAAAAAAAAAAAAAAVPd25lcgAAAA==",
|
|
1235
1328
|
"AAAAAQAAAFdBIHBhaXIgb2YgVFRMIHZhbHVlczogdGhyZXNob2xkICh3aGVuIHRvIHRyaWdnZXIgZXh0ZW5zaW9uKSBhbmQgZXh0ZW5kX3RvICh0YXJnZXQgVFRMKS4AAAAAAAAAAAlUdGxDb25maWcAAAAAAAACAAAAKFRhcmdldCBUVEwgYWZ0ZXIgZXh0ZW5zaW9uIChpbiBsZWRnZXJzKS4AAAAJZXh0ZW5kX3RvAAAAAAAABAAAADNUVEwgdGhyZXNob2xkIHRoYXQgdHJpZ2dlcnMgZXh0ZW5zaW9uIChpbiBsZWRnZXJzKS4AAAAACXRocmVzaG9sZAAAAAAAAAQ=",
|
|
1236
|
-
"
|
|
1329
|
+
"AAAAAgAAAAAAAAAAAAAAEFR0bENvbmZpZ1N0b3JhZ2UAAAADAAAAAAAAAAAAAAAGRnJvemVuAAAAAAAAAAAAAAAAAAhJbnN0YW5jZQAAAAAAAAAAAAAAClBlcnNpc3RlbnQAAA==" ]),
|
|
1237
1330
|
options
|
|
1238
1331
|
)
|
|
1239
1332
|
}
|
|
1240
1333
|
public readonly fromJSON = {
|
|
1241
|
-
|
|
1242
|
-
commit_verification: this.txFromJSON<null>,
|
|
1243
|
-
set_default_receive_uln_configs: this.txFromJSON<null>,
|
|
1244
|
-
confirmations: this.txFromJSON<Option<u64>>,
|
|
1245
|
-
verifiable: this.txFromJSON<boolean>,
|
|
1246
|
-
default_receive_uln_config: this.txFromJSON<Option<UlnConfig>>,
|
|
1247
|
-
oapp_receive_uln_config: this.txFromJSON<Option<OAppUlnConfig>>,
|
|
1248
|
-
effective_receive_uln_config: this.txFromJSON<UlnConfig>,
|
|
1249
|
-
set_default_executor_configs: this.txFromJSON<null>,
|
|
1334
|
+
set_default_executor_configs: this.txFromJSON<null>,
|
|
1250
1335
|
set_default_send_uln_configs: this.txFromJSON<null>,
|
|
1251
1336
|
treasury: this.txFromJSON<string>,
|
|
1252
1337
|
default_executor_config: this.txFromJSON<Option<ExecutorConfig>>,
|
|
@@ -1257,6 +1342,14 @@ export class Client extends ContractClient {
|
|
|
1257
1342
|
effective_send_uln_config: this.txFromJSON<UlnConfig>,
|
|
1258
1343
|
quote: this.txFromJSON<MessagingFee>,
|
|
1259
1344
|
send: this.txFromJSON<FeesAndPacket>,
|
|
1345
|
+
verify: this.txFromJSON<null>,
|
|
1346
|
+
commit_verification: this.txFromJSON<null>,
|
|
1347
|
+
set_default_receive_uln_configs: this.txFromJSON<null>,
|
|
1348
|
+
confirmations: this.txFromJSON<Option<u64>>,
|
|
1349
|
+
verifiable: this.txFromJSON<boolean>,
|
|
1350
|
+
default_receive_uln_config: this.txFromJSON<Option<UlnConfig>>,
|
|
1351
|
+
oapp_receive_uln_config: this.txFromJSON<Option<OAppUlnConfig>>,
|
|
1352
|
+
effective_receive_uln_config: this.txFromJSON<UlnConfig>,
|
|
1260
1353
|
set_config: this.txFromJSON<null>,
|
|
1261
1354
|
get_config: this.txFromJSON<Buffer>,
|
|
1262
1355
|
is_supported_eid: this.txFromJSON<boolean>,
|
|
@@ -1266,9 +1359,10 @@ export class Client extends ContractClient {
|
|
|
1266
1359
|
owner: this.txFromJSON<Option<string>>,
|
|
1267
1360
|
transfer_ownership: this.txFromJSON<null>,
|
|
1268
1361
|
renounce_ownership: this.txFromJSON<null>,
|
|
1269
|
-
|
|
1270
|
-
|
|
1271
|
-
|
|
1272
|
-
|
|
1362
|
+
set_ttl_configs: this.txFromJSON<null>,
|
|
1363
|
+
ttl_configs: this.txFromJSON<readonly [Option<TtlConfig>, Option<TtlConfig>]>,
|
|
1364
|
+
freeze_ttl_configs: this.txFromJSON<null>,
|
|
1365
|
+
is_ttl_configs_frozen: this.txFromJSON<boolean>,
|
|
1366
|
+
extend_instance_ttl: this.txFromJSON<null>
|
|
1273
1367
|
}
|
|
1274
1368
|
}
|