@atomiqlabs/chain-solana 12.0.12 → 12.0.14

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 (114) hide show
  1. package/LICENSE +201 -201
  2. package/dist/index.d.ts +29 -29
  3. package/dist/index.js +45 -45
  4. package/dist/solana/SolanaChainType.d.ts +11 -11
  5. package/dist/solana/SolanaChainType.js +2 -2
  6. package/dist/solana/SolanaChains.d.ts +20 -20
  7. package/dist/solana/SolanaChains.js +25 -25
  8. package/dist/solana/SolanaInitializer.d.ts +18 -18
  9. package/dist/solana/SolanaInitializer.js +63 -63
  10. package/dist/solana/btcrelay/SolanaBtcRelay.d.ts +228 -228
  11. package/dist/solana/btcrelay/SolanaBtcRelay.js +441 -441
  12. package/dist/solana/btcrelay/headers/SolanaBtcHeader.d.ts +29 -29
  13. package/dist/solana/btcrelay/headers/SolanaBtcHeader.js +34 -34
  14. package/dist/solana/btcrelay/headers/SolanaBtcStoredHeader.d.ts +46 -46
  15. package/dist/solana/btcrelay/headers/SolanaBtcStoredHeader.js +78 -78
  16. package/dist/solana/btcrelay/program/programIdl.json +671 -671
  17. package/dist/solana/chain/SolanaAction.d.ts +26 -26
  18. package/dist/solana/chain/SolanaAction.js +86 -86
  19. package/dist/solana/chain/SolanaChainInterface.d.ts +65 -65
  20. package/dist/solana/chain/SolanaChainInterface.js +125 -125
  21. package/dist/solana/chain/SolanaModule.d.ts +14 -14
  22. package/dist/solana/chain/SolanaModule.js +13 -13
  23. package/dist/solana/chain/modules/SolanaAddresses.d.ts +8 -8
  24. package/dist/solana/chain/modules/SolanaAddresses.js +22 -22
  25. package/dist/solana/chain/modules/SolanaBlocks.d.ts +28 -28
  26. package/dist/solana/chain/modules/SolanaBlocks.js +72 -72
  27. package/dist/solana/chain/modules/SolanaEvents.d.ts +68 -68
  28. package/dist/solana/chain/modules/SolanaEvents.js +238 -225
  29. package/dist/solana/chain/modules/SolanaFees.d.ts +121 -121
  30. package/dist/solana/chain/modules/SolanaFees.js +379 -379
  31. package/dist/solana/chain/modules/SolanaSignatures.d.ts +23 -23
  32. package/dist/solana/chain/modules/SolanaSignatures.js +39 -39
  33. package/dist/solana/chain/modules/SolanaSlots.d.ts +31 -31
  34. package/dist/solana/chain/modules/SolanaSlots.js +68 -68
  35. package/dist/solana/chain/modules/SolanaTokens.d.ts +136 -136
  36. package/dist/solana/chain/modules/SolanaTokens.js +248 -248
  37. package/dist/solana/chain/modules/SolanaTransactions.d.ts +124 -124
  38. package/dist/solana/chain/modules/SolanaTransactions.js +323 -323
  39. package/dist/solana/events/SolanaChainEvents.d.ts +88 -88
  40. package/dist/solana/events/SolanaChainEvents.js +256 -256
  41. package/dist/solana/events/SolanaChainEventsBrowser.d.ts +75 -75
  42. package/dist/solana/events/SolanaChainEventsBrowser.js +172 -172
  43. package/dist/solana/program/SolanaProgramBase.d.ts +40 -40
  44. package/dist/solana/program/SolanaProgramBase.js +43 -43
  45. package/dist/solana/program/SolanaProgramModule.d.ts +8 -8
  46. package/dist/solana/program/SolanaProgramModule.js +11 -11
  47. package/dist/solana/program/modules/SolanaProgramEvents.d.ts +53 -53
  48. package/dist/solana/program/modules/SolanaProgramEvents.js +114 -114
  49. package/dist/solana/swaps/SolanaSwapData.d.ts +71 -71
  50. package/dist/solana/swaps/SolanaSwapData.js +292 -292
  51. package/dist/solana/swaps/SolanaSwapModule.d.ts +10 -10
  52. package/dist/solana/swaps/SolanaSwapModule.js +11 -11
  53. package/dist/solana/swaps/SolanaSwapProgram.d.ts +224 -224
  54. package/dist/solana/swaps/SolanaSwapProgram.js +570 -570
  55. package/dist/solana/swaps/SwapTypeEnum.d.ts +11 -11
  56. package/dist/solana/swaps/SwapTypeEnum.js +42 -42
  57. package/dist/solana/swaps/modules/SolanaDataAccount.d.ts +94 -94
  58. package/dist/solana/swaps/modules/SolanaDataAccount.js +231 -231
  59. package/dist/solana/swaps/modules/SolanaLpVault.d.ts +71 -71
  60. package/dist/solana/swaps/modules/SolanaLpVault.js +173 -173
  61. package/dist/solana/swaps/modules/SwapClaim.d.ts +129 -129
  62. package/dist/solana/swaps/modules/SwapClaim.js +291 -291
  63. package/dist/solana/swaps/modules/SwapInit.d.ts +217 -217
  64. package/dist/solana/swaps/modules/SwapInit.js +519 -519
  65. package/dist/solana/swaps/modules/SwapRefund.d.ts +82 -82
  66. package/dist/solana/swaps/modules/SwapRefund.js +262 -262
  67. package/dist/solana/swaps/programIdl.json +945 -945
  68. package/dist/solana/swaps/programTypes.d.ts +943 -943
  69. package/dist/solana/swaps/programTypes.js +945 -945
  70. package/dist/solana/wallet/SolanaKeypairWallet.d.ts +9 -9
  71. package/dist/solana/wallet/SolanaKeypairWallet.js +33 -33
  72. package/dist/solana/wallet/SolanaSigner.d.ts +11 -11
  73. package/dist/solana/wallet/SolanaSigner.js +17 -17
  74. package/dist/utils/Utils.d.ts +53 -53
  75. package/dist/utils/Utils.js +170 -170
  76. package/package.json +41 -41
  77. package/src/index.ts +36 -36
  78. package/src/solana/SolanaChainType.ts +27 -27
  79. package/src/solana/SolanaChains.ts +23 -23
  80. package/src/solana/SolanaInitializer.ts +102 -102
  81. package/src/solana/btcrelay/SolanaBtcRelay.ts +589 -589
  82. package/src/solana/btcrelay/headers/SolanaBtcHeader.ts +57 -57
  83. package/src/solana/btcrelay/headers/SolanaBtcStoredHeader.ts +102 -102
  84. package/src/solana/btcrelay/program/programIdl.json +670 -670
  85. package/src/solana/chain/SolanaAction.ts +108 -108
  86. package/src/solana/chain/SolanaChainInterface.ts +192 -192
  87. package/src/solana/chain/SolanaModule.ts +20 -20
  88. package/src/solana/chain/modules/SolanaAddresses.ts +20 -20
  89. package/src/solana/chain/modules/SolanaBlocks.ts +78 -78
  90. package/src/solana/chain/modules/SolanaEvents.ts +270 -256
  91. package/src/solana/chain/modules/SolanaFees.ts +450 -450
  92. package/src/solana/chain/modules/SolanaSignatures.ts +39 -39
  93. package/src/solana/chain/modules/SolanaSlots.ts +82 -82
  94. package/src/solana/chain/modules/SolanaTokens.ts +307 -307
  95. package/src/solana/chain/modules/SolanaTransactions.ts +365 -365
  96. package/src/solana/events/SolanaChainEvents.ts +299 -299
  97. package/src/solana/events/SolanaChainEventsBrowser.ts +209 -209
  98. package/src/solana/program/SolanaProgramBase.ts +79 -79
  99. package/src/solana/program/SolanaProgramModule.ts +15 -15
  100. package/src/solana/program/modules/SolanaProgramEvents.ts +155 -155
  101. package/src/solana/swaps/SolanaSwapData.ts +430 -430
  102. package/src/solana/swaps/SolanaSwapModule.ts +16 -16
  103. package/src/solana/swaps/SolanaSwapProgram.ts +854 -854
  104. package/src/solana/swaps/SwapTypeEnum.ts +29 -29
  105. package/src/solana/swaps/modules/SolanaDataAccount.ts +307 -307
  106. package/src/solana/swaps/modules/SolanaLpVault.ts +215 -215
  107. package/src/solana/swaps/modules/SwapClaim.ts +389 -389
  108. package/src/solana/swaps/modules/SwapInit.ts +663 -663
  109. package/src/solana/swaps/modules/SwapRefund.ts +323 -323
  110. package/src/solana/swaps/programIdl.json +944 -944
  111. package/src/solana/swaps/programTypes.ts +1885 -1885
  112. package/src/solana/wallet/SolanaKeypairWallet.ts +36 -36
  113. package/src/solana/wallet/SolanaSigner.ts +24 -24
  114. package/src/utils/Utils.ts +180 -180
