@layerzerolabs/lz-v2-stellar-sdk 0.2.13 → 0.2.15

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.
Files changed (47) hide show
  1. package/dist/generated/bml.d.ts +40 -30
  2. package/dist/generated/bml.js +16 -11
  3. package/dist/generated/counter.d.ts +168 -134
  4. package/dist/generated/counter.js +26 -21
  5. package/dist/generated/dvn.d.ts +1932 -0
  6. package/dist/generated/dvn.js +288 -0
  7. package/dist/generated/dvn_fee_lib.d.ts +615 -0
  8. package/dist/generated/dvn_fee_lib.js +123 -0
  9. package/dist/generated/endpoint.d.ts +75 -41
  10. package/dist/generated/endpoint.js +22 -17
  11. package/dist/generated/executor.d.ts +1809 -0
  12. package/dist/generated/executor.js +269 -0
  13. package/dist/generated/executor_fee_lib.d.ts +999 -0
  14. package/dist/generated/executor_fee_lib.js +208 -0
  15. package/dist/generated/executor_helper.d.ts +869 -0
  16. package/dist/generated/executor_helper.js +187 -0
  17. package/dist/generated/oft_std.d.ts +1544 -0
  18. package/dist/generated/oft_std.js +271 -0
  19. package/dist/generated/price_feed.d.ts +1002 -0
  20. package/dist/generated/price_feed.js +170 -0
  21. package/dist/generated/sml.d.ts +75 -41
  22. package/dist/generated/sml.js +22 -17
  23. package/dist/generated/uln302.d.ts +79 -60
  24. package/dist/generated/uln302.js +37 -37
  25. package/dist/generated/upgrader.d.ts +70 -0
  26. package/dist/generated/upgrader.js +19 -0
  27. package/dist/index.d.ts +8 -0
  28. package/dist/index.js +11 -0
  29. package/package.json +8 -7
  30. package/src/generated/bml.ts +45 -35
  31. package/src/generated/counter.ts +186 -152
  32. package/src/generated/dvn.ts +1979 -0
  33. package/src/generated/dvn_fee_lib.ts +628 -0
  34. package/src/generated/endpoint.ts +81 -47
  35. package/src/generated/executor.ts +112 -34
  36. package/src/generated/executor_fee_lib.ts +1000 -0
  37. package/src/generated/executor_helper.ts +18 -8
  38. package/src/generated/oft_std.ts +500 -110
  39. package/src/generated/price_feed.ts +1043 -0
  40. package/src/generated/sml.ts +81 -47
  41. package/src/generated/uln302.ts +98 -69
  42. package/src/generated/upgrader.ts +102 -0
  43. package/src/index.ts +13 -0
  44. package/test/index.test.ts +0 -1
  45. package/test/oft.test.ts +12 -23
  46. package/test/suites/testUpgradeable.ts +169 -0
  47. package/test/upgrader.test.ts +309 -0
