@ercworldio/blockchain-shared 1.0.0-dev.10

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 (680) hide show
  1. package/README.md +1 -0
  2. package/build/chains/ChainDefinition.d.ts +2 -0
  3. package/build/chains/ChainDefinition.d.ts.map +1 -0
  4. package/build/chains/ChainDefinition.js +84 -0
  5. package/build/chains/Provider.d.ts +20 -0
  6. package/build/chains/Provider.d.ts.map +1 -0
  7. package/build/chains/Provider.js +85 -0
  8. package/build/chains/RPC.d.ts +34 -0
  9. package/build/chains/RPC.d.ts.map +1 -0
  10. package/build/chains/RPC.js +147 -0
  11. package/build/chains/chain_to_ticker.json +28 -0
  12. package/build/chains/chains.json +513 -0
  13. package/build/chains/chains_stg-bu.json +513 -0
  14. package/build/chains/chains_v2.json +494 -0
  15. package/build/chains/escrow-contracts/10143.json +8 -0
  16. package/build/chains/escrow-contracts/97.json +8 -0
  17. package/build/chains/event_listener_config_escrows.json +699 -0
  18. package/build/chains/networks_dev.json +669 -0
  19. package/build/chains/networks_prod-bu.json +568 -0
  20. package/build/chains/networks_prod-dz.json +510 -0
  21. package/build/chains/networks_prod.json +553 -0
  22. package/build/chains/networks_stg-bu.json +568 -0
  23. package/build/chains/networks_stg-dz.json +451 -0
  24. package/build/chains/networks_stg.json +541 -0
  25. package/build/chains/networks_stg_drizzle.json +130 -0
  26. package/build/chains/rpcs.d.ts +30 -0
  27. package/build/chains/rpcs.d.ts.map +1 -0
  28. package/build/chains/rpcs.js +138 -0
  29. package/build/constants.d.ts +34 -0
  30. package/build/constants.d.ts.map +1 -0
  31. package/build/constants.js +40 -0
  32. package/build/contracts/Escrow.d.ts +162 -0
  33. package/build/contracts/Escrow.d.ts.map +1 -0
  34. package/build/contracts/Escrow.js +359 -0
  35. package/build/contracts/EscrowErrors.d.ts +75 -0
  36. package/build/contracts/EscrowErrors.d.ts.map +1 -0
  37. package/build/contracts/EscrowErrors.js +47 -0
  38. package/build/contracts/artifacts/ERC20Mock.json +344 -0
  39. package/build/contracts/artifacts/Erc20.json +344 -0
  40. package/build/contracts/artifacts/ErrorAbi.json +1847 -0
  41. package/build/contracts/artifacts/Escrow.json +1545 -0
  42. package/build/contracts/contract-events/AccessControlEvents.d.ts +51 -0
  43. package/build/contracts/contract-events/AccessControlEvents.d.ts.map +1 -0
  44. package/build/contracts/contract-events/AccessControlEvents.js +83 -0
  45. package/build/contracts/contract-events/CoverageInfo.d.ts +16 -0
  46. package/build/contracts/contract-events/CoverageInfo.d.ts.map +1 -0
  47. package/build/contracts/contract-events/CoverageInfo.js +135 -0
  48. package/build/contracts/contract-events/Erc20Events.d.ts +23 -0
  49. package/build/contracts/contract-events/Erc20Events.d.ts.map +1 -0
  50. package/build/contracts/contract-events/Erc20Events.js +52 -0
  51. package/build/contracts/contract-events/EscrowEvents.d.ts +64 -0
  52. package/build/contracts/contract-events/EscrowEvents.d.ts.map +1 -0
  53. package/build/contracts/contract-events/EscrowEvents.js +142 -0
  54. package/build/contracts/contract-events/types/AccessControlEvents.d.ts +9 -0
  55. package/build/contracts/contract-events/types/AccessControlEvents.d.ts.map +1 -0
  56. package/build/contracts/contract-events/types/AccessControlEvents.js +2 -0
  57. package/build/contracts/contract-events/types/events.d.ts +24 -0
  58. package/build/contracts/contract-events/types/events.d.ts.map +1 -0
  59. package/build/contracts/contract-events/types/events.js +2 -0
  60. package/build/contracts/deployment/avalanche/contracts.json +37 -0
  61. package/build/contracts/deployment/bitlayer/contracts.json +50 -0
  62. package/build/contracts/deployment/bsc/contracts.json +62 -0
  63. package/build/contracts/deployment/config.d.ts +4 -0
  64. package/build/contracts/deployment/config.d.ts.map +1 -0
  65. package/build/contracts/deployment/config.js +19 -0
  66. package/build/contracts/deployment/fantom/contracts.json +61 -0
  67. package/build/contracts/deployment/mumbai/contracts.json +43 -0
  68. package/build/contracts/deployment/polygon/contracts.json +43 -0
  69. package/build/contracts/deployment/sepolia/contracts.json +62 -0
  70. package/build/contracts/typechain-types/@openzeppelin/contracts/access/AccessControl.d.ts +160 -0
  71. package/build/contracts/typechain-types/@openzeppelin/contracts/access/AccessControl.d.ts.map +1 -0
  72. package/build/contracts/typechain-types/@openzeppelin/contracts/access/AccessControl.js +2 -0
  73. package/build/contracts/typechain-types/@openzeppelin/contracts/access/IAccessControl.d.ts +148 -0
  74. package/build/contracts/typechain-types/@openzeppelin/contracts/access/IAccessControl.d.ts.map +1 -0
  75. package/build/contracts/typechain-types/@openzeppelin/contracts/access/IAccessControl.js +2 -0
  76. package/build/contracts/typechain-types/@openzeppelin/contracts/access/Ownable.d.ts +55 -0
  77. package/build/contracts/typechain-types/@openzeppelin/contracts/access/Ownable.d.ts.map +1 -0
  78. package/build/contracts/typechain-types/@openzeppelin/contracts/access/Ownable.js +2 -0
  79. package/build/contracts/typechain-types/@openzeppelin/contracts/access/index.d.ts +4 -0
  80. package/build/contracts/typechain-types/@openzeppelin/contracts/access/index.d.ts.map +1 -0
  81. package/build/contracts/typechain-types/@openzeppelin/contracts/access/index.js +2 -0
  82. package/build/contracts/typechain-types/@openzeppelin/contracts/index.d.ts +9 -0
  83. package/build/contracts/typechain-types/@openzeppelin/contracts/index.d.ts.map +1 -0
  84. package/build/contracts/typechain-types/@openzeppelin/contracts/index.js +2 -0
  85. package/build/contracts/typechain-types/@openzeppelin/contracts/interfaces/IERC5267.d.ts +79 -0
  86. package/build/contracts/typechain-types/@openzeppelin/contracts/interfaces/IERC5267.d.ts.map +1 -0
  87. package/build/contracts/typechain-types/@openzeppelin/contracts/interfaces/IERC5267.js +2 -0
  88. package/build/contracts/typechain-types/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC1155Errors.d.ts +21 -0
  89. package/build/contracts/typechain-types/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC1155Errors.d.ts.map +1 -0
  90. package/build/contracts/typechain-types/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC1155Errors.js +2 -0
  91. package/build/contracts/typechain-types/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC20Errors.d.ts +21 -0
  92. package/build/contracts/typechain-types/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC20Errors.d.ts.map +1 -0
  93. package/build/contracts/typechain-types/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC20Errors.js +2 -0
  94. package/build/contracts/typechain-types/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC721Errors.d.ts +21 -0
  95. package/build/contracts/typechain-types/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC721Errors.d.ts.map +1 -0
  96. package/build/contracts/typechain-types/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC721Errors.js +2 -0
  97. package/build/contracts/typechain-types/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/index.d.ts +4 -0
  98. package/build/contracts/typechain-types/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/index.d.ts.map +1 -0
  99. package/build/contracts/typechain-types/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/index.js +2 -0
  100. package/build/contracts/typechain-types/@openzeppelin/contracts/interfaces/index.d.ts +4 -0
  101. package/build/contracts/typechain-types/@openzeppelin/contracts/interfaces/index.d.ts.map +1 -0
  102. package/build/contracts/typechain-types/@openzeppelin/contracts/interfaces/index.js +2 -0
  103. package/build/contracts/typechain-types/@openzeppelin/contracts/token/ERC20/ERC20.d.ts +142 -0
  104. package/build/contracts/typechain-types/@openzeppelin/contracts/token/ERC20/ERC20.d.ts.map +1 -0
  105. package/build/contracts/typechain-types/@openzeppelin/contracts/token/ERC20/ERC20.js +2 -0
  106. package/build/contracts/typechain-types/@openzeppelin/contracts/token/ERC20/IERC20.d.ts +130 -0
  107. package/build/contracts/typechain-types/@openzeppelin/contracts/token/ERC20/IERC20.d.ts.map +1 -0
  108. package/build/contracts/typechain-types/@openzeppelin/contracts/token/ERC20/IERC20.js +2 -0
  109. package/build/contracts/typechain-types/@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.d.ts +142 -0
  110. package/build/contracts/typechain-types/@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.d.ts.map +1 -0
  111. package/build/contracts/typechain-types/@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.js +2 -0
  112. package/build/contracts/typechain-types/@openzeppelin/contracts/token/ERC20/extensions/index.d.ts +2 -0
  113. package/build/contracts/typechain-types/@openzeppelin/contracts/token/ERC20/extensions/index.d.ts.map +1 -0
  114. package/build/contracts/typechain-types/@openzeppelin/contracts/token/ERC20/extensions/index.js +2 -0
  115. package/build/contracts/typechain-types/@openzeppelin/contracts/token/ERC20/index.d.ts +5 -0
  116. package/build/contracts/typechain-types/@openzeppelin/contracts/token/ERC20/index.d.ts.map +1 -0
  117. package/build/contracts/typechain-types/@openzeppelin/contracts/token/ERC20/index.js +2 -0
  118. package/build/contracts/typechain-types/@openzeppelin/contracts/token/index.d.ts +3 -0
  119. package/build/contracts/typechain-types/@openzeppelin/contracts/token/index.d.ts.map +1 -0
  120. package/build/contracts/typechain-types/@openzeppelin/contracts/token/index.js +2 -0
  121. package/build/contracts/typechain-types/@openzeppelin/contracts/utils/ShortStrings.d.ts +21 -0
  122. package/build/contracts/typechain-types/@openzeppelin/contracts/utils/ShortStrings.d.ts.map +1 -0
  123. package/build/contracts/typechain-types/@openzeppelin/contracts/utils/ShortStrings.js +2 -0
  124. package/build/contracts/typechain-types/@openzeppelin/contracts/utils/Strings.d.ts +21 -0
  125. package/build/contracts/typechain-types/@openzeppelin/contracts/utils/Strings.d.ts.map +1 -0
  126. package/build/contracts/typechain-types/@openzeppelin/contracts/utils/Strings.js +2 -0
  127. package/build/contracts/typechain-types/@openzeppelin/contracts/utils/cryptography/EIP712.d.ts +79 -0
  128. package/build/contracts/typechain-types/@openzeppelin/contracts/utils/cryptography/EIP712.d.ts.map +1 -0
  129. package/build/contracts/typechain-types/@openzeppelin/contracts/utils/cryptography/EIP712.js +2 -0
  130. package/build/contracts/typechain-types/@openzeppelin/contracts/utils/cryptography/index.d.ts +2 -0
  131. package/build/contracts/typechain-types/@openzeppelin/contracts/utils/cryptography/index.d.ts.map +1 -0
  132. package/build/contracts/typechain-types/@openzeppelin/contracts/utils/cryptography/index.js +2 -0
  133. package/build/contracts/typechain-types/@openzeppelin/contracts/utils/index.d.ts +9 -0
  134. package/build/contracts/typechain-types/@openzeppelin/contracts/utils/index.d.ts.map +1 -0
  135. package/build/contracts/typechain-types/@openzeppelin/contracts/utils/index.js +2 -0
  136. package/build/contracts/typechain-types/@openzeppelin/contracts/utils/introspection/ERC165.d.ts +30 -0
  137. package/build/contracts/typechain-types/@openzeppelin/contracts/utils/introspection/ERC165.d.ts.map +1 -0
  138. package/build/contracts/typechain-types/@openzeppelin/contracts/utils/introspection/ERC165.js +2 -0
  139. package/build/contracts/typechain-types/@openzeppelin/contracts/utils/introspection/IERC165.d.ts +30 -0
  140. package/build/contracts/typechain-types/@openzeppelin/contracts/utils/introspection/IERC165.d.ts.map +1 -0
  141. package/build/contracts/typechain-types/@openzeppelin/contracts/utils/introspection/IERC165.js +2 -0
  142. package/build/contracts/typechain-types/@openzeppelin/contracts/utils/introspection/index.d.ts +3 -0
  143. package/build/contracts/typechain-types/@openzeppelin/contracts/utils/introspection/index.d.ts.map +1 -0
  144. package/build/contracts/typechain-types/@openzeppelin/contracts/utils/introspection/index.js +2 -0
  145. package/build/contracts/typechain-types/@openzeppelin/contracts/utils/math/SafeCast.d.ts +21 -0
  146. package/build/contracts/typechain-types/@openzeppelin/contracts/utils/math/SafeCast.d.ts.map +1 -0
  147. package/build/contracts/typechain-types/@openzeppelin/contracts/utils/math/SafeCast.js +2 -0
  148. package/build/contracts/typechain-types/@openzeppelin/contracts/utils/math/index.d.ts +2 -0
  149. package/build/contracts/typechain-types/@openzeppelin/contracts/utils/math/index.d.ts.map +1 -0
  150. package/build/contracts/typechain-types/@openzeppelin/contracts/utils/math/index.js +2 -0
  151. package/build/contracts/typechain-types/@openzeppelin/contracts-upgradeable/index.d.ts +3 -0
  152. package/build/contracts/typechain-types/@openzeppelin/contracts-upgradeable/index.d.ts.map +1 -0
  153. package/build/contracts/typechain-types/@openzeppelin/contracts-upgradeable/index.js +2 -0
  154. package/build/contracts/typechain-types/@openzeppelin/contracts-upgradeable/proxy/index.d.ts +3 -0
  155. package/build/contracts/typechain-types/@openzeppelin/contracts-upgradeable/proxy/index.d.ts.map +1 -0
  156. package/build/contracts/typechain-types/@openzeppelin/contracts-upgradeable/proxy/index.js +2 -0
  157. package/build/contracts/typechain-types/@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.d.ts +37 -0
  158. package/build/contracts/typechain-types/@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.d.ts.map +1 -0
  159. package/build/contracts/typechain-types/@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.js +2 -0
  160. package/build/contracts/typechain-types/@openzeppelin/contracts-upgradeable/proxy/utils/index.d.ts +2 -0
  161. package/build/contracts/typechain-types/@openzeppelin/contracts-upgradeable/proxy/utils/index.d.ts.map +1 -0
  162. package/build/contracts/typechain-types/@openzeppelin/contracts-upgradeable/proxy/utils/index.js +2 -0
  163. package/build/contracts/typechain-types/@openzeppelin/index.d.ts +5 -0
  164. package/build/contracts/typechain-types/@openzeppelin/index.d.ts.map +1 -0
  165. package/build/contracts/typechain-types/@openzeppelin/index.js +2 -0
  166. package/build/contracts/typechain-types/common.d.ts +51 -0
  167. package/build/contracts/typechain-types/common.d.ts.map +1 -0
  168. package/build/contracts/typechain-types/common.js +2 -0
  169. package/build/contracts/typechain-types/contracts/escrow/Escrow.d.ts +856 -0
  170. package/build/contracts/typechain-types/contracts/escrow/Escrow.d.ts.map +1 -0
  171. package/build/contracts/typechain-types/contracts/escrow/Escrow.js +2 -0
  172. package/build/contracts/typechain-types/contracts/escrow/EscrowAccessControl.d.ts +218 -0
  173. package/build/contracts/typechain-types/contracts/escrow/EscrowAccessControl.d.ts.map +1 -0
  174. package/build/contracts/typechain-types/contracts/escrow/EscrowAccessControl.js +2 -0
  175. package/build/contracts/typechain-types/contracts/escrow/EscrowErrors.d.ts +21 -0
  176. package/build/contracts/typechain-types/contracts/escrow/EscrowErrors.d.ts.map +1 -0
  177. package/build/contracts/typechain-types/contracts/escrow/EscrowErrors.js +2 -0
  178. package/build/contracts/typechain-types/contracts/escrow/EscrowSignature.d.ts +120 -0
  179. package/build/contracts/typechain-types/contracts/escrow/EscrowSignature.d.ts.map +1 -0
  180. package/build/contracts/typechain-types/contracts/escrow/EscrowSignature.js +2 -0
  181. package/build/contracts/typechain-types/contracts/escrow/TokensWhitelist.d.ts +82 -0
  182. package/build/contracts/typechain-types/contracts/escrow/TokensWhitelist.d.ts.map +1 -0
  183. package/build/contracts/typechain-types/contracts/escrow/TokensWhitelist.js +2 -0
  184. package/build/contracts/typechain-types/contracts/escrow/index.d.ts +6 -0
  185. package/build/contracts/typechain-types/contracts/escrow/index.d.ts.map +1 -0
  186. package/build/contracts/typechain-types/contracts/escrow/index.js +2 -0
  187. package/build/contracts/typechain-types/contracts/index.d.ts +5 -0
  188. package/build/contracts/typechain-types/contracts/index.d.ts.map +1 -0
  189. package/build/contracts/typechain-types/contracts/index.js +2 -0
  190. package/build/contracts/typechain-types/contracts/mock/erc20/ERC20Mock.d.ts +146 -0
  191. package/build/contracts/typechain-types/contracts/mock/erc20/ERC20Mock.d.ts.map +1 -0
  192. package/build/contracts/typechain-types/contracts/mock/erc20/ERC20Mock.js +2 -0
  193. package/build/contracts/typechain-types/contracts/mock/erc20/index.d.ts +2 -0
  194. package/build/contracts/typechain-types/contracts/mock/erc20/index.d.ts.map +1 -0
  195. package/build/contracts/typechain-types/contracts/mock/erc20/index.js +2 -0
  196. package/build/contracts/typechain-types/contracts/mock/index.d.ts +3 -0
  197. package/build/contracts/typechain-types/contracts/mock/index.d.ts.map +1 -0
  198. package/build/contracts/typechain-types/contracts/mock/index.js +2 -0
  199. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/access/AccessControl__factory.d.ts +182 -0
  200. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/access/AccessControl__factory.d.ts.map +1 -0
  201. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/access/AccessControl__factory.js +244 -0
  202. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/access/IAccessControl__factory.d.ts +158 -0
  203. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/access/IAccessControl__factory.d.ts.map +1 -0
  204. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/access/IAccessControl__factory.js +212 -0
  205. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/access/Ownable__factory.d.ts +65 -0
  206. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/access/Ownable__factory.d.ts.map +1 -0
  207. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/access/Ownable__factory.js +93 -0
  208. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/access/index.d.ts +4 -0
  209. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/access/index.d.ts.map +1 -0
  210. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/access/index.js +12 -0
  211. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/index.d.ts +5 -0
  212. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/index.d.ts.map +1 -0
  213. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/index.js +43 -0
  214. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/interfaces/IERC5267__factory.d.ts +47 -0
  215. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/interfaces/IERC5267__factory.d.ts.map +1 -0
  216. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/interfaces/IERC5267__factory.js +68 -0
  217. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC1155Errors__factory.d.ts +84 -0
  218. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC1155Errors__factory.d.ts.map +1 -0
  219. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC1155Errors__factory.js +121 -0
  220. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC20Errors__factory.d.ts +72 -0
  221. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC20Errors__factory.d.ts.map +1 -0
  222. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC20Errors__factory.js +105 -0
  223. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC721Errors__factory.d.ts +84 -0
  224. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC721Errors__factory.d.ts.map +1 -0
  225. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC721Errors__factory.js +122 -0
  226. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/index.d.ts +4 -0
  227. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/index.d.ts.map +1 -0
  228. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/index.js +12 -0
  229. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/interfaces/index.d.ts +3 -0
  230. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/interfaces/index.d.ts.map +1 -0
  231. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/interfaces/index.js +42 -0
  232. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/token/ERC20/ERC20__factory.d.ts +242 -0
  233. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/token/ERC20/ERC20__factory.d.ts.map +1 -0
  234. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/token/ERC20/ERC20__factory.js +327 -0
  235. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/token/ERC20/IERC20__factory.d.ts +148 -0
  236. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/token/ERC20/IERC20__factory.d.ts.map +1 -0
  237. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/token/ERC20/IERC20__factory.js +202 -0
  238. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata__factory.d.ts +178 -0
  239. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata__factory.d.ts.map +1 -0
  240. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata__factory.js +241 -0
  241. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/token/ERC20/extensions/index.d.ts +2 -0
  242. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/token/ERC20/extensions/index.d.ts.map +1 -0
  243. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/token/ERC20/extensions/index.js +8 -0
  244. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/token/ERC20/index.d.ts +4 -0
  245. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/token/ERC20/index.d.ts.map +1 -0
  246. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/token/ERC20/index.js +44 -0
  247. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/token/index.d.ts +2 -0
  248. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/token/index.d.ts.map +1 -0
  249. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/token/index.js +40 -0
  250. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/utils/ShortStrings__factory.d.ts +35 -0
  251. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/utils/ShortStrings__factory.d.ts.map +1 -0
  252. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/utils/ShortStrings__factory.js +55 -0
  253. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/utils/Strings__factory.d.ts +43 -0
  254. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/utils/Strings__factory.d.ts.map +1 -0
  255. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/utils/Strings__factory.js +65 -0
  256. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/EIP712__factory.d.ts +59 -0
  257. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/EIP712__factory.d.ts.map +1 -0
  258. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/EIP712__factory.js +84 -0
  259. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/index.d.ts +2 -0
  260. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/index.d.ts.map +1 -0
  261. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/index.js +8 -0
  262. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/utils/index.d.ts +6 -0
  263. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/utils/index.d.ts.map +1 -0
  264. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/utils/index.js +46 -0
  265. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/utils/introspection/ERC165__factory.d.ts +22 -0
  266. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/utils/introspection/ERC165__factory.d.ts.map +1 -0
  267. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/utils/introspection/ERC165__factory.js +38 -0
  268. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/utils/introspection/IERC165__factory.d.ts +22 -0
  269. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/utils/introspection/IERC165__factory.d.ts.map +1 -0
  270. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/utils/introspection/IERC165__factory.js +38 -0
  271. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/utils/introspection/index.d.ts +3 -0
  272. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/utils/introspection/index.d.ts.map +1 -0
  273. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/utils/introspection/index.js +10 -0
  274. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/utils/math/SafeCast__factory.d.ts +63 -0
  275. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/utils/math/SafeCast__factory.d.ts.map +1 -0
  276. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/utils/math/SafeCast__factory.js +93 -0
  277. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/utils/math/index.d.ts +2 -0
  278. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/utils/math/index.d.ts.map +1 -0
  279. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/utils/math/index.js +8 -0
  280. package/build/contracts/typechain-types/factories/@openzeppelin/contracts-upgradeable/index.d.ts +2 -0
  281. package/build/contracts/typechain-types/factories/@openzeppelin/contracts-upgradeable/index.d.ts.map +1 -0
  282. package/build/contracts/typechain-types/factories/@openzeppelin/contracts-upgradeable/index.js +40 -0
  283. package/build/contracts/typechain-types/factories/@openzeppelin/contracts-upgradeable/proxy/index.d.ts +2 -0
  284. package/build/contracts/typechain-types/factories/@openzeppelin/contracts-upgradeable/proxy/index.d.ts.map +1 -0
  285. package/build/contracts/typechain-types/factories/@openzeppelin/contracts-upgradeable/proxy/index.js +40 -0
  286. package/build/contracts/typechain-types/factories/@openzeppelin/contracts-upgradeable/proxy/utils/Initializable__factory.d.ts +26 -0
  287. package/build/contracts/typechain-types/factories/@openzeppelin/contracts-upgradeable/proxy/utils/Initializable__factory.d.ts.map +1 -0
  288. package/build/contracts/typechain-types/factories/@openzeppelin/contracts-upgradeable/proxy/utils/Initializable__factory.js +42 -0
  289. package/build/contracts/typechain-types/factories/@openzeppelin/contracts-upgradeable/proxy/utils/index.d.ts +2 -0
  290. package/build/contracts/typechain-types/factories/@openzeppelin/contracts-upgradeable/proxy/utils/index.d.ts.map +1 -0
  291. package/build/contracts/typechain-types/factories/@openzeppelin/contracts-upgradeable/proxy/utils/index.js +8 -0
  292. package/build/contracts/typechain-types/factories/@openzeppelin/index.d.ts +3 -0
  293. package/build/contracts/typechain-types/factories/@openzeppelin/index.d.ts.map +1 -0
  294. package/build/contracts/typechain-types/factories/@openzeppelin/index.js +41 -0
  295. package/build/contracts/typechain-types/factories/contracts/escrow/EscrowAccessControl__factory.d.ts +415 -0
  296. package/build/contracts/typechain-types/factories/contracts/escrow/EscrowAccessControl__factory.d.ts.map +1 -0
  297. package/build/contracts/typechain-types/factories/contracts/escrow/EscrowAccessControl__factory.js +547 -0
  298. package/build/contracts/typechain-types/factories/contracts/escrow/EscrowErrors__factory.d.ts +151 -0
  299. package/build/contracts/typechain-types/factories/contracts/escrow/EscrowErrors__factory.d.ts.map +1 -0
  300. package/build/contracts/typechain-types/factories/contracts/escrow/EscrowErrors__factory.js +205 -0
  301. package/build/contracts/typechain-types/factories/contracts/escrow/EscrowSignature__factory.d.ts +151 -0
  302. package/build/contracts/typechain-types/factories/contracts/escrow/EscrowSignature__factory.d.ts.map +1 -0
  303. package/build/contracts/typechain-types/factories/contracts/escrow/EscrowSignature__factory.js +205 -0
  304. package/build/contracts/typechain-types/factories/contracts/escrow/Escrow__factory.d.ts +1217 -0
  305. package/build/contracts/typechain-types/factories/contracts/escrow/Escrow__factory.d.ts.map +1 -0
  306. package/build/contracts/typechain-types/factories/contracts/escrow/Escrow__factory.js +1582 -0
  307. package/build/contracts/typechain-types/factories/contracts/escrow/TokensWhitelist__factory.d.ts +99 -0
  308. package/build/contracts/typechain-types/factories/contracts/escrow/TokensWhitelist__factory.d.ts.map +1 -0
  309. package/build/contracts/typechain-types/factories/contracts/escrow/TokensWhitelist__factory.js +139 -0
  310. package/build/contracts/typechain-types/factories/contracts/escrow/index.d.ts +6 -0
  311. package/build/contracts/typechain-types/factories/contracts/escrow/index.d.ts.map +1 -0
  312. package/build/contracts/typechain-types/factories/contracts/escrow/index.js +16 -0
  313. package/build/contracts/typechain-types/factories/contracts/index.d.ts +3 -0
  314. package/build/contracts/typechain-types/factories/contracts/index.d.ts.map +1 -0
  315. package/build/contracts/typechain-types/factories/contracts/index.js +41 -0
  316. package/build/contracts/typechain-types/factories/contracts/mock/erc20/ERC20Mock__factory.d.ts +283 -0
  317. package/build/contracts/typechain-types/factories/contracts/mock/erc20/ERC20Mock__factory.d.ts.map +1 -0
  318. package/build/contracts/typechain-types/factories/contracts/mock/erc20/ERC20Mock__factory.js +381 -0
  319. package/build/contracts/typechain-types/factories/contracts/mock/erc20/index.d.ts +2 -0
  320. package/build/contracts/typechain-types/factories/contracts/mock/erc20/index.d.ts.map +1 -0
  321. package/build/contracts/typechain-types/factories/contracts/mock/erc20/index.js +8 -0
  322. package/build/contracts/typechain-types/factories/contracts/mock/index.d.ts +2 -0
  323. package/build/contracts/typechain-types/factories/contracts/mock/index.d.ts.map +1 -0
  324. package/build/contracts/typechain-types/factories/contracts/mock/index.js +40 -0
  325. package/build/contracts/typechain-types/factories/index.d.ts +3 -0
  326. package/build/contracts/typechain-types/factories/index.d.ts.map +1 -0
  327. package/build/contracts/typechain-types/factories/index.js +41 -0
  328. package/build/contracts/typechain-types/index.d.ts +52 -0
  329. package/build/contracts/typechain-types/index.d.ts.map +1 -0
  330. package/build/contracts/typechain-types/index.js +83 -0
  331. package/build/contracts/types/escrow.d.ts +42 -0
  332. package/build/contracts/types/escrow.d.ts.map +1 -0
  333. package/build/contracts/types/escrow.js +20 -0
  334. package/build/entities/Checkpoint.d.ts +11 -0
  335. package/build/entities/Checkpoint.d.ts.map +1 -0
  336. package/build/entities/Checkpoint.js +52 -0
  337. package/build/entities/ClaimHistory.d.ts +17 -0
  338. package/build/entities/ClaimHistory.d.ts.map +1 -0
  339. package/build/entities/ClaimHistory.js +73 -0
  340. package/build/entities/ClaimJob.d.ts +27 -0
  341. package/build/entities/ClaimJob.d.ts.map +1 -0
  342. package/build/entities/ClaimJob.js +113 -0
  343. package/build/entities/CryptoConfirmationLocks.d.ts +14 -0
  344. package/build/entities/CryptoConfirmationLocks.d.ts.map +1 -0
  345. package/build/entities/CryptoConfirmationLocks.js +65 -0
  346. package/build/entities/DepositAddress.d.ts +12 -0
  347. package/build/entities/DepositAddress.d.ts.map +1 -0
  348. package/build/entities/DepositAddress.js +56 -0
  349. package/build/entities/DepositWalletBalance.d.ts +16 -0
  350. package/build/entities/DepositWalletBalance.d.ts.map +1 -0
  351. package/build/entities/DepositWalletBalance.js +72 -0
  352. package/build/entities/SweepHistory.d.ts +16 -0
  353. package/build/entities/SweepHistory.d.ts.map +1 -0
  354. package/build/entities/SweepHistory.js +72 -0
  355. package/build/entities/SweepJob.d.ts +26 -0
  356. package/build/entities/SweepJob.d.ts.map +1 -0
  357. package/build/entities/SweepJob.js +116 -0
  358. package/build/entities/WalletIndex.d.ts +8 -0
  359. package/build/entities/WalletIndex.d.ts.map +1 -0
  360. package/build/entities/WalletIndex.js +40 -0
  361. package/build/errors/AdminErrors.d.ts +25 -0
  362. package/build/errors/AdminErrors.d.ts.map +1 -0
  363. package/build/errors/AdminErrors.js +45 -0
  364. package/build/errors/AlchemyErrors.d.ts +34 -0
  365. package/build/errors/AlchemyErrors.d.ts.map +1 -0
  366. package/build/errors/AlchemyErrors.js +79 -0
  367. package/build/errors/BalanceErrors.d.ts +23 -0
  368. package/build/errors/BalanceErrors.d.ts.map +1 -0
  369. package/build/errors/BalanceErrors.js +45 -0
  370. package/build/errors/DatabaseErrors.d.ts +25 -0
  371. package/build/errors/DatabaseErrors.d.ts.map +1 -0
  372. package/build/errors/DatabaseErrors.js +49 -0
  373. package/build/errors/TransactionsErrors.d.ts +37 -0
  374. package/build/errors/TransactionsErrors.d.ts.map +1 -0
  375. package/build/errors/TransactionsErrors.js +95 -0
  376. package/build/errors/VoltageErrors.d.ts +29 -0
  377. package/build/errors/VoltageErrors.d.ts.map +1 -0
  378. package/build/errors/VoltageErrors.js +69 -0
  379. package/build/errors/WalletErrors.d.ts +26 -0
  380. package/build/errors/WalletErrors.d.ts.map +1 -0
  381. package/build/errors/WalletErrors.js +55 -0
  382. package/build/errors/errors.d.ts +74 -0
  383. package/build/errors/errors.d.ts.map +1 -0
  384. package/build/errors/errors.js +117 -0
  385. package/build/errors/index.d.ts +81 -0
  386. package/build/errors/index.d.ts.map +1 -0
  387. package/build/errors/index.js +78 -0
  388. package/build/index.d.ts +95 -0
  389. package/build/index.d.ts.map +1 -0
  390. package/build/index.js +208 -0
  391. package/build/interfaces/config.d.ts +87 -0
  392. package/build/interfaces/config.d.ts.map +1 -0
  393. package/build/interfaces/config.js +7 -0
  394. package/build/interfaces/database.d.ts +29 -0
  395. package/build/interfaces/database.d.ts.map +1 -0
  396. package/build/interfaces/database.js +2 -0
  397. package/build/interfaces.d.ts +311 -0
  398. package/build/interfaces.d.ts.map +1 -0
  399. package/build/interfaces.js +12 -0
  400. package/build/services/AccountingService.d.ts +34 -0
  401. package/build/services/AccountingService.d.ts.map +1 -0
  402. package/build/services/AccountingService.js +239 -0
  403. package/build/services/AlchemyService.d.ts +47 -0
  404. package/build/services/AlchemyService.d.ts.map +1 -0
  405. package/build/services/AlchemyService.js +239 -0
  406. package/build/services/AlchemyWebhookSignature.d.ts +16 -0
  407. package/build/services/AlchemyWebhookSignature.d.ts.map +1 -0
  408. package/build/services/AlchemyWebhookSignature.js +119 -0
  409. package/build/services/AlchemyWebhooks.d.ts +87 -0
  410. package/build/services/AlchemyWebhooks.d.ts.map +1 -0
  411. package/build/services/AlchemyWebhooks.js +406 -0
  412. package/build/services/AsyncTTLCache.d.ts +12 -0
  413. package/build/services/AsyncTTLCache.d.ts.map +1 -0
  414. package/build/services/AsyncTTLCache.js +67 -0
  415. package/build/services/AzureEventHubHandler.d.ts +32 -0
  416. package/build/services/AzureEventHubHandler.d.ts.map +1 -0
  417. package/build/services/AzureEventHubHandler.js +139 -0
  418. package/build/services/BalanceService.d.ts +39 -0
  419. package/build/services/BalanceService.d.ts.map +1 -0
  420. package/build/services/BalanceService.js +482 -0
  421. package/build/services/ChainManager.d.ts +86 -0
  422. package/build/services/ChainManager.d.ts.map +1 -0
  423. package/build/services/ChainManager.js +442 -0
  424. package/build/services/ClaimHistoryService.d.ts +40 -0
  425. package/build/services/ClaimHistoryService.d.ts.map +1 -0
  426. package/build/services/ClaimHistoryService.js +121 -0
  427. package/build/services/ClaimJobService.d.ts +46 -0
  428. package/build/services/ClaimJobService.d.ts.map +1 -0
  429. package/build/services/ClaimJobService.js +407 -0
  430. package/build/services/CryptoConfirmationLocksService.d.ts +13 -0
  431. package/build/services/CryptoConfirmationLocksService.d.ts.map +1 -0
  432. package/build/services/CryptoConfirmationLocksService.js +46 -0
  433. package/build/services/CryptoKeysManager.d.ts +16 -0
  434. package/build/services/CryptoKeysManager.d.ts.map +1 -0
  435. package/build/services/CryptoKeysManager.js +136 -0
  436. package/build/services/DepositAddressService.d.ts +42 -0
  437. package/build/services/DepositAddressService.d.ts.map +1 -0
  438. package/build/services/DepositAddressService.js +275 -0
  439. package/build/services/ElasticSearch.d.ts +19 -0
  440. package/build/services/ElasticSearch.d.ts.map +1 -0
  441. package/build/services/ElasticSearch.js +104 -0
  442. package/build/services/EventsHandler.d.ts +11 -0
  443. package/build/services/EventsHandler.d.ts.map +1 -0
  444. package/build/services/EventsHandler.js +39 -0
  445. package/build/services/EventsService.d.ts +44 -0
  446. package/build/services/EventsService.d.ts.map +1 -0
  447. package/build/services/EventsService.js +234 -0
  448. package/build/services/InvoiceQueue.d.ts +56 -0
  449. package/build/services/InvoiceQueue.d.ts.map +1 -0
  450. package/build/services/InvoiceQueue.js +297 -0
  451. package/build/services/KeyVaultService.d.ts +14 -0
  452. package/build/services/KeyVaultService.d.ts.map +1 -0
  453. package/build/services/KeyVaultService.js +65 -0
  454. package/build/services/PriceCache.d.ts +19 -0
  455. package/build/services/PriceCache.d.ts.map +1 -0
  456. package/build/services/PriceCache.js +125 -0
  457. package/build/services/ProviderManager.d.ts +41 -0
  458. package/build/services/ProviderManager.d.ts.map +1 -0
  459. package/build/services/ProviderManager.js +111 -0
  460. package/build/services/QuicknodeWebhookSignature.d.ts +14 -0
  461. package/build/services/QuicknodeWebhookSignature.d.ts.map +1 -0
  462. package/build/services/QuicknodeWebhookSignature.js +119 -0
  463. package/build/services/Redis.d.ts +52 -0
  464. package/build/services/Redis.d.ts.map +1 -0
  465. package/build/services/Redis.js +364 -0
  466. package/build/services/RedisListQueue.d.ts +15 -0
  467. package/build/services/RedisListQueue.d.ts.map +1 -0
  468. package/build/services/RedisListQueue.js +87 -0
  469. package/build/services/RedisPubSub.d.ts +41 -0
  470. package/build/services/RedisPubSub.d.ts.map +1 -0
  471. package/build/services/RedisPubSub.js +254 -0
  472. package/build/services/RedisQueue.d.ts +18 -0
  473. package/build/services/RedisQueue.d.ts.map +1 -0
  474. package/build/services/RedisQueue.js +82 -0
  475. package/build/services/StorageService.d.ts +12 -0
  476. package/build/services/StorageService.d.ts.map +1 -0
  477. package/build/services/StorageService.js +92 -0
  478. package/build/services/SweepHistoryService.d.ts +15 -0
  479. package/build/services/SweepHistoryService.d.ts.map +1 -0
  480. package/build/services/SweepHistoryService.js +52 -0
  481. package/build/services/SweepJobService.d.ts +53 -0
  482. package/build/services/SweepJobService.d.ts.map +1 -0
  483. package/build/services/SweepJobService.js +725 -0
  484. package/build/services/TimerManager.d.ts +44 -0
  485. package/build/services/TimerManager.d.ts.map +1 -0
  486. package/build/services/TimerManager.js +239 -0
  487. package/build/services/WalletIndexService.d.ts +11 -0
  488. package/build/services/WalletIndexService.d.ts.map +1 -0
  489. package/build/services/WalletIndexService.js +73 -0
  490. package/build/services/WalletManager.d.ts +42 -0
  491. package/build/services/WalletManager.d.ts.map +1 -0
  492. package/build/services/WalletManager.js +359 -0
  493. package/build/services/WithdrawalManager.d.ts +51 -0
  494. package/build/services/WithdrawalManager.d.ts.map +1 -0
  495. package/build/services/WithdrawalManager.js +372 -0
  496. package/build/services/Worker.d.ts +25 -0
  497. package/build/services/Worker.d.ts.map +1 -0
  498. package/build/services/Worker.js +115 -0
  499. package/build/services/solana/escrow/SolanaEscrowAdmin.d.ts +102 -0
  500. package/build/services/solana/escrow/SolanaEscrowAdmin.d.ts.map +1 -0
  501. package/build/services/solana/escrow/SolanaEscrowAdmin.js +209 -0
  502. package/build/services/solana/escrow/SolanaEscrowInteraction.d.ts +50 -0
  503. package/build/services/solana/escrow/SolanaEscrowInteraction.d.ts.map +1 -0
  504. package/build/services/solana/escrow/SolanaEscrowInteraction.js +235 -0
  505. package/build/services/solana/escrow/idl/escrow.json +2941 -0
  506. package/build/services/solana/escrow/index.d.ts +5 -0
  507. package/build/services/solana/escrow/index.d.ts.map +1 -0
  508. package/build/services/solana/escrow/index.js +20 -0
  509. package/build/services/solana/escrow/services/Errors.d.ts +19 -0
  510. package/build/services/solana/escrow/services/Errors.d.ts.map +1 -0
  511. package/build/services/solana/escrow/services/Errors.js +29 -0
  512. package/build/services/solana/escrow/services/EscrowAdminUtility.d.ts +122 -0
  513. package/build/services/solana/escrow/services/EscrowAdminUtility.d.ts.map +1 -0
  514. package/build/services/solana/escrow/services/EscrowAdminUtility.js +665 -0
  515. package/build/services/solana/escrow/services/EscrowService.d.ts +15 -0
  516. package/build/services/solana/escrow/services/EscrowService.d.ts.map +1 -0
  517. package/build/services/solana/escrow/services/EscrowService.js +155 -0
  518. package/build/services/solana/escrow/services/EscrowUtility.d.ts +58 -0
  519. package/build/services/solana/escrow/services/EscrowUtility.d.ts.map +1 -0
  520. package/build/services/solana/escrow/services/EscrowUtility.js +318 -0
  521. package/build/services/solana/escrow/services/TokenAccountService.d.ts +10 -0
  522. package/build/services/solana/escrow/services/TokenAccountService.d.ts.map +1 -0
  523. package/build/services/solana/escrow/services/TokenAccountService.js +145 -0
  524. package/build/services/solana/escrow/services/TransactionsService.d.ts +12 -0
  525. package/build/services/solana/escrow/services/TransactionsService.d.ts.map +1 -0
  526. package/build/services/solana/escrow/services/TransactionsService.js +44 -0
  527. package/build/services/solana/escrow/services/index.d.ts +7 -0
  528. package/build/services/solana/escrow/services/index.d.ts.map +1 -0
  529. package/build/services/solana/escrow/services/index.js +22 -0
  530. package/build/services/solana/escrow/types/custom.d.ts +14 -0
  531. package/build/services/solana/escrow/types/custom.d.ts.map +1 -0
  532. package/build/services/solana/escrow/types/custom.js +2 -0
  533. package/build/services/solana/escrow/types/escrow.d.ts +2948 -0
  534. package/build/services/solana/escrow/types/escrow.d.ts.map +1 -0
  535. package/build/services/solana/escrow/types/escrow.js +2 -0
  536. package/build/services/solana/escrow/types/index.d.ts +3 -0
  537. package/build/services/solana/escrow/types/index.d.ts.map +1 -0
  538. package/build/services/solana/escrow/types/index.js +18 -0
  539. package/build/services/solana/escrow/types/types.d.ts +19 -0
  540. package/build/services/solana/escrow/types/types.d.ts.map +1 -0
  541. package/build/services/solana/escrow/types/types.js +2 -0
  542. package/build/services/solana/index.d.ts +2 -0
  543. package/build/services/solana/index.d.ts.map +1 -0
  544. package/build/services/solana/index.js +17 -0
  545. package/build/services/tron/index.d.ts +5 -0
  546. package/build/services/tron/index.d.ts.map +1 -0
  547. package/build/services/tron/index.js +21 -0
  548. package/build/services/tron/services/BitQueryQueue.d.ts +13 -0
  549. package/build/services/tron/services/BitQueryQueue.d.ts.map +1 -0
  550. package/build/services/tron/services/BitQueryQueue.js +22 -0
  551. package/build/services/tron/services/BitQuerySubscription.d.ts +5 -0
  552. package/build/services/tron/services/BitQuerySubscription.d.ts.map +1 -0
  553. package/build/services/tron/services/BitQuerySubscription.js +7 -0
  554. package/build/services/tron/services/Escrow.d.ts +1 -0
  555. package/build/services/tron/services/Escrow.d.ts.map +1 -0
  556. package/build/services/tron/services/Escrow.js +1 -0
  557. package/build/services/tron/services/Transactions.d.ts +33 -0
  558. package/build/services/tron/services/Transactions.d.ts.map +1 -0
  559. package/build/services/tron/services/Transactions.js +164 -0
  560. package/build/services/tron/services/TronCustodialWallet.d.ts +17 -0
  561. package/build/services/tron/services/TronCustodialWallet.d.ts.map +1 -0
  562. package/build/services/tron/services/TronCustodialWallet.js +46 -0
  563. package/build/services/tron/services/TronFundingWallet.d.ts +30 -0
  564. package/build/services/tron/services/TronFundingWallet.d.ts.map +1 -0
  565. package/build/services/tron/services/TronFundingWallet.js +57 -0
  566. package/build/services/tron/services/TronHelper.d.ts +11 -0
  567. package/build/services/tron/services/TronHelper.d.ts.map +1 -0
  568. package/build/services/tron/services/TronHelper.js +29 -0
  569. package/build/services/tron/services/TronHotWallet.d.ts +29 -0
  570. package/build/services/tron/services/TronHotWallet.d.ts.map +1 -0
  571. package/build/services/tron/services/TronHotWallet.js +168 -0
  572. package/build/services/tron/services/TronSigner.d.ts +12 -0
  573. package/build/services/tron/services/TronSigner.d.ts.map +1 -0
  574. package/build/services/tron/services/TronSigner.js +51 -0
  575. package/build/services/tron/services/TronWallet.d.ts +32 -0
  576. package/build/services/tron/services/TronWallet.d.ts.map +1 -0
  577. package/build/services/tron/services/TronWallet.js +110 -0
  578. package/build/services/tron/types/bitquery.d.ts +26 -0
  579. package/build/services/tron/types/bitquery.d.ts.map +1 -0
  580. package/build/services/tron/types/bitquery.js +3 -0
  581. package/build/services/tron/types/index.d.ts +3 -0
  582. package/build/services/tron/types/index.d.ts.map +1 -0
  583. package/build/services/tron/types/index.js +18 -0
  584. package/build/services/tron/types/transactions.d.ts +36 -0
  585. package/build/services/tron/types/transactions.d.ts.map +1 -0
  586. package/build/services/tron/types/transactions.js +3 -0
  587. package/build/services/tron/types/tron_helper.d.ts +25 -0
  588. package/build/services/tron/types/tron_helper.d.ts.map +1 -0
  589. package/build/services/tron/types/tron_helper.js +3 -0
  590. package/build/services/types/RedisPubSub.d.ts +11 -0
  591. package/build/services/types/RedisPubSub.d.ts.map +1 -0
  592. package/build/services/types/RedisPubSub.js +15 -0
  593. package/build/services/types/accounting_service.d.ts +7 -0
  594. package/build/services/types/accounting_service.d.ts.map +1 -0
  595. package/build/services/types/accounting_service.js +2 -0
  596. package/build/services/types/alchemy.d.ts +243 -0
  597. package/build/services/types/alchemy.d.ts.map +1 -0
  598. package/build/services/types/alchemy.js +3 -0
  599. package/build/services/types/azure_event_hub_handler.d.ts +18 -0
  600. package/build/services/types/azure_event_hub_handler.d.ts.map +1 -0
  601. package/build/services/types/azure_event_hub_handler.js +20 -0
  602. package/build/services/types/balance_service.d.ts +10 -0
  603. package/build/services/types/balance_service.d.ts.map +1 -0
  604. package/build/services/types/balance_service.js +2 -0
  605. package/build/services/types/chain_manager.d.ts +49 -0
  606. package/build/services/types/chain_manager.d.ts.map +1 -0
  607. package/build/services/types/chain_manager.js +2 -0
  608. package/build/services/types/claim.d.ts +42 -0
  609. package/build/services/types/claim.d.ts.map +1 -0
  610. package/build/services/types/claim.js +2 -0
  611. package/build/services/types/claim_job_service.d.ts +54 -0
  612. package/build/services/types/claim_job_service.d.ts.map +1 -0
  613. package/build/services/types/claim_job_service.js +2 -0
  614. package/build/services/types/crypto_confirmation_locks_service.d.ts +6 -0
  615. package/build/services/types/crypto_confirmation_locks_service.d.ts.map +1 -0
  616. package/build/services/types/crypto_confirmation_locks_service.js +2 -0
  617. package/build/services/types/events_service.d.ts +57 -0
  618. package/build/services/types/events_service.d.ts.map +1 -0
  619. package/build/services/types/events_service.js +2 -0
  620. package/build/services/types/index.d.ts +16 -0
  621. package/build/services/types/index.d.ts.map +1 -0
  622. package/build/services/types/index.js +31 -0
  623. package/build/services/types/lightning.d.ts +129 -0
  624. package/build/services/types/lightning.d.ts.map +1 -0
  625. package/build/services/types/lightning.js +2 -0
  626. package/build/services/types/quicknode.d.ts +7 -0
  627. package/build/services/types/quicknode.d.ts.map +1 -0
  628. package/build/services/types/quicknode.js +2 -0
  629. package/build/services/types/sweep_job_service.d.ts +9 -0
  630. package/build/services/types/sweep_job_service.d.ts.map +1 -0
  631. package/build/services/types/sweep_job_service.js +3 -0
  632. package/build/services/types/timer_manager.d.ts +6 -0
  633. package/build/services/types/timer_manager.d.ts.map +1 -0
  634. package/build/services/types/timer_manager.js +2 -0
  635. package/build/services/types/wallet_manager.d.ts +36 -0
  636. package/build/services/types/wallet_manager.d.ts.map +1 -0
  637. package/build/services/types/wallet_manager.js +2 -0
  638. package/build/services/types/withdrawal.d.ts +48 -0
  639. package/build/services/types/withdrawal.d.ts.map +1 -0
  640. package/build/services/types/withdrawal.js +50 -0
  641. package/build/services/types/withdrawal_manager.d.ts +14 -0
  642. package/build/services/types/withdrawal_manager.d.ts.map +1 -0
  643. package/build/services/types/withdrawal_manager.js +2 -0
  644. package/build/services/utils/alchemy.d.ts +6 -0
  645. package/build/services/utils/alchemy.d.ts.map +1 -0
  646. package/build/services/utils/alchemy.js +155 -0
  647. package/build/services/utils/graphql.d.ts +2 -0
  648. package/build/services/utils/graphql.d.ts.map +1 -0
  649. package/build/services/utils/graphql.js +46 -0
  650. package/build/utils/AsyncRateLimiter.d.ts +23 -0
  651. package/build/utils/AsyncRateLimiter.d.ts.map +1 -0
  652. package/build/utils/AsyncRateLimiter.js +87 -0
  653. package/build/utils/AsyncTTLCache.d.ts +12 -0
  654. package/build/utils/AsyncTTLCache.d.ts.map +1 -0
  655. package/build/utils/AsyncTTLCache.js +69 -0
  656. package/build/utils/Logger.d.ts +67 -0
  657. package/build/utils/Logger.d.ts.map +1 -0
  658. package/build/utils/Logger.js +171 -0
  659. package/build/utils/MemoryMonitor.d.ts +12 -0
  660. package/build/utils/MemoryMonitor.d.ts.map +1 -0
  661. package/build/utils/MemoryMonitor.js +59 -0
  662. package/build/utils/Parsing.d.ts +13 -0
  663. package/build/utils/Parsing.d.ts.map +1 -0
  664. package/build/utils/Parsing.js +84 -0
  665. package/build/utils/RpcLimiter.d.ts +10 -0
  666. package/build/utils/RpcLimiter.d.ts.map +1 -0
  667. package/build/utils/RpcLimiter.js +28 -0
  668. package/build/utils/Utility.d.ts +23 -0
  669. package/build/utils/Utility.d.ts.map +1 -0
  670. package/build/utils/Utility.js +211 -0
  671. package/build/utils/Wallets.d.ts +4 -0
  672. package/build/utils/Wallets.d.ts.map +1 -0
  673. package/build/utils/Wallets.js +68 -0
  674. package/build/utils/custodial.d.ts +32 -0
  675. package/build/utils/custodial.d.ts.map +1 -0
  676. package/build/utils/custodial.js +291 -0
  677. package/build/utils/solana.d.ts +151 -0
  678. package/build/utils/solana.d.ts.map +1 -0
  679. package/build/utils/solana.js +674 -0
  680. package/package.json +107 -0
