@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.
- package/dist/generated/bml.d.ts +40 -30
- package/dist/generated/bml.js +16 -11
- package/dist/generated/counter.d.ts +168 -134
- package/dist/generated/counter.js +26 -21
- package/dist/generated/dvn.d.ts +1932 -0
- package/dist/generated/dvn.js +288 -0
- package/dist/generated/dvn_fee_lib.d.ts +615 -0
- package/dist/generated/dvn_fee_lib.js +123 -0
- package/dist/generated/endpoint.d.ts +75 -41
- package/dist/generated/endpoint.js +22 -17
- package/dist/generated/executor.d.ts +1809 -0
- package/dist/generated/executor.js +269 -0
- package/dist/generated/executor_fee_lib.d.ts +999 -0
- package/dist/generated/executor_fee_lib.js +208 -0
- package/dist/generated/executor_helper.d.ts +869 -0
- package/dist/generated/executor_helper.js +187 -0
- package/dist/generated/oft_std.d.ts +1544 -0
- package/dist/generated/oft_std.js +271 -0
- package/dist/generated/price_feed.d.ts +1002 -0
- package/dist/generated/price_feed.js +170 -0
- package/dist/generated/sml.d.ts +75 -41
- package/dist/generated/sml.js +22 -17
- package/dist/generated/uln302.d.ts +79 -60
- package/dist/generated/uln302.js +37 -37
- package/dist/generated/upgrader.d.ts +70 -0
- package/dist/generated/upgrader.js +19 -0
- package/dist/index.d.ts +8 -0
- package/dist/index.js +11 -0
- package/package.json +8 -7
- package/src/generated/bml.ts +45 -35
- package/src/generated/counter.ts +186 -152
- package/src/generated/dvn.ts +1979 -0
- package/src/generated/dvn_fee_lib.ts +628 -0
- package/src/generated/endpoint.ts +81 -47
- package/src/generated/executor.ts +112 -34
- package/src/generated/executor_fee_lib.ts +1000 -0
- package/src/generated/executor_helper.ts +18 -8
- package/src/generated/oft_std.ts +500 -110
- package/src/generated/price_feed.ts +1043 -0
- package/src/generated/sml.ts +81 -47
- package/src/generated/uln302.ts +98 -69
- package/src/generated/upgrader.ts +102 -0
- package/src/index.ts +13 -0
- package/test/index.test.ts +0 -1
- package/test/oft.test.ts +12 -23
- package/test/suites/testUpgradeable.ts +169 -0
- package/test/upgrader.test.ts +309 -0
package/src/generated/bml.ts
CHANGED
|
@@ -25,6 +25,8 @@ export * from '@stellar/stellar-sdk'
|
|
|
25
25
|
export * as contract from '@stellar/stellar-sdk/contract'
|
|
26
26
|
export * as rpc from '@stellar/stellar-sdk/rpc'
|
|
27
27
|
|
|
28
|
+
export type MigrationData = void;
|
|
29
|
+
|
|
28
30
|
|
|
29
31
|
export const EndpointError = {
|
|
30
32
|
1: {message:"AlreadyRegistered"},
|
|
@@ -306,7 +308,7 @@ export const BufferWriterError = {
|
|
|
306
308
|
1100: {message:"InvalidAddressPayload"}
|
|
307
309
|
}
|
|
308
310
|
|
|
309
|
-
export const
|
|
311
|
+
export const TtlConfigurableError = {
|
|
310
312
|
1200: {message:"InvalidTtlConfig"},
|
|
311
313
|
1201: {message:"TtlConfigFrozen"},
|
|
312
314
|
1202: {message:"TtlConfigAlreadyFrozen"}
|
|
@@ -321,13 +323,17 @@ export const BytesExtError = {
|
|
|
321
323
|
1400: {message:"LengthMismatch"}
|
|
322
324
|
}
|
|
323
325
|
|
|
326
|
+
export const UpgradeableError = {
|
|
327
|
+
1500: {message:"MigrationNotAllowed"}
|
|
328
|
+
}
|
|
329
|
+
|
|
324
330
|
|
|
325
331
|
|
|
326
|
-
export type
|
|
332
|
+
export type OwnableStorage = {tag: "Owner", values: void};
|
|
327
333
|
|
|
328
334
|
|
|
329
335
|
/**
|
|
330
|
-
*
|
|
336
|
+
* TTL configuration: threshold (when to extend) and extend_to (target TTL).
|
|
331
337
|
*/
|
|
332
338
|
export interface TtlConfig {
|
|
333
339
|
/**
|
|
@@ -340,16 +346,18 @@ extend_to: u32;
|
|
|
340
346
|
threshold: u32;
|
|
341
347
|
}
|
|
342
348
|
|
|
343
|
-
export type TtlConfigStorage = {tag: "Frozen", values: void} | {tag: "Instance", values: void} | {tag: "Persistent", values: void};
|
|
344
349
|
|
|
345
350
|
|
|
351
|
+
export type TtlConfigStorage = {tag: "Frozen", values: void} | {tag: "Instance", values: void} | {tag: "Persistent", values: void};
|
|
352
|
+
|
|
353
|
+
export type UpgradeableStorage = {tag: "Migrating", values: void};
|
|
346
354
|
|
|
347
355
|
export interface Client {
|
|
348
356
|
/**
|
|
349
|
-
* Construct and simulate a
|
|
350
|
-
* Always panics - config
|
|
357
|
+
* Construct and simulate a set_config transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
|
|
358
|
+
* Always panics - config modification is not supported.
|
|
351
359
|
*/
|
|
352
|
-
|
|
360
|
+
set_config: ({oapp, param}: {oapp: string, param: Array<SetConfigParam>}, txnOptions?: {
|
|
353
361
|
/**
|
|
354
362
|
* The fee to pay for the transaction. Default: BASE_FEE
|
|
355
363
|
*/
|
|
@@ -364,13 +372,13 @@ export interface Client {
|
|
|
364
372
|
* Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
|
|
365
373
|
*/
|
|
366
374
|
simulate?: boolean;
|
|
367
|
-
}) => Promise<AssembledTransaction<
|
|
375
|
+
}) => Promise<AssembledTransaction<null>>
|
|
368
376
|
|
|
369
377
|
/**
|
|
370
|
-
* Construct and simulate a
|
|
371
|
-
*
|
|
378
|
+
* Construct and simulate a get_config transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
|
|
379
|
+
* Always panics - config retrieval is not supported.
|
|
372
380
|
*/
|
|
373
|
-
|
|
381
|
+
get_config: ({eid, oapp, config_type}: {eid: u32, oapp: string, config_type: u32}, txnOptions?: {
|
|
374
382
|
/**
|
|
375
383
|
* The fee to pay for the transaction. Default: BASE_FEE
|
|
376
384
|
*/
|
|
@@ -385,13 +393,13 @@ export interface Client {
|
|
|
385
393
|
* Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
|
|
386
394
|
*/
|
|
387
395
|
simulate?: boolean;
|
|
388
|
-
}) => Promise<AssembledTransaction<
|
|
396
|
+
}) => Promise<AssembledTransaction<Buffer>>
|
|
389
397
|
|
|
390
398
|
/**
|
|
391
|
-
* Construct and simulate a
|
|
392
|
-
* Returns
|
|
399
|
+
* Construct and simulate a is_supported_eid transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
|
|
400
|
+
* Returns true for all EIDs to allow assignment as a blocking library.
|
|
393
401
|
*/
|
|
394
|
-
|
|
402
|
+
is_supported_eid: ({eid}: {eid: u32}, txnOptions?: {
|
|
395
403
|
/**
|
|
396
404
|
* The fee to pay for the transaction. Default: BASE_FEE
|
|
397
405
|
*/
|
|
@@ -406,13 +414,13 @@ export interface Client {
|
|
|
406
414
|
* Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
|
|
407
415
|
*/
|
|
408
416
|
simulate?: boolean;
|
|
409
|
-
}) => Promise<AssembledTransaction<
|
|
417
|
+
}) => Promise<AssembledTransaction<boolean>>
|
|
410
418
|
|
|
411
419
|
/**
|
|
412
|
-
* Construct and simulate a
|
|
413
|
-
*
|
|
420
|
+
* Construct and simulate a version transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
|
|
421
|
+
* Returns max version to ensure it's recognized as a valid library.
|
|
414
422
|
*/
|
|
415
|
-
|
|
423
|
+
version: (txnOptions?: {
|
|
416
424
|
/**
|
|
417
425
|
* The fee to pay for the transaction. Default: BASE_FEE
|
|
418
426
|
*/
|
|
@@ -427,13 +435,13 @@ export interface Client {
|
|
|
427
435
|
* Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
|
|
428
436
|
*/
|
|
429
437
|
simulate?: boolean;
|
|
430
|
-
}) => Promise<AssembledTransaction<
|
|
438
|
+
}) => Promise<AssembledTransaction<MessageLibVersion>>
|
|
431
439
|
|
|
432
440
|
/**
|
|
433
|
-
* Construct and simulate a
|
|
434
|
-
* Returns
|
|
441
|
+
* Construct and simulate a message_lib_type transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
|
|
442
|
+
* Returns SendAndReceive to indicate it can block both directions.
|
|
435
443
|
*/
|
|
436
|
-
|
|
444
|
+
message_lib_type: (txnOptions?: {
|
|
437
445
|
/**
|
|
438
446
|
* The fee to pay for the transaction. Default: BASE_FEE
|
|
439
447
|
*/
|
|
@@ -448,7 +456,7 @@ export interface Client {
|
|
|
448
456
|
* Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
|
|
449
457
|
*/
|
|
450
458
|
simulate?: boolean;
|
|
451
|
-
}) => Promise<AssembledTransaction<
|
|
459
|
+
}) => Promise<AssembledTransaction<MessageLibType>>
|
|
452
460
|
|
|
453
461
|
/**
|
|
454
462
|
* Construct and simulate a quote transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
|
|
@@ -510,11 +518,11 @@ export class Client extends ContractClient {
|
|
|
510
518
|
}
|
|
511
519
|
constructor(public readonly options: ContractClientOptions) {
|
|
512
520
|
super(
|
|
513
|
-
new ContractSpec([ "
|
|
521
|
+
new ContractSpec([ "AAAAAAAAADVBbHdheXMgcGFuaWNzIC0gY29uZmlnIG1vZGlmaWNhdGlvbiBpcyBub3Qgc3VwcG9ydGVkLgAAAAAAAApzZXRfY29uZmlnAAAAAAACAAAAAAAAAARvYXBwAAAAEwAAAAAAAAAFcGFyYW0AAAAAAAPqAAAH0AAAAA5TZXRDb25maWdQYXJhbQAAAAAAAA==",
|
|
522
|
+
"AAAAAAAAADJBbHdheXMgcGFuaWNzIC0gY29uZmlnIHJldHJpZXZhbCBpcyBub3Qgc3VwcG9ydGVkLgAAAAAACmdldF9jb25maWcAAAAAAAMAAAAAAAAAA2VpZAAAAAAEAAAAAAAAAARvYXBwAAAAEwAAAAAAAAALY29uZmlnX3R5cGUAAAAABAAAAAEAAAAO",
|
|
514
523
|
"AAAAAAAAAERSZXR1cm5zIHRydWUgZm9yIGFsbCBFSURzIHRvIGFsbG93IGFzc2lnbm1lbnQgYXMgYSBibG9ja2luZyBsaWJyYXJ5LgAAABBpc19zdXBwb3J0ZWRfZWlkAAAAAQAAAAAAAAADZWlkAAAAAAQAAAABAAAAAQ==",
|
|
515
|
-
"AAAAAAAAAEBSZXR1cm5zIFNlbmRBbmRSZWNlaXZlIHRvIGluZGljYXRlIGl0IGNhbiBibG9jayBib3RoIGRpcmVjdGlvbnMuAAAAEG1lc3NhZ2VfbGliX3R5cGUAAAAAAAAAAQAAB9AAAAAOTWVzc2FnZUxpYlR5cGUAAA==",
|
|
516
|
-
"AAAAAAAAADVBbHdheXMgcGFuaWNzIC0gY29uZmlnIG1vZGlmaWNhdGlvbiBpcyBub3Qgc3VwcG9ydGVkLgAAAAAAAApzZXRfY29uZmlnAAAAAAACAAAAAAAAAARvYXBwAAAAEwAAAAAAAAAFcGFyYW0AAAAAAAPqAAAH0AAAAA5TZXRDb25maWdQYXJhbQAAAAAAAA==",
|
|
517
524
|
"AAAAAAAAAEFSZXR1cm5zIG1heCB2ZXJzaW9uIHRvIGVuc3VyZSBpdCdzIHJlY29nbml6ZWQgYXMgYSB2YWxpZCBsaWJyYXJ5LgAAAAAAAAd2ZXJzaW9uAAAAAAAAAAABAAAH0AAAABFNZXNzYWdlTGliVmVyc2lvbgAAAA==",
|
|
525
|
+
"AAAAAAAAAEBSZXR1cm5zIFNlbmRBbmRSZWNlaXZlIHRvIGluZGljYXRlIGl0IGNhbiBibG9jayBib3RoIGRpcmVjdGlvbnMuAAAAEG1lc3NhZ2VfbGliX3R5cGUAAAAAAAAAAQAAB9AAAAAOTWVzc2FnZUxpYlR5cGUAAA==",
|
|
518
526
|
"AAAAAAAAACNBbHdheXMgcGFuaWNzIC0gcXVvdGluZyBpcyBibG9ja2VkLgAAAAAFcXVvdGUAAAAAAAADAAAAAAAAAAZwYWNrZXQAAAAAB9AAAAAOT3V0Ym91bmRQYWNrZXQAAAAAAAAAAAAHb3B0aW9ucwAAAAAOAAAAAAAAAApwYXlfaW5fenJvAAAAAAABAAAAAQAAB9AAAAAMTWVzc2FnaW5nRmVl",
|
|
519
527
|
"AAAAAAAAACNBbHdheXMgcGFuaWNzIC0gc2VuZGluZyBpcyBibG9ja2VkLgAAAAAEc2VuZAAAAAMAAAAAAAAABnBhY2tldAAAAAAH0AAAAA5PdXRib3VuZFBhY2tldAAAAAAAAAAAAAdvcHRpb25zAAAAAA4AAAAAAAAACnBheV9pbl96cm8AAAAAAAEAAAABAAAH0AAAAA1GZWVzQW5kUGFja2V0AAAA",
|
|
520
528
|
"AAAABAAAAAAAAAAAAAAADUVuZHBvaW50RXJyb3IAAAAAAAAYAAAAAAAAABFBbHJlYWR5UmVnaXN0ZXJlZAAAAAAAAAEAAAAAAAAADUNvbXBvc2VFeGlzdHMAAAAAAAACAAAAAAAAAA9Db21wb3NlTm90Rm91bmQAAAAAAwAAAAAAAAAcRGVmYXVsdFJlY2VpdmVMaWJVbmF2YWlsYWJsZQAAAAQAAAAAAAAAGURlZmF1bHRTZW5kTGliVW5hdmFpbGFibGUAAAAAAAAFAAAAAAAAABVJbnN1ZmZpY2llbnROYXRpdmVGZWUAAAAAAAAGAAAAAAAAABJJbnN1ZmZpY2llbnRaUk9GZWUAAAAAAAcAAAAAAAAADUludmFsaWRFeHBpcnkAAAAAAAAIAAAAAAAAAAxJbnZhbGlkSW5kZXgAAAAJAAAAAAAAAAxJbnZhbGlkTm9uY2UAAAAKAAAAAAAAABJJbnZhbGlkUGF5bG9hZEhhc2gAAAAAAAsAAAAAAAAAFUludmFsaWRSZWNlaXZlTGlicmFyeQAAAAAAAAwAAAAAAAAAEU9ubHlOb25EZWZhdWx0TGliAAAAAAAADQAAAAAAAAAOT25seVJlY2VpdmVMaWIAAAAAAA4AAAAAAAAAEU9ubHlSZWdpc3RlcmVkTGliAAAAAAAADwAAAAAAAAALT25seVNlbmRMaWIAAAAAEAAAAAAAAAAUUGF0aE5vdEluaXRpYWxpemFibGUAAAARAAAAAAAAABFQYXRoTm90VmVyaWZpYWJsZQAAAAAAABIAAAAAAAAAE1BheWxvYWRIYXNoTm90Rm91bmQAAAAAEwAAAAAAAAAJU2FtZVZhbHVlAAAAAAAAFAAAAAAAAAAMVW5hdXRob3JpemVkAAAAFQAAAAAAAAAOVW5zdXBwb3J0ZWRFaWQAAAAAABYAAAAAAAAAClplcm9aUk9GZWUAAAAAABcAAAAAAAAADlpST1VuYXZhaWxhYmxlAAAAAAAY",
|
|
@@ -551,25 +559,27 @@ export class Client extends ContractClient {
|
|
|
551
559
|
"AAAAAQAAADxSZXN1bHQgb2Ygc2VuZCBvcGVyYXRpb24gY29udGFpbmluZyBmZWVzIGFuZCBlbmNvZGVkIHBhY2tldC4AAAAAAAAADUZlZXNBbmRQYWNrZXQAAAAAAAADAAAAKlRoZSBlbmNvZGVkIHBhY2tldCByZWFkeSBmb3IgdHJhbnNtaXNzaW9uLgAAAAAADmVuY29kZWRfcGFja2V0AAAAAAAOAAAAP0xpc3Qgb2YgbmF0aXZlIHRva2VuIGZlZSByZWNpcGllbnRzIChleGVjdXRvciwgRFZOcywgdHJlYXN1cnkpLgAAAAAVbmF0aXZlX2ZlZV9yZWNpcGllbnRzAAAAAAAD6gAAB9AAAAAMRmVlUmVjaXBpZW50AAAALExpc3Qgb2YgWlJPIHRva2VuIGZlZSByZWNpcGllbnRzICh0cmVhc3VyeSkuAAAAEnpyb19mZWVfcmVjaXBpZW50cwAAAAAD6gAAB9AAAAAMRmVlUmVjaXBpZW50",
|
|
552
560
|
"AAAABAAAAAAAAAAAAAAAEUJ1ZmZlclJlYWRlckVycm9yAAAAAAAAAgAAAAAAAAANSW52YWxpZExlbmd0aAAAAAAAA+gAAAAAAAAAFUludmFsaWRBZGRyZXNzUGF5bG9hZAAAAAAAA+k=",
|
|
553
561
|
"AAAABAAAAAAAAAAAAAAAEUJ1ZmZlcldyaXRlckVycm9yAAAAAAAAAQAAAAAAAAAVSW52YWxpZEFkZHJlc3NQYXlsb2FkAAAAAAAETA==",
|
|
554
|
-
"
|
|
562
|
+
"AAAABAAAAAAAAAAAAAAAFFR0bENvbmZpZ3VyYWJsZUVycm9yAAAAAwAAAAAAAAAQSW52YWxpZFR0bENvbmZpZwAABLAAAAAAAAAAD1R0bENvbmZpZ0Zyb3plbgAAAASxAAAAAAAAABZUdGxDb25maWdBbHJlYWR5RnJvemVuAAAAAASy",
|
|
555
563
|
"AAAABAAAAAAAAAAAAAAADE93bmFibGVFcnJvcgAAAAIAAAAAAAAAD093bmVyQWxyZWFkeVNldAAAAAUUAAAAAAAAAAtPd25lck5vdFNldAAAAAUV",
|
|
556
564
|
"AAAABAAAAAAAAAAAAAAADUJ5dGVzRXh0RXJyb3IAAAAAAAABAAAAAAAAAA5MZW5ndGhNaXNtYXRjaAAAAAAFeA==",
|
|
565
|
+
"AAAABAAAAAAAAAAAAAAAEFVwZ3JhZGVhYmxlRXJyb3IAAAABAAAAAAAAABNNaWdyYXRpb25Ob3RBbGxvd2VkAAAABdw=",
|
|
557
566
|
"AAAABQAAACxFdmVudCBlbWl0dGVkIHdoZW4gb3duZXJzaGlwIGlzIHRyYW5zZmVycmVkLgAAAAAAAAAUT3duZXJzaGlwVHJhbnNmZXJyZWQAAAABAAAAFW93bmVyc2hpcF90cmFuc2ZlcnJlZAAAAAAAAAIAAAAAAAAACW9sZF9vd25lcgAAAAAAABMAAAAAAAAAAAAAAAluZXdfb3duZXIAAAAAAAATAAAAAAAAAAI=",
|
|
558
567
|
"AAAABQAAACpFdmVudCBlbWl0dGVkIHdoZW4gb3duZXJzaGlwIGlzIHJlbm91bmNlZC4AAAAAAAAAAAAST3duZXJzaGlwUmVub3VuY2VkAAAAAAABAAAAE293bmVyc2hpcF9yZW5vdW5jZWQAAAAAAQAAAAAAAAAJb2xkX293bmVyAAAAAAAAEwAAAAAAAAAC",
|
|
559
|
-
"
|
|
560
|
-
"
|
|
561
|
-
"AAAAAgAAAAAAAAAAAAAAEFR0bENvbmZpZ1N0b3JhZ2UAAAADAAAAAAAAAAAAAAAGRnJvemVuAAAAAAAAAAAAAAAAAAhJbnN0YW5jZQAAAAAAAAAAAAAAClBlcnNpc3RlbnQAAA==",
|
|
568
|
+
"AAAAAgAAAAAAAAAAAAAADk93bmFibGVTdG9yYWdlAAAAAAABAAAAAAAAAAAAAAAFT3duZXIAAAA=",
|
|
569
|
+
"AAAAAQAAAElUVEwgY29uZmlndXJhdGlvbjogdGhyZXNob2xkICh3aGVuIHRvIGV4dGVuZCkgYW5kIGV4dGVuZF90byAodGFyZ2V0IFRUTCkuAAAAAAAAAAAAAAlUdGxDb25maWcAAAAAAAACAAAAKFRhcmdldCBUVEwgYWZ0ZXIgZXh0ZW5zaW9uIChpbiBsZWRnZXJzKS4AAAAJZXh0ZW5kX3RvAAAAAAAABAAAADNUVEwgdGhyZXNob2xkIHRoYXQgdHJpZ2dlcnMgZXh0ZW5zaW9uIChpbiBsZWRnZXJzKS4AAAAACXRocmVzaG9sZAAAAAAAAAQ=",
|
|
562
570
|
"AAAABQAAACdFdmVudCBlbWl0dGVkIHdoZW4gVFRMIGNvbmZpZ3MgYXJlIHNldC4AAAAAAAAAAA1UdGxDb25maWdzU2V0AAAAAAAAAQAAAA90dGxfY29uZmlnc19zZXQAAAAAAgAAAAAAAAAIaW5zdGFuY2UAAAPoAAAH0AAAAAlUdGxDb25maWcAAAAAAAAAAAAAAAAAAApwZXJzaXN0ZW50AAAAAAPoAAAH0AAAAAlUdGxDb25maWcAAAAAAAAAAAAAAg==",
|
|
563
|
-
"AAAABQAAACpFdmVudCBlbWl0dGVkIHdoZW4gVFRMIGNvbmZpZ3MgYXJlIGZyb3plbi4AAAAAAAAAAAAQVHRsQ29uZmlnc0Zyb3plbgAAAAEAAAASdHRsX2NvbmZpZ3NfZnJvemVuAAAAAAAAAAAAAg=="
|
|
571
|
+
"AAAABQAAACpFdmVudCBlbWl0dGVkIHdoZW4gVFRMIGNvbmZpZ3MgYXJlIGZyb3plbi4AAAAAAAAAAAAQVHRsQ29uZmlnc0Zyb3plbgAAAAEAAAASdHRsX2NvbmZpZ3NfZnJvemVuAAAAAAAAAAAAAg==",
|
|
572
|
+
"AAAAAgAAAAAAAAAAAAAAEFR0bENvbmZpZ1N0b3JhZ2UAAAADAAAAAAAAAAAAAAAGRnJvemVuAAAAAAAAAAAAAAAAAAhJbnN0YW5jZQAAAAAAAAAAAAAAClBlcnNpc3RlbnQAAA==",
|
|
573
|
+
"AAAAAgAAAAAAAAAAAAAAElVwZ3JhZGVhYmxlU3RvcmFnZQAAAAAAAQAAAAAAAAAAAAAACU1pZ3JhdGluZwAAAA==" ]),
|
|
564
574
|
options
|
|
565
575
|
)
|
|
566
576
|
}
|
|
567
577
|
public readonly fromJSON = {
|
|
568
|
-
|
|
578
|
+
set_config: this.txFromJSON<null>,
|
|
579
|
+
get_config: this.txFromJSON<Buffer>,
|
|
569
580
|
is_supported_eid: this.txFromJSON<boolean>,
|
|
570
|
-
message_lib_type: this.txFromJSON<MessageLibType>,
|
|
571
|
-
set_config: this.txFromJSON<null>,
|
|
572
581
|
version: this.txFromJSON<MessageLibVersion>,
|
|
582
|
+
message_lib_type: this.txFromJSON<MessageLibType>,
|
|
573
583
|
quote: this.txFromJSON<MessagingFee>,
|
|
574
584
|
send: this.txFromJSON<FeesAndPacket>
|
|
575
585
|
}
|