viem 2.55.18 → 2.55.19

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 (127) hide show
  1. package/CHANGELOG.md +10 -0
  2. package/_cjs/chains/definitions/morphTachyon.js +25 -0
  3. package/_cjs/chains/definitions/morphTachyon.js.map +1 -0
  4. package/_cjs/chains/definitions/morphTachyonTestnet.js +26 -0
  5. package/_cjs/chains/definitions/morphTachyonTestnet.js.map +1 -0
  6. package/_cjs/chains/definitions/ynxTestnet.js +26 -0
  7. package/_cjs/chains/definitions/ynxTestnet.js.map +1 -0
  8. package/_cjs/chains/index.js +13 -7
  9. package/_cjs/chains/index.js.map +1 -1
  10. package/_cjs/errors/version.js +1 -1
  11. package/_cjs/tempo/Abis.js +102 -1
  12. package/_cjs/tempo/Abis.js.map +1 -1
  13. package/_cjs/tempo/Account.js +188 -16
  14. package/_cjs/tempo/Account.js.map +1 -1
  15. package/_cjs/tempo/Addresses.js +2 -1
  16. package/_cjs/tempo/Addresses.js.map +1 -1
  17. package/_cjs/tempo/Decorator.js +8 -0
  18. package/_cjs/tempo/Decorator.js.map +1 -1
  19. package/_cjs/tempo/Formatters.js +1 -1
  20. package/_cjs/tempo/Formatters.js.map +1 -1
  21. package/_cjs/tempo/Selectors.js +7 -1
  22. package/_cjs/tempo/Selectors.js.map +1 -1
  23. package/_cjs/tempo/Transaction.js +31 -10
  24. package/_cjs/tempo/Transaction.js.map +1 -1
  25. package/_cjs/tempo/actions/accessKey.js +49 -8
  26. package/_cjs/tempo/actions/accessKey.js.map +1 -1
  27. package/_cjs/tempo/actions/index.js +2 -1
  28. package/_cjs/tempo/actions/index.js.map +1 -1
  29. package/_cjs/tempo/actions/multisig.js +95 -0
  30. package/_cjs/tempo/actions/multisig.js.map +1 -0
  31. package/_cjs/tempo/chainConfig.js +58 -29
  32. package/_cjs/tempo/chainConfig.js.map +1 -1
  33. package/_cjs/tempo/internal/multisig.js +56 -0
  34. package/_cjs/tempo/internal/multisig.js.map +1 -0
  35. package/_esm/chains/definitions/morphTachyon.js +22 -0
  36. package/_esm/chains/definitions/morphTachyon.js.map +1 -0
  37. package/_esm/chains/definitions/morphTachyonTestnet.js +23 -0
  38. package/_esm/chains/definitions/morphTachyonTestnet.js.map +1 -0
  39. package/_esm/chains/definitions/ynxTestnet.js +23 -0
  40. package/_esm/chains/definitions/ynxTestnet.js.map +1 -0
  41. package/_esm/chains/index.js +3 -0
  42. package/_esm/chains/index.js.map +1 -1
  43. package/_esm/errors/version.js +1 -1
  44. package/_esm/tempo/Abis.js +101 -0
  45. package/_esm/tempo/Abis.js.map +1 -1
  46. package/_esm/tempo/Account.js +196 -66
  47. package/_esm/tempo/Account.js.map +1 -1
  48. package/_esm/tempo/Addresses.js +1 -0
  49. package/_esm/tempo/Addresses.js.map +1 -1
  50. package/_esm/tempo/Decorator.js +8 -0
  51. package/_esm/tempo/Decorator.js.map +1 -1
  52. package/_esm/tempo/Formatters.js +3 -6
  53. package/_esm/tempo/Formatters.js.map +1 -1
  54. package/_esm/tempo/Selectors.js +6 -0
  55. package/_esm/tempo/Selectors.js.map +1 -1
  56. package/_esm/tempo/Transaction.js +31 -10
  57. package/_esm/tempo/Transaction.js.map +1 -1
  58. package/_esm/tempo/actions/accessKey.js +65 -23
  59. package/_esm/tempo/actions/accessKey.js.map +1 -1
  60. package/_esm/tempo/actions/index.js +1 -0
  61. package/_esm/tempo/actions/index.js.map +1 -1
  62. package/_esm/tempo/actions/multisig.js +245 -0
  63. package/_esm/tempo/actions/multisig.js.map +1 -0
  64. package/_esm/tempo/chainConfig.js +65 -35
  65. package/_esm/tempo/chainConfig.js.map +1 -1
  66. package/_esm/tempo/internal/multisig.js +56 -0
  67. package/_esm/tempo/internal/multisig.js.map +1 -0
  68. package/_types/chains/definitions/morphTachyon.d.ts +51 -0
  69. package/_types/chains/definitions/morphTachyon.d.ts.map +1 -0
  70. package/_types/chains/definitions/morphTachyonTestnet.d.ts +51 -0
  71. package/_types/chains/definitions/morphTachyonTestnet.d.ts.map +1 -0
  72. package/_types/chains/definitions/tempo.d.ts +30 -2
  73. package/_types/chains/definitions/tempo.d.ts.map +1 -1
  74. package/_types/chains/definitions/tempoDevnet.d.ts +30 -2
  75. package/_types/chains/definitions/tempoDevnet.d.ts.map +1 -1
  76. package/_types/chains/definitions/tempoLocalnet.d.ts +30 -2
  77. package/_types/chains/definitions/tempoLocalnet.d.ts.map +1 -1
  78. package/_types/chains/definitions/tempoModerato.d.ts +30 -2
  79. package/_types/chains/definitions/tempoModerato.d.ts.map +1 -1
  80. package/_types/chains/definitions/ynxTestnet.d.ts +51 -0
  81. package/_types/chains/definitions/ynxTestnet.d.ts.map +1 -0
  82. package/_types/chains/index.d.ts +3 -0
  83. package/_types/chains/index.d.ts.map +1 -1
  84. package/_types/errors/version.d.ts +1 -1
  85. package/_types/tempo/Abis.d.ts +321 -0
  86. package/_types/tempo/Abis.d.ts.map +1 -1
  87. package/_types/tempo/Account.d.ts +42 -26
  88. package/_types/tempo/Account.d.ts.map +1 -1
  89. package/_types/tempo/Addresses.d.ts +1 -0
  90. package/_types/tempo/Addresses.d.ts.map +1 -1
  91. package/_types/tempo/Decorator.d.ts +32 -0
  92. package/_types/tempo/Decorator.d.ts.map +1 -1
  93. package/_types/tempo/Formatters.d.ts.map +1 -1
  94. package/_types/tempo/Selectors.d.ts +6 -0
  95. package/_types/tempo/Selectors.d.ts.map +1 -1
  96. package/_types/tempo/Transaction.d.ts +17 -2
  97. package/_types/tempo/Transaction.d.ts.map +1 -1
  98. package/_types/tempo/actions/accessKey.d.ts +35 -17
  99. package/_types/tempo/actions/accessKey.d.ts.map +1 -1
  100. package/_types/tempo/actions/index.d.ts +1 -0
  101. package/_types/tempo/actions/index.d.ts.map +1 -1
  102. package/_types/tempo/actions/multisig.d.ts +472 -0
  103. package/_types/tempo/actions/multisig.d.ts.map +1 -0
  104. package/_types/tempo/chainConfig.d.ts +15 -1
  105. package/_types/tempo/chainConfig.d.ts.map +1 -1
  106. package/_types/tempo/internal/multisig.d.ts +13 -0
  107. package/_types/tempo/internal/multisig.d.ts.map +1 -0
  108. package/_types/tempo/zones/zone.d.ts +90 -6
  109. package/_types/tempo/zones/zone.d.ts.map +1 -1
  110. package/chains/definitions/morphTachyon.ts +22 -0
  111. package/chains/definitions/morphTachyonTestnet.ts +23 -0
  112. package/chains/definitions/ynxTestnet.ts +23 -0
  113. package/chains/index.ts +3 -0
  114. package/errors/version.ts +1 -1
  115. package/package.json +2 -2
  116. package/tempo/Abis.ts +102 -0
  117. package/tempo/Account.ts +329 -51
  118. package/tempo/Addresses.ts +1 -0
  119. package/tempo/Decorator.ts +50 -0
  120. package/tempo/Formatters.ts +4 -5
  121. package/tempo/Selectors.ts +7 -0
  122. package/tempo/Transaction.ts +52 -12
  123. package/tempo/actions/accessKey.ts +128 -32
  124. package/tempo/actions/index.ts +1 -0
  125. package/tempo/actions/multisig.ts +356 -0
  126. package/tempo/chainConfig.ts +82 -35
  127. package/tempo/internal/multisig.ts +72 -0