@@ -0,0 +1,1979 @@
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
+ export type MigrationData = void;
29
+
30
+
31
+ export const DvnError = {
32
+ 1: {message:"AuthDataExpired"},
33
+ 2: {message:"EidNotSupported"},
34
+ 3: {message:"HashAlreadyUsed"},
35
+ 4: {message:"InvalidInvocation"},
36
+ 5: {message:"InvalidSigner"},
37
+ 6: {message:"InvalidVid"},
38
+ 7: {message:"NonContractInvoke"},
39
+ 8: {message:"OnlyAdmin"},
40
+ 9: {message:"SignatureError"},
41
+ 10: {message:"SignerAlreadyExists"},
42
+ 11: {message:"SignerNotFound"},
43
+ 12: {message:"TotalSignersLessThanThreshold"},
44
+ 13: {message:"UnsortedSigners"},
45
+ 14: {message:"ZeroThreshold"}
46
+ }
47
+
48
+
49
+
50
+
51
+
52
+ /**
53
+ * Configuration for a destination chain.
54
+ *
55
+ * Contains fee calculation parameters specific to each destination endpoint.
56
+ */
57
+ export interface DstConfig {
58
+ /**
59
+ * Minimum fee margin in USD (scaled by native decimals rate).
60
+ */
61
+ floor_margin_usd: u128;
62
+ /**
63
+ * Gas for verification on the destination chain.
64
+ */
65
+ gas: u128;
66
+ /**
67
+ * Fee multiplier in basis points (10000 = 100%).
68
+ * If 0, the default multiplier from worker config is used.
69
+ */
70
+ multiplier_bps: u32;
71
+ }
72
+
73
+
74
+ /**
75
+ * Parameter for setting destination chain configuration.
76
+ */
77
+ export interface DstConfigParam {
78
+ /**
79
+ * The configuration for this destination.
80
+ */
81
+ config: DstConfig;
82
+ /**
83
+ * The destination endpoint ID.
84
+ */
85
+ dst_eid: u32;
86
+ }
87
+
88
+
89
+ /**
90
+ * Represents a single contract invocation for multisig authorization.
91
+ *
92
+ * Used in `hash_call_data` to compute the hash that signers sign over.
93
+ */
94
+ export interface Call {
95
+ /**
96
+ * Function arguments.
97
+ */
98
+ args: Array<any>;
99
+ /**
100
+ * Function name to invoke.
101
+ */
102
+ func: string;
103
+ /**
104
+ * Target contract address.
105
+ */
106
+ to: string;
107
+ }
108
+
109
+
110
+ /**
111
+ * Authentication data for DVN contract transactions.
112
+ *
113
+ * This struct is used with Soroban's custom account interface to authorize
114
+ * transactions through a combination of admin signature and multisig quorum.
115
+ */
116
+ export interface TransactionAuthData {
117
+ /**
118
+ * Expiration timestamp (ledger time) after which this auth is invalid.
119
+ */
120
+ expiration: u64;
121
+ /**
122
+ * Entity submitting the transaction (admin, or permissionless).
123
+ */
124
+ sender: Sender;
125
+ /**
126
+ * Signatures from multisig signers (secp256k1, 65 bytes each).
127
+ */
128
+ signatures: Array<Buffer>;
129
+ /**
130
+ * Verifier ID - must match the DVN's configured VID.
131
+ */
132
+ vid: u32;
133
+ }
134
+
135
+ export type Sender = {tag: "None", values: void} | {tag: "Admin", values: readonly [Buffer, Buffer]};
136
+
137
+ export type DvnStorage = {tag: "Signers", values: void} | {tag: "Threshold", values: void} | {tag: "Vid", values: void} | {tag: "DstConfig", values: readonly [u32]} | {tag: "UsedHash", values: readonly [Buffer]};
138
+
139
+ export const EndpointError = {
140
+ 1: {message:"AlreadyRegistered"},
141
+ 2: {message:"ComposeExists"},
142
+ 3: {message:"ComposeNotFound"},
143
+ 4: {message:"DefaultReceiveLibUnavailable"},
144
+ 5: {message:"DefaultSendLibUnavailable"},
145
+ 6: {message:"InsufficientNativeFee"},
146
+ 7: {message:"InsufficientZROFee"},
147
+ 8: {message:"InvalidExpiry"},
148
+ 9: {message:"InvalidIndex"},
149
+ 10: {message:"InvalidNonce"},
150
+ 11: {message:"InvalidPayloadHash"},
151
+ 12: {message:"InvalidReceiveLibrary"},
152
+ 13: {message:"OnlyNonDefaultLib"},
153
+ 14: {message:"OnlyReceiveLib"},
154
+ 15: {message:"OnlyRegisteredLib"},
155
+ 16: {message:"OnlySendLib"},
156
+ 17: {message:"PathNotInitializable"},
157
+ 18: {message:"PathNotVerifiable"},
158
+ 19: {message:"PayloadHashNotFound"},
159
+ 20: {message:"SameValue"},
160
+ 21: {message:"Unauthorized"},
161
+ 22: {message:"UnsupportedEid"},
162
+ 23: {message:"ZeroZROFee"},
163
+ 24: {message:"ZROUnavailable"}
164
+ }
165
+
166
+
167
+
168
+
169
+
170
+
171
+
172
+
173
+
174
+
175
+
176
+
177
+
178
+
179
+
180
+
181
+
182
+
183
+
184
+
185
+
186
+ /**
187
+ * Parameters for sending a cross-chain message.
188
+ */
189
+ export interface MessagingParams {
190
+ /**
191
+ * Destination endpoint ID (chain identifier).
192
+ */
193
+ dst_eid: u32;
194
+ /**
195
+ * The message payload to send.
196
+ */
197
+ message: Buffer;
198
+ /**
199
+ * Encoded executor and DVN options.
200
+ */
201
+ options: Buffer;
202
+ /**
203
+ * Whether to pay fees in ZRO token instead of native token.
204
+ */
205
+ pay_in_zro: boolean;
206
+ /**
207
+ * Receiver address on the destination chain (32 bytes).
208
+ */
209
+ receiver: Buffer;
210
+ }
211
+
212
+
213
+ /**
214
+ * Source message information identifying where a cross-chain message came from.
215
+ */
216
+ export interface Origin {
217
+ /**
218
+ * Nonce for this pathway.
219
+ */
220
+ nonce: u64;
221
+ /**
222
+ * Sender address on the source chain (32 bytes).
223
+ */
224
+ sender: Buffer;
225
+ /**
226
+ * Source endpoint ID (chain identifier).
227
+ */
228
+ src_eid: u32;
229
+ }
230
+
231
+
232
+ /**
233
+ * Fee structure for cross-chain messaging.
234
+ */
235
+ export interface MessagingFee {
236
+ /**
237
+ * Fee paid in native token (XLM).
238
+ */
239
+ native_fee: i128;
240
+ /**
241
+ * Fee paid in ZRO token (LayerZero token).
242
+ */
243
+ zro_fee: i128;
244
+ }
245
+
246
+
247
+ /**
248
+ * Receipt returned after successfully sending a cross-chain message.
249
+ */
250
+ export interface MessagingReceipt {
251
+ /**
252
+ * The fees charged for sending the message.
253
+ */
254
+ fee: MessagingFee;
255
+ /**
256
+ * Globally unique identifier for the message.
257
+ */
258
+ guid: Buffer;
259
+ /**
260
+ * The outbound nonce for this pathway.
261
+ */
262
+ nonce: u64;
263
+ }
264
+
265
+ /**
266
+ * Type of message library indicating supported operations.
267
+ */
268
+ export type MessageLibType = {tag: "Send", values: void} | {tag: "Receive", values: void} | {tag: "SendAndReceive", values: void};
269
+
270
+
271
+ /**
272
+ * Version information for a message library.
273
+ *
274
+ * Note: `minor` and `endpoint_version` use `u32` instead of `u8` because Stellar does not
275
+ * support `u8` types in contract interface functions.
276
+ */
277
+ export interface MessageLibVersion {
278
+ /**
279
+ * Endpoint version (should not exceed u8::MAX = 255).
280
+ */
281
+ endpoint_version: u32;
282
+ /**
283
+ * Major version number.
284
+ */
285
+ major: u64;
286
+ /**
287
+ * Minor version number (should not exceed u8::MAX = 255).
288
+ */
289
+ minor: u32;
290
+ }
291
+
292
+
293
+ /**
294
+ * Timeout configuration for receive library transitions.
295
+ */
296
+ export interface Timeout {
297
+ /**
298
+ * Unix timestamp when the timeout expires.
299
+ */
300
+ expiry: u64;
301
+ /**
302
+ * The new library address to transition to.
303
+ */
304
+ lib: string;
305
+ }
306
+
307
+
308
+ /**
309
+ * Parameters for setting message library configuration.
310
+ */
311
+ export interface SetConfigParam {
312
+ /**
313
+ * XDR-encoded configuration data.
314
+ */
315
+ config: Buffer;
316
+ /**
317
+ * The type of configuration (e.g., executor, ULN).
318
+ */
319
+ config_type: u32;
320
+ /**
321
+ * The endpoint ID this config applies to.
322
+ */
323
+ eid: u32;
324
+ }
325
+
326
+
327
+ /**
328
+ * Resolved library information with default status.
329
+ */
330
+ export interface ResolvedLibrary {
331
+ /**
332
+ * Whether this is the default library (true) or OApp-specific (false).
333
+ */
334
+ is_default: boolean;
335
+ /**
336
+ * The resolved library address.
337
+ */
338
+ lib: string;
339
+ }
340
+
341
+
342
+ /**
343
+ * Outbound packet containing all information for cross-chain transmission.
344
+ */
345
+ export interface OutboundPacket {
346
+ /**
347
+ * Destination endpoint ID.
348
+ */
349
+ dst_eid: u32;
350
+ /**
351
+ * Globally unique identifier for this message.
352
+ */
353
+ guid: Buffer;
354
+ /**
355
+ * The message payload.
356
+ */
357
+ message: Buffer;
358
+ /**
359
+ * Outbound nonce for this pathway.
360
+ */
361
+ nonce: u64;
362
+ /**
363
+ * Receiver address on destination chain (32 bytes).
364
+ */
365
+ receiver: Buffer;
366
+ /**
367
+ * Sender address on source chain.
368
+ */
369
+ sender: string;
370
+ /**
371
+ * Source endpoint ID.
372
+ */
373
+ src_eid: u32;
374
+ }
375
+
376
+
377
+ /**
378
+ * A fee recipient with the amount to be paid.
379
+ */
380
+ export interface FeeRecipient {
381
+ /**
382
+ * Amount of fee to pay.
383
+ */
384
+ amount: i128;
385
+ /**
386
+ * The address to send the fee to.
387
+ */
388
+ to: string;
389
+ }
390
+
391
+
392
+ /**
393
+ * Result of send operation containing fees and encoded packet.
394
+ */
395
+ export interface FeesAndPacket {
396
+ /**
397
+ * The encoded packet ready for transmission.
398
+ */
399
+ encoded_packet: Buffer;
400
+ /**
401
+ * List of native token fee recipients (executor, DVNs, treasury).
402
+ */
403
+ native_fee_recipients: Array<FeeRecipient>;
404
+ /**
405
+ * List of ZRO token fee recipients (treasury).
406
+ */
407
+ zro_fee_recipients: Array<FeeRecipient>;
408
+ }
409
+
410
+ export const PacketCodecV1Error = {
411
+ 1001: {message:"InvalidPacketHeader"},
412
+ 1002: {message:"InvalidPacketVersion"}
413
+ }
414
+
415
+ export const WorkerOptionsError = {
416
+ 1101: {message:"InvalidBytesLength"},
417
+ 1102: {message:"InvalidLegacyOptionsType1"},
418
+ 1103: {message:"InvalidLegacyOptionsType2"},
419
+ 1104: {message:"InvalidOptionType"},
420
+ 1105: {message:"InvalidOptions"},
421
+ 1106: {message:"InvalidWorkerId"},
422
+ 1107: {message:"LegacyOptionsType1GasOverflow"},
423
+ 1108: {message:"LegacyOptionsType2AmountOverflow"},
424
+ 1109: {message:"LegacyOptionsType2GasOverflow"}
425
+ }
426
+
427
+ export const BufferReaderError = {
428
+ 1000: {message:"InvalidLength"},
429
+ 1001: {message:"InvalidAddressPayload"}
430
+ }
431
+
432
+ export const BufferWriterError = {
433
+ 1100: {message:"InvalidAddressPayload"}
434
+ }
435
+
436
+ export const TtlConfigurableError = {
437
+ 1200: {message:"InvalidTtlConfig"},
438
+ 1201: {message:"TtlConfigFrozen"},
439
+ 1202: {message:"TtlConfigAlreadyFrozen"}
440
+ }
441
+
442
+ export const OwnableError = {
443
+ 1300: {message:"OwnerAlreadySet"},
444
+ 1301: {message:"OwnerNotSet"}
445
+ }
446
+
447
+ export const BytesExtError = {
448
+ 1400: {message:"LengthMismatch"}
449
+ }
450
+
451
+ export const UpgradeableError = {
452
+ 1500: {message:"MigrationNotAllowed"}
453
+ }
454
+
455
+
456
+
457
+ export type OwnableStorage = {tag: "Owner", values: void};
458
+
459
+
460
+ /**
461
+ * TTL configuration: threshold (when to extend) and extend_to (target TTL).
462
+ */
463
+ export interface TtlConfig {
464
+ /**
465
+ * Target TTL after extension (in ledgers).
466
+ */
467
+ extend_to: u32;
468
+ /**
469
+ * TTL threshold that triggers extension (in ledgers).
470
+ */
471
+ threshold: u32;
472
+ }
473
+
474
+
475
+
476
+ export type TtlConfigStorage = {tag: "Frozen", values: void} | {tag: "Instance", values: void} | {tag: "Persistent", values: void};
477
+
478
+ export type UpgradeableStorage = {tag: "Migrating", values: void};
479
+
480
+ export const WorkerError = {
481
+ 1200: {message:"AdminAlreadyExists"},
482
+ 1201: {message:"AdminNotFound"},
483
+ 1202: {message:"AlreadyOnAllowlist"},
484
+ 1203: {message:"AlreadyOnDenylist"},
485
+ 1204: {message:"AttemptingToRemoveOnlyAdmin"},
486
+ 1205: {message:"DepositAddressNotSet"},
487
+ 1206: {message:"MessageLibAlreadySupported"},
488
+ 1207: {message:"MessageLibNotSupported"},
489
+ 1208: {message:"NoAdminsProvided"},
490
+ 1209: {message:"NotAllowed"},
491
+ 1210: {message:"NotOnAllowlist"},
492
+ 1211: {message:"NotOnDenylist"},
493
+ 1212: {message:"PauseStatusUnchanged"},
494
+ 1213: {message:"PriceFeedNotSet"},
495
+ 1214: {message:"ReInitialize"},
496
+ 1215: {message:"Unauthorized"},
497
+ 1216: {message:"UnsupportedMessageLib"},
498
+ 1217: {message:"WorkerFeeLibNotSet"},
499
+ 1218: {message:"WorkerIsPaused"}
500
+ }
501
+
502
+
503
+
504
+
505
+
506
+
507
+
508
+
509
+
510
+
511
+
512
+
513
+
514
+ /**
515
+ * Parameters for DVN fee calculation.
516
+ *
517
+ * Contains all inputs needed by the fee library to calculate verification fees
518
+ * for cross-chain messages. Includes message parameters, common configuration,
519
+ * and destination-specific settings.
520
+ */
521
+ export interface DvnFeeParams {
522
+ /**
523
+ * Number of block confirmations required.
524
+ */
525
+ confirmations: u64;
526
+ /**
527
+ * Default fee multiplier in basis points (used if no dst-specific multiplier).
528
+ */
529
+ default_multiplier_bps: u32;
530
+ /**
531
+ * Destination endpoint ID (chain identifier).
532
+ */
533
+ dst_eid: u32;
534
+ /**
535
+ * Minimum fee margin in USD (scaled).
536
+ */
537
+ floor_margin_usd: u128;
538
+ /**
539
+ * ============================================================================================
540
+ * Destination-Specific Configuration
541
+ * ============================================================================================
542
+ * Gas estimate for verification on destination chain.
543
+ */
544
+ gas: u128;
545
+ /**
546
+ * Destination-specific fee multiplier in basis points (0 = use default).
547
+ */
548
+ multiplier_bps: u32;
549
+ /**
550
+ * DVN options
551
+ */
552
+ options: Buffer;
553
+ /**
554
+ * ============================================================================================
555
+ * Common Configuration
556
+ * ============================================================================================
557
+ * Price feed contract address for gas price and exchange rate data.
558
+ */
559
+ price_feed: string;
560
+ /**
561
+ * Number of required signatures (quorum).
562
+ */
563
+ quorum: u32;
564
+ /**
565
+ * ============================================================================================
566
+ * Message Parameters
567
+ * ============================================================================================
568
+ * The OApp sender address.
569
+ */
570
+ sender: string;
571
+ }
572
+
573
+
574
+ /**
575
+ * Parameters for executor fee calculation.
576
+ *
577
+ * Contains all inputs needed by the fee library to calculate execution fees
578
+ * for cross-chain messages. Includes message parameters, common configuration,
579
+ * and destination-specific settings.
580
+ */
581
+ export interface FeeParams {
582
+ /**
583
+ * Size of the message calldata in bytes.
584
+ */
585
+ calldata_size: u32;
586
+ /**
587
+ * Default fee multiplier in basis points (used if no dst-specific multiplier).
588
+ */
589
+ default_multiplier_bps: u32;
590
+ /**
591
+ * Destination endpoint ID (chain identifier).
592
+ */
593
+ dst_eid: u32;
594
+ /**
595
+ * Minimum fee margin in USD (scaled).
596
+ */
597
+ floor_margin_usd: u128;
598
+ /**
599
+ * Base gas for each lzCompose call on destination chain.
600
+ */
601
+ lz_compose_base_gas: u64;
602
+ /**
603
+ * ============================================================================================
604
+ * Destination-Specific Configuration
605
+ * ============================================================================================
606
+ * Base gas for lzReceive execution on destination chain.
607
+ */
608
+ lz_receive_base_gas: u64;
609
+ /**
610
+ * Destination-specific fee multiplier in basis points (0 = use default).
611
+ */
612
+ multiplier_bps: u32;
613
+ /**
614
+ * Maximum native token value that can be sent.
615
+ */
616
+ native_cap: u128;
617
+ /**
618
+ * Encoded executor options (lzReceive gas, lzCompose, nativeDrop, etc.).
619
+ */
620
+ options: Buffer;
621
+ /**
622
+ * ============================================================================================
623
+ * Common Configuration
624
+ * ============================================================================================
625
+ * Price feed contract address for gas price and exchange rate data.
626
+ */
627
+ price_feed: string;
628
+ /**
629
+ * ============================================================================================
630
+ * Message Parameters
631
+ * ============================================================================================
632
+ * The OApp sender address.
633
+ */
634
+ sender: string;
635
+ }
636
+
637
+
638
+ /**
639
+ * Gas price information for a destination endpoint.
640
+ *
641
+ * Contains the exchange rate and gas costs needed for cross-chain fee calculations.
642
+ */
643
+ export interface Price {
644
+ /**
645
+ * Gas cost per byte of calldata on the destination chain.
646
+ */
647
+ gas_per_byte: u32;
648
+ /**
649
+ * Gas price in the smallest unit (wei for EVM, stroops for Stellar).
650
+ */
651
+ gas_price_in_unit: u64;
652
+ /**
653
+ * Price ratio = (remote native token price / local native token price) * PRICE_RATIO_DENOMINATOR.
654
+ * Used to convert destination chain gas costs to source chain native token.
655
+ */
656
+ price_ratio: u128;
657
+ }
658
+
659
+
660
+ /**
661
+ * Fee estimation result with detailed breakdown.
662
+ *
663
+ * Contains the calculated fee and all intermediate values used in the calculation.
664
+ */
665
+ export interface FeeEstimate {
666
+ /**
667
+ * Source chain native token price in USD (scaled).
668
+ */
669
+ native_price_usd: u128;
670
+ /**
671
+ * Price ratio used for the calculation.
672
+ */
673
+ price_ratio: u128;
674
+ /**
675
+ * Denominator for the price ratio (typically 10^20).
676
+ */
677
+ price_ratio_denominator: u128;
678
+ /**
679
+ * Total gas fee in source chain native token units.
680
+ */
681
+ total_gas_fee: i128;
682
+ }
683
+
684
+ export type WorkerStorage = {tag: "Paused", values: void} | {tag: "DepositAddress", values: void} | {tag: "PriceFeed", values: void} | {tag: "WorkerFeeLib", values: void} | {tag: "DefaultMultiplierBps", values: void} | {tag: "SupportedOptionTypes", values: readonly [u32]} | {tag: "MessageLibs", values: void} | {tag: "Allowlist", values: readonly [string]} | {tag: "Denylist", values: readonly [string]} | {tag: "AllowlistSize", values: void} | {tag: "Admins", values: void};
685
+
686
+ export interface Client {
687
+ /**
688
+ * Construct and simulate a set_signer 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.
689
+ * Adds or removes a signer. Requires multisig approval.
690
+ */
691
+ set_signer: ({signer, active}: {signer: Buffer, active: boolean}, txnOptions?: {
692
+ /**
693
+ * The fee to pay for the transaction. Default: BASE_FEE
694
+ */
695
+ fee?: number;
696
+
697
+ /**
698
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
699
+ */
700
+ timeoutInSeconds?: number;
701
+
702
+ /**
703
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
704
+ */
705
+ simulate?: boolean;
706
+ }) => Promise<AssembledTransaction<null>>
707
+
708
+ /**
709
+ * Construct and simulate a set_threshold 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.
710
+ * Updates the signature threshold. Requires multisig approval.
711
+ */
712
+ set_threshold: ({threshold}: {threshold: u32}, txnOptions?: {
713
+ /**
714
+ * The fee to pay for the transaction. Default: BASE_FEE
715
+ */
716
+ fee?: number;
717
+
718
+ /**
719
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
720
+ */
721
+ timeoutInSeconds?: number;
722
+
723
+ /**
724
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
725
+ */
726
+ simulate?: boolean;
727
+ }) => Promise<AssembledTransaction<null>>
728
+
729
+ /**
730
+ * Construct and simulate a get_signers 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.
731
+ * Returns the list of all registered signers.
732
+ */
733
+ get_signers: (txnOptions?: {
734
+ /**
735
+ * The fee to pay for the transaction. Default: BASE_FEE
736
+ */
737
+ fee?: number;
738
+
739
+ /**
740
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
741
+ */
742
+ timeoutInSeconds?: number;
743
+
744
+ /**
745
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
746
+ */
747
+ simulate?: boolean;
748
+ }) => Promise<AssembledTransaction<Array<Buffer>>>
749
+
750
+ /**
751
+ * Construct and simulate a total_signers 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.
752
+ * Returns the total number of registered signers.
753
+ */
754
+ total_signers: (txnOptions?: {
755
+ /**
756
+ * The fee to pay for the transaction. Default: BASE_FEE
757
+ */
758
+ fee?: number;
759
+
760
+ /**
761
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
762
+ */
763
+ timeoutInSeconds?: number;
764
+
765
+ /**
766
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
767
+ */
768
+ simulate?: boolean;
769
+ }) => Promise<AssembledTransaction<u32>>
770
+
771
+ /**
772
+ * Construct and simulate a is_signer 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.
773
+ * Checks if an address is a registered signer.
774
+ */
775
+ is_signer: ({signer}: {signer: Buffer}, txnOptions?: {
776
+ /**
777
+ * The fee to pay for the transaction. Default: BASE_FEE
778
+ */
779
+ fee?: number;
780
+
781
+ /**
782
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
783
+ */
784
+ timeoutInSeconds?: number;
785
+
786
+ /**
787
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
788
+ */
789
+ simulate?: boolean;
790
+ }) => Promise<AssembledTransaction<boolean>>
791
+
792
+ /**
793
+ * Construct and simulate a threshold 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
+ * Returns the current signature threshold.
795
+ */
796
+ threshold: (txnOptions?: {
797
+ /**
798
+ * The fee to pay for the transaction. Default: BASE_FEE
799
+ */
800
+ fee?: number;
801
+
802
+ /**
803
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
804
+ */
805
+ timeoutInSeconds?: number;
806
+
807
+ /**
808
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
809
+ */
810
+ simulate?: boolean;
811
+ }) => Promise<AssembledTransaction<u32>>
812
+
813
+ /**
814
+ * Construct and simulate a verify_signatures 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.
815
+ * Verifies signatures against the current threshold.
816
+ */
817
+ verify_signatures: ({hash, signatures}: {hash: Buffer, signatures: Array<Buffer>}, txnOptions?: {
818
+ /**
819
+ * The fee to pay for the transaction. Default: BASE_FEE
820
+ */
821
+ fee?: number;
822
+
823
+ /**
824
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
825
+ */
826
+ timeoutInSeconds?: number;
827
+
828
+ /**
829
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
830
+ */
831
+ simulate?: boolean;
832
+ }) => Promise<AssembledTransaction<null>>
833
+
834
+ /**
835
+ * Construct and simulate a verify_n_signatures 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.
836
+ * Verifies that at least `threshold` valid signatures exist for the given hash.
837
+ *
838
+ * Signatures must be:
839
+ * - From registered signers
840
+ * - Sorted by signer address (ascending, no duplicates)
841
+ */
842
+ verify_n_signatures: ({hash, signatures, threshold}: {hash: Buffer, signatures: Array<Buffer>, threshold: u32}, txnOptions?: {
843
+ /**
844
+ * The fee to pay for the transaction. Default: BASE_FEE
845
+ */
846
+ fee?: number;
847
+
848
+ /**
849
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
850
+ */
851
+ timeoutInSeconds?: number;
852
+
853
+ /**
854
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
855
+ */
856
+ simulate?: boolean;
857
+ }) => Promise<AssembledTransaction<null>>
858
+
859
+ /**
860
+ * Construct and simulate a set_paused 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.
861
+ * Sets the paused state of the worker.
862
+ *
863
+ * When paused, the worker will reject new job assignments (e.g., assign_job, get_fee).
864
+ * Existing jobs in progress are not affected.
865
+ *
866
+ * # Arguments
867
+ * * `paused` - `true` to pause, `false` to unpause
868
+ */
869
+ set_paused: ({paused}: {paused: boolean}, txnOptions?: {
870
+ /**
871
+ * The fee to pay for the transaction. Default: BASE_FEE
872
+ */
873
+ fee?: number;
874
+
875
+ /**
876
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
877
+ */
878
+ timeoutInSeconds?: number;
879
+
880
+ /**
881
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
882
+ */
883
+ simulate?: boolean;
884
+ }) => Promise<AssembledTransaction<null>>
885
+
886
+ /**
887
+ * Construct and simulate a set_supported_message_lib 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.
888
+ * Sets whether a message library is supported by this worker.
889
+ *
890
+ * Message libraries (e.g., ULN302) call workers to assign jobs. Only supported
891
+ * libraries can interact with this worker.
892
+ *
893
+ * # Arguments
894
+ * * `message_lib` - The message library contract address
895
+ * * `supported` - `true` to add support, `false` to remove support
896
+ */
897
+ set_supported_message_lib: ({message_lib, supported}: {message_lib: string, supported: boolean}, txnOptions?: {
898
+ /**
899
+ * The fee to pay for the transaction. Default: BASE_FEE
900
+ */
901
+ fee?: number;
902
+
903
+ /**
904
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
905
+ */
906
+ timeoutInSeconds?: number;
907
+
908
+ /**
909
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
910
+ */
911
+ simulate?: boolean;
912
+ }) => Promise<AssembledTransaction<null>>
913
+
914
+ /**
915
+ * Construct and simulate a set_allowlist 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.
916
+ * Sets allowlist status for an OApp address.
917
+ *
918
+ * When the allowlist is empty, all OApps are allowed (unless on denylist).
919
+ * When the allowlist is not empty, only allowlisted OApps are allowed.
920
+ * Denylist always takes precedence over allowlist.
921
+ *
922
+ * # Arguments
923
+ * * `oapp` - The OApp contract address
924
+ * * `allowed` - `true` to add to allowlist, `false` to remove
925
+ */
926
+ set_allowlist: ({oapp, allowed}: {oapp: string, allowed: boolean}, txnOptions?: {
927
+ /**
928
+ * The fee to pay for the transaction. Default: BASE_FEE
929
+ */
930
+ fee?: number;
931
+
932
+ /**
933
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
934
+ */
935
+ timeoutInSeconds?: number;
936
+
937
+ /**
938
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
939
+ */
940
+ simulate?: boolean;
941
+ }) => Promise<AssembledTransaction<null>>
942
+
943
+ /**
944
+ * Construct and simulate a set_denylist 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.
945
+ * Sets denylist status for an OApp address.
946
+ *
947
+ * Denylisted OApps are blocked from using this worker, even if they're on
948
+ * the allowlist (denylist takes precedence).
949
+ *
950
+ * # Arguments
951
+ * * `oapp` - The OApp contract address
952
+ * * `denied` - `true` to add to denylist, `false` to remove
953
+ */
954
+ set_denylist: ({oapp, denied}: {oapp: string, denied: boolean}, txnOptions?: {
955
+ /**
956
+ * The fee to pay for the transaction. Default: BASE_FEE
957
+ */
958
+ fee?: number;
959
+
960
+ /**
961
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
962
+ */
963
+ timeoutInSeconds?: number;
964
+
965
+ /**
966
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
967
+ */
968
+ simulate?: boolean;
969
+ }) => Promise<AssembledTransaction<null>>
970
+
971
+ /**
972
+ * Construct and simulate a set_default_multiplier_bps 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.
973
+ * Sets the default fee multiplier in basis points.
974
+ *
975
+ * The multiplier is applied to base fees during fee calculation. Used when
976
+ * no destination-specific multiplier is configured.
977
+ *
978
+ * # Arguments
979
+ * * `admin` - Admin address (must provide authorization)
980
+ * * `multiplier_bps` - Multiplier in basis points (10000 = 1x, 12000 = 1.2x)
981
+ */
982
+ set_default_multiplier_bps: ({admin, multiplier_bps}: {admin: string, multiplier_bps: u32}, txnOptions?: {
983
+ /**
984
+ * The fee to pay for the transaction. Default: BASE_FEE
985
+ */
986
+ fee?: number;
987
+
988
+ /**
989
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
990
+ */
991
+ timeoutInSeconds?: number;
992
+
993
+ /**
994
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
995
+ */
996
+ simulate?: boolean;
997
+ }) => Promise<AssembledTransaction<null>>
998
+
999
+ /**
1000
+ * Construct and simulate a set_deposit_address 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.
1001
+ * Sets the deposit address where worker fees are collected.
1002
+ *
1003
+ * When jobs are assigned, fees are directed to this address.
1004
+ *
1005
+ * # Arguments
1006
+ * * `admin` - Admin address (must provide authorization)
1007
+ * * `deposit_address` - Address to receive collected fees
1008
+ */
1009
+ set_deposit_address: ({admin, deposit_address}: {admin: string, deposit_address: string}, txnOptions?: {
1010
+ /**
1011
+ * The fee to pay for the transaction. Default: BASE_FEE
1012
+ */
1013
+ fee?: number;
1014
+
1015
+ /**
1016
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
1017
+ */
1018
+ timeoutInSeconds?: number;
1019
+
1020
+ /**
1021
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
1022
+ */
1023
+ simulate?: boolean;
1024
+ }) => Promise<AssembledTransaction<null>>
1025
+
1026
+ /**
1027
+ * Construct and simulate a set_supported_option_types 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.
1028
+ * Sets supported executor option types for a destination endpoint.
1029
+ *
1030
+ * # Arguments
1031
+ * * `admin` - Admin address (must provide authorization)
1032
+ * * `eid` - Destination endpoint ID (chain identifier)
1033
+ * * `option_types` - Encoded supported option types
1034
+ */
1035
+ set_supported_option_types: ({admin, eid, option_types}: {admin: string, eid: u32, option_types: Buffer}, txnOptions?: {
1036
+ /**
1037
+ * The fee to pay for the transaction. Default: BASE_FEE
1038
+ */
1039
+ fee?: number;
1040
+
1041
+ /**
1042
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
1043
+ */
1044
+ timeoutInSeconds?: number;
1045
+
1046
+ /**
1047
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
1048
+ */
1049
+ simulate?: boolean;
1050
+ }) => Promise<AssembledTransaction<null>>
1051
+
1052
+ /**
1053
+ * Construct and simulate a set_worker_fee_lib 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.
1054
+ * Sets the worker fee library contract address.
1055
+ *
1056
+ * The fee library calculates fees based on executor options and price feed data.
1057
+ *
1058
+ * # Arguments
1059
+ * * `admin` - Admin address (must provide authorization)
1060
+ * * `worker_fee_lib` - Fee library contract address implementing `IExecutorFeeLib`
1061
+ */
1062
+ set_worker_fee_lib: ({admin, worker_fee_lib}: {admin: string, worker_fee_lib: string}, txnOptions?: {
1063
+ /**
1064
+ * The fee to pay for the transaction. Default: BASE_FEE
1065
+ */
1066
+ fee?: number;
1067
+
1068
+ /**
1069
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
1070
+ */
1071
+ timeoutInSeconds?: number;
1072
+
1073
+ /**
1074
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
1075
+ */
1076
+ simulate?: boolean;
1077
+ }) => Promise<AssembledTransaction<null>>
1078
+
1079
+ /**
1080
+ * Construct and simulate a set_price_feed 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.
1081
+ * Sets the price feed contract address.
1082
+ *
1083
+ * The price feed provides gas prices and exchange rates for cross-chain
1084
+ * fee calculations.
1085
+ *
1086
+ * # Arguments
1087
+ * * `admin` - Admin address (must provide authorization)
1088
+ * * `price_feed` - Price feed contract address implementing `ILayerZeroPriceFeed`
1089
+ */
1090
+ set_price_feed: ({admin, price_feed}: {admin: string, price_feed: string}, txnOptions?: {
1091
+ /**
1092
+ * The fee to pay for the transaction. Default: BASE_FEE
1093
+ */
1094
+ fee?: number;
1095
+
1096
+ /**
1097
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
1098
+ */
1099
+ timeoutInSeconds?: number;
1100
+
1101
+ /**
1102
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
1103
+ */
1104
+ simulate?: boolean;
1105
+ }) => Promise<AssembledTransaction<null>>
1106
+
1107
+ /**
1108
+ * Construct and simulate a is_admin 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.
1109
+ * Returns whether an address is an admin.
1110
+ *
1111
+ * # Arguments
1112
+ * * `admin` - The address to check
1113
+ */
1114
+ is_admin: ({admin}: {admin: string}, txnOptions?: {
1115
+ /**
1116
+ * The fee to pay for the transaction. Default: BASE_FEE
1117
+ */
1118
+ fee?: number;
1119
+
1120
+ /**
1121
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
1122
+ */
1123
+ timeoutInSeconds?: number;
1124
+
1125
+ /**
1126
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
1127
+ */
1128
+ simulate?: boolean;
1129
+ }) => Promise<AssembledTransaction<boolean>>
1130
+
1131
+ /**
1132
+ * Construct and simulate a admins 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.
1133
+ * Returns all admin addresses.
1134
+ */
1135
+ admins: (txnOptions?: {
1136
+ /**
1137
+ * The fee to pay for the transaction. Default: BASE_FEE
1138
+ */
1139
+ fee?: number;
1140
+
1141
+ /**
1142
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
1143
+ */
1144
+ timeoutInSeconds?: number;
1145
+
1146
+ /**
1147
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
1148
+ */
1149
+ simulate?: boolean;
1150
+ }) => Promise<AssembledTransaction<Array<string>>>
1151
+
1152
+ /**
1153
+ * Construct and simulate a paused 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.
1154
+ * Returns whether the worker is paused.
1155
+ */
1156
+ paused: (txnOptions?: {
1157
+ /**
1158
+ * The fee to pay for the transaction. Default: BASE_FEE
1159
+ */
1160
+ fee?: number;
1161
+
1162
+ /**
1163
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
1164
+ */
1165
+ timeoutInSeconds?: number;
1166
+
1167
+ /**
1168
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
1169
+ */
1170
+ simulate?: boolean;
1171
+ }) => Promise<AssembledTransaction<boolean>>
1172
+
1173
+ /**
1174
+ * Construct and simulate a is_supported_message_lib 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.
1175
+ * Returns whether a message library is supported.
1176
+ *
1177
+ * # Arguments
1178
+ * * `message_lib` - Message library contract address
1179
+ */
1180
+ is_supported_message_lib: ({message_lib}: {message_lib: string}, txnOptions?: {
1181
+ /**
1182
+ * The fee to pay for the transaction. Default: BASE_FEE
1183
+ */
1184
+ fee?: number;
1185
+
1186
+ /**
1187
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
1188
+ */
1189
+ timeoutInSeconds?: number;
1190
+
1191
+ /**
1192
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
1193
+ */
1194
+ simulate?: boolean;
1195
+ }) => Promise<AssembledTransaction<boolean>>
1196
+
1197
+ /**
1198
+ * Construct and simulate a message_libs 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.
1199
+ * Returns all supported message library addresses.
1200
+ *
1201
+ * # Returns
1202
+ * Vector of supported message library contract addresses.
1203
+ */
1204
+ message_libs: (txnOptions?: {
1205
+ /**
1206
+ * The fee to pay for the transaction. Default: BASE_FEE
1207
+ */
1208
+ fee?: number;
1209
+
1210
+ /**
1211
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
1212
+ */
1213
+ timeoutInSeconds?: number;
1214
+
1215
+ /**
1216
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
1217
+ */
1218
+ simulate?: boolean;
1219
+ }) => Promise<AssembledTransaction<Array<string>>>
1220
+
1221
+ /**
1222
+ * Construct and simulate a is_on_allowlist 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.
1223
+ * Returns whether an OApp is on the allowlist.
1224
+ *
1225
+ * # Arguments
1226
+ * * `oapp` - OApp contract address
1227
+ */
1228
+ is_on_allowlist: ({oapp}: {oapp: string}, txnOptions?: {
1229
+ /**
1230
+ * The fee to pay for the transaction. Default: BASE_FEE
1231
+ */
1232
+ fee?: number;
1233
+
1234
+ /**
1235
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
1236
+ */
1237
+ timeoutInSeconds?: number;
1238
+
1239
+ /**
1240
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
1241
+ */
1242
+ simulate?: boolean;
1243
+ }) => Promise<AssembledTransaction<boolean>>
1244
+
1245
+ /**
1246
+ * Construct and simulate a is_on_denylist 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.
1247
+ * Returns whether an OApp is on the denylist.
1248
+ *
1249
+ * # Arguments
1250
+ * * `oapp` - OApp contract address
1251
+ */
1252
+ is_on_denylist: ({oapp}: {oapp: string}, txnOptions?: {
1253
+ /**
1254
+ * The fee to pay for the transaction. Default: BASE_FEE
1255
+ */
1256
+ fee?: number;
1257
+
1258
+ /**
1259
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
1260
+ */
1261
+ timeoutInSeconds?: number;
1262
+
1263
+ /**
1264
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
1265
+ */
1266
+ simulate?: boolean;
1267
+ }) => Promise<AssembledTransaction<boolean>>
1268
+
1269
+ /**
1270
+ * Construct and simulate a has_acl 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.
1271
+ * Returns whether an OApp has access control list (ACL) permission.
1272
+ *
1273
+ * ACL evaluation order:
1274
+ * 1. If on denylist → denied
1275
+ * 2. If allowlist is empty OR on allowlist → allowed
1276
+ * 3. Otherwise → denied
1277
+ *
1278
+ * # Arguments
1279
+ * * `sender` - OApp contract address to check
1280
+ */
1281
+ has_acl: ({sender}: {sender: string}, txnOptions?: {
1282
+ /**
1283
+ * The fee to pay for the transaction. Default: BASE_FEE
1284
+ */
1285
+ fee?: number;
1286
+
1287
+ /**
1288
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
1289
+ */
1290
+ timeoutInSeconds?: number;
1291
+
1292
+ /**
1293
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
1294
+ */
1295
+ simulate?: boolean;
1296
+ }) => Promise<AssembledTransaction<boolean>>
1297
+
1298
+ /**
1299
+ * Construct and simulate a allowlist_size 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.
1300
+ * Returns the number of addresses on the allowlist.
1301
+ */
1302
+ allowlist_size: (txnOptions?: {
1303
+ /**
1304
+ * The fee to pay for the transaction. Default: BASE_FEE
1305
+ */
1306
+ fee?: number;
1307
+
1308
+ /**
1309
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
1310
+ */
1311
+ timeoutInSeconds?: number;
1312
+
1313
+ /**
1314
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
1315
+ */
1316
+ simulate?: boolean;
1317
+ }) => Promise<AssembledTransaction<u32>>
1318
+
1319
+ /**
1320
+ * Construct and simulate a default_multiplier_bps 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.
1321
+ * Returns the default fee multiplier in basis points.
1322
+ */
1323
+ default_multiplier_bps: (txnOptions?: {
1324
+ /**
1325
+ * The fee to pay for the transaction. Default: BASE_FEE
1326
+ */
1327
+ fee?: number;
1328
+
1329
+ /**
1330
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
1331
+ */
1332
+ timeoutInSeconds?: number;
1333
+
1334
+ /**
1335
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
1336
+ */
1337
+ simulate?: boolean;
1338
+ }) => Promise<AssembledTransaction<u32>>
1339
+
1340
+ /**
1341
+ * Construct and simulate a deposit_address 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.
1342
+ * Returns the deposit address where fees are collected.
1343
+ */
1344
+ deposit_address: (txnOptions?: {
1345
+ /**
1346
+ * The fee to pay for the transaction. Default: BASE_FEE
1347
+ */
1348
+ fee?: number;
1349
+
1350
+ /**
1351
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
1352
+ */
1353
+ timeoutInSeconds?: number;
1354
+
1355
+ /**
1356
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
1357
+ */
1358
+ simulate?: boolean;
1359
+ }) => Promise<AssembledTransaction<string>>
1360
+
1361
+ /**
1362
+ * Construct and simulate a price_feed 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.
1363
+ * Returns the price feed contract address.
1364
+ */
1365
+ price_feed: (txnOptions?: {
1366
+ /**
1367
+ * The fee to pay for the transaction. Default: BASE_FEE
1368
+ */
1369
+ fee?: number;
1370
+
1371
+ /**
1372
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
1373
+ */
1374
+ timeoutInSeconds?: number;
1375
+
1376
+ /**
1377
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
1378
+ */
1379
+ simulate?: boolean;
1380
+ }) => Promise<AssembledTransaction<string>>
1381
+
1382
+ /**
1383
+ * Construct and simulate a get_supported_option_types 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.
1384
+ * Returns supported option types for a destination endpoint.
1385
+ *
1386
+ * # Arguments
1387
+ * * `eid` - Destination endpoint ID (chain identifier)
1388
+ */
1389
+ get_supported_option_types: ({eid}: {eid: u32}, txnOptions?: {
1390
+ /**
1391
+ * The fee to pay for the transaction. Default: BASE_FEE
1392
+ */
1393
+ fee?: number;
1394
+
1395
+ /**
1396
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
1397
+ */
1398
+ timeoutInSeconds?: number;
1399
+
1400
+ /**
1401
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
1402
+ */
1403
+ simulate?: boolean;
1404
+ }) => Promise<AssembledTransaction<Option<Buffer>>>
1405
+
1406
+ /**
1407
+ * Construct and simulate a worker_fee_lib 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.
1408
+ * Returns the worker fee library contract address.
1409
+ */
1410
+ worker_fee_lib: (txnOptions?: {
1411
+ /**
1412
+ * The fee to pay for the transaction. Default: BASE_FEE
1413
+ */
1414
+ fee?: number;
1415
+
1416
+ /**
1417
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
1418
+ */
1419
+ timeoutInSeconds?: number;
1420
+
1421
+ /**
1422
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
1423
+ */
1424
+ simulate?: boolean;
1425
+ }) => Promise<AssembledTransaction<string>>
1426
+
1427
+ /**
1428
+ * Construct and simulate a get_fee 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.
1429
+ * Calculates the verification fee for a cross-chain message.
1430
+ *
1431
+ * Called by the send library to quote DVN fees before sending.
1432
+ */
1433
+ get_fee: ({send_lib, sender, dst_eid, packet_header, payload_hash, confirmations, options}: {send_lib: string, sender: string, dst_eid: u32, packet_header: Buffer, payload_hash: Buffer, confirmations: u64, options: Buffer}, txnOptions?: {
1434
+ /**
1435
+ * The fee to pay for the transaction. Default: BASE_FEE
1436
+ */
1437
+ fee?: number;
1438
+
1439
+ /**
1440
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
1441
+ */
1442
+ timeoutInSeconds?: number;
1443
+
1444
+ /**
1445
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
1446
+ */
1447
+ simulate?: boolean;
1448
+ }) => Promise<AssembledTransaction<i128>>
1449
+
1450
+ /**
1451
+ * Construct and simulate a assign_job 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.
1452
+ * Assigns a verification job to this DVN and returns fee payment info.
1453
+ *
1454
+ * Called by the send library when a message is sent. The DVN will later
1455
+ * verify the message on the destination chain.
1456
+ */
1457
+ assign_job: ({send_lib, sender, dst_eid, packet_header, payload_hash, confirmations, options}: {send_lib: string, sender: string, dst_eid: u32, packet_header: Buffer, payload_hash: Buffer, confirmations: u64, options: Buffer}, txnOptions?: {
1458
+ /**
1459
+ * The fee to pay for the transaction. Default: BASE_FEE
1460
+ */
1461
+ fee?: number;
1462
+
1463
+ /**
1464
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
1465
+ */
1466
+ timeoutInSeconds?: number;
1467
+
1468
+ /**
1469
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
1470
+ */
1471
+ simulate?: boolean;
1472
+ }) => Promise<AssembledTransaction<FeeRecipient>>
1473
+
1474
+ /**
1475
+ * Construct and simulate a set_dst_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.
1476
+ * Sets destination chain configurations. Requires admin authorization.
1477
+ */
1478
+ set_dst_config: ({admin, params}: {admin: string, params: Array<DstConfigParam>}, txnOptions?: {
1479
+ /**
1480
+ * The fee to pay for the transaction. Default: BASE_FEE
1481
+ */
1482
+ fee?: number;
1483
+
1484
+ /**
1485
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
1486
+ */
1487
+ timeoutInSeconds?: number;
1488
+
1489
+ /**
1490
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
1491
+ */
1492
+ simulate?: boolean;
1493
+ }) => Promise<AssembledTransaction<null>>
1494
+
1495
+ /**
1496
+ * Construct and simulate a dst_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.
1497
+ * Returns the destination configuration for a specific endpoint ID.
1498
+ */
1499
+ dst_config: ({dst_eid}: {dst_eid: u32}, txnOptions?: {
1500
+ /**
1501
+ * The fee to pay for the transaction. Default: BASE_FEE
1502
+ */
1503
+ fee?: number;
1504
+
1505
+ /**
1506
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
1507
+ */
1508
+ timeoutInSeconds?: number;
1509
+
1510
+ /**
1511
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
1512
+ */
1513
+ simulate?: boolean;
1514
+ }) => Promise<AssembledTransaction<Option<DstConfig>>>
1515
+
1516
+ /**
1517
+ * Construct and simulate a vid 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.
1518
+ * Returns the Verifier ID for this DVN.
1519
+ */
1520
+ vid: (txnOptions?: {
1521
+ /**
1522
+ * The fee to pay for the transaction. Default: BASE_FEE
1523
+ */
1524
+ fee?: number;
1525
+
1526
+ /**
1527
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
1528
+ */
1529
+ timeoutInSeconds?: number;
1530
+
1531
+ /**
1532
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
1533
+ */
1534
+ simulate?: boolean;
1535
+ }) => Promise<AssembledTransaction<u32>>
1536
+
1537
+ /**
1538
+ * Construct and simulate a hash_call_data 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.
1539
+ * Computes the hash of call data for multisig signing.
1540
+ *
1541
+ * Off-chain signers use this to compute the hash they need to sign.
1542
+ */
1543
+ hash_call_data: ({vid, expiration, calls}: {vid: u32, expiration: u64, calls: Array<Call>}, txnOptions?: {
1544
+ /**
1545
+ * The fee to pay for the transaction. Default: BASE_FEE
1546
+ */
1547
+ fee?: number;
1548
+
1549
+ /**
1550
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
1551
+ */
1552
+ timeoutInSeconds?: number;
1553
+
1554
+ /**
1555
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
1556
+ */
1557
+ simulate?: boolean;
1558
+ }) => Promise<AssembledTransaction<Buffer>>
1559
+
1560
+ /**
1561
+ * Construct and simulate a set_admin 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.
1562
+ * Sets admin status for an address. Can be called by an existing admin.
1563
+ *
1564
+ * This allows existing admins to add or remove other admins without going through
1565
+ * the owner/multisig path.
1566
+ *
1567
+ * # Arguments
1568
+ * * `caller` - The admin calling this function (must provide authorization)
1569
+ * * `admin` - The address to set admin status for
1570
+ * * `active` - `true` to add admin, `false` to remove
1571
+ */
1572
+ set_admin: ({caller, admin, active}: {caller: string, admin: string, active: boolean}, txnOptions?: {
1573
+ /**
1574
+ * The fee to pay for the transaction. Default: BASE_FEE
1575
+ */
1576
+ fee?: number;
1577
+
1578
+ /**
1579
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
1580
+ */
1581
+ timeoutInSeconds?: number;
1582
+
1583
+ /**
1584
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
1585
+ */
1586
+ simulate?: boolean;
1587
+ }) => Promise<AssembledTransaction<null>>
1588
+
1589
+ /**
1590
+ * Construct and simulate a quorum_change_admin 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.
1591
+ * Allows the quorum to add/remove admins without requiring an admin signature.
1592
+ *
1593
+ * This function bypasses the normal admin verification in `__check_auth`,
1594
+ * requiring only multisig quorum signatures. Must be called as a single
1595
+ * operation (cannot be bundled with other calls).
1596
+ *
1597
+ * # Arguments
1598
+ * * `admin` - The address to set admin status for
1599
+ * * `active` - `true` to add admin, `false` to remove
1600
+ */
1601
+ quorum_change_admin: ({admin, active}: {admin: string, active: boolean}, txnOptions?: {
1602
+ /**
1603
+ * The fee to pay for the transaction. Default: BASE_FEE
1604
+ */
1605
+ fee?: number;
1606
+
1607
+ /**
1608
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
1609
+ */
1610
+ timeoutInSeconds?: number;
1611
+
1612
+ /**
1613
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
1614
+ */
1615
+ simulate?: boolean;
1616
+ }) => Promise<AssembledTransaction<null>>
1617
+
1618
+ /**
1619
+ * Construct and simulate a upgrade 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.
1620
+ */
1621
+ upgrade: ({new_wasm_hash}: {new_wasm_hash: Buffer}, txnOptions?: {
1622
+ /**
1623
+ * The fee to pay for the transaction. Default: BASE_FEE
1624
+ */
1625
+ fee?: number;
1626
+
1627
+ /**
1628
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
1629
+ */
1630
+ timeoutInSeconds?: number;
1631
+
1632
+ /**
1633
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
1634
+ */
1635
+ simulate?: boolean;
1636
+ }) => Promise<AssembledTransaction<null>>
1637
+
1638
+ /**
1639
+ * Construct and simulate a migrate 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.
1640
+ */
1641
+ migrate: ({migration_data}: {migration_data: MigrationData}, txnOptions?: {
1642
+ /**
1643
+ * The fee to pay for the transaction. Default: BASE_FEE
1644
+ */
1645
+ fee?: number;
1646
+
1647
+ /**
1648
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
1649
+ */
1650
+ timeoutInSeconds?: number;
1651
+
1652
+ /**
1653
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
1654
+ */
1655
+ simulate?: boolean;
1656
+ }) => Promise<AssembledTransaction<null>>
1657
+
1658
+ /**
1659
+ * 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.
1660
+ * Extends the instance TTL.
1661
+ *
1662
+ * # Arguments
1663
+ *
1664
+ * * `threshold` - The threshold to extend the TTL.
1665
+ * * `extend_to` - The TTL to extend to.
1666
+ */
1667
+ extend_instance_ttl: ({threshold, extend_to}: {threshold: u32, extend_to: u32}, txnOptions?: {
1668
+ /**
1669
+ * The fee to pay for the transaction. Default: BASE_FEE
1670
+ */
1671
+ fee?: number;
1672
+
1673
+ /**
1674
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
1675
+ */
1676
+ timeoutInSeconds?: number;
1677
+
1678
+ /**
1679
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
1680
+ */
1681
+ simulate?: boolean;
1682
+ }) => Promise<AssembledTransaction<null>>
1683
+
1684
+ /**
1685
+ * 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.
1686
+ * Sets TTL configs for instance and persistent storage.
1687
+ *
1688
+ * - `None` values remove the corresponding config (disables auto-extension for that type)
1689
+ * - Validates that `threshold <= extend_to <= MAX_TTL`
1690
+ *
1691
+ * # Arguments
1692
+ * - `instance` - TTL config for instance storage
1693
+ * - `persistent` - TTL config for persistent storage
1694
+ *
1695
+ * # Panics
1696
+ * - `TtlConfigFrozen` if configs are frozen
1697
+ * - `InvalidTtlConfig` if validation fails
1698
+ */
1699
+ set_ttl_configs: ({instance, persistent}: {instance: Option<TtlConfig>, persistent: Option<TtlConfig>}, txnOptions?: {
1700
+ /**
1701
+ * The fee to pay for the transaction. Default: BASE_FEE
1702
+ */
1703
+ fee?: number;
1704
+
1705
+ /**
1706
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
1707
+ */
1708
+ timeoutInSeconds?: number;
1709
+
1710
+ /**
1711
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
1712
+ */
1713
+ simulate?: boolean;
1714
+ }) => Promise<AssembledTransaction<null>>
1715
+
1716
+ /**
1717
+ * 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.
1718
+ * Returns the current TTL configs as (instance_config, persistent_config).
1719
+ */
1720
+ ttl_configs: (txnOptions?: {
1721
+ /**
1722
+ * The fee to pay for the transaction. Default: BASE_FEE
1723
+ */
1724
+ fee?: number;
1725
+
1726
+ /**
1727
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
1728
+ */
1729
+ timeoutInSeconds?: number;
1730
+
1731
+ /**
1732
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
1733
+ */
1734
+ simulate?: boolean;
1735
+ }) => Promise<AssembledTransaction<readonly [Option<TtlConfig>, Option<TtlConfig>]>>
1736
+
1737
+ /**
1738
+ * 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.
1739
+ * Permanently freezes TTL configs, preventing any future modifications.
1740
+ *
1741
+ * This is irreversible and provides immutability guarantees to users.
1742
+ * Emits `TtlConfigsFrozen` event.
1743
+ *
1744
+ * # Panics
1745
+ * - `TtlConfigAlreadyFrozen` if already frozen
1746
+ */
1747
+ freeze_ttl_configs: (txnOptions?: {
1748
+ /**
1749
+ * The fee to pay for the transaction. Default: BASE_FEE
1750
+ */
1751
+ fee?: number;
1752
+
1753
+ /**
1754
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
1755
+ */
1756
+ timeoutInSeconds?: number;
1757
+
1758
+ /**
1759
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
1760
+ */
1761
+ simulate?: boolean;
1762
+ }) => Promise<AssembledTransaction<null>>
1763
+
1764
+ /**
1765
+ * 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.
1766
+ * Returns whether TTL configs are frozen.
1767
+ */
1768
+ is_ttl_configs_frozen: (txnOptions?: {
1769
+ /**
1770
+ * The fee to pay for the transaction. Default: BASE_FEE
1771
+ */
1772
+ fee?: number;
1773
+
1774
+ /**
1775
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
1776
+ */
1777
+ timeoutInSeconds?: number;
1778
+
1779
+ /**
1780
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
1781
+ */
1782
+ simulate?: boolean;
1783
+ }) => Promise<AssembledTransaction<boolean>>
1784
+
1785
+ }
1786
+ export class Client extends ContractClient {
1787
+ static async deploy<T = Client>(
1788
+ /** Constructor/Initialization Args for the contract's `__constructor` method */
1789
+ {vid, signers, threshold, admins, supported_msglibs, price_feed, default_multiplier_bps, worker_fee_lib, deposit_address}: {vid: u32, signers: Array<Buffer>, threshold: u32, admins: Array<string>, supported_msglibs: Array<string>, price_feed: string, default_multiplier_bps: u32, worker_fee_lib: string, deposit_address: string},
1790
+ /** Options for initializing a Client as well as for calling a method, with extras specific to deploying. */
1791
+ options: MethodOptions &
1792
+ Omit<ContractClientOptions, "contractId"> & {
1793
+ /** The hash of the Wasm blob, which must already be installed on-chain. */
1794
+ wasmHash: Buffer | string;
1795
+ /** Salt used to generate the contract's ID. Passed through to {@link Operation.createCustomContract}. Default: random. */
1796
+ salt?: Buffer | Uint8Array;
1797
+ /** The format used to decode `wasmHash`, if it's provided as a string. */
1798
+ format?: "hex" | "base64";
1799
+ }
1800
+ ): Promise<AssembledTransaction<T>> {
1801
+ return ContractClient.deploy({vid, signers, threshold, admins, supported_msglibs, price_feed, default_multiplier_bps, worker_fee_lib, deposit_address}, options)
1802
+ }
1803
+ constructor(public readonly options: ContractClientOptions) {
1804
+ super(
1805
+ new ContractSpec([ "AAAABAAAAAAAAAAAAAAACER2bkVycm9yAAAADgAAAAAAAAAPQXV0aERhdGFFeHBpcmVkAAAAAAEAAAAAAAAAD0VpZE5vdFN1cHBvcnRlZAAAAAACAAAAAAAAAA9IYXNoQWxyZWFkeVVzZWQAAAAAAwAAAAAAAAARSW52YWxpZEludm9jYXRpb24AAAAAAAAEAAAAAAAAAA1JbnZhbGlkU2lnbmVyAAAAAAAABQAAAAAAAAAKSW52YWxpZFZpZAAAAAAABgAAAAAAAAARTm9uQ29udHJhY3RJbnZva2UAAAAAAAAHAAAAAAAAAAlPbmx5QWRtaW4AAAAAAAAIAAAAAAAAAA5TaWduYXR1cmVFcnJvcgAAAAAACQAAAAAAAAATU2lnbmVyQWxyZWFkeUV4aXN0cwAAAAAKAAAAAAAAAA5TaWduZXJOb3RGb3VuZAAAAAAACwAAAAAAAAAdVG90YWxTaWduZXJzTGVzc1RoYW5UaHJlc2hvbGQAAAAAAAAMAAAAAAAAAA9VbnNvcnRlZFNpZ25lcnMAAAAADQAAAAAAAAANWmVyb1RocmVzaG9sZAAAAAAAAA4=",
1806
+ "AAAABQAAAAAAAAAAAAAACVNpZ25lclNldAAAAAAAAAEAAAAKc2lnbmVyX3NldAAAAAAAAgAAAAAAAAAGc2lnbmVyAAAAAAPuAAAAFAAAAAAAAAAAAAAABmFjdGl2ZQAAAAAAAQAAAAAAAAAC",
1807
+ "AAAABQAAAAAAAAAAAAAADFRocmVzaG9sZFNldAAAAAEAAAANdGhyZXNob2xkX3NldAAAAAAAAAEAAAAAAAAACXRocmVzaG9sZAAAAAAAAAQAAAAAAAAAAg==",
1808
+ "AAAABQAAAAAAAAAAAAAADFNldERzdENvbmZpZwAAAAEAAAAOc2V0X2RzdF9jb25maWcAAAAAAAEAAAAAAAAABnBhcmFtcwAAAAAD6gAAB9AAAAAORHN0Q29uZmlnUGFyYW0AAAAAAAAAAAAC",
1809
+ "AAAAAQAAAHJDb25maWd1cmF0aW9uIGZvciBhIGRlc3RpbmF0aW9uIGNoYWluLgoKQ29udGFpbnMgZmVlIGNhbGN1bGF0aW9uIHBhcmFtZXRlcnMgc3BlY2lmaWMgdG8gZWFjaCBkZXN0aW5hdGlvbiBlbmRwb2ludC4AAAAAAAAAAAAJRHN0Q29uZmlnAAAAAAAAAwAAADtNaW5pbXVtIGZlZSBtYXJnaW4gaW4gVVNEIChzY2FsZWQgYnkgbmF0aXZlIGRlY2ltYWxzIHJhdGUpLgAAAAAQZmxvb3JfbWFyZ2luX3VzZAAAAAoAAAAuR2FzIGZvciB2ZXJpZmljYXRpb24gb24gdGhlIGRlc3RpbmF0aW9uIGNoYWluLgAAAAAAA2dhcwAAAAAKAAAAZ0ZlZSBtdWx0aXBsaWVyIGluIGJhc2lzIHBvaW50cyAoMTAwMDAgPSAxMDAlKS4KSWYgMCwgdGhlIGRlZmF1bHQgbXVsdGlwbGllciBmcm9tIHdvcmtlciBjb25maWcgaXMgdXNlZC4AAAAADm11bHRpcGxpZXJfYnBzAAAAAAAE",
1810
+ "AAAAAQAAADZQYXJhbWV0ZXIgZm9yIHNldHRpbmcgZGVzdGluYXRpb24gY2hhaW4gY29uZmlndXJhdGlvbi4AAAAAAAAAAAAORHN0Q29uZmlnUGFyYW0AAAAAAAIAAAAnVGhlIGNvbmZpZ3VyYXRpb24gZm9yIHRoaXMgZGVzdGluYXRpb24uAAAAAAZjb25maWcAAAAAB9AAAAAJRHN0Q29uZmlnAAAAAAAAHFRoZSBkZXN0aW5hdGlvbiBlbmRwb2ludCBJRC4AAAAHZHN0X2VpZAAAAAAE",
1811
+ "AAAAAQAAAIlSZXByZXNlbnRzIGEgc2luZ2xlIGNvbnRyYWN0IGludm9jYXRpb24gZm9yIG11bHRpc2lnIGF1dGhvcml6YXRpb24uCgpVc2VkIGluIGBoYXNoX2NhbGxfZGF0YWAgdG8gY29tcHV0ZSB0aGUgaGFzaCB0aGF0IHNpZ25lcnMgc2lnbiBvdmVyLgAAAAAAAAAAAAAEQ2FsbAAAAAMAAAATRnVuY3Rpb24gYXJndW1lbnRzLgAAAAAEYXJncwAAA+oAAAAAAAAAGEZ1bmN0aW9uIG5hbWUgdG8gaW52b2tlLgAAAARmdW5jAAAAEQAAABhUYXJnZXQgY29udHJhY3QgYWRkcmVzcy4AAAACdG8AAAAAABM=",
1812
+ "AAAAAAAAADVBZGRzIG9yIHJlbW92ZXMgYSBzaWduZXIuIFJlcXVpcmVzIG11bHRpc2lnIGFwcHJvdmFsLgAAAAAAAApzZXRfc2lnbmVyAAAAAAACAAAAAAAAAAZzaWduZXIAAAAAA+4AAAAUAAAAAAAAAAZhY3RpdmUAAAAAAAEAAAAA",
1813
+ "AAAAAAAAADxVcGRhdGVzIHRoZSBzaWduYXR1cmUgdGhyZXNob2xkLiBSZXF1aXJlcyBtdWx0aXNpZyBhcHByb3ZhbC4AAAANc2V0X3RocmVzaG9sZAAAAAAAAAEAAAAAAAAACXRocmVzaG9sZAAAAAAAAAQAAAAA",
1814
+ "AAAAAAAAACtSZXR1cm5zIHRoZSBsaXN0IG9mIGFsbCByZWdpc3RlcmVkIHNpZ25lcnMuAAAAAAtnZXRfc2lnbmVycwAAAAAAAAAAAQAAA+oAAAPuAAAAFA==",
1815
+ "AAAAAAAAAC9SZXR1cm5zIHRoZSB0b3RhbCBudW1iZXIgb2YgcmVnaXN0ZXJlZCBzaWduZXJzLgAAAAANdG90YWxfc2lnbmVycwAAAAAAAAAAAAABAAAABA==",
1816
+ "AAAAAAAAACxDaGVja3MgaWYgYW4gYWRkcmVzcyBpcyBhIHJlZ2lzdGVyZWQgc2lnbmVyLgAAAAlpc19zaWduZXIAAAAAAAABAAAAAAAAAAZzaWduZXIAAAAAA+4AAAAUAAAAAQAAAAE=",
1817
+ "AAAAAAAAAChSZXR1cm5zIHRoZSBjdXJyZW50IHNpZ25hdHVyZSB0aHJlc2hvbGQuAAAACXRocmVzaG9sZAAAAAAAAAAAAAABAAAABA==",
1818
+ "AAAAAAAAADJWZXJpZmllcyBzaWduYXR1cmVzIGFnYWluc3QgdGhlIGN1cnJlbnQgdGhyZXNob2xkLgAAAAAAEXZlcmlmeV9zaWduYXR1cmVzAAAAAAAAAgAAAAAAAAAEaGFzaAAAA+4AAAAgAAAAAAAAAApzaWduYXR1cmVzAAAAAAPqAAAD7gAAAEEAAAAA",
1819
+ "AAAAAAAAALJWZXJpZmllcyB0aGF0IGF0IGxlYXN0IGB0aHJlc2hvbGRgIHZhbGlkIHNpZ25hdHVyZXMgZXhpc3QgZm9yIHRoZSBnaXZlbiBoYXNoLgoKU2lnbmF0dXJlcyBtdXN0IGJlOgotIEZyb20gcmVnaXN0ZXJlZCBzaWduZXJzCi0gU29ydGVkIGJ5IHNpZ25lciBhZGRyZXNzIChhc2NlbmRpbmcsIG5vIGR1cGxpY2F0ZXMpAAAAAAATdmVyaWZ5X25fc2lnbmF0dXJlcwAAAAADAAAAAAAAAARoYXNoAAAD7gAAACAAAAAAAAAACnNpZ25hdHVyZXMAAAAAA+oAAAPuAAAAQQAAAAAAAAAJdGhyZXNob2xkAAAAAAAABAAAAAA=",
1820
+ "AAAAAAAAADRWYWxpZGF0ZXMgYXV0aG9yaXphdGlvbiBmb3IgRFZOIGNvbnRyYWN0IG9wZXJhdGlvbnMuAAAADF9fY2hlY2tfYXV0aAAAAAMAAAAAAAAAEXNpZ25hdHVyZV9wYXlsb2FkAAAAAAAD7gAAACAAAAAAAAAACWF1dGhfZGF0YQAAAAAAB9AAAAATVHJhbnNhY3Rpb25BdXRoRGF0YQAAAAAAAAAADWF1dGhfY29udGV4dHMAAAAAAAPqAAAH0AAAAAdDb250ZXh0AAAAAAEAAAPpAAAD7QAAAAAAAAAD",
1821
+ "AAAAAQAAAMdBdXRoZW50aWNhdGlvbiBkYXRhIGZvciBEVk4gY29udHJhY3QgdHJhbnNhY3Rpb25zLgoKVGhpcyBzdHJ1Y3QgaXMgdXNlZCB3aXRoIFNvcm9iYW4ncyBjdXN0b20gYWNjb3VudCBpbnRlcmZhY2UgdG8gYXV0aG9yaXplCnRyYW5zYWN0aW9ucyB0aHJvdWdoIGEgY29tYmluYXRpb24gb2YgYWRtaW4gc2lnbmF0dXJlIGFuZCBtdWx0aXNpZyBxdW9ydW0uAAAAAAAAAAATVHJhbnNhY3Rpb25BdXRoRGF0YQAAAAAEAAAAREV4cGlyYXRpb24gdGltZXN0YW1wIChsZWRnZXIgdGltZSkgYWZ0ZXIgd2hpY2ggdGhpcyBhdXRoIGlzIGludmFsaWQuAAAACmV4cGlyYXRpb24AAAAAAAYAAAA9RW50aXR5IHN1Ym1pdHRpbmcgdGhlIHRyYW5zYWN0aW9uIChhZG1pbiwgb3IgcGVybWlzc2lvbmxlc3MpLgAAAAAAAAZzZW5kZXIAAAAAB9AAAAAGU2VuZGVyAAAAAAA8U2lnbmF0dXJlcyBmcm9tIG11bHRpc2lnIHNpZ25lcnMgKHNlY3AyNTZrMSwgNjUgYnl0ZXMgZWFjaCkuAAAACnNpZ25hdHVyZXMAAAAAA+oAAAPuAAAAQQAAADJWZXJpZmllciBJRCAtIG11c3QgbWF0Y2ggdGhlIERWTidzIGNvbmZpZ3VyZWQgVklELgAAAAAAA3ZpZAAAAAAE",
1822
+ "AAAAAgAAAAAAAAAAAAAABlNlbmRlcgAAAAAAAgAAAAAAAAAuTm8gZXhwbGljaXQgc2VuZGVyIChwZXJtaXNzaW9ubGVzcyBleGVjdXRpb24pLgAAAAAABE5vbmUAAAABAAAAj0EgcmVnaXN0ZXJlZCBhZG1pbiAoZWQyNTUxOSkgc3VibWl0dGluZyB0aGUgdHJhbnNhY3Rpb24uClRoZSB0dXBsZSBpcyBgKHB1YmxpY19rZXksIHNpZ25hdHVyZSlgIHdoZXJlIHRoZSBzaWduYXR1cmUgY292ZXJzIHRoZSBTb3JvYmFuIHBheWxvYWQuAAAAAAVBZG1pbgAAAAAAAAIAAAPuAAAAIAAAA+4AAABA",
1823
+ "AAAAAAAAAORTZXRzIHRoZSBwYXVzZWQgc3RhdGUgb2YgdGhlIHdvcmtlci4KCldoZW4gcGF1c2VkLCB0aGUgd29ya2VyIHdpbGwgcmVqZWN0IG5ldyBqb2IgYXNzaWdubWVudHMgKGUuZy4sIGFzc2lnbl9qb2IsIGdldF9mZWUpLgpFeGlzdGluZyBqb2JzIGluIHByb2dyZXNzIGFyZSBub3QgYWZmZWN0ZWQuCgojIEFyZ3VtZW50cwoqIGBwYXVzZWRgIC0gYHRydWVgIHRvIHBhdXNlLCBgZmFsc2VgIHRvIHVucGF1c2UAAAAKc2V0X3BhdXNlZAAAAAAAAQAAAAAAAAAGcGF1c2VkAAAAAAABAAAAAA==",
1824
+ "AAAAAAAAATdTZXRzIHdoZXRoZXIgYSBtZXNzYWdlIGxpYnJhcnkgaXMgc3VwcG9ydGVkIGJ5IHRoaXMgd29ya2VyLgoKTWVzc2FnZSBsaWJyYXJpZXMgKGUuZy4sIFVMTjMwMikgY2FsbCB3b3JrZXJzIHRvIGFzc2lnbiBqb2JzLiBPbmx5IHN1cHBvcnRlZApsaWJyYXJpZXMgY2FuIGludGVyYWN0IHdpdGggdGhpcyB3b3JrZXIuCgojIEFyZ3VtZW50cwoqIGBtZXNzYWdlX2xpYmAgLSBUaGUgbWVzc2FnZSBsaWJyYXJ5IGNvbnRyYWN0IGFkZHJlc3MKKiBgc3VwcG9ydGVkYCAtIGB0cnVlYCB0byBhZGQgc3VwcG9ydCwgYGZhbHNlYCB0byByZW1vdmUgc3VwcG9ydAAAAAAZc2V0X3N1cHBvcnRlZF9tZXNzYWdlX2xpYgAAAAAAAAIAAAAAAAAAC21lc3NhZ2VfbGliAAAAABMAAAAAAAAACXN1cHBvcnRlZAAAAAAAAAEAAAAA",
1825
+ "AAAAAAAAAVhTZXRzIGFsbG93bGlzdCBzdGF0dXMgZm9yIGFuIE9BcHAgYWRkcmVzcy4KCldoZW4gdGhlIGFsbG93bGlzdCBpcyBlbXB0eSwgYWxsIE9BcHBzIGFyZSBhbGxvd2VkICh1bmxlc3Mgb24gZGVueWxpc3QpLgpXaGVuIHRoZSBhbGxvd2xpc3QgaXMgbm90IGVtcHR5LCBvbmx5IGFsbG93bGlzdGVkIE9BcHBzIGFyZSBhbGxvd2VkLgpEZW55bGlzdCBhbHdheXMgdGFrZXMgcHJlY2VkZW5jZSBvdmVyIGFsbG93bGlzdC4KCiMgQXJndW1lbnRzCiogYG9hcHBgIC0gVGhlIE9BcHAgY29udHJhY3QgYWRkcmVzcwoqIGBhbGxvd2VkYCAtIGB0cnVlYCB0byBhZGQgdG8gYWxsb3dsaXN0LCBgZmFsc2VgIHRvIHJlbW92ZQAAAA1zZXRfYWxsb3dsaXN0AAAAAAAAAgAAAAAAAAAEb2FwcAAAABMAAAAAAAAAB2FsbG93ZWQAAAAAAQAAAAA=",
1826
+ "AAAAAAAAAQlTZXRzIGRlbnlsaXN0IHN0YXR1cyBmb3IgYW4gT0FwcCBhZGRyZXNzLgoKRGVueWxpc3RlZCBPQXBwcyBhcmUgYmxvY2tlZCBmcm9tIHVzaW5nIHRoaXMgd29ya2VyLCBldmVuIGlmIHRoZXkncmUgb24KdGhlIGFsbG93bGlzdCAoZGVueWxpc3QgdGFrZXMgcHJlY2VkZW5jZSkuCgojIEFyZ3VtZW50cwoqIGBvYXBwYCAtIFRoZSBPQXBwIGNvbnRyYWN0IGFkZHJlc3MKKiBgZGVuaWVkYCAtIGB0cnVlYCB0byBhZGQgdG8gZGVueWxpc3QsIGBmYWxzZWAgdG8gcmVtb3ZlAAAAAAAADHNldF9kZW55bGlzdAAAAAIAAAAAAAAABG9hcHAAAAATAAAAAAAAAAZkZW5pZWQAAAAAAAEAAAAA",
1827
+ "AAAAAAAAATtTZXRzIHRoZSBkZWZhdWx0IGZlZSBtdWx0aXBsaWVyIGluIGJhc2lzIHBvaW50cy4KClRoZSBtdWx0aXBsaWVyIGlzIGFwcGxpZWQgdG8gYmFzZSBmZWVzIGR1cmluZyBmZWUgY2FsY3VsYXRpb24uIFVzZWQgd2hlbgpubyBkZXN0aW5hdGlvbi1zcGVjaWZpYyBtdWx0aXBsaWVyIGlzIGNvbmZpZ3VyZWQuCgojIEFyZ3VtZW50cwoqIGBhZG1pbmAgLSBBZG1pbiBhZGRyZXNzIChtdXN0IHByb3ZpZGUgYXV0aG9yaXphdGlvbikKKiBgbXVsdGlwbGllcl9icHNgIC0gTXVsdGlwbGllciBpbiBiYXNpcyBwb2ludHMgKDEwMDAwID0gMXgsIDEyMDAwID0gMS4yeCkAAAAAGnNldF9kZWZhdWx0X211bHRpcGxpZXJfYnBzAAAAAAACAAAAAAAAAAVhZG1pbgAAAAAAABMAAAAAAAAADm11bHRpcGxpZXJfYnBzAAAAAAAEAAAAAA==",
1828
+ "AAAAAAAAAPFTZXRzIHRoZSBkZXBvc2l0IGFkZHJlc3Mgd2hlcmUgd29ya2VyIGZlZXMgYXJlIGNvbGxlY3RlZC4KCldoZW4gam9icyBhcmUgYXNzaWduZWQsIGZlZXMgYXJlIGRpcmVjdGVkIHRvIHRoaXMgYWRkcmVzcy4KCiMgQXJndW1lbnRzCiogYGFkbWluYCAtIEFkbWluIGFkZHJlc3MgKG11c3QgcHJvdmlkZSBhdXRob3JpemF0aW9uKQoqIGBkZXBvc2l0X2FkZHJlc3NgIC0gQWRkcmVzcyB0byByZWNlaXZlIGNvbGxlY3RlZCBmZWVzAAAAAAAAE3NldF9kZXBvc2l0X2FkZHJlc3MAAAAAAgAAAAAAAAAFYWRtaW4AAAAAAAATAAAAAAAAAA9kZXBvc2l0X2FkZHJlc3MAAAAAEwAAAAA=",
1829
+ "AAAAAAAAAOtTZXRzIHN1cHBvcnRlZCBleGVjdXRvciBvcHRpb24gdHlwZXMgZm9yIGEgZGVzdGluYXRpb24gZW5kcG9pbnQuCgojIEFyZ3VtZW50cwoqIGBhZG1pbmAgLSBBZG1pbiBhZGRyZXNzIChtdXN0IHByb3ZpZGUgYXV0aG9yaXphdGlvbikKKiBgZWlkYCAtIERlc3RpbmF0aW9uIGVuZHBvaW50IElEIChjaGFpbiBpZGVudGlmaWVyKQoqIGBvcHRpb25fdHlwZXNgIC0gRW5jb2RlZCBzdXBwb3J0ZWQgb3B0aW9uIHR5cGVzAAAAABpzZXRfc3VwcG9ydGVkX29wdGlvbl90eXBlcwAAAAAAAwAAAAAAAAAFYWRtaW4AAAAAAAATAAAAAAAAAANlaWQAAAAABAAAAAAAAAAMb3B0aW9uX3R5cGVzAAAADgAAAAA=",
1830
+ "AAAAAAAAARJTZXRzIHRoZSB3b3JrZXIgZmVlIGxpYnJhcnkgY29udHJhY3QgYWRkcmVzcy4KClRoZSBmZWUgbGlicmFyeSBjYWxjdWxhdGVzIGZlZXMgYmFzZWQgb24gZXhlY3V0b3Igb3B0aW9ucyBhbmQgcHJpY2UgZmVlZCBkYXRhLgoKIyBBcmd1bWVudHMKKiBgYWRtaW5gIC0gQWRtaW4gYWRkcmVzcyAobXVzdCBwcm92aWRlIGF1dGhvcml6YXRpb24pCiogYHdvcmtlcl9mZWVfbGliYCAtIEZlZSBsaWJyYXJ5IGNvbnRyYWN0IGFkZHJlc3MgaW1wbGVtZW50aW5nIGBJRXhlY3V0b3JGZWVMaWJgAAAAAAASc2V0X3dvcmtlcl9mZWVfbGliAAAAAAACAAAAAAAAAAVhZG1pbgAAAAAAABMAAAAAAAAADndvcmtlcl9mZWVfbGliAAAAAAATAAAAAA==",
1831
+ "AAAAAAAAARJTZXRzIHRoZSBwcmljZSBmZWVkIGNvbnRyYWN0IGFkZHJlc3MuCgpUaGUgcHJpY2UgZmVlZCBwcm92aWRlcyBnYXMgcHJpY2VzIGFuZCBleGNoYW5nZSByYXRlcyBmb3IgY3Jvc3MtY2hhaW4KZmVlIGNhbGN1bGF0aW9ucy4KCiMgQXJndW1lbnRzCiogYGFkbWluYCAtIEFkbWluIGFkZHJlc3MgKG11c3QgcHJvdmlkZSBhdXRob3JpemF0aW9uKQoqIGBwcmljZV9mZWVkYCAtIFByaWNlIGZlZWQgY29udHJhY3QgYWRkcmVzcyBpbXBsZW1lbnRpbmcgYElMYXllclplcm9QcmljZUZlZWRgAAAAAAAOc2V0X3ByaWNlX2ZlZWQAAAAAAAIAAAAAAAAABWFkbWluAAAAAAAAEwAAAAAAAAAKcHJpY2VfZmVlZAAAAAAAEwAAAAA=",
1832
+ "AAAAAAAAAFVSZXR1cm5zIHdoZXRoZXIgYW4gYWRkcmVzcyBpcyBhbiBhZG1pbi4KCiMgQXJndW1lbnRzCiogYGFkbWluYCAtIFRoZSBhZGRyZXNzIHRvIGNoZWNrAAAAAAAACGlzX2FkbWluAAAAAQAAAAAAAAAFYWRtaW4AAAAAAAATAAAAAQAAAAE=",
1833
+ "AAAAAAAAABxSZXR1cm5zIGFsbCBhZG1pbiBhZGRyZXNzZXMuAAAABmFkbWlucwAAAAAAAAAAAAEAAAPqAAAAEw==",
1834
+ "AAAAAAAAACVSZXR1cm5zIHdoZXRoZXIgdGhlIHdvcmtlciBpcyBwYXVzZWQuAAAAAAAABnBhdXNlZAAAAAAAAAAAAAEAAAAB",
1835
+ "AAAAAAAAAG9SZXR1cm5zIHdoZXRoZXIgYSBtZXNzYWdlIGxpYnJhcnkgaXMgc3VwcG9ydGVkLgoKIyBBcmd1bWVudHMKKiBgbWVzc2FnZV9saWJgIC0gTWVzc2FnZSBsaWJyYXJ5IGNvbnRyYWN0IGFkZHJlc3MAAAAAGGlzX3N1cHBvcnRlZF9tZXNzYWdlX2xpYgAAAAEAAAAAAAAAC21lc3NhZ2VfbGliAAAAABMAAAABAAAAAQ==",
1836
+ "AAAAAAAAAHNSZXR1cm5zIGFsbCBzdXBwb3J0ZWQgbWVzc2FnZSBsaWJyYXJ5IGFkZHJlc3Nlcy4KCiMgUmV0dXJucwpWZWN0b3Igb2Ygc3VwcG9ydGVkIG1lc3NhZ2UgbGlicmFyeSBjb250cmFjdCBhZGRyZXNzZXMuAAAAAAxtZXNzYWdlX2xpYnMAAAAAAAAAAQAAA+oAAAAT",
1837
+ "AAAAAAAAAFpSZXR1cm5zIHdoZXRoZXIgYW4gT0FwcCBpcyBvbiB0aGUgYWxsb3dsaXN0LgoKIyBBcmd1bWVudHMKKiBgb2FwcGAgLSBPQXBwIGNvbnRyYWN0IGFkZHJlc3MAAAAAAA9pc19vbl9hbGxvd2xpc3QAAAAAAQAAAAAAAAAEb2FwcAAAABMAAAABAAAAAQ==",
1838
+ "AAAAAAAAAFlSZXR1cm5zIHdoZXRoZXIgYW4gT0FwcCBpcyBvbiB0aGUgZGVueWxpc3QuCgojIEFyZ3VtZW50cwoqIGBvYXBwYCAtIE9BcHAgY29udHJhY3QgYWRkcmVzcwAAAAAAAA5pc19vbl9kZW55bGlzdAAAAAAAAQAAAAAAAAAEb2FwcAAAABMAAAABAAAAAQ==",
1839
+ "AAAAAAAAAPtSZXR1cm5zIHdoZXRoZXIgYW4gT0FwcCBoYXMgYWNjZXNzIGNvbnRyb2wgbGlzdCAoQUNMKSBwZXJtaXNzaW9uLgoKQUNMIGV2YWx1YXRpb24gb3JkZXI6CjEuIElmIG9uIGRlbnlsaXN0IOKGkiBkZW5pZWQKMi4gSWYgYWxsb3dsaXN0IGlzIGVtcHR5IE9SIG9uIGFsbG93bGlzdCDihpIgYWxsb3dlZAozLiBPdGhlcndpc2Ug4oaSIGRlbmllZAoKIyBBcmd1bWVudHMKKiBgc2VuZGVyYCAtIE9BcHAgY29udHJhY3QgYWRkcmVzcyB0byBjaGVjawAAAAAHaGFzX2FjbAAAAAABAAAAAAAAAAZzZW5kZXIAAAAAABMAAAABAAAAAQ==",
1840
+ "AAAAAAAAADFSZXR1cm5zIHRoZSBudW1iZXIgb2YgYWRkcmVzc2VzIG9uIHRoZSBhbGxvd2xpc3QuAAAAAAAADmFsbG93bGlzdF9zaXplAAAAAAAAAAAAAQAAAAQ=",
1841
+ "AAAAAAAAADNSZXR1cm5zIHRoZSBkZWZhdWx0IGZlZSBtdWx0aXBsaWVyIGluIGJhc2lzIHBvaW50cy4AAAAAFmRlZmF1bHRfbXVsdGlwbGllcl9icHMAAAAAAAAAAAABAAAABA==",
1842
+ "AAAAAAAAADVSZXR1cm5zIHRoZSBkZXBvc2l0IGFkZHJlc3Mgd2hlcmUgZmVlcyBhcmUgY29sbGVjdGVkLgAAAAAAAA9kZXBvc2l0X2FkZHJlc3MAAAAAAAAAAAEAAAAT",
1843
+ "AAAAAAAAAChSZXR1cm5zIHRoZSBwcmljZSBmZWVkIGNvbnRyYWN0IGFkZHJlc3MuAAAACnByaWNlX2ZlZWQAAAAAAAAAAAABAAAAEw==",
1844
+ "AAAAAAAAAHxSZXR1cm5zIHN1cHBvcnRlZCBvcHRpb24gdHlwZXMgZm9yIGEgZGVzdGluYXRpb24gZW5kcG9pbnQuCgojIEFyZ3VtZW50cwoqIGBlaWRgIC0gRGVzdGluYXRpb24gZW5kcG9pbnQgSUQgKGNoYWluIGlkZW50aWZpZXIpAAAAGmdldF9zdXBwb3J0ZWRfb3B0aW9uX3R5cGVzAAAAAAABAAAAAAAAAANlaWQAAAAABAAAAAEAAAPoAAAADg==",
1845
+ "AAAAAAAAADBSZXR1cm5zIHRoZSB3b3JrZXIgZmVlIGxpYnJhcnkgY29udHJhY3QgYWRkcmVzcy4AAAAOd29ya2VyX2ZlZV9saWIAAAAAAAAAAAABAAAAEw==",
1846
+ "AAAAAAAAAHhDYWxjdWxhdGVzIHRoZSB2ZXJpZmljYXRpb24gZmVlIGZvciBhIGNyb3NzLWNoYWluIG1lc3NhZ2UuCgpDYWxsZWQgYnkgdGhlIHNlbmQgbGlicmFyeSB0byBxdW90ZSBEVk4gZmVlcyBiZWZvcmUgc2VuZGluZy4AAAAHZ2V0X2ZlZQAAAAAHAAAAAAAAAAhzZW5kX2xpYgAAABMAAAAAAAAABnNlbmRlcgAAAAAAEwAAAAAAAAAHZHN0X2VpZAAAAAAEAAAAAAAAAA1wYWNrZXRfaGVhZGVyAAAAAAAADgAAAAAAAAAMcGF5bG9hZF9oYXNoAAAD7gAAACAAAAAAAAAADWNvbmZpcm1hdGlvbnMAAAAAAAAGAAAAAAAAAAdvcHRpb25zAAAAAA4AAAABAAAACw==",
1847
+ "AAAAAAAAALhBc3NpZ25zIGEgdmVyaWZpY2F0aW9uIGpvYiB0byB0aGlzIERWTiBhbmQgcmV0dXJucyBmZWUgcGF5bWVudCBpbmZvLgoKQ2FsbGVkIGJ5IHRoZSBzZW5kIGxpYnJhcnkgd2hlbiBhIG1lc3NhZ2UgaXMgc2VudC4gVGhlIERWTiB3aWxsIGxhdGVyCnZlcmlmeSB0aGUgbWVzc2FnZSBvbiB0aGUgZGVzdGluYXRpb24gY2hhaW4uAAAACmFzc2lnbl9qb2IAAAAAAAcAAAAAAAAACHNlbmRfbGliAAAAEwAAAAAAAAAGc2VuZGVyAAAAAAATAAAAAAAAAAdkc3RfZWlkAAAAAAQAAAAAAAAADXBhY2tldF9oZWFkZXIAAAAAAAAOAAAAAAAAAAxwYXlsb2FkX2hhc2gAAAPuAAAAIAAAAAAAAAANY29uZmlybWF0aW9ucwAAAAAAAAYAAAAAAAAAB29wdGlvbnMAAAAADgAAAAEAAAfQAAAADEZlZVJlY2lwaWVudA==",
1848
+ "AAAAAAAAAERTZXRzIGRlc3RpbmF0aW9uIGNoYWluIGNvbmZpZ3VyYXRpb25zLiBSZXF1aXJlcyBhZG1pbiBhdXRob3JpemF0aW9uLgAAAA5zZXRfZHN0X2NvbmZpZwAAAAAAAgAAAAAAAAAFYWRtaW4AAAAAAAATAAAAAAAAAAZwYXJhbXMAAAAAA+oAAAfQAAAADkRzdENvbmZpZ1BhcmFtAAAAAAAA",
1849
+ "AAAAAAAAAEFSZXR1cm5zIHRoZSBkZXN0aW5hdGlvbiBjb25maWd1cmF0aW9uIGZvciBhIHNwZWNpZmljIGVuZHBvaW50IElELgAAAAAAAApkc3RfY29uZmlnAAAAAAABAAAAAAAAAAdkc3RfZWlkAAAAAAQAAAABAAAD6AAAB9AAAAAJRHN0Q29uZmlnAAAA",
1850
+ "AAAAAAAAACVSZXR1cm5zIHRoZSBWZXJpZmllciBJRCBmb3IgdGhpcyBEVk4uAAAAAAAAA3ZpZAAAAAAAAAAAAQAAAAQ=",
1851
+ "AAAAAAAAAHdDb21wdXRlcyB0aGUgaGFzaCBvZiBjYWxsIGRhdGEgZm9yIG11bHRpc2lnIHNpZ25pbmcuCgpPZmYtY2hhaW4gc2lnbmVycyB1c2UgdGhpcyB0byBjb21wdXRlIHRoZSBoYXNoIHRoZXkgbmVlZCB0byBzaWduLgAAAAAOaGFzaF9jYWxsX2RhdGEAAAAAAAMAAAAAAAAAA3ZpZAAAAAAEAAAAAAAAAApleHBpcmF0aW9uAAAAAAAGAAAAAAAAAAVjYWxscwAAAAAAA+oAAAfQAAAABENhbGwAAAABAAAD7gAAACA=",
1852
+ "AAAAAAAAAmRJbml0aWFsaXplcyB0aGUgRFZOIGNvbnRyYWN0LgoKIyBBcmd1bWVudHMKKiBgdmlkYCAtIFZlcmlmaWVyIElELCB1bmlxdWUgaWRlbnRpZmllciBmb3IgdGhpcyBEVk4KKiBgc2lnbmVyc2AgLSBJbml0aWFsIG11bHRpc2lnIHNpZ25lcnMgKDIwLWJ5dGUgRXRoZXJldW0gYWRkcmVzc2VzKQoqIGB0aHJlc2hvbGRgIC0gTWluaW11bSBzaWduYXR1cmVzIHJlcXVpcmVkIGZvciBtdWx0aXNpZyBvcGVyYXRpb25zCiogYGFkbWluc2AgLSBJbml0aWFsIGFkbWluIGFkZHJlc3NlcyBmb3Igb3BlcmF0aW9uYWwgZnVuY3Rpb25zCiogYHN1cHBvcnRlZF9tc2dsaWJzYCAtIE1lc3NhZ2UgbGlicmFyaWVzIHRoaXMgRFZOIHN1cHBvcnRzIChlLmcuLCBVTE4zMDIpCiogYHByaWNlX2ZlZWRgIC0gUHJpY2UgZmVlZCBjb250cmFjdCBmb3IgZmVlIGNhbGN1bGF0aW9ucwoqIGBkZWZhdWx0X211bHRpcGxpZXJfYnBzYCAtIERlZmF1bHQgZmVlIG11bHRpcGxpZXIgKDEwMDAwID0gMXgpCiogYHdvcmtlcl9mZWVfbGliYCAtIEZlZSBsaWJyYXJ5IGNvbnRyYWN0IGZvciBjb21wdXRpbmcgRFZOIGZlZXMKKiBgZGVwb3NpdF9hZGRyZXNzYCAtIEFkZHJlc3MgdG8gcmVjZWl2ZSBmZWUgcGF5bWVudHMAAAANX19jb25zdHJ1Y3RvcgAAAAAAAAkAAAAAAAAAA3ZpZAAAAAAEAAAAAAAAAAdzaWduZXJzAAAAA+oAAAPuAAAAFAAAAAAAAAAJdGhyZXNob2xkAAAAAAAABAAAAAAAAAAGYWRtaW5zAAAAAAPqAAAAEwAAAAAAAAARc3VwcG9ydGVkX21zZ2xpYnMAAAAAAAPqAAAAEwAAAAAAAAAKcHJpY2VfZmVlZAAAAAAAEwAAAAAAAAAWZGVmYXVsdF9tdWx0aXBsaWVyX2JwcwAAAAAABAAAAAAAAAAOd29ya2VyX2ZlZV9saWIAAAAAABMAAAAAAAAAD2RlcG9zaXRfYWRkcmVzcwAAAAATAAAAAA==",
1853
+ "AAAAAAAAAWpTZXRzIGFkbWluIHN0YXR1cyBmb3IgYW4gYWRkcmVzcy4gQ2FuIGJlIGNhbGxlZCBieSBhbiBleGlzdGluZyBhZG1pbi4KClRoaXMgYWxsb3dzIGV4aXN0aW5nIGFkbWlucyB0byBhZGQgb3IgcmVtb3ZlIG90aGVyIGFkbWlucyB3aXRob3V0IGdvaW5nIHRocm91Z2gKdGhlIG93bmVyL211bHRpc2lnIHBhdGguCgojIEFyZ3VtZW50cwoqIGBjYWxsZXJgIC0gVGhlIGFkbWluIGNhbGxpbmcgdGhpcyBmdW5jdGlvbiAobXVzdCBwcm92aWRlIGF1dGhvcml6YXRpb24pCiogYGFkbWluYCAtIFRoZSBhZGRyZXNzIHRvIHNldCBhZG1pbiBzdGF0dXMgZm9yCiogYGFjdGl2ZWAgLSBgdHJ1ZWAgdG8gYWRkIGFkbWluLCBgZmFsc2VgIHRvIHJlbW92ZQAAAAAACXNldF9hZG1pbgAAAAAAAAMAAAAAAAAABmNhbGxlcgAAAAAAEwAAAAAAAAAFYWRtaW4AAAAAAAATAAAAAAAAAAZhY3RpdmUAAAAAAAEAAAAA",
1854
+ "AAAAAAAAAXxBbGxvd3MgdGhlIHF1b3J1bSB0byBhZGQvcmVtb3ZlIGFkbWlucyB3aXRob3V0IHJlcXVpcmluZyBhbiBhZG1pbiBzaWduYXR1cmUuCgpUaGlzIGZ1bmN0aW9uIGJ5cGFzc2VzIHRoZSBub3JtYWwgYWRtaW4gdmVyaWZpY2F0aW9uIGluIGBfX2NoZWNrX2F1dGhgLApyZXF1aXJpbmcgb25seSBtdWx0aXNpZyBxdW9ydW0gc2lnbmF0dXJlcy4gTXVzdCBiZSBjYWxsZWQgYXMgYSBzaW5nbGUKb3BlcmF0aW9uIChjYW5ub3QgYmUgYnVuZGxlZCB3aXRoIG90aGVyIGNhbGxzKS4KCiMgQXJndW1lbnRzCiogYGFkbWluYCAtIFRoZSBhZGRyZXNzIHRvIHNldCBhZG1pbiBzdGF0dXMgZm9yCiogYGFjdGl2ZWAgLSBgdHJ1ZWAgdG8gYWRkIGFkbWluLCBgZmFsc2VgIHRvIHJlbW92ZQAAABNxdW9ydW1fY2hhbmdlX2FkbWluAAAAAAIAAAAAAAAABWFkbWluAAAAAAAAEwAAAAAAAAAGYWN0aXZlAAAAAAABAAAAAA==",
1855
+ "AAAAAAAAAAAAAAAHdXBncmFkZQAAAAABAAAAAAAAAA1uZXdfd2FzbV9oYXNoAAAAAAAD7gAAACAAAAAA",
1856
+ "AAAAAAAAAAAAAAAHbWlncmF0ZQAAAAABAAAAAAAAAA5taWdyYXRpb25fZGF0YQAAAAAH0AAAAA1NaWdyYXRpb25EYXRhAAAAAAAAAA==",
1857
+ "AAAAAAAAAH5FeHRlbmRzIHRoZSBpbnN0YW5jZSBUVEwuCgojIEFyZ3VtZW50cwoKKiBgdGhyZXNob2xkYCAtIFRoZSB0aHJlc2hvbGQgdG8gZXh0ZW5kIHRoZSBUVEwuCiogYGV4dGVuZF90b2AgLSBUaGUgVFRMIHRvIGV4dGVuZCB0by4AAAAAABNleHRlbmRfaW5zdGFuY2VfdHRsAAAAAAIAAAAAAAAACXRocmVzaG9sZAAAAAAAAAQAAAAAAAAACWV4dGVuZF90bwAAAAAAAAQAAAAA",
1858
+ "AAAAAgAAAAAAAAAAAAAACkR2blN0b3JhZ2UAAAAAAAUAAAAAAAAAAAAAAAdTaWduZXJzAAAAAAAAAAAAAAAACVRocmVzaG9sZAAAAAAAAAAAAAAAAAAAA1ZpZAAAAAABAAAAAAAAAAlEc3RDb25maWcAAAAAAAABAAAABAAAAAEAAAAAAAAACFVzZWRIYXNoAAAAAQAAA+4AAAAg",
1859
+ "AAAAAAAAAY9TZXRzIFRUTCBjb25maWdzIGZvciBpbnN0YW5jZSBhbmQgcGVyc2lzdGVudCBzdG9yYWdlLgoKLSBgTm9uZWAgdmFsdWVzIHJlbW92ZSB0aGUgY29ycmVzcG9uZGluZyBjb25maWcgKGRpc2FibGVzIGF1dG8tZXh0ZW5zaW9uIGZvciB0aGF0IHR5cGUpCi0gVmFsaWRhdGVzIHRoYXQgYHRocmVzaG9sZCA8PSBleHRlbmRfdG8gPD0gTUFYX1RUTGAKCiMgQXJndW1lbnRzCi0gYGluc3RhbmNlYCAtIFRUTCBjb25maWcgZm9yIGluc3RhbmNlIHN0b3JhZ2UKLSBgcGVyc2lzdGVudGAgLSBUVEwgY29uZmlnIGZvciBwZXJzaXN0ZW50IHN0b3JhZ2UKCiMgUGFuaWNzCi0gYFR0bENvbmZpZ0Zyb3plbmAgaWYgY29uZmlncyBhcmUgZnJvemVuCi0gYEludmFsaWRUdGxDb25maWdgIGlmIHZhbGlkYXRpb24gZmFpbHMAAAAAD3NldF90dGxfY29uZmlncwAAAAACAAAAAAAAAAhpbnN0YW5jZQAAA+gAAAfQAAAACVR0bENvbmZpZwAAAAAAAAAAAAAKcGVyc2lzdGVudAAAAAAD6AAAB9AAAAAJVHRsQ29uZmlnAAAAAAAAAA==",
1860
+ "AAAAAAAAAEhSZXR1cm5zIHRoZSBjdXJyZW50IFRUTCBjb25maWdzIGFzIChpbnN0YW5jZV9jb25maWcsIHBlcnNpc3RlbnRfY29uZmlnKS4AAAALdHRsX2NvbmZpZ3MAAAAAAAAAAAEAAAPtAAAAAgAAA+gAAAfQAAAACVR0bENvbmZpZwAAAAAAA+gAAAfQAAAACVR0bENvbmZpZwAAAA==",
1861
+ "AAAAAAAAAOFQZXJtYW5lbnRseSBmcmVlemVzIFRUTCBjb25maWdzLCBwcmV2ZW50aW5nIGFueSBmdXR1cmUgbW9kaWZpY2F0aW9ucy4KClRoaXMgaXMgaXJyZXZlcnNpYmxlIGFuZCBwcm92aWRlcyBpbW11dGFiaWxpdHkgZ3VhcmFudGVlcyB0byB1c2Vycy4KRW1pdHMgYFR0bENvbmZpZ3NGcm96ZW5gIGV2ZW50LgoKIyBQYW5pY3MKLSBgVHRsQ29uZmlnQWxyZWFkeUZyb3plbmAgaWYgYWxyZWFkeSBmcm96ZW4AAAAAAAASZnJlZXplX3R0bF9jb25maWdzAAAAAAAAAAAAAA==",
1862
+ "AAAAAAAAACdSZXR1cm5zIHdoZXRoZXIgVFRMIGNvbmZpZ3MgYXJlIGZyb3plbi4AAAAAFWlzX3R0bF9jb25maWdzX2Zyb3plbgAAAAAAAAAAAAABAAAAAQ==",
1863
+ "AAAABAAAAAAAAAAAAAAADUVuZHBvaW50RXJyb3IAAAAAAAAYAAAAAAAAABFBbHJlYWR5UmVnaXN0ZXJlZAAAAAAAAAEAAAAAAAAADUNvbXBvc2VFeGlzdHMAAAAAAAACAAAAAAAAAA9Db21wb3NlTm90Rm91bmQAAAAAAwAAAAAAAAAcRGVmYXVsdFJlY2VpdmVMaWJVbmF2YWlsYWJsZQAAAAQAAAAAAAAAGURlZmF1bHRTZW5kTGliVW5hdmFpbGFibGUAAAAAAAAFAAAAAAAAABVJbnN1ZmZpY2llbnROYXRpdmVGZWUAAAAAAAAGAAAAAAAAABJJbnN1ZmZpY2llbnRaUk9GZWUAAAAAAAcAAAAAAAAADUludmFsaWRFeHBpcnkAAAAAAAAIAAAAAAAAAAxJbnZhbGlkSW5kZXgAAAAJAAAAAAAAAAxJbnZhbGlkTm9uY2UAAAAKAAAAAAAAABJJbnZhbGlkUGF5bG9hZEhhc2gAAAAAAAsAAAAAAAAAFUludmFsaWRSZWNlaXZlTGlicmFyeQAAAAAAAAwAAAAAAAAAEU9ubHlOb25EZWZhdWx0TGliAAAAAAAADQAAAAAAAAAOT25seVJlY2VpdmVMaWIAAAAAAA4AAAAAAAAAEU9ubHlSZWdpc3RlcmVkTGliAAAAAAAADwAAAAAAAAALT25seVNlbmRMaWIAAAAAEAAAAAAAAAAUUGF0aE5vdEluaXRpYWxpemFibGUAAAARAAAAAAAAABFQYXRoTm90VmVyaWZpYWJsZQAAAAAAABIAAAAAAAAAE1BheWxvYWRIYXNoTm90Rm91bmQAAAAAEwAAAAAAAAAJU2FtZVZhbHVlAAAAAAAAFAAAAAAAAAAMVW5hdXRob3JpemVkAAAAFQAAAAAAAAAOVW5zdXBwb3J0ZWRFaWQAAAAAABYAAAAAAAAAClplcm9aUk9GZWUAAAAAABcAAAAAAAAADlpST1VuYXZhaWxhYmxlAAAAAAAY",
1864
+ "AAAABQAAAAAAAAAAAAAAClBhY2tldFNlbnQAAAAAAAEAAAALcGFja2V0X3NlbnQAAAAAAwAAAAAAAAAOZW5jb2RlZF9wYWNrZXQAAAAAAA4AAAAAAAAAAAAAAAdvcHRpb25zAAAAAA4AAAAAAAAAAAAAAAxzZW5kX2xpYnJhcnkAAAATAAAAAAAAAAI=",
1865
+ "AAAABQAAAAAAAAAAAAAADlBhY2tldFZlcmlmaWVkAAAAAAABAAAAD3BhY2tldF92ZXJpZmllZAAAAAADAAAAAAAAAAZvcmlnaW4AAAAAB9AAAAAGT3JpZ2luAAAAAAABAAAAAAAAAAhyZWNlaXZlcgAAABMAAAABAAAAAAAAAAxwYXlsb2FkX2hhc2gAAAPuAAAAIAAAAAAAAAAC",
1866
+ "AAAABQAAAAAAAAAAAAAAD1BhY2tldERlbGl2ZXJlZAAAAAABAAAAEHBhY2tldF9kZWxpdmVyZWQAAAACAAAAAAAAAAZvcmlnaW4AAAAAB9AAAAAGT3JpZ2luAAAAAAABAAAAAAAAAAhyZWNlaXZlcgAAABMAAAABAAAAAg==",
1867
+ "AAAABQAAAAAAAAAAAAAADkx6UmVjZWl2ZUFsZXJ0AAAAAAABAAAAEGx6X3JlY2VpdmVfYWxlcnQAAAAJAAAAAAAAAAhyZWNlaXZlcgAAABMAAAABAAAAAAAAAAhleGVjdXRvcgAAABMAAAABAAAAAAAAAAZvcmlnaW4AAAAAB9AAAAAGT3JpZ2luAAAAAAABAAAAAAAAAARndWlkAAAD7gAAACAAAAABAAAAAAAAAANnYXMAAAAACwAAAAAAAAAAAAAABXZhbHVlAAAAAAAACwAAAAAAAAAAAAAAB21lc3NhZ2UAAAAADgAAAAAAAAAAAAAACmV4dHJhX2RhdGEAAAAAAA4AAAAAAAAAAAAAAAZyZWFzb24AAAAAAA4AAAAAAAAAAg==",
1868
+ "AAAABQAAAAAAAAAAAAAABlpST1NldAAAAAAAAQAAAAd6cm9fc2V0AAAAAAEAAAAAAAAAA3pybwAAAAATAAAAAAAAAAI=",
1869
+ "AAAABQAAAAAAAAAAAAAAC0RlbGVnYXRlU2V0AAAAAAEAAAAMZGVsZWdhdGVfc2V0AAAAAgAAAAAAAAAEb2FwcAAAABMAAAABAAAAAAAAAAhkZWxlZ2F0ZQAAA+gAAAATAAAAAAAAAAI=",
1870
+ "AAAABQAAAAAAAAAAAAAAE0luYm91bmROb25jZVNraXBwZWQAAAAAAQAAABVpbmJvdW5kX25vbmNlX3NraXBwZWQAAAAAAAAEAAAAAAAAAAdzcmNfZWlkAAAAAAQAAAABAAAAAAAAAAZzZW5kZXIAAAAAA+4AAAAgAAAAAQAAAAAAAAAIcmVjZWl2ZXIAAAATAAAAAQAAAAAAAAAFbm9uY2UAAAAAAAAGAAAAAQAAAAI=",
1871
+ "AAAABQAAAAAAAAAAAAAADlBhY2tldE5pbGlmaWVkAAAAAAABAAAAD3BhY2tldF9uaWxpZmllZAAAAAAFAAAAAAAAAAdzcmNfZWlkAAAAAAQAAAABAAAAAAAAAAZzZW5kZXIAAAAAA+4AAAAgAAAAAQAAAAAAAAAIcmVjZWl2ZXIAAAATAAAAAQAAAAAAAAAFbm9uY2UAAAAAAAAGAAAAAQAAAAAAAAAMcGF5bG9hZF9oYXNoAAAD6AAAA+4AAAAgAAAAAAAAAAI=",
1872
+ "AAAABQAAAAAAAAAAAAAAC1BhY2tldEJ1cm50AAAAAAEAAAAMcGFja2V0X2J1cm50AAAABQAAAAAAAAAHc3JjX2VpZAAAAAAEAAAAAQAAAAAAAAAGc2VuZGVyAAAAAAPuAAAAIAAAAAEAAAAAAAAACHJlY2VpdmVyAAAAEwAAAAEAAAAAAAAABW5vbmNlAAAAAAAABgAAAAEAAAAAAAAADHBheWxvYWRfaGFzaAAAA+4AAAAgAAAAAAAAAAI=",
1873
+ "AAAABQAAAAAAAAAAAAAAEUxpYnJhcnlSZWdpc3RlcmVkAAAAAAAAAQAAABJsaWJyYXJ5X3JlZ2lzdGVyZWQAAAAAAAEAAAAAAAAAB25ld19saWIAAAAAEwAAAAAAAAAC",
1874
+ "AAAABQAAAAAAAAAAAAAAFURlZmF1bHRTZW5kTGlicmFyeVNldAAAAAAAAAEAAAAYZGVmYXVsdF9zZW5kX2xpYnJhcnlfc2V0AAAAAgAAAAAAAAAHZHN0X2VpZAAAAAAEAAAAAQAAAAAAAAAHbmV3X2xpYgAAAAATAAAAAAAAAAI=",
1875
+ "AAAABQAAAAAAAAAAAAAAGERlZmF1bHRSZWNlaXZlTGlicmFyeVNldAAAAAEAAAAbZGVmYXVsdF9yZWNlaXZlX2xpYnJhcnlfc2V0AAAAAAIAAAAAAAAAB3NyY19laWQAAAAABAAAAAEAAAAAAAAAB25ld19saWIAAAAAEwAAAAAAAAAC",
1876
+ "AAAABQAAAAAAAAAAAAAAG0RlZmF1bHRSZWNlaXZlTGliVGltZW91dFNldAAAAAABAAAAH2RlZmF1bHRfcmVjZWl2ZV9saWJfdGltZW91dF9zZXQAAAAAAgAAAAAAAAAHc3JjX2VpZAAAAAAEAAAAAQAAAAAAAAAHdGltZW91dAAAAAPoAAAH0AAAAAdUaW1lb3V0AAAAAAAAAAAC",
1877
+ "AAAABQAAAAAAAAAAAAAADlNlbmRMaWJyYXJ5U2V0AAAAAAABAAAAEHNlbmRfbGlicmFyeV9zZXQAAAADAAAAAAAAAAZzZW5kZXIAAAAAABMAAAABAAAAAAAAAAdkc3RfZWlkAAAAAAQAAAABAAAAAAAAAAduZXdfbGliAAAAA+gAAAATAAAAAAAAAAI=",
1878
+ "AAAABQAAAAAAAAAAAAAAEVJlY2VpdmVMaWJyYXJ5U2V0AAAAAAAAAQAAABNyZWNlaXZlX2xpYnJhcnlfc2V0AAAAAAMAAAAAAAAACHJlY2VpdmVyAAAAEwAAAAEAAAAAAAAAB3NyY19laWQAAAAABAAAAAEAAAAAAAAAB25ld19saWIAAAAD6AAAABMAAAAAAAAAAg==",
1879
+ "AAAABQAAAAAAAAAAAAAAGFJlY2VpdmVMaWJyYXJ5VGltZW91dFNldAAAAAEAAAAbcmVjZWl2ZV9saWJyYXJ5X3RpbWVvdXRfc2V0AAAAAAMAAAAAAAAACHJlY2VpdmVyAAAAEwAAAAEAAAAAAAAAA2VpZAAAAAAEAAAAAQAAAAAAAAAHdGltZW91dAAAAAPoAAAH0AAAAAdUaW1lb3V0AAAAAAAAAAAC",
1880
+ "AAAABQAAAAAAAAAAAAAAC0NvbXBvc2VTZW50AAAAAAEAAAAMY29tcG9zZV9zZW50AAAABQAAAAAAAAAEZnJvbQAAABMAAAABAAAAAAAAAAJ0bwAAAAAAEwAAAAEAAAAAAAAABGd1aWQAAAPuAAAAIAAAAAEAAAAAAAAABWluZGV4AAAAAAAABAAAAAEAAAAAAAAAB21lc3NhZ2UAAAAADgAAAAAAAAAC",
1881
+ "AAAABQAAAAAAAAAAAAAAEENvbXBvc2VEZWxpdmVyZWQAAAABAAAAEWNvbXBvc2VfZGVsaXZlcmVkAAAAAAAABAAAAAAAAAAEZnJvbQAAABMAAAABAAAAAAAAAAJ0bwAAAAAAEwAAAAEAAAAAAAAABGd1aWQAAAPuAAAAIAAAAAEAAAAAAAAABWluZGV4AAAAAAAABAAAAAEAAAAC",
1882
+ "AAAABQAAAAAAAAAAAAAADkx6Q29tcG9zZUFsZXJ0AAAAAAABAAAAEGx6X2NvbXBvc2VfYWxlcnQAAAAKAAAAAAAAAARmcm9tAAAAEwAAAAEAAAAAAAAAAnRvAAAAAAATAAAAAQAAAAAAAAAIZXhlY3V0b3IAAAATAAAAAQAAAAAAAAAEZ3VpZAAAA+4AAAAgAAAAAQAAAAAAAAAFaW5kZXgAAAAAAAAEAAAAAQAAAAAAAAADZ2FzAAAAAAsAAAAAAAAAAAAAAAV2YWx1ZQAAAAAAAAsAAAAAAAAAAAAAAAdtZXNzYWdlAAAAAA4AAAAAAAAAAAAAAApleHRyYV9kYXRhAAAAAAAOAAAAAAAAAAAAAAAGcmVhc29uAAAAAAAOAAAAAAAAAAI=",
1883
+ "AAAAAQAAAC1QYXJhbWV0ZXJzIGZvciBzZW5kaW5nIGEgY3Jvc3MtY2hhaW4gbWVzc2FnZS4AAAAAAAAAAAAAD01lc3NhZ2luZ1BhcmFtcwAAAAAFAAAAK0Rlc3RpbmF0aW9uIGVuZHBvaW50IElEIChjaGFpbiBpZGVudGlmaWVyKS4AAAAAB2RzdF9laWQAAAAABAAAABxUaGUgbWVzc2FnZSBwYXlsb2FkIHRvIHNlbmQuAAAAB21lc3NhZ2UAAAAADgAAACFFbmNvZGVkIGV4ZWN1dG9yIGFuZCBEVk4gb3B0aW9ucy4AAAAAAAAHb3B0aW9ucwAAAAAOAAAAOVdoZXRoZXIgdG8gcGF5IGZlZXMgaW4gWlJPIHRva2VuIGluc3RlYWQgb2YgbmF0aXZlIHRva2VuLgAAAAAAAApwYXlfaW5fenJvAAAAAAABAAAANVJlY2VpdmVyIGFkZHJlc3Mgb24gdGhlIGRlc3RpbmF0aW9uIGNoYWluICgzMiBieXRlcykuAAAAAAAACHJlY2VpdmVyAAAD7gAAACA=",
1884
+ "AAAAAQAAAE1Tb3VyY2UgbWVzc2FnZSBpbmZvcm1hdGlvbiBpZGVudGlmeWluZyB3aGVyZSBhIGNyb3NzLWNoYWluIG1lc3NhZ2UgY2FtZSBmcm9tLgAAAAAAAAAAAAAGT3JpZ2luAAAAAAADAAAAF05vbmNlIGZvciB0aGlzIHBhdGh3YXkuAAAAAAVub25jZQAAAAAAAAYAAAAuU2VuZGVyIGFkZHJlc3Mgb24gdGhlIHNvdXJjZSBjaGFpbiAoMzIgYnl0ZXMpLgAAAAAABnNlbmRlcgAAAAAD7gAAACAAAAAmU291cmNlIGVuZHBvaW50IElEIChjaGFpbiBpZGVudGlmaWVyKS4AAAAAAAdzcmNfZWlkAAAAAAQ=",
1885
+ "AAAAAQAAAChGZWUgc3RydWN0dXJlIGZvciBjcm9zcy1jaGFpbiBtZXNzYWdpbmcuAAAAAAAAAAxNZXNzYWdpbmdGZWUAAAACAAAAH0ZlZSBwYWlkIGluIG5hdGl2ZSB0b2tlbiAoWExNKS4AAAAACm5hdGl2ZV9mZWUAAAAAAAsAAAAoRmVlIHBhaWQgaW4gWlJPIHRva2VuIChMYXllclplcm8gdG9rZW4pLgAAAAd6cm9fZmVlAAAAAAs=",
1886
+ "AAAAAQAAAEJSZWNlaXB0IHJldHVybmVkIGFmdGVyIHN1Y2Nlc3NmdWxseSBzZW5kaW5nIGEgY3Jvc3MtY2hhaW4gbWVzc2FnZS4AAAAAAAAAAAAQTWVzc2FnaW5nUmVjZWlwdAAAAAMAAAApVGhlIGZlZXMgY2hhcmdlZCBmb3Igc2VuZGluZyB0aGUgbWVzc2FnZS4AAAAAAAADZmVlAAAAB9AAAAAMTWVzc2FnaW5nRmVlAAAAK0dsb2JhbGx5IHVuaXF1ZSBpZGVudGlmaWVyIGZvciB0aGUgbWVzc2FnZS4AAAAABGd1aWQAAAPuAAAAIAAAACRUaGUgb3V0Ym91bmQgbm9uY2UgZm9yIHRoaXMgcGF0aHdheS4AAAAFbm9uY2UAAAAAAAAG",
1887
+ "AAAAAgAAADhUeXBlIG9mIG1lc3NhZ2UgbGlicmFyeSBpbmRpY2F0aW5nIHN1cHBvcnRlZCBvcGVyYXRpb25zLgAAAAAAAAAOTWVzc2FnZUxpYlR5cGUAAAAAAAMAAAAAAAAAH1N1cHBvcnRzIG9ubHkgc2VuZGluZyBtZXNzYWdlcy4AAAAABFNlbmQAAAAAAAAAIVN1cHBvcnRzIG9ubHkgcmVjZWl2aW5nIG1lc3NhZ2VzLgAAAAAAAAdSZWNlaXZlAAAAAAAAAAAtU3VwcG9ydHMgYm90aCBzZW5kaW5nIGFuZCByZWNlaXZpbmcgbWVzc2FnZXMuAAAAAAAADlNlbmRBbmRSZWNlaXZlAAA=",
1888
+ "AAAAAQAAALdWZXJzaW9uIGluZm9ybWF0aW9uIGZvciBhIG1lc3NhZ2UgbGlicmFyeS4KCk5vdGU6IGBtaW5vcmAgYW5kIGBlbmRwb2ludF92ZXJzaW9uYCB1c2UgYHUzMmAgaW5zdGVhZCBvZiBgdThgIGJlY2F1c2UgU3RlbGxhciBkb2VzIG5vdApzdXBwb3J0IGB1OGAgdHlwZXMgaW4gY29udHJhY3QgaW50ZXJmYWNlIGZ1bmN0aW9ucy4AAAAAAAAAABFNZXNzYWdlTGliVmVyc2lvbgAAAAAAAAMAAAAzRW5kcG9pbnQgdmVyc2lvbiAoc2hvdWxkIG5vdCBleGNlZWQgdTg6Ok1BWCA9IDI1NSkuAAAAABBlbmRwb2ludF92ZXJzaW9uAAAABAAAABVNYWpvciB2ZXJzaW9uIG51bWJlci4AAAAAAAAFbWFqb3IAAAAAAAAGAAAAN01pbm9yIHZlcnNpb24gbnVtYmVyIChzaG91bGQgbm90IGV4Y2VlZCB1ODo6TUFYID0gMjU1KS4AAAAABW1pbm9yAAAAAAAABA==",
1889
+ "AAAAAQAAADZUaW1lb3V0IGNvbmZpZ3VyYXRpb24gZm9yIHJlY2VpdmUgbGlicmFyeSB0cmFuc2l0aW9ucy4AAAAAAAAAAAAHVGltZW91dAAAAAACAAAAKFVuaXggdGltZXN0YW1wIHdoZW4gdGhlIHRpbWVvdXQgZXhwaXJlcy4AAAAGZXhwaXJ5AAAAAAAGAAAAKVRoZSBuZXcgbGlicmFyeSBhZGRyZXNzIHRvIHRyYW5zaXRpb24gdG8uAAAAAAAAA2xpYgAAAAAT",
1890
+ "AAAAAQAAADVQYXJhbWV0ZXJzIGZvciBzZXR0aW5nIG1lc3NhZ2UgbGlicmFyeSBjb25maWd1cmF0aW9uLgAAAAAAAAAAAAAOU2V0Q29uZmlnUGFyYW0AAAAAAAMAAAAfWERSLWVuY29kZWQgY29uZmlndXJhdGlvbiBkYXRhLgAAAAAGY29uZmlnAAAAAAAOAAAAMFRoZSB0eXBlIG9mIGNvbmZpZ3VyYXRpb24gKGUuZy4sIGV4ZWN1dG9yLCBVTE4pLgAAAAtjb25maWdfdHlwZQAAAAAEAAAAJ1RoZSBlbmRwb2ludCBJRCB0aGlzIGNvbmZpZyBhcHBsaWVzIHRvLgAAAAADZWlkAAAAAAQ=",
1891
+ "AAAAAQAAADFSZXNvbHZlZCBsaWJyYXJ5IGluZm9ybWF0aW9uIHdpdGggZGVmYXVsdCBzdGF0dXMuAAAAAAAAAAAAAA9SZXNvbHZlZExpYnJhcnkAAAAAAgAAAERXaGV0aGVyIHRoaXMgaXMgdGhlIGRlZmF1bHQgbGlicmFyeSAodHJ1ZSkgb3IgT0FwcC1zcGVjaWZpYyAoZmFsc2UpLgAAAAppc19kZWZhdWx0AAAAAAABAAAAHVRoZSByZXNvbHZlZCBsaWJyYXJ5IGFkZHJlc3MuAAAAAAAAA2xpYgAAAAAT",
1892
+ "AAAAAQAAAEhPdXRib3VuZCBwYWNrZXQgY29udGFpbmluZyBhbGwgaW5mb3JtYXRpb24gZm9yIGNyb3NzLWNoYWluIHRyYW5zbWlzc2lvbi4AAAAAAAAADk91dGJvdW5kUGFja2V0AAAAAAAHAAAAGERlc3RpbmF0aW9uIGVuZHBvaW50IElELgAAAAdkc3RfZWlkAAAAAAQAAAAsR2xvYmFsbHkgdW5pcXVlIGlkZW50aWZpZXIgZm9yIHRoaXMgbWVzc2FnZS4AAAAEZ3VpZAAAA+4AAAAgAAAAFFRoZSBtZXNzYWdlIHBheWxvYWQuAAAAB21lc3NhZ2UAAAAADgAAACBPdXRib3VuZCBub25jZSBmb3IgdGhpcyBwYXRod2F5LgAAAAVub25jZQAAAAAAAAYAAAAxUmVjZWl2ZXIgYWRkcmVzcyBvbiBkZXN0aW5hdGlvbiBjaGFpbiAoMzIgYnl0ZXMpLgAAAAAAAAhyZWNlaXZlcgAAA+4AAAAgAAAAH1NlbmRlciBhZGRyZXNzIG9uIHNvdXJjZSBjaGFpbi4AAAAABnNlbmRlcgAAAAAAEwAAABNTb3VyY2UgZW5kcG9pbnQgSUQuAAAAAAdzcmNfZWlkAAAAAAQ=",
1893
+ "AAAAAQAAACtBIGZlZSByZWNpcGllbnQgd2l0aCB0aGUgYW1vdW50IHRvIGJlIHBhaWQuAAAAAAAAAAAMRmVlUmVjaXBpZW50AAAAAgAAABVBbW91bnQgb2YgZmVlIHRvIHBheS4AAAAAAAAGYW1vdW50AAAAAAALAAAAH1RoZSBhZGRyZXNzIHRvIHNlbmQgdGhlIGZlZSB0by4AAAAAAnRvAAAAAAAT",
1894
+ "AAAAAQAAADxSZXN1bHQgb2Ygc2VuZCBvcGVyYXRpb24gY29udGFpbmluZyBmZWVzIGFuZCBlbmNvZGVkIHBhY2tldC4AAAAAAAAADUZlZXNBbmRQYWNrZXQAAAAAAAADAAAAKlRoZSBlbmNvZGVkIHBhY2tldCByZWFkeSBmb3IgdHJhbnNtaXNzaW9uLgAAAAAADmVuY29kZWRfcGFja2V0AAAAAAAOAAAAP0xpc3Qgb2YgbmF0aXZlIHRva2VuIGZlZSByZWNpcGllbnRzIChleGVjdXRvciwgRFZOcywgdHJlYXN1cnkpLgAAAAAVbmF0aXZlX2ZlZV9yZWNpcGllbnRzAAAAAAAD6gAAB9AAAAAMRmVlUmVjaXBpZW50AAAALExpc3Qgb2YgWlJPIHRva2VuIGZlZSByZWNpcGllbnRzICh0cmVhc3VyeSkuAAAAEnpyb19mZWVfcmVjaXBpZW50cwAAAAAD6gAAB9AAAAAMRmVlUmVjaXBpZW50",
1895
+ "AAAABAAAAAAAAAAAAAAAElBhY2tldENvZGVjVjFFcnJvcgAAAAAAAgAAAAAAAAATSW52YWxpZFBhY2tldEhlYWRlcgAAAAPpAAAAAAAAABRJbnZhbGlkUGFja2V0VmVyc2lvbgAAA+o=",
1896
+ "AAAABAAAAAAAAAAAAAAAEldvcmtlck9wdGlvbnNFcnJvcgAAAAAACQAAAAAAAAASSW52YWxpZEJ5dGVzTGVuZ3RoAAAAAARNAAAAAAAAABlJbnZhbGlkTGVnYWN5T3B0aW9uc1R5cGUxAAAAAAAETgAAAAAAAAAZSW52YWxpZExlZ2FjeU9wdGlvbnNUeXBlMgAAAAAABE8AAAAAAAAAEUludmFsaWRPcHRpb25UeXBlAAAAAAAEUAAAAAAAAAAOSW52YWxpZE9wdGlvbnMAAAAABFEAAAAAAAAAD0ludmFsaWRXb3JrZXJJZAAAAARSAAAAAAAAAB1MZWdhY3lPcHRpb25zVHlwZTFHYXNPdmVyZmxvdwAAAAAABFMAAAAAAAAAIExlZ2FjeU9wdGlvbnNUeXBlMkFtb3VudE92ZXJmbG93AAAEVAAAAAAAAAAdTGVnYWN5T3B0aW9uc1R5cGUyR2FzT3ZlcmZsb3cAAAAAAARV",
1897
+ "AAAABAAAAAAAAAAAAAAAEUJ1ZmZlclJlYWRlckVycm9yAAAAAAAAAgAAAAAAAAANSW52YWxpZExlbmd0aAAAAAAAA+gAAAAAAAAAFUludmFsaWRBZGRyZXNzUGF5bG9hZAAAAAAAA+k=",
1898
+ "AAAABAAAAAAAAAAAAAAAEUJ1ZmZlcldyaXRlckVycm9yAAAAAAAAAQAAAAAAAAAVSW52YWxpZEFkZHJlc3NQYXlsb2FkAAAAAAAETA==",
1899
+ "AAAABAAAAAAAAAAAAAAAFFR0bENvbmZpZ3VyYWJsZUVycm9yAAAAAwAAAAAAAAAQSW52YWxpZFR0bENvbmZpZwAABLAAAAAAAAAAD1R0bENvbmZpZ0Zyb3plbgAAAASxAAAAAAAAABZUdGxDb25maWdBbHJlYWR5RnJvemVuAAAAAASy",
1900
+ "AAAABAAAAAAAAAAAAAAADE93bmFibGVFcnJvcgAAAAIAAAAAAAAAD093bmVyQWxyZWFkeVNldAAAAAUUAAAAAAAAAAtPd25lck5vdFNldAAAAAUV",
1901
+ "AAAABAAAAAAAAAAAAAAADUJ5dGVzRXh0RXJyb3IAAAAAAAABAAAAAAAAAA5MZW5ndGhNaXNtYXRjaAAAAAAFeA==",
1902
+ "AAAABAAAAAAAAAAAAAAAEFVwZ3JhZGVhYmxlRXJyb3IAAAABAAAAAAAAABNNaWdyYXRpb25Ob3RBbGxvd2VkAAAABdw=",
1903
+ "AAAABQAAACxFdmVudCBlbWl0dGVkIHdoZW4gb3duZXJzaGlwIGlzIHRyYW5zZmVycmVkLgAAAAAAAAAUT3duZXJzaGlwVHJhbnNmZXJyZWQAAAABAAAAFW93bmVyc2hpcF90cmFuc2ZlcnJlZAAAAAAAAAIAAAAAAAAACW9sZF9vd25lcgAAAAAAABMAAAAAAAAAAAAAAAluZXdfb3duZXIAAAAAAAATAAAAAAAAAAI=",
1904
+ "AAAABQAAACpFdmVudCBlbWl0dGVkIHdoZW4gb3duZXJzaGlwIGlzIHJlbm91bmNlZC4AAAAAAAAAAAAST3duZXJzaGlwUmVub3VuY2VkAAAAAAABAAAAE293bmVyc2hpcF9yZW5vdW5jZWQAAAAAAQAAAAAAAAAJb2xkX293bmVyAAAAAAAAEwAAAAAAAAAC",
1905
+ "AAAAAgAAAAAAAAAAAAAADk93bmFibGVTdG9yYWdlAAAAAAABAAAAAAAAAAAAAAAFT3duZXIAAAA=",
1906
+ "AAAAAQAAAElUVEwgY29uZmlndXJhdGlvbjogdGhyZXNob2xkICh3aGVuIHRvIGV4dGVuZCkgYW5kIGV4dGVuZF90byAodGFyZ2V0IFRUTCkuAAAAAAAAAAAAAAlUdGxDb25maWcAAAAAAAACAAAAKFRhcmdldCBUVEwgYWZ0ZXIgZXh0ZW5zaW9uIChpbiBsZWRnZXJzKS4AAAAJZXh0ZW5kX3RvAAAAAAAABAAAADNUVEwgdGhyZXNob2xkIHRoYXQgdHJpZ2dlcnMgZXh0ZW5zaW9uIChpbiBsZWRnZXJzKS4AAAAACXRocmVzaG9sZAAAAAAAAAQ=",
1907
+ "AAAABQAAACdFdmVudCBlbWl0dGVkIHdoZW4gVFRMIGNvbmZpZ3MgYXJlIHNldC4AAAAAAAAAAA1UdGxDb25maWdzU2V0AAAAAAAAAQAAAA90dGxfY29uZmlnc19zZXQAAAAAAgAAAAAAAAAIaW5zdGFuY2UAAAPoAAAH0AAAAAlUdGxDb25maWcAAAAAAAAAAAAAAAAAAApwZXJzaXN0ZW50AAAAAAPoAAAH0AAAAAlUdGxDb25maWcAAAAAAAAAAAAAAg==",
1908
+ "AAAABQAAACpFdmVudCBlbWl0dGVkIHdoZW4gVFRMIGNvbmZpZ3MgYXJlIGZyb3plbi4AAAAAAAAAAAAQVHRsQ29uZmlnc0Zyb3plbgAAAAEAAAASdHRsX2NvbmZpZ3NfZnJvemVuAAAAAAAAAAAAAg==",
1909
+ "AAAAAgAAAAAAAAAAAAAAEFR0bENvbmZpZ1N0b3JhZ2UAAAADAAAAAAAAAAAAAAAGRnJvemVuAAAAAAAAAAAAAAAAAAhJbnN0YW5jZQAAAAAAAAAAAAAAClBlcnNpc3RlbnQAAA==",
1910
+ "AAAAAgAAAAAAAAAAAAAAElVwZ3JhZGVhYmxlU3RvcmFnZQAAAAAAAQAAAAAAAAAAAAAACU1pZ3JhdGluZwAAAA==",
1911
+ "AAAABAAAAAAAAAAAAAAAC1dvcmtlckVycm9yAAAAABMAAAAAAAAAEkFkbWluQWxyZWFkeUV4aXN0cwAAAAAEsAAAAAAAAAANQWRtaW5Ob3RGb3VuZAAAAAAABLEAAAAAAAAAEkFscmVhZHlPbkFsbG93bGlzdAAAAAAEsgAAAAAAAAARQWxyZWFkeU9uRGVueWxpc3QAAAAAAASzAAAAAAAAABtBdHRlbXB0aW5nVG9SZW1vdmVPbmx5QWRtaW4AAAAEtAAAAAAAAAAURGVwb3NpdEFkZHJlc3NOb3RTZXQAAAS1AAAAAAAAABpNZXNzYWdlTGliQWxyZWFkeVN1cHBvcnRlZAAAAAAEtgAAAAAAAAAWTWVzc2FnZUxpYk5vdFN1cHBvcnRlZAAAAAAEtwAAAAAAAAAQTm9BZG1pbnNQcm92aWRlZAAABLgAAAAAAAAACk5vdEFsbG93ZWQAAAAABLkAAAAAAAAADk5vdE9uQWxsb3dsaXN0AAAAAAS6AAAAAAAAAA1Ob3RPbkRlbnlsaXN0AAAAAAAEuwAAAAAAAAAUUGF1c2VTdGF0dXNVbmNoYW5nZWQAAAS8AAAAAAAAAA9QcmljZUZlZWROb3RTZXQAAAAEvQAAAAAAAAAMUmVJbml0aWFsaXplAAAEvgAAAAAAAAAMVW5hdXRob3JpemVkAAAEvwAAAAAAAAAVVW5zdXBwb3J0ZWRNZXNzYWdlTGliAAAAAAAEwAAAAAAAAAASV29ya2VyRmVlTGliTm90U2V0AAAAAATBAAAAAAAAAA5Xb3JrZXJJc1BhdXNlZAAAAAAEwg==",
1912
+ "AAAABQAAAAAAAAAAAAAACFNldEFkbWluAAAAAQAAAAlzZXRfYWRtaW4AAAAAAAACAAAAAAAAAAVhZG1pbgAAAAAAABMAAAAAAAAAAAAAAAZhY3RpdmUAAAAAAAEAAAAAAAAAAg==",
1913
+ "AAAABQAAAAAAAAAAAAAAFlNldFN1cHBvcnRlZE1lc3NhZ2VMaWIAAAAAAAEAAAAZc2V0X3N1cHBvcnRlZF9tZXNzYWdlX2xpYgAAAAAAAAIAAAAAAAAAC21lc3NhZ2VfbGliAAAAABMAAAAAAAAAAAAAAAlzdXBwb3J0ZWQAAAAAAAABAAAAAAAAAAI=",
1914
+ "AAAABQAAAAAAAAAAAAAADFNldEFsbG93bGlzdAAAAAEAAAANc2V0X2FsbG93bGlzdAAAAAAAAAIAAAAAAAAABG9hcHAAAAATAAAAAAAAAAAAAAAHYWxsb3dlZAAAAAABAAAAAAAAAAI=",
1915
+ "AAAABQAAAAAAAAAAAAAAC1NldERlbnlsaXN0AAAAAAEAAAAMc2V0X2RlbnlsaXN0AAAAAgAAAAAAAAAEb2FwcAAAABMAAAAAAAAAAAAAAAZkZW5pZWQAAAAAAAEAAAAAAAAAAg==",
1916
+ "AAAABQAAAAAAAAAAAAAABlBhdXNlZAAAAAAAAQAAAAZwYXVzZWQAAAAAAAEAAAAAAAAABnBhdXNlcgAAAAAAEwAAAAAAAAAC",
1917
+ "AAAABQAAAAAAAAAAAAAACFVucGF1c2VkAAAAAQAAAAh1bnBhdXNlZAAAAAEAAAAAAAAACHVucGF1c2VyAAAAEwAAAAAAAAAC",
1918
+ "AAAABQAAAAAAAAAAAAAAF1NldERlZmF1bHRNdWx0aXBsaWVyQnBzAAAAAAEAAAAac2V0X2RlZmF1bHRfbXVsdGlwbGllcl9icHMAAAAAAAEAAAAAAAAADm11bHRpcGxpZXJfYnBzAAAAAAAEAAAAAAAAAAI=",
1919
+ "AAAABQAAAAAAAAAAAAAAEVNldERlcG9zaXRBZGRyZXNzAAAAAAAAAQAAABNzZXRfZGVwb3NpdF9hZGRyZXNzAAAAAAEAAAAAAAAAD2RlcG9zaXRfYWRkcmVzcwAAAAATAAAAAAAAAAI=",
1920
+ "AAAABQAAAAAAAAAAAAAADFNldFByaWNlRmVlZAAAAAEAAAAOc2V0X3ByaWNlX2ZlZWQAAAAAAAEAAAAAAAAACnByaWNlX2ZlZWQAAAAAABMAAAAAAAAAAg==",
1921
+ "AAAABQAAAAAAAAAAAAAAF1NldFN1cHBvcnRlZE9wdGlvblR5cGVzAAAAAAEAAAAac2V0X3N1cHBvcnRlZF9vcHRpb25fdHlwZXMAAAAAAAIAAAAAAAAAB2RzdF9laWQAAAAABAAAAAAAAAAAAAAADG9wdGlvbl90eXBlcwAAAA4AAAAAAAAAAg==",
1922
+ "AAAABQAAAAAAAAAAAAAAD1NldFdvcmtlckZlZUxpYgAAAAABAAAAEnNldF93b3JrZXJfZmVlX2xpYgAAAAAAAQAAAAAAAAAHZmVlX2xpYgAAAAATAAAAAAAAAAI=",
1923
+ "AAAAAQAAAOFQYXJhbWV0ZXJzIGZvciBEVk4gZmVlIGNhbGN1bGF0aW9uLgoKQ29udGFpbnMgYWxsIGlucHV0cyBuZWVkZWQgYnkgdGhlIGZlZSBsaWJyYXJ5IHRvIGNhbGN1bGF0ZSB2ZXJpZmljYXRpb24gZmVlcwpmb3IgY3Jvc3MtY2hhaW4gbWVzc2FnZXMuIEluY2x1ZGVzIG1lc3NhZ2UgcGFyYW1ldGVycywgY29tbW9uIGNvbmZpZ3VyYXRpb24sCmFuZCBkZXN0aW5hdGlvbi1zcGVjaWZpYyBzZXR0aW5ncy4AAAAAAAAAAAAADER2bkZlZVBhcmFtcwAAAAoAAAAnTnVtYmVyIG9mIGJsb2NrIGNvbmZpcm1hdGlvbnMgcmVxdWlyZWQuAAAAAA1jb25maXJtYXRpb25zAAAAAAAABgAAAExEZWZhdWx0IGZlZSBtdWx0aXBsaWVyIGluIGJhc2lzIHBvaW50cyAodXNlZCBpZiBubyBkc3Qtc3BlY2lmaWMgbXVsdGlwbGllcikuAAAAFmRlZmF1bHRfbXVsdGlwbGllcl9icHMAAAAAAAQAAAArRGVzdGluYXRpb24gZW5kcG9pbnQgSUQgKGNoYWluIGlkZW50aWZpZXIpLgAAAAAHZHN0X2VpZAAAAAAEAAAAI01pbmltdW0gZmVlIG1hcmdpbiBpbiBVU0QgKHNjYWxlZCkuAAAAABBmbG9vcl9tYXJnaW5fdXNkAAAACgAAARA9PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PQpEZXN0aW5hdGlvbi1TcGVjaWZpYyBDb25maWd1cmF0aW9uCj09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09CkdhcyBlc3RpbWF0ZSBmb3IgdmVyaWZpY2F0aW9uIG9uIGRlc3RpbmF0aW9uIGNoYWluLgAAAANnYXMAAAAACgAAAEZEZXN0aW5hdGlvbi1zcGVjaWZpYyBmZWUgbXVsdGlwbGllciBpbiBiYXNpcyBwb2ludHMgKDAgPSB1c2UgZGVmYXVsdCkuAAAAAAAObXVsdGlwbGllcl9icHMAAAAAAAQAAAALRFZOIG9wdGlvbnMAAAAAB29wdGlvbnMAAAAADgAAARA9PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PQpDb21tb24gQ29uZmlndXJhdGlvbgo9PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PQpQcmljZSBmZWVkIGNvbnRyYWN0IGFkZHJlc3MgZm9yIGdhcyBwcmljZSBhbmQgZXhjaGFuZ2UgcmF0ZSBkYXRhLgAAAApwcmljZV9mZWVkAAAAAAATAAAAJ051bWJlciBvZiByZXF1aXJlZCBzaWduYXR1cmVzIChxdW9ydW0pLgAAAAAGcXVvcnVtAAAAAAAEAAAA5T09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09Ck1lc3NhZ2UgUGFyYW1ldGVycwo9PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PQpUaGUgT0FwcCBzZW5kZXIgYWRkcmVzcy4AAAAAAAAGc2VuZGVyAAAAAAAT",
1924
+ "AAAAAQAAAONQYXJhbWV0ZXJzIGZvciBleGVjdXRvciBmZWUgY2FsY3VsYXRpb24uCgpDb250YWlucyBhbGwgaW5wdXRzIG5lZWRlZCBieSB0aGUgZmVlIGxpYnJhcnkgdG8gY2FsY3VsYXRlIGV4ZWN1dGlvbiBmZWVzCmZvciBjcm9zcy1jaGFpbiBtZXNzYWdlcy4gSW5jbHVkZXMgbWVzc2FnZSBwYXJhbWV0ZXJzLCBjb21tb24gY29uZmlndXJhdGlvbiwKYW5kIGRlc3RpbmF0aW9uLXNwZWNpZmljIHNldHRpbmdzLgAAAAAAAAAACUZlZVBhcmFtcwAAAAAAAAsAAAAmU2l6ZSBvZiB0aGUgbWVzc2FnZSBjYWxsZGF0YSBpbiBieXRlcy4AAAAAAA1jYWxsZGF0YV9zaXplAAAAAAAABAAAAExEZWZhdWx0IGZlZSBtdWx0aXBsaWVyIGluIGJhc2lzIHBvaW50cyAodXNlZCBpZiBubyBkc3Qtc3BlY2lmaWMgbXVsdGlwbGllcikuAAAAFmRlZmF1bHRfbXVsdGlwbGllcl9icHMAAAAAAAQAAAArRGVzdGluYXRpb24gZW5kcG9pbnQgSUQgKGNoYWluIGlkZW50aWZpZXIpLgAAAAAHZHN0X2VpZAAAAAAEAAAAI01pbmltdW0gZmVlIG1hcmdpbiBpbiBVU0QgKHNjYWxlZCkuAAAAABBmbG9vcl9tYXJnaW5fdXNkAAAACgAAADZCYXNlIGdhcyBmb3IgZWFjaCBsekNvbXBvc2UgY2FsbCBvbiBkZXN0aW5hdGlvbiBjaGFpbi4AAAAAABNsel9jb21wb3NlX2Jhc2VfZ2FzAAAAAAYAAAETPT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT0KRGVzdGluYXRpb24tU3BlY2lmaWMgQ29uZmlndXJhdGlvbgo9PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PQpCYXNlIGdhcyBmb3IgbHpSZWNlaXZlIGV4ZWN1dGlvbiBvbiBkZXN0aW5hdGlvbiBjaGFpbi4AAAAAE2x6X3JlY2VpdmVfYmFzZV9nYXMAAAAABgAAAEZEZXN0aW5hdGlvbi1zcGVjaWZpYyBmZWUgbXVsdGlwbGllciBpbiBiYXNpcyBwb2ludHMgKDAgPSB1c2UgZGVmYXVsdCkuAAAAAAAObXVsdGlwbGllcl9icHMAAAAAAAQAAAAsTWF4aW11bSBuYXRpdmUgdG9rZW4gdmFsdWUgdGhhdCBjYW4gYmUgc2VudC4AAAAKbmF0aXZlX2NhcAAAAAAACgAAAEZFbmNvZGVkIGV4ZWN1dG9yIG9wdGlvbnMgKGx6UmVjZWl2ZSBnYXMsIGx6Q29tcG9zZSwgbmF0aXZlRHJvcCwgZXRjLikuAAAAAAAHb3B0aW9ucwAAAAAOAAABED09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09CkNvbW1vbiBDb25maWd1cmF0aW9uCj09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09ClByaWNlIGZlZWQgY29udHJhY3QgYWRkcmVzcyBmb3IgZ2FzIHByaWNlIGFuZCBleGNoYW5nZSByYXRlIGRhdGEuAAAACnByaWNlX2ZlZWQAAAAAABMAAADlPT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT0KTWVzc2FnZSBQYXJhbWV0ZXJzCj09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09ClRoZSBPQXBwIHNlbmRlciBhZGRyZXNzLgAAAAAAAAZzZW5kZXIAAAAAABM=",
1925
+ "AAAAAQAAAIRHYXMgcHJpY2UgaW5mb3JtYXRpb24gZm9yIGEgZGVzdGluYXRpb24gZW5kcG9pbnQuCgpDb250YWlucyB0aGUgZXhjaGFuZ2UgcmF0ZSBhbmQgZ2FzIGNvc3RzIG5lZWRlZCBmb3IgY3Jvc3MtY2hhaW4gZmVlIGNhbGN1bGF0aW9ucy4AAAAAAAAABVByaWNlAAAAAAAAAwAAADdHYXMgY29zdCBwZXIgYnl0ZSBvZiBjYWxsZGF0YSBvbiB0aGUgZGVzdGluYXRpb24gY2hhaW4uAAAAAAxnYXNfcGVyX2J5dGUAAAAEAAAAQkdhcyBwcmljZSBpbiB0aGUgc21hbGxlc3QgdW5pdCAod2VpIGZvciBFVk0sIHN0cm9vcHMgZm9yIFN0ZWxsYXIpLgAAAAAAEWdhc19wcmljZV9pbl91bml0AAAAAAAABgAAAKlQcmljZSByYXRpbyA9IChyZW1vdGUgbmF0aXZlIHRva2VuIHByaWNlIC8gbG9jYWwgbmF0aXZlIHRva2VuIHByaWNlKSAqIFBSSUNFX1JBVElPX0RFTk9NSU5BVE9SLgpVc2VkIHRvIGNvbnZlcnQgZGVzdGluYXRpb24gY2hhaW4gZ2FzIGNvc3RzIHRvIHNvdXJjZSBjaGFpbiBuYXRpdmUgdG9rZW4uAAAAAAAAC3ByaWNlX3JhdGlvAAAAAAo=",
1926
+ "AAAAAQAAAIBGZWUgZXN0aW1hdGlvbiByZXN1bHQgd2l0aCBkZXRhaWxlZCBicmVha2Rvd24uCgpDb250YWlucyB0aGUgY2FsY3VsYXRlZCBmZWUgYW5kIGFsbCBpbnRlcm1lZGlhdGUgdmFsdWVzIHVzZWQgaW4gdGhlIGNhbGN1bGF0aW9uLgAAAAAAAAALRmVlRXN0aW1hdGUAAAAABAAAADBTb3VyY2UgY2hhaW4gbmF0aXZlIHRva2VuIHByaWNlIGluIFVTRCAoc2NhbGVkKS4AAAAQbmF0aXZlX3ByaWNlX3VzZAAAAAoAAAAlUHJpY2UgcmF0aW8gdXNlZCBmb3IgdGhlIGNhbGN1bGF0aW9uLgAAAAAAAAtwcmljZV9yYXRpbwAAAAAKAAAAMkRlbm9taW5hdG9yIGZvciB0aGUgcHJpY2UgcmF0aW8gKHR5cGljYWxseSAxMF4yMCkuAAAAAAAXcHJpY2VfcmF0aW9fZGVub21pbmF0b3IAAAAACgAAADFUb3RhbCBnYXMgZmVlIGluIHNvdXJjZSBjaGFpbiBuYXRpdmUgdG9rZW4gdW5pdHMuAAAAAAAADXRvdGFsX2dhc19mZWUAAAAAAAAL",
1927
+ "AAAAAgAAAAAAAAAAAAAADVdvcmtlclN0b3JhZ2UAAAAAAAALAAAAAAAAAAAAAAAGUGF1c2VkAAAAAAAAAAAAAAAAAA5EZXBvc2l0QWRkcmVzcwAAAAAAAAAAAAAAAAAJUHJpY2VGZWVkAAAAAAAAAAAAAAAAAAAMV29ya2VyRmVlTGliAAAAAAAAAAAAAAAURGVmYXVsdE11bHRpcGxpZXJCcHMAAAABAAAAAAAAABRTdXBwb3J0ZWRPcHRpb25UeXBlcwAAAAEAAAAEAAAAAAAAAAAAAAALTWVzc2FnZUxpYnMAAAAAAQAAAAAAAAAJQWxsb3dsaXN0AAAAAAAAAQAAABMAAAABAAAAAAAAAAhEZW55bGlzdAAAAAEAAAATAAAAAAAAAAAAAAANQWxsb3dsaXN0U2l6ZQAAAAAAAAAAAAAAAAAABkFkbWlucwAA" ]),
1928
+ options
1929
+ )
1930
+ }
1931
+ public readonly fromJSON = {
1932
+ set_signer: this.txFromJSON<null>,
1933
+ set_threshold: this.txFromJSON<null>,
1934
+ get_signers: this.txFromJSON<Array<Buffer>>,
1935
+ total_signers: this.txFromJSON<u32>,
1936
+ is_signer: this.txFromJSON<boolean>,
1937
+ threshold: this.txFromJSON<u32>,
1938
+ verify_signatures: this.txFromJSON<null>,
1939
+ verify_n_signatures: this.txFromJSON<null>,
1940
+ set_paused: this.txFromJSON<null>,
1941
+ set_supported_message_lib: this.txFromJSON<null>,
1942
+ set_allowlist: this.txFromJSON<null>,
1943
+ set_denylist: this.txFromJSON<null>,
1944
+ set_default_multiplier_bps: this.txFromJSON<null>,
1945
+ set_deposit_address: this.txFromJSON<null>,
1946
+ set_supported_option_types: this.txFromJSON<null>,
1947
+ set_worker_fee_lib: this.txFromJSON<null>,
1948
+ set_price_feed: this.txFromJSON<null>,
1949
+ is_admin: this.txFromJSON<boolean>,
1950
+ admins: this.txFromJSON<Array<string>>,
1951
+ paused: this.txFromJSON<boolean>,
1952
+ is_supported_message_lib: this.txFromJSON<boolean>,
1953
+ message_libs: this.txFromJSON<Array<string>>,
1954
+ is_on_allowlist: this.txFromJSON<boolean>,
1955
+ is_on_denylist: this.txFromJSON<boolean>,
1956
+ has_acl: this.txFromJSON<boolean>,
1957
+ allowlist_size: this.txFromJSON<u32>,
1958
+ default_multiplier_bps: this.txFromJSON<u32>,
1959
+ deposit_address: this.txFromJSON<string>,
1960
+ price_feed: this.txFromJSON<string>,
1961
+ get_supported_option_types: this.txFromJSON<Option<Buffer>>,
1962
+ worker_fee_lib: this.txFromJSON<string>,
1963
+ get_fee: this.txFromJSON<i128>,
1964
+ assign_job: this.txFromJSON<FeeRecipient>,
1965
+ set_dst_config: this.txFromJSON<null>,
1966
+ dst_config: this.txFromJSON<Option<DstConfig>>,
1967
+ vid: this.txFromJSON<u32>,
1968
+ hash_call_data: this.txFromJSON<Buffer>,
1969
+ set_admin: this.txFromJSON<null>,
1970
+ quorum_change_admin: this.txFromJSON<null>,
1971
+ upgrade: this.txFromJSON<null>,
1972
+ migrate: this.txFromJSON<null>,
1973
+ extend_instance_ttl: this.txFromJSON<null>,
1974
+ set_ttl_configs: this.txFromJSON<null>,
1975
+ ttl_configs: this.txFromJSON<readonly [Option<TtlConfig>, Option<TtlConfig>]>,
1976
+ freeze_ttl_configs: this.txFromJSON<null>,
1977
+ is_ttl_configs_frozen: this.txFromJSON<boolean>
1978
+ }
1979
+ }