@@ -1,82 +1,82 @@
1
- /// <reference types="node" />
2
- import { SolanaSwapModule } from "../SolanaSwapModule";
3
- import { SolanaSwapData } from "../SolanaSwapData";
4
- import { SolanaTx } from "../../chain/modules/SolanaTransactions";
5
- import { Buffer } from "buffer";
6
- import { SolanaSigner } from "../../wallet/SolanaSigner";
7
- export declare class SwapRefund extends SolanaSwapModule {
8
- private static readonly CUCosts;
9
- /**
10
- * Action for generic Refund instruction
11
- *
12
- * @param swapData
13
- * @param refundAuthTimeout optional refund authorization timeout (should be 0 for refunding expired swaps)
14
- * @constructor
15
- * @private
16
- */
17
- private Refund;
18
- /**
19
- * Action for refunding with signature, adds the Ed25519 verify instruction
20
- *
21
- * @param swapData
22
- * @param timeout
23
- * @param prefix
24
- * @param signature
25
- * @constructor
26
- * @private
27
- */
28
- private RefundWithSignature;
29
- /**
30
- * Gets the message to be signed as a refund authorization
31
- *
32
- * @param swapData
33
- * @param prefix
34
- * @param timeout
35
- * @private
36
- */
37
- private getRefundMessage;
38
- /**
39
- * Checks whether we should unwrap the WSOL to SOL when refunding the swap
40
- *
41
- * @param swapData
42
- * @private
43
- */
44
- private shouldUnwrap;
45
- signSwapRefund(signer: SolanaSigner, swapData: SolanaSwapData, authorizationTimeout: number): Promise<{
46
- prefix: string;
47
- timeout: string;
48
- signature: string;
49
- }>;
50
- isSignatureValid(swapData: SolanaSwapData, timeout: string, prefix: string, signature: string): Promise<Buffer>;
51
- /**
52
- * Creates transactions required for refunding timed out swap, also unwraps WSOL to SOL
53
- *
54
- * @param swapData swap data to refund
55
- * @param check whether to check if swap is already expired and refundable
56
- * @param initAta should initialize ATA if it doesn't exist
57
- * @param feeRate fee rate to be used for the transactions
58
- */
59
- txsRefund(swapData: SolanaSwapData, check?: boolean, initAta?: boolean, feeRate?: string): Promise<SolanaTx[]>;
60
- /**
61
- * Creates transactions required for refunding the swap with authorization signature, also unwraps WSOL to SOL
62
- *
63
- * @param swapData swap data to refund
64
- * @param timeout signature timeout
65
- * @param prefix signature prefix of the counterparty
66
- * @param signature signature of the counterparty
67
- * @param check whether to check if swap is committed before attempting refund
68
- * @param initAta should initialize ATA if it doesn't exist
69
- * @param feeRate fee rate to be used for the transactions
70
- */
71
- txsRefundWithAuthorization(swapData: SolanaSwapData, timeout: string, prefix: string, signature: string, check?: boolean, initAta?: boolean, feeRate?: string): Promise<SolanaTx[]>;
72
- getRefundFeeRate(swapData: SolanaSwapData): Promise<string>;
73
- /**
74
- * Get the estimated solana transaction fee of the refund transaction, in the worst case scenario in case where the
75
- * ATA needs to be initialized again (i.e. adding the ATA rent exempt lamports to the fee)
76
- */
77
- getRefundFee(swapData: SolanaSwapData, feeRate?: string): Promise<bigint>;
78
- /**
79
- * Get the estimated solana transaction fee of the refund transaction
80
- */
81
- getRawRefundFee(swapData: SolanaSwapData, feeRate?: string): Promise<bigint>;
82
- }
1
+ /// <reference types="node" />
2
+ import { SolanaSwapModule } from "../SolanaSwapModule";
3
+ import { SolanaSwapData } from "../SolanaSwapData";
4
+ import { SolanaTx } from "../../chain/modules/SolanaTransactions";
5
+ import { Buffer } from "buffer";
6
+ import { SolanaSigner } from "../../wallet/SolanaSigner";
7
+ export declare class SwapRefund extends SolanaSwapModule {
8
+ private static readonly CUCosts;
9
+ /**
10
+ * Action for generic Refund instruction
11
+ *
12
+ * @param swapData
13
+ * @param refundAuthTimeout optional refund authorization timeout (should be 0 for refunding expired swaps)
14
+ * @constructor
15
+ * @private
16
+ */
17
+ private Refund;
18
+ /**
19
+ * Action for refunding with signature, adds the Ed25519 verify instruction
20
+ *
21
+ * @param swapData
22
+ * @param timeout
23
+ * @param prefix
24
+ * @param signature
25
+ * @constructor
26
+ * @private
27
+ */
28
+ private RefundWithSignature;
29
+ /**
30
+ * Gets the message to be signed as a refund authorization
31
+ *
32
+ * @param swapData
33
+ * @param prefix
34
+ * @param timeout
35
+ * @private
36
+ */
37
+ private getRefundMessage;
38
+ /**
39
+ * Checks whether we should unwrap the WSOL to SOL when refunding the swap
40
+ *
41
+ * @param swapData
42
+ * @private
43
+ */
44
+ private shouldUnwrap;
45
+ signSwapRefund(signer: SolanaSigner, swapData: SolanaSwapData, authorizationTimeout: number): Promise<{
46
+ prefix: string;
47
+ timeout: string;
48
+ signature: string;
49
+ }>;
50
+ isSignatureValid(swapData: SolanaSwapData, timeout: string, prefix: string, signature: string): Promise<Buffer>;
51
+ /**
52
+ * Creates transactions required for refunding timed out swap, also unwraps WSOL to SOL
53
+ *
54
+ * @param swapData swap data to refund
55
+ * @param check whether to check if swap is already expired and refundable
56
+ * @param initAta should initialize ATA if it doesn't exist
57
+ * @param feeRate fee rate to be used for the transactions
58
+ */
59
+ txsRefund(swapData: SolanaSwapData, check?: boolean, initAta?: boolean, feeRate?: string): Promise<SolanaTx[]>;
60
+ /**
61
+ * Creates transactions required for refunding the swap with authorization signature, also unwraps WSOL to SOL
62
+ *
63
+ * @param swapData swap data to refund
64
+ * @param timeout signature timeout
65
+ * @param prefix signature prefix of the counterparty
66
+ * @param signature signature of the counterparty
67
+ * @param check whether to check if swap is committed before attempting refund
68
+ * @param initAta should initialize ATA if it doesn't exist
69
+ * @param feeRate fee rate to be used for the transactions
70
+ */
71
+ txsRefundWithAuthorization(swapData: SolanaSwapData, timeout: string, prefix: string, signature: string, check?: boolean, initAta?: boolean, feeRate?: string): Promise<SolanaTx[]>;
72
+ getRefundFeeRate(swapData: SolanaSwapData): Promise<string>;
73
+ /**
74
+ * Get the estimated solana transaction fee of the refund transaction, in the worst case scenario in case where the
75
+ * ATA needs to be initialized again (i.e. adding the ATA rent exempt lamports to the fee)
76
+ */
77
+ getRefundFee(swapData: SolanaSwapData, feeRate?: string): Promise<bigint>;
78
+ /**
79
+ * Get the estimated solana transaction fee of the refund transaction
80
+ */
81
+ getRawRefundFee(swapData: SolanaSwapData, feeRate?: string): Promise<bigint>;
82
+ }