@@ -666,6 +666,167 @@ export declare const addressRegistry: readonly [{
666
666
  readonly type: "error";
667
667
  readonly inputs: readonly [];
668
668
  }];
669
+ export declare const nativeMultisig: readonly [{
670
+ readonly name: "deriveAccount";
671
+ readonly type: "function";
672
+ readonly stateMutability: "pure";
673
+ readonly inputs: readonly [{
674
+ readonly type: "bytes32";
675
+ readonly name: "salt";
676
+ }, {
677
+ readonly type: "uint8";
678
+ readonly name: "threshold";
679
+ }, {
680
+ readonly type: "tuple[]";
681
+ readonly name: "owners";
682
+ readonly components: readonly [{
683
+ readonly type: "address";
684
+ readonly name: "owner";
685
+ }, {
686
+ readonly type: "uint8";
687
+ readonly name: "weight";
688
+ }];
689
+ }];
690
+ readonly outputs: readonly [{
691
+ readonly type: "address";
692
+ readonly name: "account";
693
+ }];
694
+ }, {
695
+ readonly name: "isMultisigAccount";
696
+ readonly type: "function";
697
+ readonly stateMutability: "view";
698
+ readonly inputs: readonly [{
699
+ readonly type: "address";
700
+ readonly name: "account";
701
+ }];
702
+ readonly outputs: readonly [{
703
+ readonly type: "bool";
704
+ }];
705
+ }, {
706
+ readonly name: "getConfig";
707
+ readonly type: "function";
708
+ readonly stateMutability: "view";
709
+ readonly inputs: readonly [{
710
+ readonly type: "address";
711
+ readonly name: "account";
712
+ }];
713
+ readonly outputs: readonly [{
714
+ readonly type: "tuple";
715
+ readonly components: readonly [{
716
+ readonly type: "uint64";
717
+ readonly name: "version";
718
+ }, {
719
+ readonly type: "uint8";
720
+ readonly name: "threshold";
721
+ }, {
722
+ readonly type: "tuple[]";
723
+ readonly name: "owners";
724
+ readonly components: readonly [{
725
+ readonly type: "address";
726
+ readonly name: "owner";
727
+ }, {
728
+ readonly type: "uint8";
729
+ readonly name: "weight";
730
+ }];
731
+ }];
732
+ }];
733
+ }, {
734
+ readonly name: "updateConfig";
735
+ readonly type: "function";
736
+ readonly stateMutability: "nonpayable";
737
+ readonly inputs: readonly [{
738
+ readonly type: "uint8";
739
+ readonly name: "threshold";
740
+ }, {
741
+ readonly type: "tuple[]";
742
+ readonly name: "owners";
743
+ readonly components: readonly [{
744
+ readonly type: "address";
745
+ readonly name: "owner";
746
+ }, {
747
+ readonly type: "uint8";
748
+ readonly name: "weight";
749
+ }];
750
+ }];
751
+ readonly outputs: readonly [];
752
+ }, {
753
+ readonly name: "MultisigInitialized";
754
+ readonly type: "event";
755
+ readonly inputs: readonly [{
756
+ readonly type: "address";
757
+ readonly name: "account";
758
+ readonly indexed: true;
759
+ }];
760
+ }, {
761
+ readonly name: "MultisigConfigUpdated";
762
+ readonly type: "event";
763
+ readonly inputs: readonly [{
764
+ readonly type: "address";
765
+ readonly name: "account";
766
+ readonly indexed: true;
767
+ }, {
768
+ readonly type: "uint8";
769
+ readonly name: "threshold";
770
+ }, {
771
+ readonly type: "tuple[]";
772
+ readonly name: "owners";
773
+ readonly components: readonly [{
774
+ readonly type: "address";
775
+ readonly name: "owner";
776
+ }, {
777
+ readonly type: "uint8";
778
+ readonly name: "weight";
779
+ }];
780
+ }];
781
+ }, {
782
+ readonly name: "NotMultisigAccount";
783
+ readonly type: "error";
784
+ readonly inputs: readonly [];
785
+ }, {
786
+ readonly name: "InvalidAccount";
787
+ readonly type: "error";
788
+ readonly inputs: readonly [];
789
+ }, {
790
+ readonly name: "InvalidConfig";
791
+ readonly type: "error";
792
+ readonly inputs: readonly [];
793
+ }, {
794
+ readonly name: "InvalidThreshold";
795
+ readonly type: "error";
796
+ readonly inputs: readonly [];
797
+ }, {
798
+ readonly name: "InvalidOwner";
799
+ readonly type: "error";
800
+ readonly inputs: readonly [];
801
+ }, {
802
+ readonly name: "InvalidWeight";
803
+ readonly type: "error";
804
+ readonly inputs: readonly [];
805
+ }, {
806
+ readonly name: "TooManyOwners";
807
+ readonly type: "error";
808
+ readonly inputs: readonly [];
809
+ }, {
810
+ readonly name: "DuplicateOwner";
811
+ readonly type: "error";
812
+ readonly inputs: readonly [];
813
+ }, {
814
+ readonly name: "InvalidOwnerOrder";
815
+ readonly type: "error";
816
+ readonly inputs: readonly [];
817
+ }, {
818
+ readonly name: "AccountAlreadyInitialized";
819
+ readonly type: "error";
820
+ readonly inputs: readonly [];
821
+ }, {
822
+ readonly name: "UnauthorizedCaller";
823
+ readonly type: "error";
824
+ readonly inputs: readonly [];
825
+ }, {
826
+ readonly name: "SameTransactionUpdateNotAllowed";
827
+ readonly type: "error";
828
+ readonly inputs: readonly [];
829
+ }];
669
830
  export declare const nonce: readonly [{
670
831
  readonly name: "getNonce";
671
832
  readonly type: "function";
@@ -5367,6 +5528,166 @@ export declare const abis: readonly [{
5367
5528
  readonly name: "VirtualAddressUnregistered";
5368
5529
  readonly type: "error";
5369
5530
  readonly inputs: readonly [];
5531
+ }, {
5532
+ readonly name: "deriveAccount";
5533
+ readonly type: "function";
5534
+ readonly stateMutability: "pure";
5535
+ readonly inputs: readonly [{
5536
+ readonly type: "bytes32";
5537
+ readonly name: "salt";
5538
+ }, {
5539
+ readonly type: "uint8";
5540
+ readonly name: "threshold";
5541
+ }, {
5542
+ readonly type: "tuple[]";
5543
+ readonly name: "owners";
5544
+ readonly components: readonly [{
5545
+ readonly type: "address";
5546
+ readonly name: "owner";
5547
+ }, {
5548
+ readonly type: "uint8";
5549
+ readonly name: "weight";
5550
+ }];
5551
+ }];
5552
+ readonly outputs: readonly [{
5553
+ readonly type: "address";
5554
+ readonly name: "account";
5555
+ }];
5556
+ }, {
5557
+ readonly name: "isMultisigAccount";
5558
+ readonly type: "function";
5559
+ readonly stateMutability: "view";
5560
+ readonly inputs: readonly [{
5561
+ readonly type: "address";
5562
+ readonly name: "account";
5563
+ }];
5564
+ readonly outputs: readonly [{
5565
+ readonly type: "bool";
5566
+ }];
5567
+ }, {
5568
+ readonly name: "getConfig";
5569
+ readonly type: "function";
5570
+ readonly stateMutability: "view";
5571
+ readonly inputs: readonly [{
5572
+ readonly type: "address";
5573
+ readonly name: "account";
5574
+ }];
5575
+ readonly outputs: readonly [{
5576
+ readonly type: "tuple";
5577
+ readonly components: readonly [{
5578
+ readonly type: "uint64";
5579
+ readonly name: "version";
5580
+ }, {
5581
+ readonly type: "uint8";
5582
+ readonly name: "threshold";
5583
+ }, {
5584
+ readonly type: "tuple[]";
5585
+ readonly name: "owners";
5586
+ readonly components: readonly [{
5587
+ readonly type: "address";
5588
+ readonly name: "owner";
5589
+ }, {
5590
+ readonly type: "uint8";
5591
+ readonly name: "weight";
5592
+ }];
5593
+ }];
5594
+ }];
5595
+ }, {
5596
+ readonly name: "updateConfig";
5597
+ readonly type: "function";
5598
+ readonly stateMutability: "nonpayable";
5599
+ readonly inputs: readonly [{
5600
+ readonly type: "uint8";
5601
+ readonly name: "threshold";
5602
+ }, {
5603
+ readonly type: "tuple[]";
5604
+ readonly name: "owners";
5605
+ readonly components: readonly [{
5606
+ readonly type: "address";
5607
+ readonly name: "owner";
5608
+ }, {
5609
+ readonly type: "uint8";
5610
+ readonly name: "weight";
5611
+ }];
5612
+ }];
5613
+ readonly outputs: readonly [];
5614
+ }, {
5615
+ readonly name: "MultisigInitialized";
5616
+ readonly type: "event";
5617
+ readonly inputs: readonly [{
5618
+ readonly type: "address";
5619
+ readonly name: "account";
5620
+ readonly indexed: true;
5621
+ }];
5622
+ }, {
5623
+ readonly name: "MultisigConfigUpdated";
5624
+ readonly type: "event";
5625
+ readonly inputs: readonly [{
5626
+ readonly type: "address";
5627
+ readonly name: "account";
5628
+ readonly indexed: true;
5629
+ }, {
5630
+ readonly type: "uint8";
5631
+ readonly name: "threshold";
5632
+ }, {
5633
+ readonly type: "tuple[]";
5634
+ readonly name: "owners";
5635
+ readonly components: readonly [{
5636
+ readonly type: "address";
5637
+ readonly name: "owner";
5638
+ }, {
5639
+ readonly type: "uint8";
5640
+ readonly name: "weight";
5641
+ }];
5642
+ }];
5643
+ }, {
5644
+ readonly name: "NotMultisigAccount";
5645
+ readonly type: "error";
5646
+ readonly inputs: readonly [];
5647
+ }, {
5648
+ readonly name: "InvalidAccount";
5649
+ readonly type: "error";
5650
+ readonly inputs: readonly [];
5651
+ }, {
5652
+ readonly name: "InvalidConfig";
5653
+ readonly type: "error";
5654
+ readonly inputs: readonly [];
5655
+ }, {
5656
+ readonly name: "InvalidThreshold";
5657
+ readonly type: "error";
5658
+ readonly inputs: readonly [];
5659
+ }, {
5660
+ readonly name: "InvalidOwner";
5661
+ readonly type: "error";
5662
+ readonly inputs: readonly [];
5663
+ }, {
5664
+ readonly name: "InvalidWeight";
5665
+ readonly type: "error";
5666
+ readonly inputs: readonly [];
5667
+ }, {
5668
+ readonly name: "TooManyOwners";
5669
+ readonly type: "error";
5670
+ readonly inputs: readonly [];
5671
+ }, {
5672
+ readonly name: "DuplicateOwner";
5673
+ readonly type: "error";
5674
+ readonly inputs: readonly [];
5675
+ }, {
5676
+ readonly name: "InvalidOwnerOrder";
5677
+ readonly type: "error";
5678
+ readonly inputs: readonly [];
5679
+ }, {
5680
+ readonly name: "AccountAlreadyInitialized";
5681
+ readonly type: "error";
5682
+ readonly inputs: readonly [];
5683
+ }, {
5684
+ readonly name: "UnauthorizedCaller";
5685
+ readonly type: "error";
5686
+ readonly inputs: readonly [];
5687
+ }, {
5688
+ readonly name: "SameTransactionUpdateNotAllowed";
5689
+ readonly type: "error";
5690
+ readonly inputs: readonly [];
5370
5691
  }, {
5371
5692
  readonly name: "getNonce";
5372
5693
  readonly type: "function";
@@ -1 +1 @@
1
- {"version":3,"file":"Abis.d.ts","sourceRoot":"","sources":["../../tempo/Abis.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAiXlB,CAAA;AAEV,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAsElB,CAAA;AAEV,eAAO,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA0BR,CAAA;AAEV,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA0ErB,CAAA;AAEV,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA8CpB,CAAA;AAEV,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA8UhB,CAAA;AAEV,eAAO,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAgWpB,CAAA;AAEV,eAAO,MAAM,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAgBP,CAAA;AAIV,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA4DvB,CAAA;AAEV,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAwVd,CAAA;AAEV,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAoMhB,CAAA;AAEV,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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"}
1
+ {"version":3,"file":"Abis.d.ts","sourceRoot":"","sources":["../../tempo/Abis.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAiXlB,CAAA;AAEV,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAsElB,CAAA;AAEV,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAmGjB,CAAA;AAEV,eAAO,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA0BR,CAAA;AAEV,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA0ErB,CAAA;AAEV,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA8CpB,CAAA;AAEV,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA8UhB,CAAA;AAEV,eAAO,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAgWpB,CAAA;AAEV,eAAO,MAAM,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAiBP,CAAA;AAIV,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA4DvB,CAAA;AAEV,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAwVd,CAAA;AAEV,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAoMhB,CAAA;AAEV,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAyuBZ,CAAA;AAEV,eAAO,MAAM,QAAQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAmcX,CAAA;AAEV,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA0Gb,CAAA;AAEV,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;EAkBxB,CAAA;AAEV,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;EAW1B,CAAA;AAEV,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA4D7B,CAAA;AAEV,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA4Zb,CAAA;AAEV,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA8Hb,CAAA;AAGV,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA+BzB,CAAA"}
@@ -121,16 +121,17 @@ export declare namespace fromSecp256k1 {
121
121
  type ReturnValue<options extends Options = Options> = from.ReturnValue<options>;
122
122
  }
123
123
  /**
124
- * Instantiates a synthetic Account for a native multisig (TIP-1061) config.
124
+ * Instantiates an Account for a native multisig (TIP-1061) config.
125
125
  *
126
- * The returned account does not hold a key. It is used purely to drive the
127
- * standard `sendTransaction` flow: it derives the multisig address from the
128
- * config and passes the prepared request (carrying the collected owner
129
- * `signatures`) through to the chain serializer, which combines the approvals
130
- * into the multisig signature envelope.
126
+ * The returned account does not hold a key itself. Pass an initial config to
127
+ * derive and bootstrap an account, or pass the address of an initialized
128
+ * account to reconstruct it without retaining the initial config.
131
129
  *
132
- * Owner approvals are produced separately by signing with `multisig` request
133
- * metadata (see `signTransaction`), and provided here via `signatures`.
130
+ * Owners can be accounts or addresses directly, or weighted `{ owner, weight }`
131
+ * entries. Direct owners default to weight `1`, and `threshold` defaults to `1`.
132
+ * Local owner accounts are retained for signing, including nested multisigs.
133
+ * Address-only configs keep the external approval flow, where owner approvals
134
+ * are collected separately and provided via `signatures`.
134
135
  *
135
136
  * Accepts a raw config and normalizes it internally (via `MultisigConfig.from`),
136
137
  * so callers don't need to call `MultisigConfig.from` themselves.
@@ -141,31 +142,36 @@ export declare namespace fromSecp256k1 {
141
142
  *
142
143
  * const account = Account.fromMultisig({
143
144
  * threshold: 2,
144
- * owners: [
145
- * { owner: owner_1.address, weight: 1 },
146
- * { owner: owner_2.address, weight: 1 },
147
- * ],
145
+ * owners: [owner_1, owner_2],
148
146
  * })
149
147
  *
150
- * // Pass the account to `prepareTransactionRequest` — the multisig config is
151
- * // inferred from it, so no `multisig` field is needed.
148
+ * // The multisig config is inferred from the account.
152
149
  * const request = await client.prepareTransactionRequest({ account, ...rest })
153
150
  *
154
- * // The prepared request carries the multisig account as sender, so it doesn't
155
- * // need to be re-passed to `sendTransaction`.
156
- * const transaction = await client.sendTransaction({
157
- * ...request,
158
- * signatures: [signature_1, signature_2],
159
- * })
151
+ * const transaction = await client.signTransaction(request)
160
152
  * ```
161
153
  *
162
- * @param config Multisig config (raw or from `MultisigConfig.from`).
154
+ * @param value Initial multisig config or initialized multisig address.
163
155
  * @returns Multisig account.
164
156
  */
165
- export declare function fromMultisig(config: MultisigConfig.Config): MultisigAccount;
166
- export type MultisigAccount = LocalAccount<'multisig'> & {
167
- /** Multisig config (from `MultisigConfig.from`). */
168
- config: MultisigConfig.Config;
157
+ export declare function fromMultisig(config: fromMultisig.Config): MultisigAccount<MultisigConfig.Config>;
158
+ export declare function fromMultisig(address: Address.Address): MultisigAccount<undefined>;
159
+ export declare function fromMultisig(value: fromMultisig.Parameters): MultisigAccount;
160
+ export declare namespace fromMultisig {
161
+ type Owner = Address.Address | LocalAccount | (Omit<MultisigConfig.Owner, 'owner'> & {
162
+ owner: Address.Address | LocalAccount;
163
+ });
164
+ type Config = Omit<MultisigConfig.Config, 'owners' | 'threshold'> & {
165
+ owners: readonly Owner[];
166
+ threshold?: number | undefined;
167
+ };
168
+ type Parameters = Address.Address | Config;
169
+ }
170
+ export type MultisigAccount<config extends MultisigConfig.Config | undefined = MultisigConfig.Config | undefined> = LocalAccount<'multisig'> & {
171
+ /** Normalized initial config, or `undefined` when instantiated from an address. */
172
+ config: config;
173
+ /** @internal Local owner accounts available for signing. */
174
+ owners: readonly LocalAccount[];
169
175
  };
170
176
  /**
171
177
  * Instantiates an Account from a WebAuthn credential.
@@ -269,10 +275,11 @@ export declare namespace signVoucher {
269
275
  };
270
276
  type ReturnValue = Hex.Hex;
271
277
  }
278
+ /** @internal */
279
+ export declare function getKeyAuthorizationSignPayload(account: LocalAccount, parameters: signKeyAuthorization.Parameters): Hex.Hex;
272
280
  export declare function signKeyAuthorization(account: LocalAccount, parameters: signKeyAuthorization.Parameters): Promise<signKeyAuthorization.ReturnValue>;
273
281
  export declare namespace signKeyAuthorization {
274
282
  type Parameters = Pick<KeyAuthorization.KeyAuthorization, 'chainId' | 'expiry' | 'limits' | 'scopes' | 'witness'> & {
275
- key: resolveAccessKey.Parameters;
276
283
  /**
277
284
  * Whether to authorize the key as an admin key. Admin keys are
278
285
  * unrestricted and can manage the account's other access keys; `expiry`,
@@ -281,6 +288,15 @@ export declare namespace signKeyAuthorization {
281
288
  * [TIP-1049](https://tips.sh/1049)
282
289
  */
283
290
  admin?: boolean | undefined;
291
+ key: resolveAccessKey.Parameters;
292
+ /** @internal Current state used when a multisig account signs the authorization. */
293
+ multisig?: {
294
+ init: boolean;
295
+ states?: readonly Transaction.MultisigOwnerState[] | undefined;
296
+ version: bigint;
297
+ } | undefined;
298
+ /** Serialized approvals from external multisig owners. */
299
+ signatures?: readonly SignatureEnvelope.Serialized[] | undefined;
284
300
  };
285
301
  type ReturnValue = KeyAuthorization.Signed;
286
302
  }
@@ -1 +1 @@
1
- {"version":3,"file":"Account.d.ts","sourceRoot":"","sources":["../../tempo/Account.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"Account.d.ts","sourceRoot":"","sources":["../../tempo/Account.ts"],"names":[],"mappings":"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"}
@@ -3,6 +3,7 @@ export declare const accountKeychain = "0xaAAAaaAA000000000000000000000000000000
3
3
  export declare const accountRegistrar = "0x7702ac0000000000000000000000000000000000";
4
4
  export declare const addressRegistry = "0xfdc0000000000000000000000000000000000000";
5
5
  export declare const feeManager = "0xfeec000000000000000000000000000000000000";
6
+ export declare const nativeMultisig = "0xAACC000000000000000000000000000000000000";
6
7
  export declare const nonceManager = "0x4e4F4E4345000000000000000000000000000000";
7
8
  export declare const pathUsd = "0x20c0000000000000000000000000000000000000";
8
9
  export declare const receivePolicyGuard = "0xB10C000000000000000000000000000000000000";
@@ -1 +1 @@
1
- {"version":3,"file":"Addresses.d.ts","sourceRoot":"","sources":["../../tempo/Addresses.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,qBAAqB,+CACY,CAAA;AAC9C,eAAO,MAAM,eAAe,+CAA+C,CAAA;AAC3E,eAAO,MAAM,gBAAgB,+CAA+C,CAAA;AAC5E,eAAO,MAAM,eAAe,+CAA+C,CAAA;AAC3E,eAAO,MAAM,UAAU,+CAA+C,CAAA;AACtE,eAAO,MAAM,YAAY,+CAA+C,CAAA;AACxE,eAAO,MAAM,OAAO,+CAA+C,CAAA;AACnE,eAAO,MAAM,kBAAkB,+CAA+C,CAAA;AAC9E,eAAO,MAAM,iBAAiB,+CAA+C,CAAA;AAC7E,eAAO,MAAM,aAAa,+CAA+C,CAAA;AACzE,eAAO,MAAM,cAAc,+CAA+C,CAAA;AAC1E,eAAO,MAAM,mBAAmB,+CAA+C,CAAA;AAC/E,eAAO,MAAM,YAAY,+CAA+C,CAAA;AACxE,eAAO,MAAM,cAAc,+CAA+C,CAAA;AAC1E,eAAO,MAAM,SAAS,+CAA+C,CAAA;AACrE,eAAO,MAAM,WAAW,+CAA+C,CAAA;AACvE,eAAO,MAAM,UAAU,+CAA+C,CAAA"}
1
+ {"version":3,"file":"Addresses.d.ts","sourceRoot":"","sources":["../../tempo/Addresses.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,qBAAqB,+CACY,CAAA;AAC9C,eAAO,MAAM,eAAe,+CAA+C,CAAA;AAC3E,eAAO,MAAM,gBAAgB,+CAA+C,CAAA;AAC5E,eAAO,MAAM,eAAe,+CAA+C,CAAA;AAC3E,eAAO,MAAM,UAAU,+CAA+C,CAAA;AACtE,eAAO,MAAM,cAAc,+CAA+C,CAAA;AAC1E,eAAO,MAAM,YAAY,+CAA+C,CAAA;AACxE,eAAO,MAAM,OAAO,+CAA+C,CAAA;AACnE,eAAO,MAAM,kBAAkB,+CAA+C,CAAA;AAC9E,eAAO,MAAM,iBAAiB,+CAA+C,CAAA;AAC7E,eAAO,MAAM,aAAa,+CAA+C,CAAA;AACzE,eAAO,MAAM,cAAc,+CAA+C,CAAA;AAC1E,eAAO,MAAM,mBAAmB,+CAA+C,CAAA;AAC/E,eAAO,MAAM,YAAY,+CAA+C,CAAA;AACxE,eAAO,MAAM,cAAc,+CAA+C,CAAA;AAC1E,eAAO,MAAM,SAAS,+CAA+C,CAAA;AACrE,eAAO,MAAM,WAAW,+CAA+C,CAAA;AACvE,eAAO,MAAM,UAAU,+CAA+C,CAAA"}
@@ -10,6 +10,7 @@ import * as dexActions from './actions/dex.js';
10
10
  import * as earnActions from './actions/earn.js';
11
11
  import * as faucetActions from './actions/faucet.js';
12
12
  import * as feeActions from './actions/fee.js';
13
+ import * as multisigActions from './actions/multisig.js';
13
14
  import * as nonceActions from './actions/nonce.js';
14
15
  import * as policyActions from './actions/policy.js';
15
16
  import * as receivePolicyActions from './actions/receivePolicy.js';
@@ -2166,6 +2167,36 @@ type DecoratorBase<chain extends Chain | undefined = Chain | undefined, account
2166
2167
  */
2167
2168
  fundSync: (parameters: faucetActions.fundSync.Parameters) => Promise<faucetActions.fundSync.ReturnValue>;
2168
2169
  };
2170
+ multisig: {
2171
+ /**
2172
+ * Gets the current configuration for an initialized multisig account.
2173
+ *
2174
+ * @param parameters - Parameters.
2175
+ * @returns The current version, threshold, and owners.
2176
+ */
2177
+ getConfig: (parameters: multisigActions.getConfig.Parameters) => Promise<multisigActions.getConfig.ReturnValue>;
2178
+ /**
2179
+ * Checks whether an address is an initialized native multisig account.
2180
+ *
2181
+ * @param parameters - Parameters.
2182
+ * @returns Whether the account is initialized.
2183
+ */
2184
+ isInitialized: (parameters: multisigActions.isInitialized.Parameters) => Promise<multisigActions.isInitialized.ReturnValue>;
2185
+ /**
2186
+ * Replaces the current configuration for a native multisig account.
2187
+ *
2188
+ * @param parameters - New configuration and transaction parameters.
2189
+ * @returns The transaction hash.
2190
+ */
2191
+ updateConfig: (parameters: multisigActions.updateConfig.Parameters<chain, account>) => Promise<multisigActions.updateConfig.ReturnValue>;
2192
+ /**
2193
+ * Replaces a native multisig configuration and waits for confirmation.
2194
+ *
2195
+ * @param parameters - New configuration and transaction parameters.
2196
+ * @returns The update event and transaction receipt.
2197
+ */
2198
+ updateConfigSync: (parameters: multisigActions.updateConfigSync.Parameters<chain, account>) => Promise<multisigActions.updateConfigSync.ReturnValue>;
2199
+ };
2169
2200
  nonce: {
2170
2201
  /**
2171
2202
  * Gets the nonce for an account and nonce key.
@@ -5276,6 +5307,7 @@ export type Decorator<chain extends Chain | undefined = Chain | undefined, accou
5276
5307
  dex: DecorateNamespace<DecoratorBase<chain, account>['dex'], typeof dexActions>;
5277
5308
  earn: DecorateNamespace<DecoratorBase<chain, account>['earn'], typeof earnActions>;
5278
5309
  faucet: DecorateNamespace<DecoratorBase<chain, account>['faucet'], typeof faucetActions>;
5310
+ multisig: DecorateNamespace<DecoratorBase<chain, account>['multisig'], typeof multisigActions>;
5279
5311
  nonce: DecorateNamespace<DecoratorBase<chain, account>['nonce'], typeof nonceActions>;
5280
5312
  fee: DecorateNamespace<DecoratorBase<chain, account>['fee'], typeof feeActions>;
5281
5313
  policy: DecorateNamespace<DecoratorBase<chain, account>['policy'], typeof policyActions>;