@layerzerolabs/lz-v2-stellar-sdk 0.2.8

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.
@@ -0,0 +1,1274 @@
1
+ import { Buffer } from "buffer";
2
+ import { Address } from '@stellar/stellar-sdk';
3
+ import {
4
+ AssembledTransaction,
5
+ Client as ContractClient,
6
+ ClientOptions as ContractClientOptions,
7
+ MethodOptions,
8
+ Result,
9
+ Spec as ContractSpec,
10
+ } from '@stellar/stellar-sdk/contract';
11
+ import type {
12
+ u32,
13
+ i32,
14
+ u64,
15
+ i64,
16
+ u128,
17
+ i128,
18
+ u256,
19
+ i256,
20
+ Option,
21
+ Typepoint,
22
+ Duration,
23
+ } from '@stellar/stellar-sdk/contract';
24
+ export * from '@stellar/stellar-sdk'
25
+ export * as contract from '@stellar/stellar-sdk/contract'
26
+ export * as rpc from '@stellar/stellar-sdk/rpc'
27
+
28
+
29
+
30
+ /**
31
+ * Ultra Light Node configuration for message verification.
32
+ */
33
+ export interface UlnConfig {
34
+ /**
35
+ * Number of block confirmations required before message verification begins.
36
+ */
37
+ confirmations: u64;
38
+ /**
39
+ * Minimum number of optional DVNs required to verify.
40
+ */
41
+ optional_dvn_threshold: u32;
42
+ /**
43
+ * List of DVN addresses from which a threshold number must verify.
44
+ */
45
+ optional_dvns: Array<string>;
46
+ /**
47
+ * List of DVN addresses that must ALL verify the message (no threshold).
48
+ */
49
+ required_dvns: Array<string>;
50
+ }
51
+
52
+
53
+ /**
54
+ * OApp-specific ULN configuration with default override flags.
55
+ */
56
+ export interface OAppUlnConfig {
57
+ /**
58
+ * OApp-specific ULN configuration (used when defaults are not applied).
59
+ */
60
+ uln_config: UlnConfig;
61
+ /**
62
+ * Whether to use default confirmations.
63
+ */
64
+ use_default_confirmations: boolean;
65
+ /**
66
+ * Whether to use default optional DVNs.
67
+ */
68
+ use_default_optional_dvns: boolean;
69
+ /**
70
+ * Whether to use default required DVNs.
71
+ */
72
+ use_default_required_dvns: boolean;
73
+ }
74
+
75
+
76
+ /**
77
+ * Parameter for setting default ULN configuration for a destination/source endpoint.
78
+ */
79
+ export interface SetDefaultUlnConfigParam {
80
+ /**
81
+ * The ULN configuration to set as default.
82
+ */
83
+ config: UlnConfig;
84
+ /**
85
+ * The destination endpoint ID (for send) or source endpoint ID (for receive).
86
+ */
87
+ dst_eid: u32;
88
+ }
89
+
90
+
91
+ /**
92
+ * Executor configuration for message delivery.
93
+ */
94
+ export interface ExecutorConfig {
95
+ /**
96
+ * Address of the executor contract responsible for message execution.
97
+ */
98
+ executor: string;
99
+ /**
100
+ * Maximum size of messages that can be executed (in bytes).
101
+ */
102
+ max_message_size: u32;
103
+ }
104
+
105
+
106
+ /**
107
+ * OApp-specific executor configuration.
108
+ *
109
+ * If executor is `None`, the default executor is used.
110
+ */
111
+ export interface OAppExecutorConfig {
112
+ /**
113
+ * Address of the executor contract to be used for message execution. None means use default configuration.
114
+ */
115
+ executor: Option<string>;
116
+ /**
117
+ * Maximum size of messages that can be executed (in bytes). 0 means use default configuration.
118
+ */
119
+ max_message_size: u32;
120
+ }
121
+
122
+
123
+ /**
124
+ * Parameter for setting default executor configuration for a destination endpoint.
125
+ */
126
+ export interface SetDefaultExecutorConfigParam {
127
+ /**
128
+ * The executor configuration to set as default.
129
+ */
130
+ config: ExecutorConfig;
131
+ /**
132
+ * The destination endpoint ID.
133
+ */
134
+ dst_eid: u32;
135
+ }
136
+
137
+ 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
+
139
+
140
+
141
+
142
+
143
+
144
+
145
+
146
+
147
+
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
+
175
+
176
+ /**
177
+ * Parameters for sending a cross-chain message.
178
+ */
179
+ export interface MessagingParams {
180
+ /**
181
+ * Destination endpoint ID (chain identifier).
182
+ */
183
+ dst_eid: u32;
184
+ /**
185
+ * The message payload to send.
186
+ */
187
+ message: Buffer;
188
+ /**
189
+ * Encoded executor and DVN options.
190
+ */
191
+ options: Buffer;
192
+ /**
193
+ * Whether to pay fees in ZRO token instead of native token.
194
+ */
195
+ pay_in_zro: boolean;
196
+ /**
197
+ * Receiver address on the destination chain (32 bytes).
198
+ */
199
+ receiver: Buffer;
200
+ }
201
+
202
+
203
+ /**
204
+ * Source message information identifying where a cross-chain message came from.
205
+ */
206
+ export interface Origin {
207
+ /**
208
+ * Nonce for this pathway.
209
+ */
210
+ nonce: u64;
211
+ /**
212
+ * Sender address on the source chain (32 bytes).
213
+ */
214
+ sender: Buffer;
215
+ /**
216
+ * Source endpoint ID (chain identifier).
217
+ */
218
+ src_eid: u32;
219
+ }
220
+
221
+
222
+ /**
223
+ * Fee structure for cross-chain messaging.
224
+ */
225
+ export interface MessagingFee {
226
+ /**
227
+ * Fee paid in native token (XLM).
228
+ */
229
+ native_fee: i128;
230
+ /**
231
+ * Fee paid in ZRO token (LayerZero token).
232
+ */
233
+ zro_fee: i128;
234
+ }
235
+
236
+
237
+ /**
238
+ * Receipt returned after successfully sending a cross-chain message.
239
+ */
240
+ export interface MessagingReceipt {
241
+ /**
242
+ * The fees charged for sending the message.
243
+ */
244
+ fee: MessagingFee;
245
+ /**
246
+ * Globally unique identifier for the message.
247
+ */
248
+ guid: Buffer;
249
+ /**
250
+ * The outbound nonce for this pathway.
251
+ */
252
+ nonce: u64;
253
+ }
254
+
255
+ /**
256
+ * Type of message library indicating supported operations.
257
+ */
258
+ export type MessageLibType = {tag: "Send", values: void} | {tag: "Receive", values: void} | {tag: "SendAndReceive", values: void};
259
+
260
+
261
+ /**
262
+ * Version information for a message library.
263
+ *
264
+ * Note: `minor` and `endpoint_version` use `u32` instead of `u8` because Stellar does not
265
+ * support `u8` types in contract interface functions.
266
+ */
267
+ export interface MessageLibVersion {
268
+ /**
269
+ * Endpoint version (should not exceed u8::MAX = 255).
270
+ */
271
+ endpoint_version: u32;
272
+ /**
273
+ * Major version number.
274
+ */
275
+ major: u64;
276
+ /**
277
+ * Minor version number (should not exceed u8::MAX = 255).
278
+ */
279
+ minor: u32;
280
+ }
281
+
282
+
283
+ /**
284
+ * Timeout configuration for receive library transitions.
285
+ */
286
+ export interface Timeout {
287
+ /**
288
+ * Unix timestamp when the timeout expires.
289
+ */
290
+ expiry: u64;
291
+ /**
292
+ * The new library address to transition to.
293
+ */
294
+ lib: string;
295
+ }
296
+
297
+
298
+ /**
299
+ * Parameters for setting message library configuration.
300
+ */
301
+ export interface SetConfigParam {
302
+ /**
303
+ * XDR-encoded configuration data.
304
+ */
305
+ config: Buffer;
306
+ /**
307
+ * The type of configuration (e.g., executor, ULN).
308
+ */
309
+ config_type: u32;
310
+ /**
311
+ * The endpoint ID this config applies to.
312
+ */
313
+ eid: u32;
314
+ }
315
+
316
+
317
+ /**
318
+ * Resolved library information with default status.
319
+ */
320
+ export interface ResolvedLibrary {
321
+ /**
322
+ * Whether this is the default library (true) or OApp-specific (false).
323
+ */
324
+ is_default: boolean;
325
+ /**
326
+ * The resolved library address.
327
+ */
328
+ lib: string;
329
+ }
330
+
331
+
332
+ /**
333
+ * Outbound packet containing all information for cross-chain transmission.
334
+ */
335
+ export interface OutboundPacket {
336
+ /**
337
+ * Destination endpoint ID.
338
+ */
339
+ dst_eid: u32;
340
+ /**
341
+ * Globally unique identifier for this message.
342
+ */
343
+ guid: Buffer;
344
+ /**
345
+ * The message payload.
346
+ */
347
+ message: Buffer;
348
+ /**
349
+ * Outbound nonce for this pathway.
350
+ */
351
+ nonce: u64;
352
+ /**
353
+ * Receiver address on destination chain (32 bytes).
354
+ */
355
+ receiver: Buffer;
356
+ /**
357
+ * Sender address on source chain.
358
+ */
359
+ sender: string;
360
+ /**
361
+ * Source endpoint ID.
362
+ */
363
+ src_eid: u32;
364
+ }
365
+
366
+
367
+ /**
368
+ * A fee recipient with the amount to be paid.
369
+ */
370
+ export interface FeeRecipient {
371
+ /**
372
+ * Address to receive the fee.
373
+ */
374
+ address: string;
375
+ /**
376
+ * Amount of fee to pay.
377
+ */
378
+ amount: i128;
379
+ }
380
+
381
+
382
+ /**
383
+ * Result of send operation containing fees and encoded packet.
384
+ */
385
+ export interface FeesAndPacket {
386
+ /**
387
+ * The encoded packet ready for transmission.
388
+ */
389
+ encoded_packet: Buffer;
390
+ /**
391
+ * List of native token fee recipients (executor, DVNs, treasury).
392
+ */
393
+ native_fee_recipients: Array<FeeRecipient>;
394
+ /**
395
+ * List of ZRO token fee recipients (treasury).
396
+ */
397
+ zro_fee_recipients: Array<FeeRecipient>;
398
+ }
399
+
400
+ export const PacketCodecV1Error = {
401
+ 11001: {message:"InvalidPacketVersion"},
402
+ 11002: {message:"InvalidPacketHeader"}
403
+ }
404
+
405
+ export const WorkerOptionsError = {
406
+ 11101: {message:"InvalidOptions"},
407
+ 11102: {message:"InvalidWorkerId"},
408
+ 11103: {message:"InvalidLegacyOptionsType1"},
409
+ 11104: {message:"LegacyOptionsType1GasOverflow"},
410
+ 11105: {message:"InvalidLegacyOptionsType2"},
411
+ 11106: {message:"LegacyOptionsType2GasOverflow"},
412
+ 11107: {message:"LegacyOptionsType2AmountOverflow"},
413
+ 11108: {message:"InvalidOptionType"},
414
+ 11109: {message:"InvalidBytesLength"}
415
+ }
416
+
417
+ export const BufferReaderError = {
418
+ 10000: {message:"InvalidLength"},
419
+ 10001: {message:"InvalidAddressPayload"}
420
+ }
421
+
422
+ export const BufferWriterError = {
423
+ 10100: {message:"InvalidAddressPayload"}
424
+ }
425
+
426
+ export const TtlError = {
427
+ 10200: {message:"InvalidTtlConfig"},
428
+ 10201: {message:"TtlConfigFrozen"},
429
+ 10202: {message:"TtlConfigAlreadyFrozen"}
430
+ }
431
+
432
+ export const OwnableError = {
433
+ 10300: {message:"OwnerAlreadySet"},
434
+ 10301: {message:"OwnerNotSet"}
435
+ }
436
+
437
+ export const BytesExtError = {
438
+ 10400: {message:"LengthMismatch"}
439
+ }
440
+
441
+
442
+
443
+ export type DefaultOwnableStorage = {tag: "Owner", values: void};
444
+
445
+
446
+ /**
447
+ * A pair of TTL values: threshold (when to trigger extension) and extend_to (target TTL).
448
+ */
449
+ export interface TtlConfig {
450
+ /**
451
+ * Target TTL after extension (in ledgers).
452
+ */
453
+ extend_to: u32;
454
+ /**
455
+ * TTL threshold that triggers extension (in ledgers).
456
+ */
457
+ threshold: u32;
458
+ }
459
+
460
+ export type TtlConfigData = {tag: "Frozen", values: void} | {tag: "Instance", values: void} | {tag: "Persistent", values: void} | {tag: "Temporary", values: void};
461
+
462
+ export interface Client {
463
+ /**
464
+ * 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.
465
+ * Called by a DVN to verify a message with a specific number of block confirmations.
466
+ *
467
+ * Stores the DVN's verification attestation which will be checked during commit_verification.
468
+ */
469
+ verify: ({dvn, packet_header, payload_hash, confirmations}: {dvn: string, packet_header: Buffer, payload_hash: Buffer, confirmations: u64}, txnOptions?: {
470
+ /**
471
+ * The fee to pay for the transaction. Default: BASE_FEE
472
+ */
473
+ fee?: number;
474
+
475
+ /**
476
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
477
+ */
478
+ timeoutInSeconds?: number;
479
+
480
+ /**
481
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
482
+ */
483
+ simulate?: boolean;
484
+ }) => Promise<AssembledTransaction<null>>
485
+
486
+ /**
487
+ * 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.
488
+ * Permissonless to commit a verified message to the endpoint after sufficient DVN verification.
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.
493
+ */
494
+ commit_verification: ({packet_header, payload_hash}: {packet_header: Buffer, payload_hash: Buffer}, txnOptions?: {
495
+ /**
496
+ * The fee to pay for the transaction. Default: BASE_FEE
497
+ */
498
+ fee?: number;
499
+
500
+ /**
501
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
502
+ */
503
+ timeoutInSeconds?: number;
504
+
505
+ /**
506
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
507
+ */
508
+ simulate?: boolean;
509
+ }) => Promise<AssembledTransaction<null>>
510
+
511
+ /**
512
+ * 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.
513
+ * Sets default receive ULN configurations for multiple source endpoints.
514
+ *
515
+ * Validates each config and stores it as the default for the specified source EID.
516
+ */
517
+ set_default_receive_uln_configs: ({params}: {params: Array<SetDefaultUlnConfigParam>}, txnOptions?: {
518
+ /**
519
+ * The fee to pay for the transaction. Default: BASE_FEE
520
+ */
521
+ fee?: number;
522
+
523
+ /**
524
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
525
+ */
526
+ timeoutInSeconds?: number;
527
+
528
+ /**
529
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
530
+ */
531
+ simulate?: boolean;
532
+ }) => Promise<AssembledTransaction<null>>
533
+
534
+ /**
535
+ * 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.
536
+ * Returns the number of block confirmations a DVN has submitted for a specific message.
537
+ */
538
+ confirmations: ({dvn, header_hash, payload_hash}: {dvn: string, header_hash: Buffer, payload_hash: Buffer}, txnOptions?: {
539
+ /**
540
+ * The fee to pay for the transaction. Default: BASE_FEE
541
+ */
542
+ fee?: number;
543
+
544
+ /**
545
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
546
+ */
547
+ timeoutInSeconds?: number;
548
+
549
+ /**
550
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
551
+ */
552
+ simulate?: boolean;
553
+ }) => Promise<AssembledTransaction<Option<u64>>>
554
+
555
+ /**
556
+ * 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.
557
+ * Checks if a message has been sufficiently verified by DVNs and is ready to commit.
558
+ */
559
+ verifiable: ({packet_header, payload_hash}: {packet_header: Buffer, payload_hash: Buffer}, txnOptions?: {
560
+ /**
561
+ * The fee to pay for the transaction. Default: BASE_FEE
562
+ */
563
+ fee?: number;
564
+
565
+ /**
566
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
567
+ */
568
+ timeoutInSeconds?: number;
569
+
570
+ /**
571
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
572
+ */
573
+ simulate?: boolean;
574
+ }) => Promise<AssembledTransaction<boolean>>
575
+
576
+ /**
577
+ * 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.
578
+ * Returns the default receive ULN configuration for a source endpoint.
579
+ */
580
+ default_receive_uln_config: ({src_eid}: {src_eid: u32}, txnOptions?: {
581
+ /**
582
+ * The fee to pay for the transaction. Default: BASE_FEE
583
+ */
584
+ fee?: number;
585
+
586
+ /**
587
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
588
+ */
589
+ timeoutInSeconds?: number;
590
+
591
+ /**
592
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
593
+ */
594
+ simulate?: boolean;
595
+ }) => Promise<AssembledTransaction<Option<UlnConfig>>>
596
+
597
+ /**
598
+ * 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.
599
+ * Returns the OApp-specific receive ULN configuration override for a source endpoint.
600
+ */
601
+ oapp_receive_uln_config: ({receiver, src_eid}: {receiver: string, src_eid: u32}, txnOptions?: {
602
+ /**
603
+ * The fee to pay for the transaction. Default: BASE_FEE
604
+ */
605
+ fee?: number;
606
+
607
+ /**
608
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
609
+ */
610
+ timeoutInSeconds?: number;
611
+
612
+ /**
613
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
614
+ */
615
+ simulate?: boolean;
616
+ }) => Promise<AssembledTransaction<Option<OAppUlnConfig>>>
617
+
618
+ /**
619
+ * 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.
620
+ * Returns the effective receive ULN configuration by merging OApp config with defaults.
621
+ */
622
+ effective_receive_uln_config: ({receiver, src_eid}: {receiver: string, src_eid: u32}, txnOptions?: {
623
+ /**
624
+ * The fee to pay for the transaction. Default: BASE_FEE
625
+ */
626
+ fee?: number;
627
+
628
+ /**
629
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
630
+ */
631
+ timeoutInSeconds?: number;
632
+
633
+ /**
634
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
635
+ */
636
+ simulate?: boolean;
637
+ }) => Promise<AssembledTransaction<UlnConfig>>
638
+
639
+ /**
640
+ * 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.
641
+ * Sets default executor configurations for multiple destination endpoints.
642
+ */
643
+ set_default_executor_configs: ({params}: {params: Array<SetDefaultExecutorConfigParam>}, txnOptions?: {
644
+ /**
645
+ * The fee to pay for the transaction. Default: BASE_FEE
646
+ */
647
+ fee?: number;
648
+
649
+ /**
650
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
651
+ */
652
+ timeoutInSeconds?: number;
653
+
654
+ /**
655
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
656
+ */
657
+ simulate?: boolean;
658
+ }) => Promise<AssembledTransaction<null>>
659
+
660
+ /**
661
+ * 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.
662
+ * Sets default send ULN configurations for multiple destination endpoints.
663
+ */
664
+ set_default_send_uln_configs: ({params}: {params: Array<SetDefaultUlnConfigParam>}, txnOptions?: {
665
+ /**
666
+ * The fee to pay for the transaction. Default: BASE_FEE
667
+ */
668
+ fee?: number;
669
+
670
+ /**
671
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
672
+ */
673
+ timeoutInSeconds?: number;
674
+
675
+ /**
676
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
677
+ */
678
+ simulate?: boolean;
679
+ }) => Promise<AssembledTransaction<null>>
680
+
681
+ /**
682
+ * 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.
683
+ * Returns the treasury address for fee collection.
684
+ */
685
+ treasury: (txnOptions?: {
686
+ /**
687
+ * The fee to pay for the transaction. Default: BASE_FEE
688
+ */
689
+ fee?: number;
690
+
691
+ /**
692
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
693
+ */
694
+ timeoutInSeconds?: number;
695
+
696
+ /**
697
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
698
+ */
699
+ simulate?: boolean;
700
+ }) => Promise<AssembledTransaction<string>>
701
+
702
+ /**
703
+ * 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.
704
+ * Returns the default executor configuration for a destination endpoint.
705
+ */
706
+ default_executor_config: ({dst_eid}: {dst_eid: u32}, txnOptions?: {
707
+ /**
708
+ * The fee to pay for the transaction. Default: BASE_FEE
709
+ */
710
+ fee?: number;
711
+
712
+ /**
713
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
714
+ */
715
+ timeoutInSeconds?: number;
716
+
717
+ /**
718
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
719
+ */
720
+ simulate?: boolean;
721
+ }) => Promise<AssembledTransaction<Option<ExecutorConfig>>>
722
+
723
+ /**
724
+ * 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.
725
+ * Returns the OApp-specific executor configuration for a destination endpoint.
726
+ */
727
+ oapp_executor_config: ({sender, dst_eid}: {sender: string, dst_eid: u32}, txnOptions?: {
728
+ /**
729
+ * The fee to pay for the transaction. Default: BASE_FEE
730
+ */
731
+ fee?: number;
732
+
733
+ /**
734
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
735
+ */
736
+ timeoutInSeconds?: number;
737
+
738
+ /**
739
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
740
+ */
741
+ simulate?: boolean;
742
+ }) => Promise<AssembledTransaction<Option<OAppExecutorConfig>>>
743
+
744
+ /**
745
+ * 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.
746
+ * Returns the effective executor configuration by merging OApp config with default.
747
+ */
748
+ effective_executor_config: ({sender, dst_eid}: {sender: string, dst_eid: u32}, txnOptions?: {
749
+ /**
750
+ * The fee to pay for the transaction. Default: BASE_FEE
751
+ */
752
+ fee?: number;
753
+
754
+ /**
755
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
756
+ */
757
+ timeoutInSeconds?: number;
758
+
759
+ /**
760
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
761
+ */
762
+ simulate?: boolean;
763
+ }) => Promise<AssembledTransaction<ExecutorConfig>>
764
+
765
+ /**
766
+ * 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.
767
+ * Returns the default send ULN configuration for a destination endpoint.
768
+ */
769
+ default_send_uln_config: ({dst_eid}: {dst_eid: u32}, txnOptions?: {
770
+ /**
771
+ * The fee to pay for the transaction. Default: BASE_FEE
772
+ */
773
+ fee?: number;
774
+
775
+ /**
776
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
777
+ */
778
+ timeoutInSeconds?: number;
779
+
780
+ /**
781
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
782
+ */
783
+ simulate?: boolean;
784
+ }) => Promise<AssembledTransaction<Option<UlnConfig>>>
785
+
786
+ /**
787
+ * 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.
788
+ * Returns the OApp-specific send ULN configuration for a destination endpoint.
789
+ */
790
+ oapp_send_uln_config: ({sender, dst_eid}: {sender: string, dst_eid: u32}, txnOptions?: {
791
+ /**
792
+ * The fee to pay for the transaction. Default: BASE_FEE
793
+ */
794
+ fee?: number;
795
+
796
+ /**
797
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
798
+ */
799
+ timeoutInSeconds?: number;
800
+
801
+ /**
802
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
803
+ */
804
+ simulate?: boolean;
805
+ }) => Promise<AssembledTransaction<Option<OAppUlnConfig>>>
806
+
807
+ /**
808
+ * 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.
809
+ * Returns the effective send ULN configuration by merging OApp config with default.
810
+ */
811
+ effective_send_uln_config: ({sender, dst_eid}: {sender: string, dst_eid: u32}, txnOptions?: {
812
+ /**
813
+ * The fee to pay for the transaction. Default: BASE_FEE
814
+ */
815
+ fee?: number;
816
+
817
+ /**
818
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
819
+ */
820
+ timeoutInSeconds?: number;
821
+
822
+ /**
823
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
824
+ */
825
+ simulate?: boolean;
826
+ }) => Promise<AssembledTransaction<UlnConfig>>
827
+
828
+ /**
829
+ * 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.
830
+ * Quotes the total fee for sending a cross-chain message.
831
+ *
832
+ * Calculates fees from: executor (message execution), DVNs (verification), and treasury (protocol fee).
833
+ */
834
+ quote: ({packet, options, pay_in_zro}: {packet: OutboundPacket, options: Buffer, pay_in_zro: boolean}, txnOptions?: {
835
+ /**
836
+ * The fee to pay for the transaction. Default: BASE_FEE
837
+ */
838
+ fee?: number;
839
+
840
+ /**
841
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
842
+ */
843
+ timeoutInSeconds?: number;
844
+
845
+ /**
846
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
847
+ */
848
+ simulate?: boolean;
849
+ }) => Promise<AssembledTransaction<MessagingFee>>
850
+
851
+ /**
852
+ * 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.
853
+ * Sends a cross-chain message and returns fee recipients for payment.
854
+ *
855
+ * Assigns executor and DVNs, calculates fees, and encodes the packet for transmission.
856
+ */
857
+ send: ({packet, options, pay_in_zro}: {packet: OutboundPacket, options: Buffer, pay_in_zro: boolean}, txnOptions?: {
858
+ /**
859
+ * The fee to pay for the transaction. Default: BASE_FEE
860
+ */
861
+ fee?: number;
862
+
863
+ /**
864
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
865
+ */
866
+ timeoutInSeconds?: number;
867
+
868
+ /**
869
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
870
+ */
871
+ simulate?: boolean;
872
+ }) => Promise<AssembledTransaction<FeesAndPacket>>
873
+
874
+ /**
875
+ * 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.
876
+ * Sets OApp-specific configuration parameters for the message library.
877
+ *
878
+ * Called by the endpoint on behalf of the OApp to configure executor and ULN settings.
879
+ * Supports three config types: EXECUTOR, SEND_ULN, and RECEIVE_ULN.
880
+ */
881
+ set_config: ({oapp, params}: {oapp: string, params: Array<SetConfigParam>}, txnOptions?: {
882
+ /**
883
+ * The fee to pay for the transaction. Default: BASE_FEE
884
+ */
885
+ fee?: number;
886
+
887
+ /**
888
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
889
+ */
890
+ timeoutInSeconds?: number;
891
+
892
+ /**
893
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
894
+ */
895
+ simulate?: boolean;
896
+ }) => Promise<AssembledTransaction<null>>
897
+
898
+ /**
899
+ * Construct and simulate a get_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.
900
+ * Returns the XDR-encoded effective configuration bytes.
901
+ */
902
+ get_config: ({eid, oapp, config_type}: {eid: u32, oapp: string, config_type: u32}, txnOptions?: {
903
+ /**
904
+ * The fee to pay for the transaction. Default: BASE_FEE
905
+ */
906
+ fee?: number;
907
+
908
+ /**
909
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
910
+ */
911
+ timeoutInSeconds?: number;
912
+
913
+ /**
914
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
915
+ */
916
+ simulate?: boolean;
917
+ }) => Promise<AssembledTransaction<Buffer>>
918
+
919
+ /**
920
+ * Construct and simulate a is_supported_eid 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.
921
+ * Returns true if the message library has default send and receive ULN configurations for the endpoint ID.
922
+ */
923
+ is_supported_eid: ({eid}: {eid: u32}, txnOptions?: {
924
+ /**
925
+ * The fee to pay for the transaction. Default: BASE_FEE
926
+ */
927
+ fee?: number;
928
+
929
+ /**
930
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
931
+ */
932
+ timeoutInSeconds?: number;
933
+
934
+ /**
935
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
936
+ */
937
+ simulate?: boolean;
938
+ }) => Promise<AssembledTransaction<boolean>>
939
+
940
+ /**
941
+ * Construct and simulate a version 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.
942
+ * Returns the version of the message library.
943
+ */
944
+ version: (txnOptions?: {
945
+ /**
946
+ * The fee to pay for the transaction. Default: BASE_FEE
947
+ */
948
+ fee?: number;
949
+
950
+ /**
951
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
952
+ */
953
+ timeoutInSeconds?: number;
954
+
955
+ /**
956
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
957
+ */
958
+ simulate?: boolean;
959
+ }) => Promise<AssembledTransaction<MessageLibVersion>>
960
+
961
+ /**
962
+ * Construct and simulate a message_lib_type 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.
963
+ * Returns the type of the message library.
964
+ */
965
+ message_lib_type: (txnOptions?: {
966
+ /**
967
+ * The fee to pay for the transaction. Default: BASE_FEE
968
+ */
969
+ fee?: number;
970
+
971
+ /**
972
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
973
+ */
974
+ timeoutInSeconds?: number;
975
+
976
+ /**
977
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
978
+ */
979
+ simulate?: boolean;
980
+ }) => Promise<AssembledTransaction<MessageLibType>>
981
+
982
+ /**
983
+ * Construct and simulate a endpoint 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.
984
+ * Returns the LayerZero endpoint contract address.
985
+ */
986
+ endpoint: (txnOptions?: {
987
+ /**
988
+ * The fee to pay for the transaction. Default: BASE_FEE
989
+ */
990
+ fee?: number;
991
+
992
+ /**
993
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
994
+ */
995
+ timeoutInSeconds?: number;
996
+
997
+ /**
998
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
999
+ */
1000
+ simulate?: boolean;
1001
+ }) => Promise<AssembledTransaction<string>>
1002
+
1003
+ /**
1004
+ * Construct and simulate a owner 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.
1005
+ */
1006
+ owner: (txnOptions?: {
1007
+ /**
1008
+ * The fee to pay for the transaction. Default: BASE_FEE
1009
+ */
1010
+ fee?: number;
1011
+
1012
+ /**
1013
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
1014
+ */
1015
+ timeoutInSeconds?: number;
1016
+
1017
+ /**
1018
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
1019
+ */
1020
+ simulate?: boolean;
1021
+ }) => Promise<AssembledTransaction<Option<string>>>
1022
+
1023
+ /**
1024
+ * Construct and simulate a transfer_ownership 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.
1025
+ */
1026
+ transfer_ownership: ({new_owner}: {new_owner: string}, txnOptions?: {
1027
+ /**
1028
+ * The fee to pay for the transaction. Default: BASE_FEE
1029
+ */
1030
+ fee?: number;
1031
+
1032
+ /**
1033
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
1034
+ */
1035
+ timeoutInSeconds?: number;
1036
+
1037
+ /**
1038
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
1039
+ */
1040
+ simulate?: boolean;
1041
+ }) => Promise<AssembledTransaction<null>>
1042
+
1043
+ /**
1044
+ * Construct and simulate a renounce_ownership 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.
1045
+ */
1046
+ renounce_ownership: (txnOptions?: {
1047
+ /**
1048
+ * The fee to pay for the transaction. Default: BASE_FEE
1049
+ */
1050
+ fee?: number;
1051
+
1052
+ /**
1053
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
1054
+ */
1055
+ timeoutInSeconds?: number;
1056
+
1057
+ /**
1058
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
1059
+ */
1060
+ simulate?: boolean;
1061
+ }) => Promise<AssembledTransaction<null>>
1062
+
1063
+ /**
1064
+ * Construct and simulate a set_ttl_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.
1065
+ */
1066
+ set_ttl_config: ({instance, persistent, temporary}: {instance: Option<TtlConfig>, persistent: Option<TtlConfig>, temporary: Option<TtlConfig>}, txnOptions?: {
1067
+ /**
1068
+ * The fee to pay for the transaction. Default: BASE_FEE
1069
+ */
1070
+ fee?: number;
1071
+
1072
+ /**
1073
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
1074
+ */
1075
+ timeoutInSeconds?: number;
1076
+
1077
+ /**
1078
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
1079
+ */
1080
+ simulate?: boolean;
1081
+ }) => Promise<AssembledTransaction<null>>
1082
+
1083
+ /**
1084
+ * Construct and simulate a ttl_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.
1085
+ */
1086
+ ttl_config: (txnOptions?: {
1087
+ /**
1088
+ * The fee to pay for the transaction. Default: BASE_FEE
1089
+ */
1090
+ fee?: number;
1091
+
1092
+ /**
1093
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
1094
+ */
1095
+ timeoutInSeconds?: number;
1096
+
1097
+ /**
1098
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
1099
+ */
1100
+ simulate?: boolean;
1101
+ }) => Promise<AssembledTransaction<readonly [Option<TtlConfig>, Option<TtlConfig>, Option<TtlConfig>]>>
1102
+
1103
+ /**
1104
+ * Construct and simulate a freeze_ttl_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.
1105
+ */
1106
+ freeze_ttl_config: (txnOptions?: {
1107
+ /**
1108
+ * The fee to pay for the transaction. Default: BASE_FEE
1109
+ */
1110
+ fee?: number;
1111
+
1112
+ /**
1113
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
1114
+ */
1115
+ timeoutInSeconds?: number;
1116
+
1117
+ /**
1118
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
1119
+ */
1120
+ simulate?: boolean;
1121
+ }) => Promise<AssembledTransaction<null>>
1122
+
1123
+ /**
1124
+ * Construct and simulate a is_ttl_config_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
+ */
1126
+ is_ttl_config_frozen: (txnOptions?: {
1127
+ /**
1128
+ * The fee to pay for the transaction. Default: BASE_FEE
1129
+ */
1130
+ fee?: number;
1131
+
1132
+ /**
1133
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
1134
+ */
1135
+ timeoutInSeconds?: number;
1136
+
1137
+ /**
1138
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
1139
+ */
1140
+ simulate?: boolean;
1141
+ }) => Promise<AssembledTransaction<boolean>>
1142
+
1143
+ }
1144
+ export class Client extends ContractClient {
1145
+ static async deploy<T = Client>(
1146
+ /** Constructor/Initialization Args for the contract's `__constructor` method */
1147
+ {owner, endpoint, treasury}: {owner: string, endpoint: string, treasury: string},
1148
+ /** Options for initializing a Client as well as for calling a method, with extras specific to deploying. */
1149
+ options: MethodOptions &
1150
+ Omit<ContractClientOptions, "contractId"> & {
1151
+ /** The hash of the Wasm blob, which must already be installed on-chain. */
1152
+ wasmHash: Buffer | string;
1153
+ /** Salt used to generate the contract's ID. Passed through to {@link Operation.createCustomContract}. Default: random. */
1154
+ salt?: Buffer | Uint8Array;
1155
+ /** The format used to decode `wasmHash`, if it's provided as a string. */
1156
+ format?: "hex" | "base64";
1157
+ }
1158
+ ): Promise<AssembledTransaction<T>> {
1159
+ return ContractClient.deploy({owner, endpoint, treasury}, options)
1160
+ }
1161
+ constructor(public readonly options: ContractClientOptions) {
1162
+ super(
1163
+ new ContractSpec([ "AAAAAQAAADhVbHRyYSBMaWdodCBOb2RlIGNvbmZpZ3VyYXRpb24gZm9yIG1lc3NhZ2UgdmVyaWZpY2F0aW9uLgAAAAAAAAAJVWxuQ29uZmlnAAAAAAAABAAAAEpOdW1iZXIgb2YgYmxvY2sgY29uZmlybWF0aW9ucyByZXF1aXJlZCBiZWZvcmUgbWVzc2FnZSB2ZXJpZmljYXRpb24gYmVnaW5zLgAAAAAADWNvbmZpcm1hdGlvbnMAAAAAAAAGAAAAM01pbmltdW0gbnVtYmVyIG9mIG9wdGlvbmFsIERWTnMgcmVxdWlyZWQgdG8gdmVyaWZ5LgAAAAAWb3B0aW9uYWxfZHZuX3RocmVzaG9sZAAAAAAABAAAAEBMaXN0IG9mIERWTiBhZGRyZXNzZXMgZnJvbSB3aGljaCBhIHRocmVzaG9sZCBudW1iZXIgbXVzdCB2ZXJpZnkuAAAADW9wdGlvbmFsX2R2bnMAAAAAAAPqAAAAEwAAAEZMaXN0IG9mIERWTiBhZGRyZXNzZXMgdGhhdCBtdXN0IEFMTCB2ZXJpZnkgdGhlIG1lc3NhZ2UgKG5vIHRocmVzaG9sZCkuAAAAAAANcmVxdWlyZWRfZHZucwAAAAAAA+oAAAAT",
1164
+ "AAAAAQAAADxPQXBwLXNwZWNpZmljIFVMTiBjb25maWd1cmF0aW9uIHdpdGggZGVmYXVsdCBvdmVycmlkZSBmbGFncy4AAAAAAAAADU9BcHBVbG5Db25maWcAAAAAAAAEAAAARU9BcHAtc3BlY2lmaWMgVUxOIGNvbmZpZ3VyYXRpb24gKHVzZWQgd2hlbiBkZWZhdWx0cyBhcmUgbm90IGFwcGxpZWQpLgAAAAAAAAp1bG5fY29uZmlnAAAAAAfQAAAACVVsbkNvbmZpZwAAAAAAACVXaGV0aGVyIHRvIHVzZSBkZWZhdWx0IGNvbmZpcm1hdGlvbnMuAAAAAAAAGXVzZV9kZWZhdWx0X2NvbmZpcm1hdGlvbnMAAAAAAAABAAAAJVdoZXRoZXIgdG8gdXNlIGRlZmF1bHQgb3B0aW9uYWwgRFZOcy4AAAAAAAAZdXNlX2RlZmF1bHRfb3B0aW9uYWxfZHZucwAAAAAAAAEAAAAlV2hldGhlciB0byB1c2UgZGVmYXVsdCByZXF1aXJlZCBEVk5zLgAAAAAAABl1c2VfZGVmYXVsdF9yZXF1aXJlZF9kdm5zAAAAAAAAAQ==",
1165
+ "AAAAAQAAAFJQYXJhbWV0ZXIgZm9yIHNldHRpbmcgZGVmYXVsdCBVTE4gY29uZmlndXJhdGlvbiBmb3IgYSBkZXN0aW5hdGlvbi9zb3VyY2UgZW5kcG9pbnQuAAAAAAAAAAAAGFNldERlZmF1bHRVbG5Db25maWdQYXJhbQAAAAIAAAAoVGhlIFVMTiBjb25maWd1cmF0aW9uIHRvIHNldCBhcyBkZWZhdWx0LgAAAAZjb25maWcAAAAAB9AAAAAJVWxuQ29uZmlnAAAAAAAAS1RoZSBkZXN0aW5hdGlvbiBlbmRwb2ludCBJRCAoZm9yIHNlbmQpIG9yIHNvdXJjZSBlbmRwb2ludCBJRCAoZm9yIHJlY2VpdmUpLgAAAAAHZHN0X2VpZAAAAAAE",
1166
+ "AAAAAQAAACxFeGVjdXRvciBjb25maWd1cmF0aW9uIGZvciBtZXNzYWdlIGRlbGl2ZXJ5LgAAAAAAAAAORXhlY3V0b3JDb25maWcAAAAAAAIAAABDQWRkcmVzcyBvZiB0aGUgZXhlY3V0b3IgY29udHJhY3QgcmVzcG9uc2libGUgZm9yIG1lc3NhZ2UgZXhlY3V0aW9uLgAAAAAIZXhlY3V0b3IAAAATAAAAOU1heGltdW0gc2l6ZSBvZiBtZXNzYWdlcyB0aGF0IGNhbiBiZSBleGVjdXRlZCAoaW4gYnl0ZXMpLgAAAAAAABBtYXhfbWVzc2FnZV9zaXplAAAABA==",
1167
+ "AAAAAQAAAFtPQXBwLXNwZWNpZmljIGV4ZWN1dG9yIGNvbmZpZ3VyYXRpb24uCgpJZiBleGVjdXRvciBpcyBgTm9uZWAsIHRoZSBkZWZhdWx0IGV4ZWN1dG9yIGlzIHVzZWQuAAAAAAAAAAAST0FwcEV4ZWN1dG9yQ29uZmlnAAAAAAACAAAAaEFkZHJlc3Mgb2YgdGhlIGV4ZWN1dG9yIGNvbnRyYWN0IHRvIGJlIHVzZWQgZm9yIG1lc3NhZ2UgZXhlY3V0aW9uLiBOb25lIG1lYW5zIHVzZSBkZWZhdWx0IGNvbmZpZ3VyYXRpb24uAAAACGV4ZWN1dG9yAAAD6AAAABMAAABcTWF4aW11bSBzaXplIG9mIG1lc3NhZ2VzIHRoYXQgY2FuIGJlIGV4ZWN1dGVkIChpbiBieXRlcykuIDAgbWVhbnMgdXNlIGRlZmF1bHQgY29uZmlndXJhdGlvbi4AAAAQbWF4X21lc3NhZ2Vfc2l6ZQAAAAQ=",
1168
+ "AAAAAQAAAFBQYXJhbWV0ZXIgZm9yIHNldHRpbmcgZGVmYXVsdCBleGVjdXRvciBjb25maWd1cmF0aW9uIGZvciBhIGRlc3RpbmF0aW9uIGVuZHBvaW50LgAAAAAAAAAdU2V0RGVmYXVsdEV4ZWN1dG9yQ29uZmlnUGFyYW0AAAAAAAACAAAALVRoZSBleGVjdXRvciBjb25maWd1cmF0aW9uIHRvIHNldCBhcyBkZWZhdWx0LgAAAAAAAAZjb25maWcAAAAAB9AAAAAORXhlY3V0b3JDb25maWcAAAAAABxUaGUgZGVzdGluYXRpb24gZW5kcG9pbnQgSUQuAAAAB2RzdF9laWQAAAAABA==",
1169
+ "AAAAAAAAAK9DYWxsZWQgYnkgYSBEVk4gdG8gdmVyaWZ5IGEgbWVzc2FnZSB3aXRoIGEgc3BlY2lmaWMgbnVtYmVyIG9mIGJsb2NrIGNvbmZpcm1hdGlvbnMuCgpTdG9yZXMgdGhlIERWTidzIHZlcmlmaWNhdGlvbiBhdHRlc3RhdGlvbiB3aGljaCB3aWxsIGJlIGNoZWNrZWQgZHVyaW5nIGNvbW1pdF92ZXJpZmljYXRpb24uAAAAAAZ2ZXJpZnkAAAAAAAQAAAAAAAAAA2R2bgAAAAATAAAAAAAAAA1wYWNrZXRfaGVhZGVyAAAAAAAADgAAAAAAAAAMcGF5bG9hZF9oYXNoAAAD7gAAACAAAAAAAAAADWNvbmZpcm1hdGlvbnMAAAAAAAAGAAAAAA==",
1170
+ "AAAAAAAAAVdQZXJtaXNzb25sZXNzIHRvIGNvbW1pdCBhIHZlcmlmaWVkIG1lc3NhZ2UgdG8gdGhlIGVuZHBvaW50IGFmdGVyIHN1ZmZpY2llbnQgRFZOIHZlcmlmaWNhdGlvbi4KClZhbGlkYXRlcyB0aGUgcGFja2V0IGhlYWRlciBhbmQgY2hlY2tzIHRoYXQgZW5vdWdoIERWTnMgaGF2ZSB2ZXJpZmllZCB0aGUgbWVzc2FnZQooYWxsIHJlcXVpcmVkIERWTnMgKyBvcHRpb25hbCBEVk4gdGhyZXNob2xkKS4gT25jZSB2ZXJpZmllZCwgY2xlYW5zIHVwIERWTiBjb25maXJtYXRpb24Kc3RvcmFnZSBhbmQgY2FsbHMgdGhlIGVuZHBvaW50IHRvIG1hcmsgdGhlIG1lc3NhZ2UgYXMgdmVyaWZpZWQgYW5kIGV4ZWN1dGFibGUuAAAAABNjb21taXRfdmVyaWZpY2F0aW9uAAAAAAIAAAAAAAAADXBhY2tldF9oZWFkZXIAAAAAAAAOAAAAAAAAAAxwYXlsb2FkX2hhc2gAAAPuAAAAIAAAAAA=",
1171
+ "AAAAAAAAAJhTZXRzIGRlZmF1bHQgcmVjZWl2ZSBVTE4gY29uZmlndXJhdGlvbnMgZm9yIG11bHRpcGxlIHNvdXJjZSBlbmRwb2ludHMuCgpWYWxpZGF0ZXMgZWFjaCBjb25maWcgYW5kIHN0b3JlcyBpdCBhcyB0aGUgZGVmYXVsdCBmb3IgdGhlIHNwZWNpZmllZCBzb3VyY2UgRUlELgAAAB9zZXRfZGVmYXVsdF9yZWNlaXZlX3Vsbl9jb25maWdzAAAAAAEAAAAAAAAABnBhcmFtcwAAAAAD6gAAB9AAAAAYU2V0RGVmYXVsdFVsbkNvbmZpZ1BhcmFtAAAAAA==",
1172
+ "AAAAAAAAAFVSZXR1cm5zIHRoZSBudW1iZXIgb2YgYmxvY2sgY29uZmlybWF0aW9ucyBhIERWTiBoYXMgc3VibWl0dGVkIGZvciBhIHNwZWNpZmljIG1lc3NhZ2UuAAAAAAAADWNvbmZpcm1hdGlvbnMAAAAAAAADAAAAAAAAAANkdm4AAAAAEwAAAAAAAAALaGVhZGVyX2hhc2gAAAAD7gAAACAAAAAAAAAADHBheWxvYWRfaGFzaAAAA+4AAAAgAAAAAQAAA+gAAAAG",
1173
+ "AAAAAAAAAFJDaGVja3MgaWYgYSBtZXNzYWdlIGhhcyBiZWVuIHN1ZmZpY2llbnRseSB2ZXJpZmllZCBieSBEVk5zIGFuZCBpcyByZWFkeSB0byBjb21taXQuAAAAAAAKdmVyaWZpYWJsZQAAAAAAAgAAAAAAAAANcGFja2V0X2hlYWRlcgAAAAAAAA4AAAAAAAAADHBheWxvYWRfaGFzaAAAA+4AAAAgAAAAAQAAAAE=",
1174
+ "AAAAAAAAAERSZXR1cm5zIHRoZSBkZWZhdWx0IHJlY2VpdmUgVUxOIGNvbmZpZ3VyYXRpb24gZm9yIGEgc291cmNlIGVuZHBvaW50LgAAABpkZWZhdWx0X3JlY2VpdmVfdWxuX2NvbmZpZwAAAAAAAQAAAAAAAAAHc3JjX2VpZAAAAAAEAAAAAQAAA+gAAAfQAAAACVVsbkNvbmZpZwAAAA==",
1175
+ "AAAAAAAAAFNSZXR1cm5zIHRoZSBPQXBwLXNwZWNpZmljIHJlY2VpdmUgVUxOIGNvbmZpZ3VyYXRpb24gb3ZlcnJpZGUgZm9yIGEgc291cmNlIGVuZHBvaW50LgAAAAAXb2FwcF9yZWNlaXZlX3Vsbl9jb25maWcAAAAAAgAAAAAAAAAIcmVjZWl2ZXIAAAATAAAAAAAAAAdzcmNfZWlkAAAAAAQAAAABAAAD6AAAB9AAAAANT0FwcFVsbkNvbmZpZwAAAA==",
1176
+ "AAAAAAAAAFVSZXR1cm5zIHRoZSBlZmZlY3RpdmUgcmVjZWl2ZSBVTE4gY29uZmlndXJhdGlvbiBieSBtZXJnaW5nIE9BcHAgY29uZmlnIHdpdGggZGVmYXVsdHMuAAAAAAAAHGVmZmVjdGl2ZV9yZWNlaXZlX3Vsbl9jb25maWcAAAACAAAAAAAAAAhyZWNlaXZlcgAAABMAAAAAAAAAB3NyY19laWQAAAAABAAAAAEAAAfQAAAACVVsbkNvbmZpZwAAAA==",
1177
+ "AAAAAAAAAEhTZXRzIGRlZmF1bHQgZXhlY3V0b3IgY29uZmlndXJhdGlvbnMgZm9yIG11bHRpcGxlIGRlc3RpbmF0aW9uIGVuZHBvaW50cy4AAAAcc2V0X2RlZmF1bHRfZXhlY3V0b3JfY29uZmlncwAAAAEAAAAAAAAABnBhcmFtcwAAAAAD6gAAB9AAAAAdU2V0RGVmYXVsdEV4ZWN1dG9yQ29uZmlnUGFyYW0AAAAAAAAA",
1178
+ "AAAAAAAAAEhTZXRzIGRlZmF1bHQgc2VuZCBVTE4gY29uZmlndXJhdGlvbnMgZm9yIG11bHRpcGxlIGRlc3RpbmF0aW9uIGVuZHBvaW50cy4AAAAcc2V0X2RlZmF1bHRfc2VuZF91bG5fY29uZmlncwAAAAEAAAAAAAAABnBhcmFtcwAAAAAD6gAAB9AAAAAYU2V0RGVmYXVsdFVsbkNvbmZpZ1BhcmFtAAAAAA==",
1179
+ "AAAAAAAAADBSZXR1cm5zIHRoZSB0cmVhc3VyeSBhZGRyZXNzIGZvciBmZWUgY29sbGVjdGlvbi4AAAAIdHJlYXN1cnkAAAAAAAAAAQAAABM=",
1180
+ "AAAAAAAAAEZSZXR1cm5zIHRoZSBkZWZhdWx0IGV4ZWN1dG9yIGNvbmZpZ3VyYXRpb24gZm9yIGEgZGVzdGluYXRpb24gZW5kcG9pbnQuAAAAAAAXZGVmYXVsdF9leGVjdXRvcl9jb25maWcAAAAAAQAAAAAAAAAHZHN0X2VpZAAAAAAEAAAAAQAAA+gAAAfQAAAADkV4ZWN1dG9yQ29uZmlnAAA=",
1181
+ "AAAAAAAAAExSZXR1cm5zIHRoZSBPQXBwLXNwZWNpZmljIGV4ZWN1dG9yIGNvbmZpZ3VyYXRpb24gZm9yIGEgZGVzdGluYXRpb24gZW5kcG9pbnQuAAAAFG9hcHBfZXhlY3V0b3JfY29uZmlnAAAAAgAAAAAAAAAGc2VuZGVyAAAAAAATAAAAAAAAAAdkc3RfZWlkAAAAAAQAAAABAAAD6AAAB9AAAAAST0FwcEV4ZWN1dG9yQ29uZmlnAAA=",
1182
+ "AAAAAAAAAFFSZXR1cm5zIHRoZSBlZmZlY3RpdmUgZXhlY3V0b3IgY29uZmlndXJhdGlvbiBieSBtZXJnaW5nIE9BcHAgY29uZmlnIHdpdGggZGVmYXVsdC4AAAAAAAAZZWZmZWN0aXZlX2V4ZWN1dG9yX2NvbmZpZwAAAAAAAAIAAAAAAAAABnNlbmRlcgAAAAAAEwAAAAAAAAAHZHN0X2VpZAAAAAAEAAAAAQAAB9AAAAAORXhlY3V0b3JDb25maWcAAA==",
1183
+ "AAAAAAAAAEZSZXR1cm5zIHRoZSBkZWZhdWx0IHNlbmQgVUxOIGNvbmZpZ3VyYXRpb24gZm9yIGEgZGVzdGluYXRpb24gZW5kcG9pbnQuAAAAAAAXZGVmYXVsdF9zZW5kX3Vsbl9jb25maWcAAAAAAQAAAAAAAAAHZHN0X2VpZAAAAAAEAAAAAQAAA+gAAAfQAAAACVVsbkNvbmZpZwAAAA==",
1184
+ "AAAAAAAAAExSZXR1cm5zIHRoZSBPQXBwLXNwZWNpZmljIHNlbmQgVUxOIGNvbmZpZ3VyYXRpb24gZm9yIGEgZGVzdGluYXRpb24gZW5kcG9pbnQuAAAAFG9hcHBfc2VuZF91bG5fY29uZmlnAAAAAgAAAAAAAAAGc2VuZGVyAAAAAAATAAAAAAAAAAdkc3RfZWlkAAAAAAQAAAABAAAD6AAAB9AAAAANT0FwcFVsbkNvbmZpZwAAAA==",
1185
+ "AAAAAAAAAFFSZXR1cm5zIHRoZSBlZmZlY3RpdmUgc2VuZCBVTE4gY29uZmlndXJhdGlvbiBieSBtZXJnaW5nIE9BcHAgY29uZmlnIHdpdGggZGVmYXVsdC4AAAAAAAAZZWZmZWN0aXZlX3NlbmRfdWxuX2NvbmZpZwAAAAAAAAIAAAAAAAAABnNlbmRlcgAAAAAAEwAAAAAAAAAHZHN0X2VpZAAAAAAEAAAAAQAAB9AAAAAJVWxuQ29uZmlnAAAA",
1186
+ "AAAAAAAAAJ5RdW90ZXMgdGhlIHRvdGFsIGZlZSBmb3Igc2VuZGluZyBhIGNyb3NzLWNoYWluIG1lc3NhZ2UuCgpDYWxjdWxhdGVzIGZlZXMgZnJvbTogZXhlY3V0b3IgKG1lc3NhZ2UgZXhlY3V0aW9uKSwgRFZOcyAodmVyaWZpY2F0aW9uKSwgYW5kIHRyZWFzdXJ5IChwcm90b2NvbCBmZWUpLgAAAAAABXF1b3RlAAAAAAAAAwAAAAAAAAAGcGFja2V0AAAAAAfQAAAADk91dGJvdW5kUGFja2V0AAAAAAAAAAAAB29wdGlvbnMAAAAADgAAAAAAAAAKcGF5X2luX3pybwAAAAAAAQAAAAEAAAfQAAAADE1lc3NhZ2luZ0ZlZQ==",
1187
+ "AAAAAAAAAJlTZW5kcyBhIGNyb3NzLWNoYWluIG1lc3NhZ2UgYW5kIHJldHVybnMgZmVlIHJlY2lwaWVudHMgZm9yIHBheW1lbnQuCgpBc3NpZ25zIGV4ZWN1dG9yIGFuZCBEVk5zLCBjYWxjdWxhdGVzIGZlZXMsIGFuZCBlbmNvZGVzIHRoZSBwYWNrZXQgZm9yIHRyYW5zbWlzc2lvbi4AAAAAAAAEc2VuZAAAAAMAAAAAAAAABnBhY2tldAAAAAAH0AAAAA5PdXRib3VuZFBhY2tldAAAAAAAAAAAAAdvcHRpb25zAAAAAA4AAAAAAAAACnBheV9pbl96cm8AAAAAAAEAAAABAAAH0AAAAA1GZWVzQW5kUGFja2V0AAAA",
1188
+ "AAAAAAAAANxTZXRzIE9BcHAtc3BlY2lmaWMgY29uZmlndXJhdGlvbiBwYXJhbWV0ZXJzIGZvciB0aGUgbWVzc2FnZSBsaWJyYXJ5LgoKQ2FsbGVkIGJ5IHRoZSBlbmRwb2ludCBvbiBiZWhhbGYgb2YgdGhlIE9BcHAgdG8gY29uZmlndXJlIGV4ZWN1dG9yIGFuZCBVTE4gc2V0dGluZ3MuClN1cHBvcnRzIHRocmVlIGNvbmZpZyB0eXBlczogRVhFQ1VUT1IsIFNFTkRfVUxOLCBhbmQgUkVDRUlWRV9VTE4uAAAACnNldF9jb25maWcAAAAAAAIAAAAAAAAABG9hcHAAAAATAAAAAAAAAAZwYXJhbXMAAAAAA+oAAAfQAAAADlNldENvbmZpZ1BhcmFtAAAAAAAA",
1189
+ "AAAAAAAAADZSZXR1cm5zIHRoZSBYRFItZW5jb2RlZCBlZmZlY3RpdmUgY29uZmlndXJhdGlvbiBieXRlcy4AAAAAAApnZXRfY29uZmlnAAAAAAADAAAAAAAAAANlaWQAAAAABAAAAAAAAAAEb2FwcAAAABMAAAAAAAAAC2NvbmZpZ190eXBlAAAAAAQAAAABAAAADg==",
1190
+ "AAAAAAAAAGhSZXR1cm5zIHRydWUgaWYgdGhlIG1lc3NhZ2UgbGlicmFyeSBoYXMgZGVmYXVsdCBzZW5kIGFuZCByZWNlaXZlIFVMTiBjb25maWd1cmF0aW9ucyBmb3IgdGhlIGVuZHBvaW50IElELgAAABBpc19zdXBwb3J0ZWRfZWlkAAAAAQAAAAAAAAADZWlkAAAAAAQAAAABAAAAAQ==",
1191
+ "AAAAAAAAACtSZXR1cm5zIHRoZSB2ZXJzaW9uIG9mIHRoZSBtZXNzYWdlIGxpYnJhcnkuAAAAAAd2ZXJzaW9uAAAAAAAAAAABAAAH0AAAABFNZXNzYWdlTGliVmVyc2lvbgAAAA==",
1192
+ "AAAAAAAAAChSZXR1cm5zIHRoZSB0eXBlIG9mIHRoZSBtZXNzYWdlIGxpYnJhcnkuAAAAEG1lc3NhZ2VfbGliX3R5cGUAAAAAAAAAAQAAB9AAAAAOTWVzc2FnZUxpYlR5cGUAAA==",
1193
+ "AAAAAAAAAAAAAAANX19jb25zdHJ1Y3RvcgAAAAAAAAMAAAAAAAAABW93bmVyAAAAAAAAEwAAAAAAAAAIZW5kcG9pbnQAAAATAAAAAAAAAAh0cmVhc3VyeQAAABMAAAAA",
1194
+ "AAAAAAAAADBSZXR1cm5zIHRoZSBMYXllclplcm8gZW5kcG9pbnQgY29udHJhY3QgYWRkcmVzcy4AAAAIZW5kcG9pbnQAAAAAAAAAAQAAABM=",
1195
+ "AAAAAAAAAAAAAAAFb3duZXIAAAAAAAAAAAAAAQAAA+gAAAAT",
1196
+ "AAAAAAAAAAAAAAASdHJhbnNmZXJfb3duZXJzaGlwAAAAAAABAAAAAAAAAAluZXdfb3duZXIAAAAAAAATAAAAAA==",
1197
+ "AAAAAAAAAAAAAAAScmVub3VuY2Vfb3duZXJzaGlwAAAAAAAAAAAAAA==",
1198
+ "AAAAAAAAAAAAAAAOc2V0X3R0bF9jb25maWcAAAAAAAMAAAAAAAAACGluc3RhbmNlAAAD6AAAB9AAAAAJVHRsQ29uZmlnAAAAAAAAAAAAAApwZXJzaXN0ZW50AAAAAAPoAAAH0AAAAAlUdGxDb25maWcAAAAAAAAAAAAACXRlbXBvcmFyeQAAAAAAA+gAAAfQAAAACVR0bENvbmZpZwAAAAAAAAA=",
1199
+ "AAAAAAAAAAAAAAAKdHRsX2NvbmZpZwAAAAAAAAAAAAEAAAPtAAAAAwAAA+gAAAfQAAAACVR0bENvbmZpZwAAAAAAA+gAAAfQAAAACVR0bENvbmZpZwAAAAAAA+gAAAfQAAAACVR0bENvbmZpZwAAAA==",
1200
+ "AAAAAAAAAAAAAAARZnJlZXplX3R0bF9jb25maWcAAAAAAAAAAAAAAA==",
1201
+ "AAAAAAAAAAAAAAAUaXNfdHRsX2NvbmZpZ19mcm96ZW4AAAAAAAAAAQAAAAE=",
1202
+ "AAAAAgAAAAAAAAAAAAAAClVsblN0b3JhZ2UAAAAAAAkAAAAAAAAAAAAAAAhFbmRwb2ludAAAAAAAAAAAAAAACFRyZWFzdXJ5AAAAAQAAAAAAAAAWRGVmYXVsdEV4ZWN1dG9yQ29uZmlncwAAAAAAAQAAAAQAAAABAAAAAAAAABVEZWZhdWx0U2VuZFVsbkNvbmZpZ3MAAAAAAAABAAAABAAAAAEAAAAAAAAAGERlZmF1bHRSZWNlaXZlVWxuQ29uZmlncwAAAAEAAAAEAAAAAQAAAAAAAAAST0FwcFNlbmRVbG5Db25maWdzAAAAAAACAAAAEwAAAAQAAAABAAAAAAAAABVPQXBwUmVjZWl2ZVVsbkNvbmZpZ3MAAAAAAAACAAAAEwAAAAQAAAABAAAAAAAAABNPQXBwRXhlY3V0b3JDb25maWdzAAAAAAIAAAATAAAABAAAAAEAAAAAAAAADUNvbmZpcm1hdGlvbnMAAAAAAAADAAAAEwAAA+4AAAAgAAAD7gAAACA=",
1203
+ "AAAABQAAAAAAAAAAAAAAD1BheWxvYWRWZXJpZmllZAAAAAABAAAAD1BheWxvYWRWZXJpZmllZAAAAAAEAAAAAAAAAANkdm4AAAAAEwAAAAEAAAAAAAAABmhlYWRlcgAAAAAADgAAAAAAAAAAAAAADWNvbmZpcm1hdGlvbnMAAAAAAAAGAAAAAAAAAAAAAAAKcHJvb2ZfaGFzaAAAAAAD7gAAACAAAAAAAAAAAg==",
1204
+ "AAAABQAAAAAAAAAAAAAACkRWTkZlZVBhaWQAAAAAAAEAAAAKRFZORmVlUGFpZAAAAAAAAgAAAAAAAAAEZHZucwAAA+oAAAATAAAAAQAAAAAAAAAEZmVlcwAAA+oAAAfQAAAADEZlZVJlY2lwaWVudAAAAAAAAAAC",
1205
+ "AAAABQAAAAAAAAAAAAAAD0V4ZWN1dG9yRmVlUGFpZAAAAAABAAAAD0V4ZWN1dG9yRmVlUGFpZAAAAAACAAAAAAAAAAhleGVjdXRvcgAAABMAAAABAAAAAAAAAANmZWUAAAAH0AAAAAxGZWVSZWNpcGllbnQAAAAAAAAAAg==",
1206
+ "AAAABQAAAAAAAAAAAAAAGkRlZmF1bHRVbG5SZWNlaXZlQ29uZmlnU2V0AAAAAAABAAAAGkRlZmF1bHRVbG5SZWNlaXZlQ29uZmlnU2V0AAAAAAABAAAAAAAAAAZwYXJhbXMAAAAAA+oAAAfQAAAAGFNldERlZmF1bHRVbG5Db25maWdQYXJhbQAAAAAAAAAC",
1207
+ "AAAABQAAAAAAAAAAAAAAF0RlZmF1bHRVbG5TZW5kQ29uZmlnU2V0AAAAAAEAAAAXRGVmYXVsdFVsblNlbmRDb25maWdTZXQAAAAAAQAAAAAAAAAGcGFyYW1zAAAAAAPqAAAH0AAAABhTZXREZWZhdWx0VWxuQ29uZmlnUGFyYW0AAAAAAAAAAg==",
1208
+ "AAAABQAAAAAAAAAAAAAAGERlZmF1bHRFeGVjdXRvckNvbmZpZ1NldAAAAAEAAAAYRGVmYXVsdEV4ZWN1dG9yQ29uZmlnU2V0AAAAAQAAAAAAAAAGcGFyYW1zAAAAAAPqAAAH0AAAAB1TZXREZWZhdWx0RXhlY3V0b3JDb25maWdQYXJhbQAAAAAAAAAAAAAC",
1209
+ "AAAABQAAAAAAAAAAAAAAE1VsblJlY2VpdmVDb25maWdTZXQAAAAAAQAAABNVbG5SZWNlaXZlQ29uZmlnU2V0AAAAAAMAAAAAAAAACHJlY2VpdmVyAAAAEwAAAAEAAAAAAAAAB3NyY19laWQAAAAABAAAAAEAAAAAAAAABmNvbmZpZwAAAAAH0AAAAA1PQXBwVWxuQ29uZmlnAAAAAAAAAAAAAAI=",
1210
+ "AAAABQAAAAAAAAAAAAAAEFVsblNlbmRDb25maWdTZXQAAAABAAAAEFVsblNlbmRDb25maWdTZXQAAAADAAAAAAAAAAZzZW5kZXIAAAAAABMAAAABAAAAAAAAAAdkc3RfZWlkAAAAAAQAAAABAAAAAAAAAAZjb25maWcAAAAAB9AAAAANT0FwcFVsbkNvbmZpZwAAAAAAAAAAAAAC",
1211
+ "AAAABQAAAAAAAAAAAAAAEUV4ZWN1dG9yQ29uZmlnU2V0AAAAAAAAAQAAABFFeGVjdXRvckNvbmZpZ1NldAAAAAAAAAMAAAAAAAAABnNlbmRlcgAAAAAAEwAAAAEAAAAAAAAAB2RzdF9laWQAAAAABAAAAAEAAAAAAAAABmNvbmZpZwAAAAAH0AAAABJPQXBwRXhlY3V0b3JDb25maWcAAAAAAAAAAAAC",
1212
+ "AAAABAAAAAAAAAAAAAAAC1VsbjMwMkVycm9yAAAAABgAAAAAAAAAHURlZmF1bHRFeGVjdXRvckNvbmZpZ05vdEZvdW5kAAAAAAAAAQAAAAAAAAAfRGVmYXVsdFJlY2VpdmVVbG5Db25maWdOb3RGb3VuZAAAAAACAAAAAAAAABxEZWZhdWx0U2VuZFVsbkNvbmZpZ05vdEZvdW5kAAAAAwAAAAAAAAAVRHVwbGljYXRlT3B0aW9uYWxEVk5zAAAAAAAABAAAAAAAAAAVRHVwbGljYXRlUmVxdWlyZWREVk5zAAAAAAAABQAAAAAAAAANSW52YWxpZENvbmZpZwAAAAAAAAYAAAAAAAAAEUludmFsaWRDb25maWdUeXBlAAAAAAAABwAAAAAAAAAUSW52YWxpZENvbmZpcm1hdGlvbnMAAAAIAAAAAAAAAApJbnZhbGlkRUlEAAAAAAAJAAAAAAAAABJJbnZhbGlkTWVzc2FnZVNpemUAAAAAAAoAAAAAAAAAF0ludmFsaWRPcHRpb25hbERWTkNvdW50AAAAAAsAAAAAAAAAE0ludmFsaWRPcHRpb25hbERWTnMAAAAADAAAAAAAAAAbSW52YWxpZE9wdGlvbmFsRFZOVGhyZXNob2xkAAAAAA0AAAAAAAAAE0ludmFsaWRQYWNrZXRIZWFkZXIAAAAADgAAAAAAAAAXSW52YWxpZFJlcXVpcmVkRFZOQ291bnQAAAAADwAAAAAAAAATSW52YWxpZFJlcXVpcmVkRFZOcwAAAAAQAAAAAAAAABpPQXBwRXhlY3V0b3JDb25maWdOb3RGb3VuZAAAAAAAEQAAAAAAAAAcT0FwcFJlY2VpdmVVbG5Db25maWdOb3RGb3VuZAAAABIAAAAAAAAAGU9BcHBTZW5kVWxuQ29uZmlnTm90Rm91bmQAAAAAAAATAAAAAAAAAAxPbmx5RW5kcG9pbnQAAAAUAAAAAAAAABBVbG5BdExlYXN0T25lRFZOAAAAFQAAAAAAAAAOVW5zdXBwb3J0ZWRFaWQAAAAAABYAAAAAAAAACVZlcmlmeWluZwAAAAAAABcAAAAAAAAAD1plcm9NZXNzYWdlU2l6ZQAAAAAY",
1213
+ "AAAAAQAAAC1QYXJhbWV0ZXJzIGZvciBzZW5kaW5nIGEgY3Jvc3MtY2hhaW4gbWVzc2FnZS4AAAAAAAAAAAAAD01lc3NhZ2luZ1BhcmFtcwAAAAAFAAAAK0Rlc3RpbmF0aW9uIGVuZHBvaW50IElEIChjaGFpbiBpZGVudGlmaWVyKS4AAAAAB2RzdF9laWQAAAAABAAAABxUaGUgbWVzc2FnZSBwYXlsb2FkIHRvIHNlbmQuAAAAB21lc3NhZ2UAAAAADgAAACFFbmNvZGVkIGV4ZWN1dG9yIGFuZCBEVk4gb3B0aW9ucy4AAAAAAAAHb3B0aW9ucwAAAAAOAAAAOVdoZXRoZXIgdG8gcGF5IGZlZXMgaW4gWlJPIHRva2VuIGluc3RlYWQgb2YgbmF0aXZlIHRva2VuLgAAAAAAAApwYXlfaW5fenJvAAAAAAABAAAANVJlY2VpdmVyIGFkZHJlc3Mgb24gdGhlIGRlc3RpbmF0aW9uIGNoYWluICgzMiBieXRlcykuAAAAAAAACHJlY2VpdmVyAAAD7gAAACA=",
1214
+ "AAAAAQAAAE1Tb3VyY2UgbWVzc2FnZSBpbmZvcm1hdGlvbiBpZGVudGlmeWluZyB3aGVyZSBhIGNyb3NzLWNoYWluIG1lc3NhZ2UgY2FtZSBmcm9tLgAAAAAAAAAAAAAGT3JpZ2luAAAAAAADAAAAF05vbmNlIGZvciB0aGlzIHBhdGh3YXkuAAAAAAVub25jZQAAAAAAAAYAAAAuU2VuZGVyIGFkZHJlc3Mgb24gdGhlIHNvdXJjZSBjaGFpbiAoMzIgYnl0ZXMpLgAAAAAABnNlbmRlcgAAAAAD7gAAACAAAAAmU291cmNlIGVuZHBvaW50IElEIChjaGFpbiBpZGVudGlmaWVyKS4AAAAAAAdzcmNfZWlkAAAAAAQ=",
1215
+ "AAAAAQAAAChGZWUgc3RydWN0dXJlIGZvciBjcm9zcy1jaGFpbiBtZXNzYWdpbmcuAAAAAAAAAAxNZXNzYWdpbmdGZWUAAAACAAAAH0ZlZSBwYWlkIGluIG5hdGl2ZSB0b2tlbiAoWExNKS4AAAAACm5hdGl2ZV9mZWUAAAAAAAsAAAAoRmVlIHBhaWQgaW4gWlJPIHRva2VuIChMYXllclplcm8gdG9rZW4pLgAAAAd6cm9fZmVlAAAAAAs=",
1216
+ "AAAAAQAAAEJSZWNlaXB0IHJldHVybmVkIGFmdGVyIHN1Y2Nlc3NmdWxseSBzZW5kaW5nIGEgY3Jvc3MtY2hhaW4gbWVzc2FnZS4AAAAAAAAAAAAQTWVzc2FnaW5nUmVjZWlwdAAAAAMAAAApVGhlIGZlZXMgY2hhcmdlZCBmb3Igc2VuZGluZyB0aGUgbWVzc2FnZS4AAAAAAAADZmVlAAAAB9AAAAAMTWVzc2FnaW5nRmVlAAAAK0dsb2JhbGx5IHVuaXF1ZSBpZGVudGlmaWVyIGZvciB0aGUgbWVzc2FnZS4AAAAABGd1aWQAAAPuAAAAIAAAACRUaGUgb3V0Ym91bmQgbm9uY2UgZm9yIHRoaXMgcGF0aHdheS4AAAAFbm9uY2UAAAAAAAAG",
1217
+ "AAAAAgAAADhUeXBlIG9mIG1lc3NhZ2UgbGlicmFyeSBpbmRpY2F0aW5nIHN1cHBvcnRlZCBvcGVyYXRpb25zLgAAAAAAAAAOTWVzc2FnZUxpYlR5cGUAAAAAAAMAAAAAAAAAH1N1cHBvcnRzIG9ubHkgc2VuZGluZyBtZXNzYWdlcy4AAAAABFNlbmQAAAAAAAAAIVN1cHBvcnRzIG9ubHkgcmVjZWl2aW5nIG1lc3NhZ2VzLgAAAAAAAAdSZWNlaXZlAAAAAAAAAAAtU3VwcG9ydHMgYm90aCBzZW5kaW5nIGFuZCByZWNlaXZpbmcgbWVzc2FnZXMuAAAAAAAADlNlbmRBbmRSZWNlaXZlAAA=",
1218
+ "AAAAAQAAALdWZXJzaW9uIGluZm9ybWF0aW9uIGZvciBhIG1lc3NhZ2UgbGlicmFyeS4KCk5vdGU6IGBtaW5vcmAgYW5kIGBlbmRwb2ludF92ZXJzaW9uYCB1c2UgYHUzMmAgaW5zdGVhZCBvZiBgdThgIGJlY2F1c2UgU3RlbGxhciBkb2VzIG5vdApzdXBwb3J0IGB1OGAgdHlwZXMgaW4gY29udHJhY3QgaW50ZXJmYWNlIGZ1bmN0aW9ucy4AAAAAAAAAABFNZXNzYWdlTGliVmVyc2lvbgAAAAAAAAMAAAAzRW5kcG9pbnQgdmVyc2lvbiAoc2hvdWxkIG5vdCBleGNlZWQgdTg6Ok1BWCA9IDI1NSkuAAAAABBlbmRwb2ludF92ZXJzaW9uAAAABAAAABVNYWpvciB2ZXJzaW9uIG51bWJlci4AAAAAAAAFbWFqb3IAAAAAAAAGAAAAN01pbm9yIHZlcnNpb24gbnVtYmVyIChzaG91bGQgbm90IGV4Y2VlZCB1ODo6TUFYID0gMjU1KS4AAAAABW1pbm9yAAAAAAAABA==",
1219
+ "AAAAAQAAADZUaW1lb3V0IGNvbmZpZ3VyYXRpb24gZm9yIHJlY2VpdmUgbGlicmFyeSB0cmFuc2l0aW9ucy4AAAAAAAAAAAAHVGltZW91dAAAAAACAAAAKFVuaXggdGltZXN0YW1wIHdoZW4gdGhlIHRpbWVvdXQgZXhwaXJlcy4AAAAGZXhwaXJ5AAAAAAAGAAAAKVRoZSBuZXcgbGlicmFyeSBhZGRyZXNzIHRvIHRyYW5zaXRpb24gdG8uAAAAAAAAA2xpYgAAAAAT",
1220
+ "AAAAAQAAADVQYXJhbWV0ZXJzIGZvciBzZXR0aW5nIG1lc3NhZ2UgbGlicmFyeSBjb25maWd1cmF0aW9uLgAAAAAAAAAAAAAOU2V0Q29uZmlnUGFyYW0AAAAAAAMAAAAfWERSLWVuY29kZWQgY29uZmlndXJhdGlvbiBkYXRhLgAAAAAGY29uZmlnAAAAAAAOAAAAMFRoZSB0eXBlIG9mIGNvbmZpZ3VyYXRpb24gKGUuZy4sIGV4ZWN1dG9yLCBVTE4pLgAAAAtjb25maWdfdHlwZQAAAAAEAAAAJ1RoZSBlbmRwb2ludCBJRCB0aGlzIGNvbmZpZyBhcHBsaWVzIHRvLgAAAAADZWlkAAAAAAQ=",
1221
+ "AAAAAQAAADFSZXNvbHZlZCBsaWJyYXJ5IGluZm9ybWF0aW9uIHdpdGggZGVmYXVsdCBzdGF0dXMuAAAAAAAAAAAAAA9SZXNvbHZlZExpYnJhcnkAAAAAAgAAAERXaGV0aGVyIHRoaXMgaXMgdGhlIGRlZmF1bHQgbGlicmFyeSAodHJ1ZSkgb3IgT0FwcC1zcGVjaWZpYyAoZmFsc2UpLgAAAAppc19kZWZhdWx0AAAAAAABAAAAHVRoZSByZXNvbHZlZCBsaWJyYXJ5IGFkZHJlc3MuAAAAAAAAA2xpYgAAAAAT",
1222
+ "AAAAAQAAAEhPdXRib3VuZCBwYWNrZXQgY29udGFpbmluZyBhbGwgaW5mb3JtYXRpb24gZm9yIGNyb3NzLWNoYWluIHRyYW5zbWlzc2lvbi4AAAAAAAAADk91dGJvdW5kUGFja2V0AAAAAAAHAAAAGERlc3RpbmF0aW9uIGVuZHBvaW50IElELgAAAAdkc3RfZWlkAAAAAAQAAAAsR2xvYmFsbHkgdW5pcXVlIGlkZW50aWZpZXIgZm9yIHRoaXMgbWVzc2FnZS4AAAAEZ3VpZAAAA+4AAAAgAAAAFFRoZSBtZXNzYWdlIHBheWxvYWQuAAAAB21lc3NhZ2UAAAAADgAAACBPdXRib3VuZCBub25jZSBmb3IgdGhpcyBwYXRod2F5LgAAAAVub25jZQAAAAAAAAYAAAAxUmVjZWl2ZXIgYWRkcmVzcyBvbiBkZXN0aW5hdGlvbiBjaGFpbiAoMzIgYnl0ZXMpLgAAAAAAAAhyZWNlaXZlcgAAA+4AAAAgAAAAH1NlbmRlciBhZGRyZXNzIG9uIHNvdXJjZSBjaGFpbi4AAAAABnNlbmRlcgAAAAAAEwAAABNTb3VyY2UgZW5kcG9pbnQgSUQuAAAAAAdzcmNfZWlkAAAAAAQ=",
1223
+ "AAAAAQAAACtBIGZlZSByZWNpcGllbnQgd2l0aCB0aGUgYW1vdW50IHRvIGJlIHBhaWQuAAAAAAAAAAAMRmVlUmVjaXBpZW50AAAAAgAAABtBZGRyZXNzIHRvIHJlY2VpdmUgdGhlIGZlZS4AAAAAB2FkZHJlc3MAAAAAEwAAABVBbW91bnQgb2YgZmVlIHRvIHBheS4AAAAAAAAGYW1vdW50AAAAAAAL",
1224
+ "AAAAAQAAADxSZXN1bHQgb2Ygc2VuZCBvcGVyYXRpb24gY29udGFpbmluZyBmZWVzIGFuZCBlbmNvZGVkIHBhY2tldC4AAAAAAAAADUZlZXNBbmRQYWNrZXQAAAAAAAADAAAAKlRoZSBlbmNvZGVkIHBhY2tldCByZWFkeSBmb3IgdHJhbnNtaXNzaW9uLgAAAAAADmVuY29kZWRfcGFja2V0AAAAAAAOAAAAP0xpc3Qgb2YgbmF0aXZlIHRva2VuIGZlZSByZWNpcGllbnRzIChleGVjdXRvciwgRFZOcywgdHJlYXN1cnkpLgAAAAAVbmF0aXZlX2ZlZV9yZWNpcGllbnRzAAAAAAAD6gAAB9AAAAAMRmVlUmVjaXBpZW50AAAALExpc3Qgb2YgWlJPIHRva2VuIGZlZSByZWNpcGllbnRzICh0cmVhc3VyeSkuAAAAEnpyb19mZWVfcmVjaXBpZW50cwAAAAAD6gAAB9AAAAAMRmVlUmVjaXBpZW50",
1225
+ "AAAABAAAAAAAAAAAAAAAElBhY2tldENvZGVjVjFFcnJvcgAAAAAAAgAAAAAAAAAUSW52YWxpZFBhY2tldFZlcnNpb24AACr5AAAAAAAAABNJbnZhbGlkUGFja2V0SGVhZGVyAAAAKvo=",
1226
+ "AAAABAAAAAAAAAAAAAAAEldvcmtlck9wdGlvbnNFcnJvcgAAAAAACQAAAAAAAAAOSW52YWxpZE9wdGlvbnMAAAAAK10AAAAAAAAAD0ludmFsaWRXb3JrZXJJZAAAACteAAAAAAAAABlJbnZhbGlkTGVnYWN5T3B0aW9uc1R5cGUxAAAAAAArXwAAAAAAAAAdTGVnYWN5T3B0aW9uc1R5cGUxR2FzT3ZlcmZsb3cAAAAAACtgAAAAAAAAABlJbnZhbGlkTGVnYWN5T3B0aW9uc1R5cGUyAAAAAAArYQAAAAAAAAAdTGVnYWN5T3B0aW9uc1R5cGUyR2FzT3ZlcmZsb3cAAAAAACtiAAAAAAAAACBMZWdhY3lPcHRpb25zVHlwZTJBbW91bnRPdmVyZmxvdwAAK2MAAAAAAAAAEUludmFsaWRPcHRpb25UeXBlAAAAAAArZAAAAAAAAAASSW52YWxpZEJ5dGVzTGVuZ3RoAAAAACtl",
1227
+ "AAAABAAAAAAAAAAAAAAAEUJ1ZmZlclJlYWRlckVycm9yAAAAAAAAAgAAAAAAAAANSW52YWxpZExlbmd0aAAAAAAAJxAAAAAAAAAAFUludmFsaWRBZGRyZXNzUGF5bG9hZAAAAAAAJxE=",
1228
+ "AAAABAAAAAAAAAAAAAAAEUJ1ZmZlcldyaXRlckVycm9yAAAAAAAAAQAAAAAAAAAVSW52YWxpZEFkZHJlc3NQYXlsb2FkAAAAAAAndA==",
1229
+ "AAAABAAAAAAAAAAAAAAACFR0bEVycm9yAAAAAwAAAAAAAAAQSW52YWxpZFR0bENvbmZpZwAAJ9gAAAAAAAAAD1R0bENvbmZpZ0Zyb3plbgAAACfZAAAAAAAAABZUdGxDb25maWdBbHJlYWR5RnJvemVuAAAAACfa",
1230
+ "AAAABAAAAAAAAAAAAAAADE93bmFibGVFcnJvcgAAAAIAAAAAAAAAD093bmVyQWxyZWFkeVNldAAAACg8AAAAAAAAAAtPd25lck5vdFNldAAAACg9",
1231
+ "AAAABAAAAAAAAAAAAAAADUJ5dGVzRXh0RXJyb3IAAAAAAAABAAAAAAAAAA5MZW5ndGhNaXNtYXRjaAAAAAAooA==",
1232
+ "AAAABQAAACxFdmVudCBlbWl0dGVkIHdoZW4gb3duZXJzaGlwIGlzIHRyYW5zZmVycmVkLgAAAAAAAAAUT3duZXJzaGlwVHJhbnNmZXJyZWQAAAABAAAAFE93bmVyc2hpcFRyYW5zZmVycmVkAAAAAgAAAAAAAAAJb2xkX293bmVyAAAAAAAAEwAAAAAAAAAAAAAACW5ld19vd25lcgAAAAAAABMAAAAAAAAAAg==",
1233
+ "AAAABQAAACpFdmVudCBlbWl0dGVkIHdoZW4gb3duZXJzaGlwIGlzIHJlbm91bmNlZC4AAAAAAAAAAAAST3duZXJzaGlwUmVub3VuY2VkAAAAAAABAAAAEk93bmVyc2hpcFJlbm91bmNlZAAAAAAAAQAAAAAAAAAJb2xkX293bmVyAAAAAAAAEwAAAAAAAAAC",
1234
+ "AAAAAgAAAAAAAAAAAAAAFURlZmF1bHRPd25hYmxlU3RvcmFnZQAAAAAAAAEAAAAAAAAAAAAAAAVPd25lcgAAAA==",
1235
+ "AAAAAQAAAFdBIHBhaXIgb2YgVFRMIHZhbHVlczogdGhyZXNob2xkICh3aGVuIHRvIHRyaWdnZXIgZXh0ZW5zaW9uKSBhbmQgZXh0ZW5kX3RvICh0YXJnZXQgVFRMKS4AAAAAAAAAAAlUdGxDb25maWcAAAAAAAACAAAAKFRhcmdldCBUVEwgYWZ0ZXIgZXh0ZW5zaW9uIChpbiBsZWRnZXJzKS4AAAAJZXh0ZW5kX3RvAAAAAAAABAAAADNUVEwgdGhyZXNob2xkIHRoYXQgdHJpZ2dlcnMgZXh0ZW5zaW9uIChpbiBsZWRnZXJzKS4AAAAACXRocmVzaG9sZAAAAAAAAAQ=",
1236
+ "AAAAAgAAAAAAAAAAAAAADVR0bENvbmZpZ0RhdGEAAAAAAAAEAAAAAAAAAAAAAAAGRnJvemVuAAAAAAAAAAAAAAAAAAhJbnN0YW5jZQAAAAAAAAAAAAAAClBlcnNpc3RlbnQAAAAAAAAAAAAAAAAACVRlbXBvcmFyeQAAAA==" ]),
1237
+ options
1238
+ )
1239
+ }
1240
+ public readonly fromJSON = {
1241
+ verify: this.txFromJSON<null>,
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>,
1250
+ set_default_send_uln_configs: this.txFromJSON<null>,
1251
+ treasury: this.txFromJSON<string>,
1252
+ default_executor_config: this.txFromJSON<Option<ExecutorConfig>>,
1253
+ oapp_executor_config: this.txFromJSON<Option<OAppExecutorConfig>>,
1254
+ effective_executor_config: this.txFromJSON<ExecutorConfig>,
1255
+ default_send_uln_config: this.txFromJSON<Option<UlnConfig>>,
1256
+ oapp_send_uln_config: this.txFromJSON<Option<OAppUlnConfig>>,
1257
+ effective_send_uln_config: this.txFromJSON<UlnConfig>,
1258
+ quote: this.txFromJSON<MessagingFee>,
1259
+ send: this.txFromJSON<FeesAndPacket>,
1260
+ set_config: this.txFromJSON<null>,
1261
+ get_config: this.txFromJSON<Buffer>,
1262
+ is_supported_eid: this.txFromJSON<boolean>,
1263
+ version: this.txFromJSON<MessageLibVersion>,
1264
+ message_lib_type: this.txFromJSON<MessageLibType>,
1265
+ endpoint: this.txFromJSON<string>,
1266
+ owner: this.txFromJSON<Option<string>>,
1267
+ transfer_ownership: this.txFromJSON<null>,
1268
+ renounce_ownership: this.txFromJSON<null>,
1269
+ set_ttl_config: this.txFromJSON<null>,
1270
+ ttl_config: this.txFromJSON<readonly [Option<TtlConfig>, Option<TtlConfig>, Option<TtlConfig>]>,
1271
+ freeze_ttl_config: this.txFromJSON<null>,
1272
+ is_ttl_config_frozen: this.txFromJSON<boolean>
1273
+ }
1274
+ }