@@ -0,0 +1,2948 @@
1
+ /**
2
+ * Program IDL in camelCase format in order to be used in JS/TS.
3
+ *
4
+ * Note that this is only a type helper and is not the actual IDL. The original
5
+ * IDL can be found at `target/idl/escrow.json`.
6
+ */
7
+ export type Escrow = {
8
+ "address": "AAuFzrm6H4Vv7UyJi8R5Gsm4ixtR2yVmqzLmuyUTS5cu";
9
+ "metadata": {
10
+ "name": "escrow";
11
+ "version": "0.1.0";
12
+ "spec": "0.1.0";
13
+ "description": "Created with Anchor";
14
+ };
15
+ "instructions": [
16
+ {
17
+ "name": "addAdmin";
18
+ "discriminator": [
19
+ 177,
20
+ 236,
21
+ 33,
22
+ 205,
23
+ 124,
24
+ 152,
25
+ 55,
26
+ 186
27
+ ];
28
+ "accounts": [
29
+ {
30
+ "name": "escrowConfig";
31
+ "writable": true;
32
+ "pda": {
33
+ "seeds": [
34
+ {
35
+ "kind": "const";
36
+ "value": [
37
+ 101,
38
+ 115,
39
+ 99,
40
+ 114,
41
+ 111,
42
+ 119,
43
+ 45,
44
+ 99,
45
+ 111,
46
+ 110,
47
+ 102,
48
+ 105,
49
+ 103,
50
+ 45,
51
+ 118,
52
+ 50
53
+ ];
54
+ }
55
+ ];
56
+ };
57
+ },
58
+ {
59
+ "name": "admin";
60
+ "writable": true;
61
+ "signer": true;
62
+ }
63
+ ];
64
+ "args": [
65
+ {
66
+ "name": "newAdmin";
67
+ "type": "pubkey";
68
+ }
69
+ ];
70
+ },
71
+ {
72
+ "name": "addPaymentToken";
73
+ "discriminator": [
74
+ 19,
75
+ 203,
76
+ 48,
77
+ 148,
78
+ 80,
79
+ 1,
80
+ 179,
81
+ 140
82
+ ];
83
+ "accounts": [
84
+ {
85
+ "name": "escrowConfig";
86
+ "writable": true;
87
+ "pda": {
88
+ "seeds": [
89
+ {
90
+ "kind": "const";
91
+ "value": [
92
+ 101,
93
+ 115,
94
+ 99,
95
+ 114,
96
+ 111,
97
+ 119,
98
+ 45,
99
+ 99,
100
+ 111,
101
+ 110,
102
+ 102,
103
+ 105,
104
+ 103,
105
+ 45,
106
+ 118,
107
+ 50
108
+ ];
109
+ }
110
+ ];
111
+ };
112
+ },
113
+ {
114
+ "name": "admin";
115
+ "writable": true;
116
+ "signer": true;
117
+ }
118
+ ];
119
+ "args": [
120
+ {
121
+ "name": "tokenMint";
122
+ "type": "pubkey";
123
+ }
124
+ ];
125
+ },
126
+ {
127
+ "name": "addTokenToEscrow";
128
+ "docs": [
129
+ "Admin Deposit SPL tokens"
130
+ ];
131
+ "discriminator": [
132
+ 108,
133
+ 49,
134
+ 76,
135
+ 151,
136
+ 149,
137
+ 103,
138
+ 131,
139
+ 81
140
+ ];
141
+ "accounts": [
142
+ {
143
+ "name": "escrowConfig";
144
+ "pda": {
145
+ "seeds": [
146
+ {
147
+ "kind": "const";
148
+ "value": [
149
+ 101,
150
+ 115,
151
+ 99,
152
+ 114,
153
+ 111,
154
+ 119,
155
+ 45,
156
+ 99,
157
+ 111,
158
+ 110,
159
+ 102,
160
+ 105,
161
+ 103,
162
+ 45,
163
+ 118,
164
+ 50
165
+ ];
166
+ }
167
+ ];
168
+ };
169
+ },
170
+ {
171
+ "name": "admin";
172
+ "writable": true;
173
+ "signer": true;
174
+ },
175
+ {
176
+ "name": "mint";
177
+ },
178
+ {
179
+ "name": "sourceTokenAccount";
180
+ "writable": true;
181
+ "pda": {
182
+ "seeds": [
183
+ {
184
+ "kind": "account";
185
+ "path": "admin";
186
+ },
187
+ {
188
+ "kind": "const";
189
+ "value": [
190
+ 6,
191
+ 221,
192
+ 246,
193
+ 225,
194
+ 215,
195
+ 101,
196
+ 161,
197
+ 147,
198
+ 217,
199
+ 203,
200
+ 225,
201
+ 70,
202
+ 206,
203
+ 235,
204
+ 121,
205
+ 172,
206
+ 28,
207
+ 180,
208
+ 133,
209
+ 237,
210
+ 95,
211
+ 91,
212
+ 55,
213
+ 145,
214
+ 58,
215
+ 140,
216
+ 245,
217
+ 133,
218
+ 126,
219
+ 255,
220
+ 0,
221
+ 169
222
+ ];
223
+ },
224
+ {
225
+ "kind": "account";
226
+ "path": "mint";
227
+ }
228
+ ];
229
+ "program": {
230
+ "kind": "const";
231
+ "value": [
232
+ 140,
233
+ 151,
234
+ 37,
235
+ 143,
236
+ 78,
237
+ 36,
238
+ 137,
239
+ 241,
240
+ 187,
241
+ 61,
242
+ 16,
243
+ 41,
244
+ 20,
245
+ 142,
246
+ 13,
247
+ 131,
248
+ 11,
249
+ 90,
250
+ 19,
251
+ 153,
252
+ 218,
253
+ 255,
254
+ 16,
255
+ 132,
256
+ 4,
257
+ 142,
258
+ 123,
259
+ 216,
260
+ 219,
261
+ 233,
262
+ 248,
263
+ 89
264
+ ];
265
+ };
266
+ };
267
+ },
268
+ {
269
+ "name": "vaultAuthority";
270
+ "writable": true;
271
+ "pda": {
272
+ "seeds": [
273
+ {
274
+ "kind": "const";
275
+ "value": [
276
+ 101,
277
+ 115,
278
+ 99,
279
+ 114,
280
+ 111,
281
+ 119
282
+ ];
283
+ }
284
+ ];
285
+ };
286
+ },
287
+ {
288
+ "name": "vaultTokenAccount";
289
+ "writable": true;
290
+ "pda": {
291
+ "seeds": [
292
+ {
293
+ "kind": "account";
294
+ "path": "vaultAuthority";
295
+ },
296
+ {
297
+ "kind": "const";
298
+ "value": [
299
+ 6,
300
+ 221,
301
+ 246,
302
+ 225,
303
+ 215,
304
+ 101,
305
+ 161,
306
+ 147,
307
+ 217,
308
+ 203,
309
+ 225,
310
+ 70,
311
+ 206,
312
+ 235,
313
+ 121,
314
+ 172,
315
+ 28,
316
+ 180,
317
+ 133,
318
+ 237,
319
+ 95,
320
+ 91,
321
+ 55,
322
+ 145,
323
+ 58,
324
+ 140,
325
+ 245,
326
+ 133,
327
+ 126,
328
+ 255,
329
+ 0,
330
+ 169
331
+ ];
332
+ },
333
+ {
334
+ "kind": "account";
335
+ "path": "mint";
336
+ }
337
+ ];
338
+ "program": {
339
+ "kind": "const";
340
+ "value": [
341
+ 140,
342
+ 151,
343
+ 37,
344
+ 143,
345
+ 78,
346
+ 36,
347
+ 137,
348
+ 241,
349
+ 187,
350
+ 61,
351
+ 16,
352
+ 41,
353
+ 20,
354
+ 142,
355
+ 13,
356
+ 131,
357
+ 11,
358
+ 90,
359
+ 19,
360
+ 153,
361
+ 218,
362
+ 255,
363
+ 16,
364
+ 132,
365
+ 4,
366
+ 142,
367
+ 123,
368
+ 216,
369
+ 219,
370
+ 233,
371
+ 248,
372
+ 89
373
+ ];
374
+ };
375
+ };
376
+ },
377
+ {
378
+ "name": "tokenProgram";
379
+ "address": "TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA";
380
+ },
381
+ {
382
+ "name": "associatedTokenProgram";
383
+ "address": "ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knL";
384
+ },
385
+ {
386
+ "name": "systemProgram";
387
+ "address": "11111111111111111111111111111111";
388
+ },
389
+ {
390
+ "name": "rent";
391
+ "address": "SysvarRent111111111111111111111111111111111";
392
+ }
393
+ ];
394
+ "args": [
395
+ {
396
+ "name": "amount";
397
+ "type": "u64";
398
+ }
399
+ ];
400
+ },
401
+ {
402
+ "name": "adminDepositSol";
403
+ "docs": [
404
+ "Admin deposit SOL"
405
+ ];
406
+ "discriminator": [
407
+ 28,
408
+ 35,
409
+ 158,
410
+ 181,
411
+ 114,
412
+ 100,
413
+ 191,
414
+ 18
415
+ ];
416
+ "accounts": [
417
+ {
418
+ "name": "escrowConfig";
419
+ "writable": true;
420
+ "pda": {
421
+ "seeds": [
422
+ {
423
+ "kind": "const";
424
+ "value": [
425
+ 101,
426
+ 115,
427
+ 99,
428
+ 114,
429
+ 111,
430
+ 119,
431
+ 45,
432
+ 99,
433
+ 111,
434
+ 110,
435
+ 102,
436
+ 105,
437
+ 103,
438
+ 45,
439
+ 118,
440
+ 50
441
+ ];
442
+ }
443
+ ];
444
+ };
445
+ },
446
+ {
447
+ "name": "vaultAuthority";
448
+ "writable": true;
449
+ "pda": {
450
+ "seeds": [
451
+ {
452
+ "kind": "const";
453
+ "value": [
454
+ 101,
455
+ 115,
456
+ 99,
457
+ 114,
458
+ 111,
459
+ 119
460
+ ];
461
+ }
462
+ ];
463
+ };
464
+ },
465
+ {
466
+ "name": "admin";
467
+ "writable": true;
468
+ "signer": true;
469
+ },
470
+ {
471
+ "name": "systemProgram";
472
+ "address": "11111111111111111111111111111111";
473
+ }
474
+ ];
475
+ "args": [
476
+ {
477
+ "name": "amount";
478
+ "type": "u64";
479
+ }
480
+ ];
481
+ },
482
+ {
483
+ "name": "adminWithdrawSol";
484
+ "docs": [
485
+ "Admin withdraw SOL"
486
+ ];
487
+ "discriminator": [
488
+ 111,
489
+ 237,
490
+ 192,
491
+ 44,
492
+ 255,
493
+ 224,
494
+ 149,
495
+ 126
496
+ ];
497
+ "accounts": [
498
+ {
499
+ "name": "escrowConfig";
500
+ "writable": true;
501
+ "pda": {
502
+ "seeds": [
503
+ {
504
+ "kind": "const";
505
+ "value": [
506
+ 101,
507
+ 115,
508
+ 99,
509
+ 114,
510
+ 111,
511
+ 119,
512
+ 45,
513
+ 99,
514
+ 111,
515
+ 110,
516
+ 102,
517
+ 105,
518
+ 103,
519
+ 45,
520
+ 118,
521
+ 50
522
+ ];
523
+ }
524
+ ];
525
+ };
526
+ },
527
+ {
528
+ "name": "vaultAuthority";
529
+ "writable": true;
530
+ "pda": {
531
+ "seeds": [
532
+ {
533
+ "kind": "const";
534
+ "value": [
535
+ 101,
536
+ 115,
537
+ 99,
538
+ 114,
539
+ 111,
540
+ 119
541
+ ];
542
+ }
543
+ ];
544
+ };
545
+ },
546
+ {
547
+ "name": "recipient";
548
+ "writable": true;
549
+ },
550
+ {
551
+ "name": "admin";
552
+ "writable": true;
553
+ "signer": true;
554
+ },
555
+ {
556
+ "name": "systemProgram";
557
+ "address": "11111111111111111111111111111111";
558
+ }
559
+ ];
560
+ "args": [
561
+ {
562
+ "name": "amount";
563
+ "type": "u64";
564
+ }
565
+ ];
566
+ },
567
+ {
568
+ "name": "batchWithdrawSol";
569
+ "discriminator": [
570
+ 60,
571
+ 224,
572
+ 135,
573
+ 236,
574
+ 157,
575
+ 235,
576
+ 169,
577
+ 130
578
+ ];
579
+ "accounts": [
580
+ {
581
+ "name": "escrowConfig";
582
+ "pda": {
583
+ "seeds": [
584
+ {
585
+ "kind": "const";
586
+ "value": [
587
+ 101,
588
+ 115,
589
+ 99,
590
+ 114,
591
+ 111,
592
+ 119,
593
+ 45,
594
+ 99,
595
+ 111,
596
+ 110,
597
+ 102,
598
+ 105,
599
+ 103,
600
+ 45,
601
+ 118,
602
+ 50
603
+ ];
604
+ }
605
+ ];
606
+ };
607
+ },
608
+ {
609
+ "name": "admin";
610
+ "writable": true;
611
+ "signer": true;
612
+ },
613
+ {
614
+ "name": "vaultAuthority";
615
+ "writable": true;
616
+ "pda": {
617
+ "seeds": [
618
+ {
619
+ "kind": "const";
620
+ "value": [
621
+ 101,
622
+ 115,
623
+ 99,
624
+ 114,
625
+ 111,
626
+ 119
627
+ ];
628
+ }
629
+ ];
630
+ };
631
+ },
632
+ {
633
+ "name": "systemProgram";
634
+ "address": "11111111111111111111111111111111";
635
+ }
636
+ ];
637
+ "args": [
638
+ {
639
+ "name": "requestIds";
640
+ "type": {
641
+ "vec": "u64";
642
+ };
643
+ },
644
+ {
645
+ "name": "amounts";
646
+ "type": {
647
+ "vec": "u64";
648
+ };
649
+ }
650
+ ];
651
+ },
652
+ {
653
+ "name": "batchWithdrawTokens";
654
+ "discriminator": [
655
+ 187,
656
+ 198,
657
+ 10,
658
+ 76,
659
+ 205,
660
+ 254,
661
+ 160,
662
+ 83
663
+ ];
664
+ "accounts": [
665
+ {
666
+ "name": "escrowConfig";
667
+ "pda": {
668
+ "seeds": [
669
+ {
670
+ "kind": "const";
671
+ "value": [
672
+ 101,
673
+ 115,
674
+ 99,
675
+ 114,
676
+ 111,
677
+ 119,
678
+ 45,
679
+ 99,
680
+ 111,
681
+ 110,
682
+ 102,
683
+ 105,
684
+ 103,
685
+ 45,
686
+ 118,
687
+ 50
688
+ ];
689
+ }
690
+ ];
691
+ };
692
+ },
693
+ {
694
+ "name": "mint";
695
+ },
696
+ {
697
+ "name": "admin";
698
+ "writable": true;
699
+ "signer": true;
700
+ },
701
+ {
702
+ "name": "vaultAuthority";
703
+ "writable": true;
704
+ "pda": {
705
+ "seeds": [
706
+ {
707
+ "kind": "const";
708
+ "value": [
709
+ 101,
710
+ 115,
711
+ 99,
712
+ 114,
713
+ 111,
714
+ 119
715
+ ];
716
+ }
717
+ ];
718
+ };
719
+ },
720
+ {
721
+ "name": "vaultTokenAccount";
722
+ "writable": true;
723
+ "pda": {
724
+ "seeds": [
725
+ {
726
+ "kind": "account";
727
+ "path": "vaultAuthority";
728
+ },
729
+ {
730
+ "kind": "const";
731
+ "value": [
732
+ 6,
733
+ 221,
734
+ 246,
735
+ 225,
736
+ 215,
737
+ 101,
738
+ 161,
739
+ 147,
740
+ 217,
741
+ 203,
742
+ 225,
743
+ 70,
744
+ 206,
745
+ 235,
746
+ 121,
747
+ 172,
748
+ 28,
749
+ 180,
750
+ 133,
751
+ 237,
752
+ 95,
753
+ 91,
754
+ 55,
755
+ 145,
756
+ 58,
757
+ 140,
758
+ 245,
759
+ 133,
760
+ 126,
761
+ 255,
762
+ 0,
763
+ 169
764
+ ];
765
+ },
766
+ {
767
+ "kind": "account";
768
+ "path": "mint";
769
+ }
770
+ ];
771
+ "program": {
772
+ "kind": "const";
773
+ "value": [
774
+ 140,
775
+ 151,
776
+ 37,
777
+ 143,
778
+ 78,
779
+ 36,
780
+ 137,
781
+ 241,
782
+ 187,
783
+ 61,
784
+ 16,
785
+ 41,
786
+ 20,
787
+ 142,
788
+ 13,
789
+ 131,
790
+ 11,
791
+ 90,
792
+ 19,
793
+ 153,
794
+ 218,
795
+ 255,
796
+ 16,
797
+ 132,
798
+ 4,
799
+ 142,
800
+ 123,
801
+ 216,
802
+ 219,
803
+ 233,
804
+ 248,
805
+ 89
806
+ ];
807
+ };
808
+ };
809
+ },
810
+ {
811
+ "name": "tokenProgram";
812
+ "address": "TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA";
813
+ }
814
+ ];
815
+ "args": [
816
+ {
817
+ "name": "requestIds";
818
+ "type": {
819
+ "vec": "u64";
820
+ };
821
+ },
822
+ {
823
+ "name": "amounts";
824
+ "type": {
825
+ "vec": "u64";
826
+ };
827
+ }
828
+ ];
829
+ },
830
+ {
831
+ "name": "depositSol";
832
+ "discriminator": [
833
+ 108,
834
+ 81,
835
+ 78,
836
+ 117,
837
+ 125,
838
+ 155,
839
+ 56,
840
+ 200
841
+ ];
842
+ "accounts": [
843
+ {
844
+ "name": "escrowConfig";
845
+ "pda": {
846
+ "seeds": [
847
+ {
848
+ "kind": "const";
849
+ "value": [
850
+ 101,
851
+ 115,
852
+ 99,
853
+ 114,
854
+ 111,
855
+ 119,
856
+ 45,
857
+ 99,
858
+ 111,
859
+ 110,
860
+ 102,
861
+ 105,
862
+ 103,
863
+ 45,
864
+ 118,
865
+ 50
866
+ ];
867
+ }
868
+ ];
869
+ };
870
+ },
871
+ {
872
+ "name": "depositor";
873
+ "writable": true;
874
+ "signer": true;
875
+ },
876
+ {
877
+ "name": "vaultAuthority";
878
+ "writable": true;
879
+ "pda": {
880
+ "seeds": [
881
+ {
882
+ "kind": "const";
883
+ "value": [
884
+ 101,
885
+ 115,
886
+ 99,
887
+ 114,
888
+ 111,
889
+ 119
890
+ ];
891
+ }
892
+ ];
893
+ };
894
+ },
895
+ {
896
+ "name": "systemProgram";
897
+ "address": "11111111111111111111111111111111";
898
+ }
899
+ ];
900
+ "args": [
901
+ {
902
+ "name": "amount";
903
+ "type": "u64";
904
+ },
905
+ {
906
+ "name": "bonusCode";
907
+ "type": "string";
908
+ }
909
+ ];
910
+ },
911
+ {
912
+ "name": "depositSpl";
913
+ "discriminator": [
914
+ 224,
915
+ 0,
916
+ 198,
917
+ 175,
918
+ 198,
919
+ 47,
920
+ 105,
921
+ 204
922
+ ];
923
+ "accounts": [
924
+ {
925
+ "name": "escrowConfig";
926
+ "pda": {
927
+ "seeds": [
928
+ {
929
+ "kind": "const";
930
+ "value": [
931
+ 101,
932
+ 115,
933
+ 99,
934
+ 114,
935
+ 111,
936
+ 119,
937
+ 45,
938
+ 99,
939
+ 111,
940
+ 110,
941
+ 102,
942
+ 105,
943
+ 103,
944
+ 45,
945
+ 118,
946
+ 50
947
+ ];
948
+ }
949
+ ];
950
+ };
951
+ },
952
+ {
953
+ "name": "mint";
954
+ },
955
+ {
956
+ "name": "user";
957
+ "writable": true;
958
+ "signer": true;
959
+ },
960
+ {
961
+ "name": "vaultTokenAccount";
962
+ "writable": true;
963
+ "pda": {
964
+ "seeds": [
965
+ {
966
+ "kind": "account";
967
+ "path": "vaultAuthority";
968
+ },
969
+ {
970
+ "kind": "const";
971
+ "value": [
972
+ 6,
973
+ 221,
974
+ 246,
975
+ 225,
976
+ 215,
977
+ 101,
978
+ 161,
979
+ 147,
980
+ 217,
981
+ 203,
982
+ 225,
983
+ 70,
984
+ 206,
985
+ 235,
986
+ 121,
987
+ 172,
988
+ 28,
989
+ 180,
990
+ 133,
991
+ 237,
992
+ 95,
993
+ 91,
994
+ 55,
995
+ 145,
996
+ 58,
997
+ 140,
998
+ 245,
999
+ 133,
1000
+ 126,
1001
+ 255,
1002
+ 0,
1003
+ 169
1004
+ ];
1005
+ },
1006
+ {
1007
+ "kind": "account";
1008
+ "path": "mint";
1009
+ }
1010
+ ];
1011
+ "program": {
1012
+ "kind": "const";
1013
+ "value": [
1014
+ 140,
1015
+ 151,
1016
+ 37,
1017
+ 143,
1018
+ 78,
1019
+ 36,
1020
+ 137,
1021
+ 241,
1022
+ 187,
1023
+ 61,
1024
+ 16,
1025
+ 41,
1026
+ 20,
1027
+ 142,
1028
+ 13,
1029
+ 131,
1030
+ 11,
1031
+ 90,
1032
+ 19,
1033
+ 153,
1034
+ 218,
1035
+ 255,
1036
+ 16,
1037
+ 132,
1038
+ 4,
1039
+ 142,
1040
+ 123,
1041
+ 216,
1042
+ 219,
1043
+ 233,
1044
+ 248,
1045
+ 89
1046
+ ];
1047
+ };
1048
+ };
1049
+ },
1050
+ {
1051
+ "name": "vaultAuthority";
1052
+ "pda": {
1053
+ "seeds": [
1054
+ {
1055
+ "kind": "const";
1056
+ "value": [
1057
+ 101,
1058
+ 115,
1059
+ 99,
1060
+ 114,
1061
+ 111,
1062
+ 119
1063
+ ];
1064
+ }
1065
+ ];
1066
+ };
1067
+ },
1068
+ {
1069
+ "name": "userTokenAccount";
1070
+ "writable": true;
1071
+ "pda": {
1072
+ "seeds": [
1073
+ {
1074
+ "kind": "account";
1075
+ "path": "user";
1076
+ },
1077
+ {
1078
+ "kind": "const";
1079
+ "value": [
1080
+ 6,
1081
+ 221,
1082
+ 246,
1083
+ 225,
1084
+ 215,
1085
+ 101,
1086
+ 161,
1087
+ 147,
1088
+ 217,
1089
+ 203,
1090
+ 225,
1091
+ 70,
1092
+ 206,
1093
+ 235,
1094
+ 121,
1095
+ 172,
1096
+ 28,
1097
+ 180,
1098
+ 133,
1099
+ 237,
1100
+ 95,
1101
+ 91,
1102
+ 55,
1103
+ 145,
1104
+ 58,
1105
+ 140,
1106
+ 245,
1107
+ 133,
1108
+ 126,
1109
+ 255,
1110
+ 0,
1111
+ 169
1112
+ ];
1113
+ },
1114
+ {
1115
+ "kind": "account";
1116
+ "path": "mint";
1117
+ }
1118
+ ];
1119
+ "program": {
1120
+ "kind": "const";
1121
+ "value": [
1122
+ 140,
1123
+ 151,
1124
+ 37,
1125
+ 143,
1126
+ 78,
1127
+ 36,
1128
+ 137,
1129
+ 241,
1130
+ 187,
1131
+ 61,
1132
+ 16,
1133
+ 41,
1134
+ 20,
1135
+ 142,
1136
+ 13,
1137
+ 131,
1138
+ 11,
1139
+ 90,
1140
+ 19,
1141
+ 153,
1142
+ 218,
1143
+ 255,
1144
+ 16,
1145
+ 132,
1146
+ 4,
1147
+ 142,
1148
+ 123,
1149
+ 216,
1150
+ 219,
1151
+ 233,
1152
+ 248,
1153
+ 89
1154
+ ];
1155
+ };
1156
+ };
1157
+ },
1158
+ {
1159
+ "name": "tokenProgram";
1160
+ "address": "TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA";
1161
+ },
1162
+ {
1163
+ "name": "systemProgram";
1164
+ "address": "11111111111111111111111111111111";
1165
+ }
1166
+ ];
1167
+ "args": [
1168
+ {
1169
+ "name": "amount";
1170
+ "type": "u64";
1171
+ },
1172
+ {
1173
+ "name": "bonusCode";
1174
+ "type": "string";
1175
+ }
1176
+ ];
1177
+ },
1178
+ {
1179
+ "name": "getNonce";
1180
+ "discriminator": [
1181
+ 132,
1182
+ 129,
1183
+ 238,
1184
+ 76,
1185
+ 118,
1186
+ 10,
1187
+ 212,
1188
+ 7
1189
+ ];
1190
+ "accounts": [
1191
+ {
1192
+ "name": "nonceAccount";
1193
+ "writable": true;
1194
+ "pda": {
1195
+ "seeds": [
1196
+ {
1197
+ "kind": "const";
1198
+ "value": [
1199
+ 119,
1200
+ 105,
1201
+ 116,
1202
+ 104,
1203
+ 100,
1204
+ 114,
1205
+ 97,
1206
+ 119,
1207
+ 45,
1208
+ 110,
1209
+ 111,
1210
+ 110,
1211
+ 99,
1212
+ 101
1213
+ ];
1214
+ },
1215
+ {
1216
+ "kind": "account";
1217
+ "path": "user";
1218
+ }
1219
+ ];
1220
+ };
1221
+ },
1222
+ {
1223
+ "name": "user";
1224
+ "writable": true;
1225
+ "signer": true;
1226
+ },
1227
+ {
1228
+ "name": "systemProgram";
1229
+ "address": "11111111111111111111111111111111";
1230
+ }
1231
+ ];
1232
+ "args": [];
1233
+ "returns": "u64";
1234
+ },
1235
+ {
1236
+ "name": "initializeEscrowConfig";
1237
+ "discriminator": [
1238
+ 59,
1239
+ 6,
1240
+ 201,
1241
+ 67,
1242
+ 235,
1243
+ 49,
1244
+ 169,
1245
+ 95
1246
+ ];
1247
+ "accounts": [
1248
+ {
1249
+ "name": "escrowConfig";
1250
+ "writable": true;
1251
+ "pda": {
1252
+ "seeds": [
1253
+ {
1254
+ "kind": "const";
1255
+ "value": [
1256
+ 101,
1257
+ 115,
1258
+ 99,
1259
+ 114,
1260
+ 111,
1261
+ 119,
1262
+ 45,
1263
+ 99,
1264
+ 111,
1265
+ 110,
1266
+ 102,
1267
+ 105,
1268
+ 103,
1269
+ 45,
1270
+ 118,
1271
+ 50
1272
+ ];
1273
+ }
1274
+ ];
1275
+ };
1276
+ },
1277
+ {
1278
+ "name": "admin";
1279
+ "writable": true;
1280
+ "signer": true;
1281
+ },
1282
+ {
1283
+ "name": "systemProgram";
1284
+ "address": "11111111111111111111111111111111";
1285
+ }
1286
+ ];
1287
+ "args": [
1288
+ {
1289
+ "name": "signerPubkey";
1290
+ "type": "pubkey";
1291
+ }
1292
+ ];
1293
+ },
1294
+ {
1295
+ "name": "isAdminPubkey";
1296
+ "discriminator": [
1297
+ 121,
1298
+ 139,
1299
+ 38,
1300
+ 24,
1301
+ 170,
1302
+ 99,
1303
+ 139,
1304
+ 243
1305
+ ];
1306
+ "accounts": [
1307
+ {
1308
+ "name": "escrowConfig";
1309
+ "pda": {
1310
+ "seeds": [
1311
+ {
1312
+ "kind": "const";
1313
+ "value": [
1314
+ 101,
1315
+ 115,
1316
+ 99,
1317
+ 114,
1318
+ 111,
1319
+ 119,
1320
+ 45,
1321
+ 99,
1322
+ 111,
1323
+ 110,
1324
+ 102,
1325
+ 105,
1326
+ 103,
1327
+ 45,
1328
+ 118,
1329
+ 50
1330
+ ];
1331
+ }
1332
+ ];
1333
+ };
1334
+ }
1335
+ ];
1336
+ "args": [
1337
+ {
1338
+ "name": "account";
1339
+ "type": "pubkey";
1340
+ }
1341
+ ];
1342
+ "returns": "bool";
1343
+ },
1344
+ {
1345
+ "name": "isInitializedConfig";
1346
+ "discriminator": [
1347
+ 113,
1348
+ 162,
1349
+ 133,
1350
+ 92,
1351
+ 161,
1352
+ 73,
1353
+ 200,
1354
+ 232
1355
+ ];
1356
+ "accounts": [
1357
+ {
1358
+ "name": "escrowConfig";
1359
+ "pda": {
1360
+ "seeds": [
1361
+ {
1362
+ "kind": "const";
1363
+ "value": [
1364
+ 101,
1365
+ 115,
1366
+ 99,
1367
+ 114,
1368
+ 111,
1369
+ 119,
1370
+ 45,
1371
+ 99,
1372
+ 111,
1373
+ 110,
1374
+ 102,
1375
+ 105,
1376
+ 103,
1377
+ 45,
1378
+ 118,
1379
+ 50
1380
+ ];
1381
+ }
1382
+ ];
1383
+ };
1384
+ }
1385
+ ];
1386
+ "args": [];
1387
+ "returns": "bool";
1388
+ },
1389
+ {
1390
+ "name": "isPaymentToken";
1391
+ "discriminator": [
1392
+ 103,
1393
+ 61,
1394
+ 217,
1395
+ 183,
1396
+ 71,
1397
+ 112,
1398
+ 38,
1399
+ 108
1400
+ ];
1401
+ "accounts": [
1402
+ {
1403
+ "name": "escrowConfig";
1404
+ "pda": {
1405
+ "seeds": [
1406
+ {
1407
+ "kind": "const";
1408
+ "value": [
1409
+ 101,
1410
+ 115,
1411
+ 99,
1412
+ 114,
1413
+ 111,
1414
+ 119,
1415
+ 45,
1416
+ 99,
1417
+ 111,
1418
+ 110,
1419
+ 102,
1420
+ 105,
1421
+ 103,
1422
+ 45,
1423
+ 118,
1424
+ 50
1425
+ ];
1426
+ }
1427
+ ];
1428
+ };
1429
+ }
1430
+ ];
1431
+ "args": [
1432
+ {
1433
+ "name": "token";
1434
+ "type": "pubkey";
1435
+ }
1436
+ ];
1437
+ "returns": "bool";
1438
+ },
1439
+ {
1440
+ "name": "migrateEscrowConfig";
1441
+ "discriminator": [
1442
+ 221,
1443
+ 224,
1444
+ 135,
1445
+ 120,
1446
+ 28,
1447
+ 10,
1448
+ 75,
1449
+ 20
1450
+ ];
1451
+ "accounts": [
1452
+ {
1453
+ "name": "escrowConfig";
1454
+ "docs": [
1455
+ "Old account (smaller)"
1456
+ ];
1457
+ "writable": true;
1458
+ "pda": {
1459
+ "seeds": [
1460
+ {
1461
+ "kind": "const";
1462
+ "value": [
1463
+ 101,
1464
+ 115,
1465
+ 99,
1466
+ 114,
1467
+ 111,
1468
+ 119,
1469
+ 45,
1470
+ 99,
1471
+ 111,
1472
+ 110,
1473
+ 102,
1474
+ 105,
1475
+ 103
1476
+ ];
1477
+ }
1478
+ ];
1479
+ };
1480
+ },
1481
+ {
1482
+ "name": "newEscrowConfig";
1483
+ "docs": [
1484
+ "New account with more space"
1485
+ ];
1486
+ "writable": true;
1487
+ "pda": {
1488
+ "seeds": [
1489
+ {
1490
+ "kind": "const";
1491
+ "value": [
1492
+ 101,
1493
+ 115,
1494
+ 99,
1495
+ 114,
1496
+ 111,
1497
+ 119,
1498
+ 45,
1499
+ 99,
1500
+ 111,
1501
+ 110,
1502
+ 102,
1503
+ 105,
1504
+ 103,
1505
+ 45,
1506
+ 118,
1507
+ 50
1508
+ ];
1509
+ }
1510
+ ];
1511
+ };
1512
+ },
1513
+ {
1514
+ "name": "admin";
1515
+ "writable": true;
1516
+ "signer": true;
1517
+ },
1518
+ {
1519
+ "name": "systemProgram";
1520
+ "address": "11111111111111111111111111111111";
1521
+ }
1522
+ ];
1523
+ "args": [
1524
+ {
1525
+ "name": "admins";
1526
+ "type": {
1527
+ "vec": "pubkey";
1528
+ };
1529
+ },
1530
+ {
1531
+ "name": "paymentTokens";
1532
+ "type": {
1533
+ "vec": "pubkey";
1534
+ };
1535
+ },
1536
+ {
1537
+ "name": "fundingWallet";
1538
+ "type": "pubkey";
1539
+ }
1540
+ ];
1541
+ },
1542
+ {
1543
+ "name": "pauseProgram";
1544
+ "discriminator": [
1545
+ 91,
1546
+ 86,
1547
+ 253,
1548
+ 175,
1549
+ 66,
1550
+ 236,
1551
+ 172,
1552
+ 124
1553
+ ];
1554
+ "accounts": [
1555
+ {
1556
+ "name": "escrowConfig";
1557
+ "writable": true;
1558
+ "pda": {
1559
+ "seeds": [
1560
+ {
1561
+ "kind": "const";
1562
+ "value": [
1563
+ 101,
1564
+ 115,
1565
+ 99,
1566
+ 114,
1567
+ 111,
1568
+ 119,
1569
+ 45,
1570
+ 99,
1571
+ 111,
1572
+ 110,
1573
+ 102,
1574
+ 105,
1575
+ 103,
1576
+ 45,
1577
+ 118,
1578
+ 50
1579
+ ];
1580
+ }
1581
+ ];
1582
+ };
1583
+ },
1584
+ {
1585
+ "name": "admin";
1586
+ "writable": true;
1587
+ "signer": true;
1588
+ },
1589
+ {
1590
+ "name": "systemProgram";
1591
+ "address": "11111111111111111111111111111111";
1592
+ }
1593
+ ];
1594
+ "args": [
1595
+ {
1596
+ "name": "targetState";
1597
+ "type": "bool";
1598
+ }
1599
+ ];
1600
+ },
1601
+ {
1602
+ "name": "removeAdmin";
1603
+ "discriminator": [
1604
+ 74,
1605
+ 202,
1606
+ 71,
1607
+ 106,
1608
+ 252,
1609
+ 31,
1610
+ 72,
1611
+ 183
1612
+ ];
1613
+ "accounts": [
1614
+ {
1615
+ "name": "escrowConfig";
1616
+ "writable": true;
1617
+ "pda": {
1618
+ "seeds": [
1619
+ {
1620
+ "kind": "const";
1621
+ "value": [
1622
+ 101,
1623
+ 115,
1624
+ 99,
1625
+ 114,
1626
+ 111,
1627
+ 119,
1628
+ 45,
1629
+ 99,
1630
+ 111,
1631
+ 110,
1632
+ 102,
1633
+ 105,
1634
+ 103,
1635
+ 45,
1636
+ 118,
1637
+ 50
1638
+ ];
1639
+ }
1640
+ ];
1641
+ };
1642
+ },
1643
+ {
1644
+ "name": "admin";
1645
+ "writable": true;
1646
+ "signer": true;
1647
+ }
1648
+ ];
1649
+ "args": [
1650
+ {
1651
+ "name": "account";
1652
+ "type": "pubkey";
1653
+ }
1654
+ ];
1655
+ },
1656
+ {
1657
+ "name": "removePaymentToken";
1658
+ "discriminator": [
1659
+ 119,
1660
+ 18,
1661
+ 240,
1662
+ 223,
1663
+ 126,
1664
+ 168,
1665
+ 165,
1666
+ 117
1667
+ ];
1668
+ "accounts": [
1669
+ {
1670
+ "name": "escrowConfig";
1671
+ "writable": true;
1672
+ "pda": {
1673
+ "seeds": [
1674
+ {
1675
+ "kind": "const";
1676
+ "value": [
1677
+ 101,
1678
+ 115,
1679
+ 99,
1680
+ 114,
1681
+ 111,
1682
+ 119,
1683
+ 45,
1684
+ 99,
1685
+ 111,
1686
+ 110,
1687
+ 102,
1688
+ 105,
1689
+ 103,
1690
+ 45,
1691
+ 118,
1692
+ 50
1693
+ ];
1694
+ }
1695
+ ];
1696
+ };
1697
+ },
1698
+ {
1699
+ "name": "admin";
1700
+ "writable": true;
1701
+ "signer": true;
1702
+ }
1703
+ ];
1704
+ "args": [
1705
+ {
1706
+ "name": "tokenMint";
1707
+ "type": "pubkey";
1708
+ }
1709
+ ];
1710
+ },
1711
+ {
1712
+ "name": "removeTokenFromEscrow";
1713
+ "docs": [
1714
+ "Admin Withdraw SPL tokens"
1715
+ ];
1716
+ "discriminator": [
1717
+ 42,
1718
+ 189,
1719
+ 194,
1720
+ 61,
1721
+ 110,
1722
+ 149,
1723
+ 83,
1724
+ 126
1725
+ ];
1726
+ "accounts": [
1727
+ {
1728
+ "name": "escrowConfig";
1729
+ "pda": {
1730
+ "seeds": [
1731
+ {
1732
+ "kind": "const";
1733
+ "value": [
1734
+ 101,
1735
+ 115,
1736
+ 99,
1737
+ 114,
1738
+ 111,
1739
+ 119,
1740
+ 45,
1741
+ 99,
1742
+ 111,
1743
+ 110,
1744
+ 102,
1745
+ 105,
1746
+ 103,
1747
+ 45,
1748
+ 118,
1749
+ 50
1750
+ ];
1751
+ }
1752
+ ];
1753
+ };
1754
+ },
1755
+ {
1756
+ "name": "mint";
1757
+ },
1758
+ {
1759
+ "name": "admin";
1760
+ "writable": true;
1761
+ "signer": true;
1762
+ },
1763
+ {
1764
+ "name": "vaultAuthority";
1765
+ "writable": true;
1766
+ "pda": {
1767
+ "seeds": [
1768
+ {
1769
+ "kind": "const";
1770
+ "value": [
1771
+ 101,
1772
+ 115,
1773
+ 99,
1774
+ 114,
1775
+ 111,
1776
+ 119
1777
+ ];
1778
+ }
1779
+ ];
1780
+ };
1781
+ },
1782
+ {
1783
+ "name": "vaultTokenAccount";
1784
+ "writable": true;
1785
+ "pda": {
1786
+ "seeds": [
1787
+ {
1788
+ "kind": "account";
1789
+ "path": "vaultAuthority";
1790
+ },
1791
+ {
1792
+ "kind": "const";
1793
+ "value": [
1794
+ 6,
1795
+ 221,
1796
+ 246,
1797
+ 225,
1798
+ 215,
1799
+ 101,
1800
+ 161,
1801
+ 147,
1802
+ 217,
1803
+ 203,
1804
+ 225,
1805
+ 70,
1806
+ 206,
1807
+ 235,
1808
+ 121,
1809
+ 172,
1810
+ 28,
1811
+ 180,
1812
+ 133,
1813
+ 237,
1814
+ 95,
1815
+ 91,
1816
+ 55,
1817
+ 145,
1818
+ 58,
1819
+ 140,
1820
+ 245,
1821
+ 133,
1822
+ 126,
1823
+ 255,
1824
+ 0,
1825
+ 169
1826
+ ];
1827
+ },
1828
+ {
1829
+ "kind": "account";
1830
+ "path": "mint";
1831
+ }
1832
+ ];
1833
+ "program": {
1834
+ "kind": "const";
1835
+ "value": [
1836
+ 140,
1837
+ 151,
1838
+ 37,
1839
+ 143,
1840
+ 78,
1841
+ 36,
1842
+ 137,
1843
+ 241,
1844
+ 187,
1845
+ 61,
1846
+ 16,
1847
+ 41,
1848
+ 20,
1849
+ 142,
1850
+ 13,
1851
+ 131,
1852
+ 11,
1853
+ 90,
1854
+ 19,
1855
+ 153,
1856
+ 218,
1857
+ 255,
1858
+ 16,
1859
+ 132,
1860
+ 4,
1861
+ 142,
1862
+ 123,
1863
+ 216,
1864
+ 219,
1865
+ 233,
1866
+ 248,
1867
+ 89
1868
+ ];
1869
+ };
1870
+ };
1871
+ },
1872
+ {
1873
+ "name": "destinationTokenAccount";
1874
+ "writable": true;
1875
+ "pda": {
1876
+ "seeds": [
1877
+ {
1878
+ "kind": "account";
1879
+ "path": "admin";
1880
+ },
1881
+ {
1882
+ "kind": "const";
1883
+ "value": [
1884
+ 6,
1885
+ 221,
1886
+ 246,
1887
+ 225,
1888
+ 215,
1889
+ 101,
1890
+ 161,
1891
+ 147,
1892
+ 217,
1893
+ 203,
1894
+ 225,
1895
+ 70,
1896
+ 206,
1897
+ 235,
1898
+ 121,
1899
+ 172,
1900
+ 28,
1901
+ 180,
1902
+ 133,
1903
+ 237,
1904
+ 95,
1905
+ 91,
1906
+ 55,
1907
+ 145,
1908
+ 58,
1909
+ 140,
1910
+ 245,
1911
+ 133,
1912
+ 126,
1913
+ 255,
1914
+ 0,
1915
+ 169
1916
+ ];
1917
+ },
1918
+ {
1919
+ "kind": "account";
1920
+ "path": "mint";
1921
+ }
1922
+ ];
1923
+ "program": {
1924
+ "kind": "const";
1925
+ "value": [
1926
+ 140,
1927
+ 151,
1928
+ 37,
1929
+ 143,
1930
+ 78,
1931
+ 36,
1932
+ 137,
1933
+ 241,
1934
+ 187,
1935
+ 61,
1936
+ 16,
1937
+ 41,
1938
+ 20,
1939
+ 142,
1940
+ 13,
1941
+ 131,
1942
+ 11,
1943
+ 90,
1944
+ 19,
1945
+ 153,
1946
+ 218,
1947
+ 255,
1948
+ 16,
1949
+ 132,
1950
+ 4,
1951
+ 142,
1952
+ 123,
1953
+ 216,
1954
+ 219,
1955
+ 233,
1956
+ 248,
1957
+ 89
1958
+ ];
1959
+ };
1960
+ };
1961
+ },
1962
+ {
1963
+ "name": "tokenProgram";
1964
+ "address": "TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA";
1965
+ }
1966
+ ];
1967
+ "args": [
1968
+ {
1969
+ "name": "amount";
1970
+ "type": "u64";
1971
+ }
1972
+ ];
1973
+ },
1974
+ {
1975
+ "name": "setAdmin";
1976
+ "discriminator": [
1977
+ 251,
1978
+ 163,
1979
+ 0,
1980
+ 52,
1981
+ 91,
1982
+ 194,
1983
+ 187,
1984
+ 92
1985
+ ];
1986
+ "accounts": [
1987
+ {
1988
+ "name": "escrowConfig";
1989
+ "writable": true;
1990
+ "pda": {
1991
+ "seeds": [
1992
+ {
1993
+ "kind": "const";
1994
+ "value": [
1995
+ 101,
1996
+ 115,
1997
+ 99,
1998
+ 114,
1999
+ 111,
2000
+ 119,
2001
+ 45,
2002
+ 99,
2003
+ 111,
2004
+ 110,
2005
+ 102,
2006
+ 105,
2007
+ 103,
2008
+ 45,
2009
+ 118,
2010
+ 50
2011
+ ];
2012
+ }
2013
+ ];
2014
+ };
2015
+ },
2016
+ {
2017
+ "name": "admin";
2018
+ "signer": true;
2019
+ }
2020
+ ];
2021
+ "args": [
2022
+ {
2023
+ "name": "newAdmin";
2024
+ "type": "pubkey";
2025
+ }
2026
+ ];
2027
+ },
2028
+ {
2029
+ "name": "withdrawSolWithSig";
2030
+ "discriminator": [
2031
+ 127,
2032
+ 123,
2033
+ 63,
2034
+ 232,
2035
+ 4,
2036
+ 153,
2037
+ 33,
2038
+ 13
2039
+ ];
2040
+ "accounts": [
2041
+ {
2042
+ "name": "escrowConfig";
2043
+ "pda": {
2044
+ "seeds": [
2045
+ {
2046
+ "kind": "const";
2047
+ "value": [
2048
+ 101,
2049
+ 115,
2050
+ 99,
2051
+ 114,
2052
+ 111,
2053
+ 119,
2054
+ 45,
2055
+ 99,
2056
+ 111,
2057
+ 110,
2058
+ 102,
2059
+ 105,
2060
+ 103,
2061
+ 45,
2062
+ 118,
2063
+ 50
2064
+ ];
2065
+ }
2066
+ ];
2067
+ };
2068
+ },
2069
+ {
2070
+ "name": "user";
2071
+ "writable": true;
2072
+ "signer": true;
2073
+ },
2074
+ {
2075
+ "name": "vaultAuthority";
2076
+ "writable": true;
2077
+ "pda": {
2078
+ "seeds": [
2079
+ {
2080
+ "kind": "const";
2081
+ "value": [
2082
+ 101,
2083
+ 115,
2084
+ 99,
2085
+ 114,
2086
+ 111,
2087
+ 119
2088
+ ];
2089
+ }
2090
+ ];
2091
+ };
2092
+ },
2093
+ {
2094
+ "name": "withdrawNonce";
2095
+ "writable": true;
2096
+ "pda": {
2097
+ "seeds": [
2098
+ {
2099
+ "kind": "const";
2100
+ "value": [
2101
+ 119,
2102
+ 105,
2103
+ 116,
2104
+ 104,
2105
+ 100,
2106
+ 114,
2107
+ 97,
2108
+ 119,
2109
+ 45,
2110
+ 110,
2111
+ 111,
2112
+ 110,
2113
+ 99,
2114
+ 101
2115
+ ];
2116
+ },
2117
+ {
2118
+ "kind": "account";
2119
+ "path": "user";
2120
+ }
2121
+ ];
2122
+ };
2123
+ },
2124
+ {
2125
+ "name": "recipient";
2126
+ "writable": true;
2127
+ },
2128
+ {
2129
+ "name": "tokenAddress";
2130
+ },
2131
+ {
2132
+ "name": "systemProgram";
2133
+ "address": "11111111111111111111111111111111";
2134
+ },
2135
+ {
2136
+ "name": "instructions";
2137
+ "address": "Sysvar1nstructions1111111111111111111111111";
2138
+ }
2139
+ ];
2140
+ "args": [
2141
+ {
2142
+ "name": "amount";
2143
+ "type": "u64";
2144
+ },
2145
+ {
2146
+ "name": "chainId";
2147
+ "type": "u64";
2148
+ },
2149
+ {
2150
+ "name": "requestId";
2151
+ "type": "u64";
2152
+ }
2153
+ ];
2154
+ },
2155
+ {
2156
+ "name": "withdrawSplWithSig";
2157
+ "discriminator": [
2158
+ 97,
2159
+ 26,
2160
+ 53,
2161
+ 97,
2162
+ 35,
2163
+ 183,
2164
+ 69,
2165
+ 237
2166
+ ];
2167
+ "accounts": [
2168
+ {
2169
+ "name": "escrowConfig";
2170
+ "pda": {
2171
+ "seeds": [
2172
+ {
2173
+ "kind": "const";
2174
+ "value": [
2175
+ 101,
2176
+ 115,
2177
+ 99,
2178
+ 114,
2179
+ 111,
2180
+ 119,
2181
+ 45,
2182
+ 99,
2183
+ 111,
2184
+ 110,
2185
+ 102,
2186
+ 105,
2187
+ 103,
2188
+ 45,
2189
+ 118,
2190
+ 50
2191
+ ];
2192
+ }
2193
+ ];
2194
+ };
2195
+ },
2196
+ {
2197
+ "name": "mint";
2198
+ },
2199
+ {
2200
+ "name": "user";
2201
+ "writable": true;
2202
+ "signer": true;
2203
+ },
2204
+ {
2205
+ "name": "vaultAuthority";
2206
+ "writable": true;
2207
+ "pda": {
2208
+ "seeds": [
2209
+ {
2210
+ "kind": "const";
2211
+ "value": [
2212
+ 101,
2213
+ 115,
2214
+ 99,
2215
+ 114,
2216
+ 111,
2217
+ 119
2218
+ ];
2219
+ }
2220
+ ];
2221
+ };
2222
+ },
2223
+ {
2224
+ "name": "vaultTokenAccount";
2225
+ "writable": true;
2226
+ "pda": {
2227
+ "seeds": [
2228
+ {
2229
+ "kind": "account";
2230
+ "path": "vaultAuthority";
2231
+ },
2232
+ {
2233
+ "kind": "const";
2234
+ "value": [
2235
+ 6,
2236
+ 221,
2237
+ 246,
2238
+ 225,
2239
+ 215,
2240
+ 101,
2241
+ 161,
2242
+ 147,
2243
+ 217,
2244
+ 203,
2245
+ 225,
2246
+ 70,
2247
+ 206,
2248
+ 235,
2249
+ 121,
2250
+ 172,
2251
+ 28,
2252
+ 180,
2253
+ 133,
2254
+ 237,
2255
+ 95,
2256
+ 91,
2257
+ 55,
2258
+ 145,
2259
+ 58,
2260
+ 140,
2261
+ 245,
2262
+ 133,
2263
+ 126,
2264
+ 255,
2265
+ 0,
2266
+ 169
2267
+ ];
2268
+ },
2269
+ {
2270
+ "kind": "account";
2271
+ "path": "mint";
2272
+ }
2273
+ ];
2274
+ "program": {
2275
+ "kind": "const";
2276
+ "value": [
2277
+ 140,
2278
+ 151,
2279
+ 37,
2280
+ 143,
2281
+ 78,
2282
+ 36,
2283
+ 137,
2284
+ 241,
2285
+ 187,
2286
+ 61,
2287
+ 16,
2288
+ 41,
2289
+ 20,
2290
+ 142,
2291
+ 13,
2292
+ 131,
2293
+ 11,
2294
+ 90,
2295
+ 19,
2296
+ 153,
2297
+ 218,
2298
+ 255,
2299
+ 16,
2300
+ 132,
2301
+ 4,
2302
+ 142,
2303
+ 123,
2304
+ 216,
2305
+ 219,
2306
+ 233,
2307
+ 248,
2308
+ 89
2309
+ ];
2310
+ };
2311
+ };
2312
+ },
2313
+ {
2314
+ "name": "withdrawNonce";
2315
+ },
2316
+ {
2317
+ "name": "recipient";
2318
+ "writable": true;
2319
+ },
2320
+ {
2321
+ "name": "userTokenAccount";
2322
+ "writable": true;
2323
+ "pda": {
2324
+ "seeds": [
2325
+ {
2326
+ "kind": "account";
2327
+ "path": "user";
2328
+ },
2329
+ {
2330
+ "kind": "const";
2331
+ "value": [
2332
+ 6,
2333
+ 221,
2334
+ 246,
2335
+ 225,
2336
+ 215,
2337
+ 101,
2338
+ 161,
2339
+ 147,
2340
+ 217,
2341
+ 203,
2342
+ 225,
2343
+ 70,
2344
+ 206,
2345
+ 235,
2346
+ 121,
2347
+ 172,
2348
+ 28,
2349
+ 180,
2350
+ 133,
2351
+ 237,
2352
+ 95,
2353
+ 91,
2354
+ 55,
2355
+ 145,
2356
+ 58,
2357
+ 140,
2358
+ 245,
2359
+ 133,
2360
+ 126,
2361
+ 255,
2362
+ 0,
2363
+ 169
2364
+ ];
2365
+ },
2366
+ {
2367
+ "kind": "account";
2368
+ "path": "mint";
2369
+ }
2370
+ ];
2371
+ "program": {
2372
+ "kind": "const";
2373
+ "value": [
2374
+ 140,
2375
+ 151,
2376
+ 37,
2377
+ 143,
2378
+ 78,
2379
+ 36,
2380
+ 137,
2381
+ 241,
2382
+ 187,
2383
+ 61,
2384
+ 16,
2385
+ 41,
2386
+ 20,
2387
+ 142,
2388
+ 13,
2389
+ 131,
2390
+ 11,
2391
+ 90,
2392
+ 19,
2393
+ 153,
2394
+ 218,
2395
+ 255,
2396
+ 16,
2397
+ 132,
2398
+ 4,
2399
+ 142,
2400
+ 123,
2401
+ 216,
2402
+ 219,
2403
+ 233,
2404
+ 248,
2405
+ 89
2406
+ ];
2407
+ };
2408
+ };
2409
+ },
2410
+ {
2411
+ "name": "tokenProgram";
2412
+ "address": "TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA";
2413
+ },
2414
+ {
2415
+ "name": "systemProgram";
2416
+ "address": "11111111111111111111111111111111";
2417
+ },
2418
+ {
2419
+ "name": "instructions";
2420
+ "address": "Sysvar1nstructions1111111111111111111111111";
2421
+ }
2422
+ ];
2423
+ "args": [
2424
+ {
2425
+ "name": "amount";
2426
+ "type": "u64";
2427
+ },
2428
+ {
2429
+ "name": "chainId";
2430
+ "type": "u64";
2431
+ },
2432
+ {
2433
+ "name": "requestId";
2434
+ "type": "u64";
2435
+ }
2436
+ ];
2437
+ }
2438
+ ];
2439
+ "accounts": [
2440
+ {
2441
+ "name": "escrowConfig";
2442
+ "discriminator": [
2443
+ 138,
2444
+ 174,
2445
+ 227,
2446
+ 187,
2447
+ 239,
2448
+ 148,
2449
+ 1,
2450
+ 44
2451
+ ];
2452
+ },
2453
+ {
2454
+ "name": "escrowConfiguration";
2455
+ "discriminator": [
2456
+ 105,
2457
+ 131,
2458
+ 219,
2459
+ 218,
2460
+ 63,
2461
+ 157,
2462
+ 131,
2463
+ 34
2464
+ ];
2465
+ },
2466
+ {
2467
+ "name": "withdrawNonce";
2468
+ "discriminator": [
2469
+ 14,
2470
+ 140,
2471
+ 88,
2472
+ 169,
2473
+ 163,
2474
+ 189,
2475
+ 45,
2476
+ 160
2477
+ ];
2478
+ }
2479
+ ];
2480
+ "events": [
2481
+ {
2482
+ "name": "adminDeposit";
2483
+ "discriminator": [
2484
+ 59,
2485
+ 248,
2486
+ 135,
2487
+ 30,
2488
+ 114,
2489
+ 173,
2490
+ 182,
2491
+ 26
2492
+ ];
2493
+ },
2494
+ {
2495
+ "name": "adminWithdraw";
2496
+ "discriminator": [
2497
+ 218,
2498
+ 178,
2499
+ 1,
2500
+ 64,
2501
+ 41,
2502
+ 179,
2503
+ 24,
2504
+ 171
2505
+ ];
2506
+ },
2507
+ {
2508
+ "name": "depositSolEvent";
2509
+ "discriminator": [
2510
+ 183,
2511
+ 99,
2512
+ 57,
2513
+ 178,
2514
+ 159,
2515
+ 35,
2516
+ 189,
2517
+ 191
2518
+ ];
2519
+ },
2520
+ {
2521
+ "name": "depositSplEvent";
2522
+ "discriminator": [
2523
+ 109,
2524
+ 11,
2525
+ 28,
2526
+ 127,
2527
+ 178,
2528
+ 29,
2529
+ 254,
2530
+ 23
2531
+ ];
2532
+ },
2533
+ {
2534
+ "name": "withdrawSolEvent";
2535
+ "discriminator": [
2536
+ 238,
2537
+ 235,
2538
+ 100,
2539
+ 169,
2540
+ 192,
2541
+ 162,
2542
+ 94,
2543
+ 103
2544
+ ];
2545
+ },
2546
+ {
2547
+ "name": "withdrawSplEvent";
2548
+ "discriminator": [
2549
+ 171,
2550
+ 15,
2551
+ 32,
2552
+ 53,
2553
+ 66,
2554
+ 190,
2555
+ 53,
2556
+ 85
2557
+ ];
2558
+ }
2559
+ ];
2560
+ "errors": [
2561
+ {
2562
+ "code": 6000;
2563
+ "name": "unauthorized";
2564
+ "msg": "Unauthorized access";
2565
+ },
2566
+ {
2567
+ "code": 6001;
2568
+ "name": "invalidArgsLength";
2569
+ "msg": "Invalid arguments lengths";
2570
+ },
2571
+ {
2572
+ "code": 6002;
2573
+ "name": "invalidInstructionData";
2574
+ "msg": "Invalid instruction data";
2575
+ },
2576
+ {
2577
+ "code": 6003;
2578
+ "name": "invalidAccountData";
2579
+ "msg": "Invalid account data";
2580
+ },
2581
+ {
2582
+ "code": 6004;
2583
+ "name": "invalidSignature";
2584
+ "msg": "Invalid signature";
2585
+ },
2586
+ {
2587
+ "code": 6005;
2588
+ "name": "invalidSignatureCount";
2589
+ "msg": "Invalid signature count";
2590
+ },
2591
+ {
2592
+ "code": 6006;
2593
+ "name": "invalidOffset";
2594
+ "msg": "Invalid offset";
2595
+ },
2596
+ {
2597
+ "code": 6007;
2598
+ "name": "messageOutOfBounds";
2599
+ "msg": "Message out of bounds";
2600
+ },
2601
+ {
2602
+ "code": 6008;
2603
+ "name": "unexpectedMessage";
2604
+ "msg": "Unexpected Message";
2605
+ },
2606
+ {
2607
+ "code": 6009;
2608
+ "name": "pubKeyOutOfBounds";
2609
+ "msg": "Public Key out of bounds";
2610
+ },
2611
+ {
2612
+ "code": 6010;
2613
+ "name": "invalidSigner";
2614
+ "msg": "Invalid signer publickey";
2615
+ },
2616
+ {
2617
+ "code": 6011;
2618
+ "name": "alreadyExists";
2619
+ "msg": "Account already exists in the list";
2620
+ },
2621
+ {
2622
+ "code": 6012;
2623
+ "name": "notFound";
2624
+ "msg": "Account not found in the list";
2625
+ },
2626
+ {
2627
+ "code": 6013;
2628
+ "name": "invalidPaymenToken";
2629
+ "msg": "Invalid payment token.";
2630
+ },
2631
+ {
2632
+ "code": 6014;
2633
+ "name": "insufficientSplReserves";
2634
+ "msg": "Insufficient SPL reserve balance.";
2635
+ },
2636
+ {
2637
+ "code": 6015;
2638
+ "name": "insufficientSolReserves";
2639
+ "msg": "Insufficient SOL reserve balance.";
2640
+ },
2641
+ {
2642
+ "code": 6016;
2643
+ "name": "paused";
2644
+ "msg": "Program is paused";
2645
+ },
2646
+ {
2647
+ "code": 6017;
2648
+ "name": "sameState";
2649
+ "msg": "Program is already in this state";
2650
+ },
2651
+ {
2652
+ "code": 6018;
2653
+ "name": "maxPaymentTokenCount";
2654
+ "msg": "Max payment tokens count reached";
2655
+ },
2656
+ {
2657
+ "code": 6019;
2658
+ "name": "maxAdminCount";
2659
+ "msg": "Max admin count reached";
2660
+ }
2661
+ ];
2662
+ "types": [
2663
+ {
2664
+ "name": "adminDeposit";
2665
+ "type": {
2666
+ "kind": "struct";
2667
+ "fields": [
2668
+ {
2669
+ "name": "caller";
2670
+ "type": "pubkey";
2671
+ },
2672
+ {
2673
+ "name": "depositor";
2674
+ "type": "pubkey";
2675
+ },
2676
+ {
2677
+ "name": "recipient";
2678
+ "type": "pubkey";
2679
+ },
2680
+ {
2681
+ "name": "token";
2682
+ "type": "pubkey";
2683
+ },
2684
+ {
2685
+ "name": "amount";
2686
+ "type": "u64";
2687
+ },
2688
+ {
2689
+ "name": "slot";
2690
+ "type": "u64";
2691
+ },
2692
+ {
2693
+ "name": "timestamp";
2694
+ "type": "i64";
2695
+ }
2696
+ ];
2697
+ };
2698
+ },
2699
+ {
2700
+ "name": "adminWithdraw";
2701
+ "type": {
2702
+ "kind": "struct";
2703
+ "fields": [
2704
+ {
2705
+ "name": "caller";
2706
+ "type": "pubkey";
2707
+ },
2708
+ {
2709
+ "name": "recipient";
2710
+ "type": "pubkey";
2711
+ },
2712
+ {
2713
+ "name": "token";
2714
+ "type": "pubkey";
2715
+ },
2716
+ {
2717
+ "name": "amount";
2718
+ "type": "u64";
2719
+ },
2720
+ {
2721
+ "name": "slot";
2722
+ "type": "u64";
2723
+ },
2724
+ {
2725
+ "name": "timestamp";
2726
+ "type": "i64";
2727
+ }
2728
+ ];
2729
+ };
2730
+ },
2731
+ {
2732
+ "name": "depositSolEvent";
2733
+ "type": {
2734
+ "kind": "struct";
2735
+ "fields": [
2736
+ {
2737
+ "name": "caller";
2738
+ "type": "pubkey";
2739
+ },
2740
+ {
2741
+ "name": "depositor";
2742
+ "type": "pubkey";
2743
+ },
2744
+ {
2745
+ "name": "vaultAuthority";
2746
+ "type": "pubkey";
2747
+ },
2748
+ {
2749
+ "name": "amount";
2750
+ "type": "u64";
2751
+ },
2752
+ {
2753
+ "name": "bonusCode";
2754
+ "type": "string";
2755
+ },
2756
+ {
2757
+ "name": "slot";
2758
+ "type": "u64";
2759
+ },
2760
+ {
2761
+ "name": "timestamp";
2762
+ "type": "i64";
2763
+ }
2764
+ ];
2765
+ };
2766
+ },
2767
+ {
2768
+ "name": "depositSplEvent";
2769
+ "type": {
2770
+ "kind": "struct";
2771
+ "fields": [
2772
+ {
2773
+ "name": "caller";
2774
+ "type": "pubkey";
2775
+ },
2776
+ {
2777
+ "name": "depositor";
2778
+ "type": "pubkey";
2779
+ },
2780
+ {
2781
+ "name": "vaultTokenAccount";
2782
+ "type": "pubkey";
2783
+ },
2784
+ {
2785
+ "name": "mint";
2786
+ "type": "pubkey";
2787
+ },
2788
+ {
2789
+ "name": "amount";
2790
+ "type": "u64";
2791
+ },
2792
+ {
2793
+ "name": "bonusCode";
2794
+ "type": "string";
2795
+ },
2796
+ {
2797
+ "name": "slot";
2798
+ "type": "u64";
2799
+ },
2800
+ {
2801
+ "name": "timestamp";
2802
+ "type": "i64";
2803
+ }
2804
+ ];
2805
+ };
2806
+ },
2807
+ {
2808
+ "name": "escrowConfig";
2809
+ "type": {
2810
+ "kind": "struct";
2811
+ "fields": [
2812
+ {
2813
+ "name": "admin";
2814
+ "type": "pubkey";
2815
+ },
2816
+ {
2817
+ "name": "signer";
2818
+ "type": "pubkey";
2819
+ },
2820
+ {
2821
+ "name": "isInitialized";
2822
+ "type": "bool";
2823
+ }
2824
+ ];
2825
+ };
2826
+ },
2827
+ {
2828
+ "name": "escrowConfiguration";
2829
+ "docs": [
2830
+ "Config account holding"
2831
+ ];
2832
+ "type": {
2833
+ "kind": "struct";
2834
+ "fields": [
2835
+ {
2836
+ "name": "admins";
2837
+ "type": {
2838
+ "vec": "pubkey";
2839
+ };
2840
+ },
2841
+ {
2842
+ "name": "paymentTokens";
2843
+ "type": {
2844
+ "vec": "pubkey";
2845
+ };
2846
+ },
2847
+ {
2848
+ "name": "signer";
2849
+ "type": "pubkey";
2850
+ },
2851
+ {
2852
+ "name": "fundingWallet";
2853
+ "type": "pubkey";
2854
+ },
2855
+ {
2856
+ "name": "isInitialized";
2857
+ "type": "bool";
2858
+ },
2859
+ {
2860
+ "name": "isPaused";
2861
+ "type": "bool";
2862
+ }
2863
+ ];
2864
+ };
2865
+ },
2866
+ {
2867
+ "name": "withdrawNonce";
2868
+ "type": {
2869
+ "kind": "struct";
2870
+ "fields": [
2871
+ {
2872
+ "name": "nonce";
2873
+ "type": "u64";
2874
+ }
2875
+ ];
2876
+ };
2877
+ },
2878
+ {
2879
+ "name": "withdrawSolEvent";
2880
+ "type": {
2881
+ "kind": "struct";
2882
+ "fields": [
2883
+ {
2884
+ "name": "caller";
2885
+ "type": "pubkey";
2886
+ },
2887
+ {
2888
+ "name": "recipient";
2889
+ "type": "pubkey";
2890
+ },
2891
+ {
2892
+ "name": "amount";
2893
+ "type": "u64";
2894
+ },
2895
+ {
2896
+ "name": "requestId";
2897
+ "type": "u64";
2898
+ },
2899
+ {
2900
+ "name": "slot";
2901
+ "type": "u64";
2902
+ },
2903
+ {
2904
+ "name": "timestamp";
2905
+ "type": "i64";
2906
+ }
2907
+ ];
2908
+ };
2909
+ },
2910
+ {
2911
+ "name": "withdrawSplEvent";
2912
+ "type": {
2913
+ "kind": "struct";
2914
+ "fields": [
2915
+ {
2916
+ "name": "caller";
2917
+ "type": "pubkey";
2918
+ },
2919
+ {
2920
+ "name": "recipient";
2921
+ "type": "pubkey";
2922
+ },
2923
+ {
2924
+ "name": "mint";
2925
+ "type": "pubkey";
2926
+ },
2927
+ {
2928
+ "name": "amount";
2929
+ "type": "u64";
2930
+ },
2931
+ {
2932
+ "name": "requestId";
2933
+ "type": "u64";
2934
+ },
2935
+ {
2936
+ "name": "slot";
2937
+ "type": "u64";
2938
+ },
2939
+ {
2940
+ "name": "timestamp";
2941
+ "type": "i64";
2942
+ }
2943
+ ];
2944
+ };
2945
+ }
2946
+ ];
2947
+ };
2948
+ //# sourceMappingURL=escrow.d.ts.map