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