@0xtorch/core 0.0.36 → 0.0.37

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 (1682) hide show
  1. package/.DS_Store +0 -0
  2. package/_cjs/actions/action.js +117 -0
  3. package/_cjs/actions/action.js.map +1 -0
  4. package/_cjs/actions/actionTransferPattern.js +353 -0
  5. package/_cjs/actions/actionTransferPattern.js.map +1 -0
  6. package/_cjs/actions/index.js +19 -154
  7. package/_cjs/actions/index.js.map +1 -1
  8. package/_cjs/actions/logic/checkIfActionsIsValid/checkIfActionsHaveAllTransfers.js +32 -0
  9. package/_cjs/actions/logic/checkIfActionsIsValid/checkIfActionsHaveAllTransfers.js.map +1 -0
  10. package/_cjs/actions/logic/checkIfActionsIsValid/checkIfTransfersAreExactMatches.js +19 -0
  11. package/_cjs/actions/logic/checkIfActionsIsValid/checkIfTransfersAreExactMatches.js.map +1 -0
  12. package/_cjs/actions/logic/checkIfActionsIsValid/index.js +61 -0
  13. package/_cjs/actions/logic/checkIfActionsIsValid/index.js.map +1 -0
  14. package/_cjs/actions/logic/checkIfActionsIsValid/isMatchActionTransferPattern.js +11 -0
  15. package/_cjs/actions/logic/checkIfActionsIsValid/isMatchActionTransferPattern.js.map +1 -0
  16. package/_cjs/actions/logic/createGeneralActionsByTransfers.js +131 -0
  17. package/_cjs/actions/logic/createGeneralActionsByTransfers.js.map +1 -0
  18. package/_cjs/actions/logic/filterAvailableActionTypes.js +12 -0
  19. package/_cjs/actions/logic/filterAvailableActionTypes.js.map +1 -0
  20. package/_cjs/actions/logic/setActionPrices.js +98 -0
  21. package/_cjs/actions/logic/setActionPrices.js.map +1 -0
  22. package/_cjs/actions/transfer.js +18 -0
  23. package/_cjs/actions/transfer.js.map +1 -0
  24. package/_cjs/actions/utils/createActionTransferPatternCount.js +82 -0
  25. package/_cjs/actions/utils/createActionTransferPatternCount.js.map +1 -0
  26. package/_cjs/actions/utils/isMatchActionTransferPatternCount.js +106 -0
  27. package/_cjs/actions/utils/isMatchActionTransferPatternCount.js.map +1 -0
  28. package/_cjs/actions/utils/mergeSameAssetTransfers.js +65 -97
  29. package/_cjs/actions/utils/mergeSameAssetTransfers.js.map +1 -1
  30. package/_cjs/apps/schemas.js +2 -9
  31. package/_cjs/apps/schemas.js.map +1 -1
  32. package/_cjs/assets/definitions/astar.js +2 -5
  33. package/_cjs/assets/definitions/astar.js.map +1 -1
  34. package/_cjs/assets/definitions/avalanche.js +2 -5
  35. package/_cjs/assets/definitions/avalanche.js.map +1 -1
  36. package/_cjs/assets/definitions/bnb.js +2 -5
  37. package/_cjs/assets/definitions/bnb.js.map +1 -1
  38. package/_cjs/assets/definitions/ethereum.js +2 -5
  39. package/_cjs/assets/definitions/ethereum.js.map +1 -1
  40. package/_cjs/assets/definitions/eur.js +2 -3
  41. package/_cjs/assets/definitions/eur.js.map +1 -1
  42. package/_cjs/assets/definitions/fantom.js +2 -5
  43. package/_cjs/assets/definitions/fantom.js.map +1 -1
  44. package/_cjs/assets/definitions/jpy.js +2 -3
  45. package/_cjs/assets/definitions/jpy.js.map +1 -1
  46. package/_cjs/assets/definitions/kava.js +2 -5
  47. package/_cjs/assets/definitions/kava.js.map +1 -1
  48. package/_cjs/assets/definitions/mantle.js +2 -5
  49. package/_cjs/assets/definitions/mantle.js.map +1 -1
  50. package/_cjs/assets/definitions/maticNetwork.js +2 -5
  51. package/_cjs/assets/definitions/maticNetwork.js.map +1 -1
  52. package/_cjs/assets/definitions/metis.js +2 -5
  53. package/_cjs/assets/definitions/metis.js.map +1 -1
  54. package/_cjs/assets/definitions/moonbeam.js +2 -5
  55. package/_cjs/assets/definitions/moonbeam.js.map +1 -1
  56. package/_cjs/assets/definitions/moonriver.js +2 -5
  57. package/_cjs/assets/definitions/moonriver.js.map +1 -1
  58. package/_cjs/assets/definitions/oasys.js +2 -5
  59. package/_cjs/assets/definitions/oasys.js.map +1 -1
  60. package/_cjs/assets/definitions/ronin.js +2 -5
  61. package/_cjs/assets/definitions/ronin.js.map +1 -1
  62. package/_cjs/assets/definitions/solana.js +2 -5
  63. package/_cjs/assets/definitions/solana.js.map +1 -1
  64. package/_cjs/assets/definitions/usd.js +2 -3
  65. package/_cjs/assets/definitions/usd.js.map +1 -1
  66. package/_cjs/assets/index.js +39 -23
  67. package/_cjs/assets/index.js.map +1 -1
  68. package/_cjs/assets/schemas/cryptoCurrency.js +7 -20
  69. package/_cjs/assets/schemas/cryptoCurrency.js.map +1 -1
  70. package/_cjs/assets/schemas/fiatCurrency.js +2 -7
  71. package/_cjs/assets/schemas/fiatCurrency.js.map +1 -1
  72. package/_cjs/assets/schemas/nft.js +3 -12
  73. package/_cjs/assets/schemas/nft.js.map +1 -1
  74. package/_cjs/index.js +12 -112
  75. package/_cjs/index.js.map +1 -1
  76. package/_cjs/test.js +8 -0
  77. package/_cjs/test.js.map +1 -0
  78. package/_cjs/utils/errors.js +1 -1
  79. package/_cjs/utils/errors.js.map +1 -1
  80. package/_cjs/utils/schema.js +6 -1
  81. package/_cjs/utils/schema.js.map +1 -1
  82. package/_cjs/utils/stringify.js +21 -1
  83. package/_cjs/utils/stringify.js.map +1 -1
  84. package/_esm/actions/action.js +139 -0
  85. package/_esm/actions/action.js.map +1 -0
  86. package/_esm/actions/actionTransferPattern.js +366 -0
  87. package/_esm/actions/actionTransferPattern.js.map +1 -0
  88. package/_esm/actions/index.js +7 -8
  89. package/_esm/actions/index.js.map +1 -1
  90. package/_esm/actions/logic/checkIfActionsIsValid/checkIfActionsHaveAllTransfers.js +32 -0
  91. package/_esm/actions/logic/checkIfActionsIsValid/checkIfActionsHaveAllTransfers.js.map +1 -0
  92. package/_esm/actions/logic/checkIfActionsIsValid/checkIfTransfersAreExactMatches.js +15 -0
  93. package/_esm/actions/logic/checkIfActionsIsValid/checkIfTransfersAreExactMatches.js.map +1 -0
  94. package/_esm/actions/logic/checkIfActionsIsValid/index.js +68 -0
  95. package/_esm/actions/logic/checkIfActionsIsValid/index.js.map +1 -0
  96. package/_esm/actions/logic/checkIfActionsIsValid/isMatchActionTransferPattern.js +7 -0
  97. package/_esm/actions/logic/checkIfActionsIsValid/isMatchActionTransferPattern.js.map +1 -0
  98. package/_esm/actions/logic/createGeneralActionsByTransfers.js +137 -0
  99. package/_esm/actions/logic/createGeneralActionsByTransfers.js.map +1 -0
  100. package/_esm/actions/logic/filterAvailableActionTypes.js +8 -0
  101. package/_esm/actions/logic/filterAvailableActionTypes.js.map +1 -0
  102. package/_esm/actions/logic/setActionPrices.js +97 -0
  103. package/_esm/actions/logic/setActionPrices.js.map +1 -0
  104. package/_esm/actions/transfer.js +15 -0
  105. package/_esm/actions/transfer.js.map +1 -0
  106. package/_esm/actions/utils/createActionTransferPatternCount.js +79 -0
  107. package/_esm/actions/utils/createActionTransferPatternCount.js.map +1 -0
  108. package/_esm/actions/utils/isMatchActionTransferPatternCount.js +115 -0
  109. package/_esm/actions/utils/isMatchActionTransferPatternCount.js.map +1 -0
  110. package/_esm/actions/utils/mergeSameAssetTransfers.js +66 -105
  111. package/_esm/actions/utils/mergeSameAssetTransfers.js.map +1 -1
  112. package/_esm/apps/schemas.js +2 -9
  113. package/_esm/apps/schemas.js.map +1 -1
  114. package/_esm/assets/definitions/astar.js +1 -4
  115. package/_esm/assets/definitions/astar.js.map +1 -1
  116. package/_esm/assets/definitions/avalanche.js +1 -4
  117. package/_esm/assets/definitions/avalanche.js.map +1 -1
  118. package/_esm/assets/definitions/bnb.js +1 -4
  119. package/_esm/assets/definitions/bnb.js.map +1 -1
  120. package/_esm/assets/definitions/ethereum.js +1 -4
  121. package/_esm/assets/definitions/ethereum.js.map +1 -1
  122. package/_esm/assets/definitions/eur.js +1 -2
  123. package/_esm/assets/definitions/eur.js.map +1 -1
  124. package/_esm/assets/definitions/fantom.js +1 -4
  125. package/_esm/assets/definitions/fantom.js.map +1 -1
  126. package/_esm/assets/definitions/jpy.js +1 -2
  127. package/_esm/assets/definitions/jpy.js.map +1 -1
  128. package/_esm/assets/definitions/kava.js +1 -4
  129. package/_esm/assets/definitions/kava.js.map +1 -1
  130. package/_esm/assets/definitions/mantle.js +1 -4
  131. package/_esm/assets/definitions/mantle.js.map +1 -1
  132. package/_esm/assets/definitions/maticNetwork.js +1 -4
  133. package/_esm/assets/definitions/maticNetwork.js.map +1 -1
  134. package/_esm/assets/definitions/metis.js +1 -4
  135. package/_esm/assets/definitions/metis.js.map +1 -1
  136. package/_esm/assets/definitions/moonbeam.js +1 -4
  137. package/_esm/assets/definitions/moonbeam.js.map +1 -1
  138. package/_esm/assets/definitions/moonriver.js +1 -4
  139. package/_esm/assets/definitions/moonriver.js.map +1 -1
  140. package/_esm/assets/definitions/oasys.js +1 -4
  141. package/_esm/assets/definitions/oasys.js.map +1 -1
  142. package/_esm/assets/definitions/ronin.js +1 -4
  143. package/_esm/assets/definitions/ronin.js.map +1 -1
  144. package/_esm/assets/definitions/solana.js +1 -4
  145. package/_esm/assets/definitions/solana.js.map +1 -1
  146. package/_esm/assets/definitions/usd.js +1 -2
  147. package/_esm/assets/definitions/usd.js.map +1 -1
  148. package/_esm/assets/index.js +19 -2
  149. package/_esm/assets/index.js.map +1 -1
  150. package/_esm/assets/schemas/cryptoCurrency.js +7 -20
  151. package/_esm/assets/schemas/cryptoCurrency.js.map +1 -1
  152. package/_esm/assets/schemas/fiatCurrency.js +2 -7
  153. package/_esm/assets/schemas/fiatCurrency.js.map +1 -1
  154. package/_esm/assets/schemas/nft.js +3 -12
  155. package/_esm/assets/schemas/nft.js.map +1 -1
  156. package/_esm/index.js +2 -4
  157. package/_esm/index.js.map +1 -1
  158. package/_esm/test.js +5 -0
  159. package/_esm/test.js.map +1 -0
  160. package/_esm/utils/errors.js +1 -1
  161. package/_esm/utils/errors.js.map +1 -1
  162. package/_esm/utils/schema.js +5 -0
  163. package/_esm/utils/schema.js.map +1 -1
  164. package/_esm/utils/stringify.js +21 -1
  165. package/_esm/utils/stringify.js.map +1 -1
  166. package/_types/actions/action.d.ts +307 -0
  167. package/_types/actions/action.d.ts.map +1 -0
  168. package/_types/actions/actionTransferPattern.d.ts +40 -0
  169. package/_types/actions/actionTransferPattern.d.ts.map +1 -0
  170. package/_types/actions/index.d.ts +10 -9
  171. package/_types/actions/index.d.ts.map +1 -1
  172. package/_types/actions/logic/checkIfActionsIsValid/checkIfActionsHaveAllTransfers.d.ts +10 -0
  173. package/_types/actions/logic/checkIfActionsIsValid/checkIfActionsHaveAllTransfers.d.ts.map +1 -0
  174. package/_types/actions/logic/checkIfActionsIsValid/checkIfTransfersAreExactMatches.d.ts +3 -0
  175. package/_types/actions/logic/checkIfActionsIsValid/checkIfTransfersAreExactMatches.d.ts.map +1 -0
  176. package/_types/actions/logic/checkIfActionsIsValid/index.d.ts +10 -0
  177. package/_types/actions/logic/checkIfActionsIsValid/index.d.ts.map +1 -0
  178. package/_types/actions/logic/checkIfActionsIsValid/isMatchActionTransferPattern.d.ts +9 -0
  179. package/_types/actions/logic/checkIfActionsIsValid/isMatchActionTransferPattern.d.ts.map +1 -0
  180. package/_types/actions/logic/createGeneralActionsByTransfers.d.ts +11 -0
  181. package/_types/actions/logic/createGeneralActionsByTransfers.d.ts.map +1 -0
  182. package/_types/actions/logic/filterAvailableActionTypes.d.ts +4 -0
  183. package/_types/actions/logic/filterAvailableActionTypes.d.ts.map +1 -0
  184. package/_types/actions/logic/setActionPrices.d.ts +10 -0
  185. package/_types/actions/logic/setActionPrices.d.ts.map +1 -0
  186. package/_types/actions/transfer.d.ts +160 -0
  187. package/_types/actions/transfer.d.ts.map +1 -0
  188. package/_types/actions/utils/createActionTransferPatternCount.d.ts +4 -0
  189. package/_types/actions/utils/createActionTransferPatternCount.d.ts.map +1 -0
  190. package/_types/actions/utils/isMatchActionTransferPatternCount.d.ts +4 -0
  191. package/_types/actions/utils/isMatchActionTransferPatternCount.d.ts.map +1 -0
  192. package/_types/actions/utils/mergeSameAssetTransfers.d.ts +1 -1
  193. package/_types/actions/utils/mergeSameAssetTransfers.d.ts.map +1 -1
  194. package/_types/apps/schemas.d.ts +1 -15
  195. package/_types/apps/schemas.d.ts.map +1 -1
  196. package/_types/assets/definitions/astar.d.ts +0 -3
  197. package/_types/assets/definitions/astar.d.ts.map +1 -1
  198. package/_types/assets/definitions/avalanche.d.ts +0 -3
  199. package/_types/assets/definitions/avalanche.d.ts.map +1 -1
  200. package/_types/assets/definitions/bnb.d.ts +0 -3
  201. package/_types/assets/definitions/bnb.d.ts.map +1 -1
  202. package/_types/assets/definitions/ethereum.d.ts +0 -3
  203. package/_types/assets/definitions/ethereum.d.ts.map +1 -1
  204. package/_types/assets/definitions/eur.d.ts +0 -1
  205. package/_types/assets/definitions/eur.d.ts.map +1 -1
  206. package/_types/assets/definitions/fantom.d.ts +0 -3
  207. package/_types/assets/definitions/fantom.d.ts.map +1 -1
  208. package/_types/assets/definitions/jpy.d.ts +0 -1
  209. package/_types/assets/definitions/jpy.d.ts.map +1 -1
  210. package/_types/assets/definitions/kava.d.ts +0 -3
  211. package/_types/assets/definitions/kava.d.ts.map +1 -1
  212. package/_types/assets/definitions/mantle.d.ts +0 -3
  213. package/_types/assets/definitions/mantle.d.ts.map +1 -1
  214. package/_types/assets/definitions/maticNetwork.d.ts +0 -3
  215. package/_types/assets/definitions/maticNetwork.d.ts.map +1 -1
  216. package/_types/assets/definitions/metis.d.ts +0 -3
  217. package/_types/assets/definitions/metis.d.ts.map +1 -1
  218. package/_types/assets/definitions/moonbeam.d.ts +0 -3
  219. package/_types/assets/definitions/moonbeam.d.ts.map +1 -1
  220. package/_types/assets/definitions/moonriver.d.ts +0 -3
  221. package/_types/assets/definitions/moonriver.d.ts.map +1 -1
  222. package/_types/assets/definitions/oasys.d.ts +0 -3
  223. package/_types/assets/definitions/oasys.d.ts.map +1 -1
  224. package/_types/assets/definitions/ronin.d.ts +0 -3
  225. package/_types/assets/definitions/ronin.d.ts.map +1 -1
  226. package/_types/assets/definitions/solana.d.ts +0 -3
  227. package/_types/assets/definitions/solana.d.ts.map +1 -1
  228. package/_types/assets/definitions/usd.d.ts +0 -1
  229. package/_types/assets/definitions/usd.d.ts.map +1 -1
  230. package/_types/assets/index.d.ts +19 -2
  231. package/_types/assets/index.d.ts.map +1 -1
  232. package/_types/assets/schemas/asset.d.ts +15 -109
  233. package/_types/assets/schemas/asset.d.ts.map +1 -1
  234. package/_types/assets/schemas/cryptoCurrency.d.ts +13 -76
  235. package/_types/assets/schemas/cryptoCurrency.d.ts.map +1 -1
  236. package/_types/assets/schemas/fiatCurrency.d.ts +1 -13
  237. package/_types/assets/schemas/fiatCurrency.d.ts.map +1 -1
  238. package/_types/assets/schemas/nft.d.ts +1 -20
  239. package/_types/assets/schemas/nft.d.ts.map +1 -1
  240. package/_types/assets/types/dataSource.d.ts +0 -5
  241. package/_types/assets/types/dataSource.d.ts.map +1 -1
  242. package/_types/assets/types/index.d.ts +1 -1
  243. package/_types/assets/types/index.d.ts.map +1 -1
  244. package/_types/index.d.ts +3 -8
  245. package/_types/index.d.ts.map +1 -1
  246. package/_types/test.d.ts +5 -0
  247. package/_types/test.d.ts.map +1 -0
  248. package/_types/utils/schema.d.ts +1 -0
  249. package/_types/utils/schema.d.ts.map +1 -1
  250. package/_types/utils/stringify.d.ts.map +1 -1
  251. package/actions/.DS_Store +0 -0
  252. package/actions/action.ts +150 -0
  253. package/actions/actionTransferPattern.ts +406 -0
  254. package/actions/index.ts +18 -253
  255. package/actions/logic/checkIfActionsIsValid/checkIfActionsHaveAllTransfers.ts +54 -0
  256. package/actions/logic/checkIfActionsIsValid/checkIfTransfersAreExactMatches.ts +24 -0
  257. package/actions/logic/checkIfActionsIsValid/index.ts +93 -0
  258. package/actions/logic/checkIfActionsIsValid/isMatchActionTransferPattern.ts +17 -0
  259. package/actions/logic/createGeneralActionsByTransfers.ts +162 -0
  260. package/actions/logic/filterAvailableActionTypes.ts +13 -0
  261. package/actions/logic/setActionPrices.ts +148 -0
  262. package/actions/transfer.ts +20 -0
  263. package/actions/utils/createActionTransferPatternCount.ts +97 -0
  264. package/actions/utils/isMatchActionTransferPatternCount.ts +159 -0
  265. package/actions/utils/mergeSameAssetTransfers.ts +87 -129
  266. package/apps/schemas.ts +8 -15
  267. package/assets/.DS_Store +0 -0
  268. package/assets/definitions/astar.ts +1 -4
  269. package/assets/definitions/avalanche.ts +1 -4
  270. package/assets/definitions/bnb.ts +1 -4
  271. package/assets/definitions/ethereum.ts +1 -4
  272. package/assets/definitions/eur.ts +1 -2
  273. package/assets/definitions/fantom.ts +1 -4
  274. package/assets/definitions/jpy.ts +1 -2
  275. package/assets/definitions/kava.ts +1 -4
  276. package/assets/definitions/mantle.ts +1 -4
  277. package/assets/definitions/maticNetwork.ts +1 -4
  278. package/assets/definitions/metis.ts +1 -4
  279. package/assets/definitions/moonbeam.ts +1 -4
  280. package/assets/definitions/moonriver.ts +1 -4
  281. package/assets/definitions/oasys.ts +1 -4
  282. package/assets/definitions/ronin.ts +1 -4
  283. package/assets/definitions/solana.ts +1 -4
  284. package/assets/definitions/usd.ts +1 -2
  285. package/assets/index.ts +19 -21
  286. package/assets/schemas/cryptoCurrency.ts +14 -27
  287. package/assets/schemas/fiatCurrency.ts +7 -12
  288. package/assets/schemas/nft.ts +8 -17
  289. package/assets/types/dataSource.ts +0 -9
  290. package/assets/types/index.ts +0 -1
  291. package/index.ts +16 -213
  292. package/package.json +1 -1
  293. package/test.ts +7 -0
  294. package/utils/errors.ts +1 -1
  295. package/utils/schema.ts +6 -0
  296. package/utils/stringify.ts +23 -1
  297. package/_cjs/accounts/index.js +0 -3
  298. package/_cjs/accounts/index.js.map +0 -1
  299. package/_cjs/accounts/types/account.js +0 -3
  300. package/_cjs/accounts/types/account.js.map +0 -1
  301. package/_cjs/accounts/types/index.js +0 -3
  302. package/_cjs/accounts/types/index.js.map +0 -1
  303. package/_cjs/actions/parsers/action.js +0 -335
  304. package/_cjs/actions/parsers/action.js.map +0 -1
  305. package/_cjs/actions/parsers/borrow/borrow.js +0 -23
  306. package/_cjs/actions/parsers/borrow/borrow.js.map +0 -1
  307. package/_cjs/actions/parsers/borrow/index.js +0 -6
  308. package/_cjs/actions/parsers/borrow/index.js.map +0 -1
  309. package/_cjs/actions/parsers/crossReplace/bridgeFrom.js +0 -24
  310. package/_cjs/actions/parsers/crossReplace/bridgeFrom.js.map +0 -1
  311. package/_cjs/actions/parsers/crossReplace/bridgeTo.js +0 -24
  312. package/_cjs/actions/parsers/crossReplace/bridgeTo.js.map +0 -1
  313. package/_cjs/actions/parsers/crossReplace/crossReplace.js +0 -24
  314. package/_cjs/actions/parsers/crossReplace/crossReplace.js.map +0 -1
  315. package/_cjs/actions/parsers/crossReplace/index.js +0 -10
  316. package/_cjs/actions/parsers/crossReplace/index.js.map +0 -1
  317. package/_cjs/actions/parsers/crossTrade/crossTrade.js +0 -24
  318. package/_cjs/actions/parsers/crossTrade/crossTrade.js.map +0 -1
  319. package/_cjs/actions/parsers/crossTrade/index.js +0 -6
  320. package/_cjs/actions/parsers/crossTrade/index.js.map +0 -1
  321. package/_cjs/actions/parsers/default.js +0 -133
  322. package/_cjs/actions/parsers/default.js.map +0 -1
  323. package/_cjs/actions/parsers/deposit/addLiquidity.js +0 -23
  324. package/_cjs/actions/parsers/deposit/addLiquidity.js.map +0 -1
  325. package/_cjs/actions/parsers/deposit/deposit.js +0 -23
  326. package/_cjs/actions/parsers/deposit/deposit.js.map +0 -1
  327. package/_cjs/actions/parsers/deposit/depositWithBond.js +0 -23
  328. package/_cjs/actions/parsers/deposit/depositWithBond.js.map +0 -1
  329. package/_cjs/actions/parsers/deposit/index.js +0 -12
  330. package/_cjs/actions/parsers/deposit/index.js.map +0 -1
  331. package/_cjs/actions/parsers/deposit/stake.js +0 -23
  332. package/_cjs/actions/parsers/deposit/stake.js.map +0 -1
  333. package/_cjs/actions/parsers/fee/fee.js +0 -40
  334. package/_cjs/actions/parsers/fee/fee.js.map +0 -1
  335. package/_cjs/actions/parsers/fee/index.js +0 -8
  336. package/_cjs/actions/parsers/fee/index.js.map +0 -1
  337. package/_cjs/actions/parsers/fee/transactionFee.js +0 -22
  338. package/_cjs/actions/parsers/fee/transactionFee.js.map +0 -1
  339. package/_cjs/actions/parsers/ignore/approve.js +0 -15
  340. package/_cjs/actions/parsers/ignore/approve.js.map +0 -1
  341. package/_cjs/actions/parsers/ignore/failTx.js +0 -15
  342. package/_cjs/actions/parsers/ignore/failTx.js.map +0 -1
  343. package/_cjs/actions/parsers/ignore/index.js +0 -16
  344. package/_cjs/actions/parsers/ignore/index.js.map +0 -1
  345. package/_cjs/actions/parsers/ignore/receiveFromCex.js +0 -12
  346. package/_cjs/actions/parsers/ignore/receiveFromCex.js.map +0 -1
  347. package/_cjs/actions/parsers/ignore/revoke.js +0 -15
  348. package/_cjs/actions/parsers/ignore/revoke.js.map +0 -1
  349. package/_cjs/actions/parsers/ignore/sendToCex.js +0 -12
  350. package/_cjs/actions/parsers/ignore/sendToCex.js.map +0 -1
  351. package/_cjs/actions/parsers/ignore/spam.js +0 -23
  352. package/_cjs/actions/parsers/ignore/spam.js.map +0 -1
  353. package/_cjs/actions/parsers/income/atomicArbitrage.js +0 -84
  354. package/_cjs/actions/parsers/income/atomicArbitrage.js.map +0 -1
  355. package/_cjs/actions/parsers/income/freeMintNft.js +0 -22
  356. package/_cjs/actions/parsers/income/freeMintNft.js.map +0 -1
  357. package/_cjs/actions/parsers/income/income.js +0 -29
  358. package/_cjs/actions/parsers/income/income.js.map +0 -1
  359. package/_cjs/actions/parsers/income/index.js +0 -10
  360. package/_cjs/actions/parsers/income/index.js.map +0 -1
  361. package/_cjs/actions/parsers/index.js +0 -59
  362. package/_cjs/actions/parsers/index.js.map +0 -1
  363. package/_cjs/actions/parsers/repayment/index.js +0 -8
  364. package/_cjs/actions/parsers/repayment/index.js.map +0 -1
  365. package/_cjs/actions/parsers/repayment/repayment.js +0 -23
  366. package/_cjs/actions/parsers/repayment/repayment.js.map +0 -1
  367. package/_cjs/actions/parsers/repayment/repaymentWithDebt.js +0 -23
  368. package/_cjs/actions/parsers/repayment/repaymentWithDebt.js.map +0 -1
  369. package/_cjs/actions/parsers/replace/index.js +0 -12
  370. package/_cjs/actions/parsers/replace/index.js.map +0 -1
  371. package/_cjs/actions/parsers/replace/replace.js +0 -22
  372. package/_cjs/actions/parsers/replace/replace.js.map +0 -1
  373. package/_cjs/actions/parsers/replace/swapNft.js +0 -22
  374. package/_cjs/actions/parsers/replace/swapNft.js.map +0 -1
  375. package/_cjs/actions/parsers/replace/unwrap.js +0 -22
  376. package/_cjs/actions/parsers/replace/unwrap.js.map +0 -1
  377. package/_cjs/actions/parsers/replace/wrap.js +0 -22
  378. package/_cjs/actions/parsers/replace/wrap.js.map +0 -1
  379. package/_cjs/actions/parsers/trade/buyCrypto.js +0 -52
  380. package/_cjs/actions/parsers/trade/buyCrypto.js.map +0 -1
  381. package/_cjs/actions/parsers/trade/buyNft.js +0 -123
  382. package/_cjs/actions/parsers/trade/buyNft.js.map +0 -1
  383. package/_cjs/actions/parsers/trade/index.js +0 -16
  384. package/_cjs/actions/parsers/trade/index.js.map +0 -1
  385. package/_cjs/actions/parsers/trade/mintNft.js +0 -91
  386. package/_cjs/actions/parsers/trade/mintNft.js.map +0 -1
  387. package/_cjs/actions/parsers/trade/sellCrypto.js +0 -52
  388. package/_cjs/actions/parsers/trade/sellCrypto.js.map +0 -1
  389. package/_cjs/actions/parsers/trade/sellNft.js +0 -123
  390. package/_cjs/actions/parsers/trade/sellNft.js.map +0 -1
  391. package/_cjs/actions/parsers/trade/trade.js +0 -171
  392. package/_cjs/actions/parsers/trade/trade.js.map +0 -1
  393. package/_cjs/actions/parsers/transfer/index.js +0 -6
  394. package/_cjs/actions/parsers/transfer/index.js.map +0 -1
  395. package/_cjs/actions/parsers/transfer/transfer.js +0 -15
  396. package/_cjs/actions/parsers/transfer/transfer.js.map +0 -1
  397. package/_cjs/actions/parsers/types.js +0 -3
  398. package/_cjs/actions/parsers/types.js.map +0 -1
  399. package/_cjs/actions/parsers/valuedown/index.js +0 -6
  400. package/_cjs/actions/parsers/valuedown/index.js.map +0 -1
  401. package/_cjs/actions/parsers/valuedown/valuedown.js +0 -23
  402. package/_cjs/actions/parsers/valuedown/valuedown.js.map +0 -1
  403. package/_cjs/actions/parsers/valueup/index.js +0 -6
  404. package/_cjs/actions/parsers/valueup/index.js.map +0 -1
  405. package/_cjs/actions/parsers/valueup/valueup.js +0 -23
  406. package/_cjs/actions/parsers/valueup/valueup.js.map +0 -1
  407. package/_cjs/actions/parsers/withdraw/index.js +0 -12
  408. package/_cjs/actions/parsers/withdraw/index.js.map +0 -1
  409. package/_cjs/actions/parsers/withdraw/removeLiquidity.js +0 -23
  410. package/_cjs/actions/parsers/withdraw/removeLiquidity.js.map +0 -1
  411. package/_cjs/actions/parsers/withdraw/unstake.js +0 -23
  412. package/_cjs/actions/parsers/withdraw/unstake.js.map +0 -1
  413. package/_cjs/actions/parsers/withdraw/withdraw.js +0 -23
  414. package/_cjs/actions/parsers/withdraw/withdraw.js.map +0 -1
  415. package/_cjs/actions/parsers/withdraw/withdrawWithBond.js +0 -23
  416. package/_cjs/actions/parsers/withdraw/withdrawWithBond.js.map +0 -1
  417. package/_cjs/actions/schemas/action.js +0 -149
  418. package/_cjs/actions/schemas/action.js.map +0 -1
  419. package/_cjs/actions/schemas/borrow/borrow.js +0 -26
  420. package/_cjs/actions/schemas/borrow/borrow.js.map +0 -1
  421. package/_cjs/actions/schemas/borrow/index.js +0 -7
  422. package/_cjs/actions/schemas/borrow/index.js.map +0 -1
  423. package/_cjs/actions/schemas/crossActionBundle.js +0 -16
  424. package/_cjs/actions/schemas/crossActionBundle.js.map +0 -1
  425. package/_cjs/actions/schemas/crossReplace/bridgeFrom.js +0 -26
  426. package/_cjs/actions/schemas/crossReplace/bridgeFrom.js.map +0 -1
  427. package/_cjs/actions/schemas/crossReplace/bridgeTo.js +0 -26
  428. package/_cjs/actions/schemas/crossReplace/bridgeTo.js.map +0 -1
  429. package/_cjs/actions/schemas/crossReplace/crossReplace.js +0 -26
  430. package/_cjs/actions/schemas/crossReplace/crossReplace.js.map +0 -1
  431. package/_cjs/actions/schemas/crossReplace/index.js +0 -13
  432. package/_cjs/actions/schemas/crossReplace/index.js.map +0 -1
  433. package/_cjs/actions/schemas/crossTrade/crossTrade.js +0 -26
  434. package/_cjs/actions/schemas/crossTrade/crossTrade.js.map +0 -1
  435. package/_cjs/actions/schemas/crossTrade/index.js +0 -7
  436. package/_cjs/actions/schemas/crossTrade/index.js.map +0 -1
  437. package/_cjs/actions/schemas/default/accountAction.js +0 -30
  438. package/_cjs/actions/schemas/default/accountAction.js.map +0 -1
  439. package/_cjs/actions/schemas/default/index.js +0 -29
  440. package/_cjs/actions/schemas/default/index.js.map +0 -1
  441. package/_cjs/actions/schemas/default/normalAction.js +0 -26
  442. package/_cjs/actions/schemas/default/normalAction.js.map +0 -1
  443. package/_cjs/actions/schemas/default/transfer.js +0 -137
  444. package/_cjs/actions/schemas/default/transfer.js.map +0 -1
  445. package/_cjs/actions/schemas/default/unions.js +0 -99
  446. package/_cjs/actions/schemas/default/unions.js.map +0 -1
  447. package/_cjs/actions/schemas/deposit/addLiquidity.js +0 -36
  448. package/_cjs/actions/schemas/deposit/addLiquidity.js.map +0 -1
  449. package/_cjs/actions/schemas/deposit/deposit.js +0 -26
  450. package/_cjs/actions/schemas/deposit/deposit.js.map +0 -1
  451. package/_cjs/actions/schemas/deposit/depositWithBond.js +0 -36
  452. package/_cjs/actions/schemas/deposit/depositWithBond.js.map +0 -1
  453. package/_cjs/actions/schemas/deposit/index.js +0 -16
  454. package/_cjs/actions/schemas/deposit/index.js.map +0 -1
  455. package/_cjs/actions/schemas/deposit/stake.js +0 -26
  456. package/_cjs/actions/schemas/deposit/stake.js.map +0 -1
  457. package/_cjs/actions/schemas/fee/fee.js +0 -26
  458. package/_cjs/actions/schemas/fee/fee.js.map +0 -1
  459. package/_cjs/actions/schemas/fee/index.js +0 -10
  460. package/_cjs/actions/schemas/fee/index.js.map +0 -1
  461. package/_cjs/actions/schemas/fee/transactionFee.js +0 -26
  462. package/_cjs/actions/schemas/fee/transactionFee.js.map +0 -1
  463. package/_cjs/actions/schemas/ignore/approve.js +0 -26
  464. package/_cjs/actions/schemas/ignore/approve.js.map +0 -1
  465. package/_cjs/actions/schemas/ignore/failTx.js +0 -26
  466. package/_cjs/actions/schemas/ignore/failTx.js.map +0 -1
  467. package/_cjs/actions/schemas/ignore/ignore.js +0 -15
  468. package/_cjs/actions/schemas/ignore/ignore.js.map +0 -1
  469. package/_cjs/actions/schemas/ignore/index.js +0 -26
  470. package/_cjs/actions/schemas/ignore/index.js.map +0 -1
  471. package/_cjs/actions/schemas/ignore/move.js +0 -15
  472. package/_cjs/actions/schemas/ignore/move.js.map +0 -1
  473. package/_cjs/actions/schemas/ignore/receiveFromCex.js +0 -26
  474. package/_cjs/actions/schemas/ignore/receiveFromCex.js.map +0 -1
  475. package/_cjs/actions/schemas/ignore/revoke.js +0 -26
  476. package/_cjs/actions/schemas/ignore/revoke.js.map +0 -1
  477. package/_cjs/actions/schemas/ignore/sendToCex.js +0 -26
  478. package/_cjs/actions/schemas/ignore/sendToCex.js.map +0 -1
  479. package/_cjs/actions/schemas/ignore/spam.js +0 -36
  480. package/_cjs/actions/schemas/ignore/spam.js.map +0 -1
  481. package/_cjs/actions/schemas/income/atomicArbitrage.js +0 -32
  482. package/_cjs/actions/schemas/income/atomicArbitrage.js.map +0 -1
  483. package/_cjs/actions/schemas/income/freeMintNft.js +0 -26
  484. package/_cjs/actions/schemas/income/freeMintNft.js.map +0 -1
  485. package/_cjs/actions/schemas/income/income.js +0 -26
  486. package/_cjs/actions/schemas/income/income.js.map +0 -1
  487. package/_cjs/actions/schemas/income/index.js +0 -17
  488. package/_cjs/actions/schemas/income/index.js.map +0 -1
  489. package/_cjs/actions/schemas/income/nftRoyalty.js +0 -16
  490. package/_cjs/actions/schemas/income/nftRoyalty.js.map +0 -1
  491. package/_cjs/actions/schemas/income/swapIncome.js +0 -16
  492. package/_cjs/actions/schemas/income/swapIncome.js.map +0 -1
  493. package/_cjs/actions/schemas/index.js +0 -126
  494. package/_cjs/actions/schemas/index.js.map +0 -1
  495. package/_cjs/actions/schemas/reduce/index.js +0 -6
  496. package/_cjs/actions/schemas/reduce/index.js.map +0 -1
  497. package/_cjs/actions/schemas/reduce/reduce.js +0 -16
  498. package/_cjs/actions/schemas/reduce/reduce.js.map +0 -1
  499. package/_cjs/actions/schemas/repayment/index.js +0 -10
  500. package/_cjs/actions/schemas/repayment/index.js.map +0 -1
  501. package/_cjs/actions/schemas/repayment/repayment.js +0 -26
  502. package/_cjs/actions/schemas/repayment/repayment.js.map +0 -1
  503. package/_cjs/actions/schemas/repayment/repaymentWithDebt.js +0 -36
  504. package/_cjs/actions/schemas/repayment/repaymentWithDebt.js.map +0 -1
  505. package/_cjs/actions/schemas/replace/index.js +0 -16
  506. package/_cjs/actions/schemas/replace/index.js.map +0 -1
  507. package/_cjs/actions/schemas/replace/replace.js +0 -36
  508. package/_cjs/actions/schemas/replace/replace.js.map +0 -1
  509. package/_cjs/actions/schemas/replace/swapNft.js +0 -26
  510. package/_cjs/actions/schemas/replace/swapNft.js.map +0 -1
  511. package/_cjs/actions/schemas/replace/unwrap.js +0 -32
  512. package/_cjs/actions/schemas/replace/unwrap.js.map +0 -1
  513. package/_cjs/actions/schemas/replace/wrap.js +0 -32
  514. package/_cjs/actions/schemas/replace/wrap.js.map +0 -1
  515. package/_cjs/actions/schemas/trade/buyCrypto.js +0 -26
  516. package/_cjs/actions/schemas/trade/buyCrypto.js.map +0 -1
  517. package/_cjs/actions/schemas/trade/buyNft.js +0 -34
  518. package/_cjs/actions/schemas/trade/buyNft.js.map +0 -1
  519. package/_cjs/actions/schemas/trade/index.js +0 -22
  520. package/_cjs/actions/schemas/trade/index.js.map +0 -1
  521. package/_cjs/actions/schemas/trade/mintNft.js +0 -34
  522. package/_cjs/actions/schemas/trade/mintNft.js.map +0 -1
  523. package/_cjs/actions/schemas/trade/sellCrypto.js +0 -26
  524. package/_cjs/actions/schemas/trade/sellCrypto.js.map +0 -1
  525. package/_cjs/actions/schemas/trade/sellNft.js +0 -34
  526. package/_cjs/actions/schemas/trade/sellNft.js.map +0 -1
  527. package/_cjs/actions/schemas/trade/trade.js +0 -26
  528. package/_cjs/actions/schemas/trade/trade.js.map +0 -1
  529. package/_cjs/actions/schemas/transfer/index.js +0 -9
  530. package/_cjs/actions/schemas/transfer/index.js.map +0 -1
  531. package/_cjs/actions/schemas/transfer/swapTransfer.js +0 -16
  532. package/_cjs/actions/schemas/transfer/swapTransfer.js.map +0 -1
  533. package/_cjs/actions/schemas/transfer/transfer.js +0 -25
  534. package/_cjs/actions/schemas/transfer/transfer.js.map +0 -1
  535. package/_cjs/actions/schemas/valuedown/index.js +0 -7
  536. package/_cjs/actions/schemas/valuedown/index.js.map +0 -1
  537. package/_cjs/actions/schemas/valuedown/valuedown.js +0 -29
  538. package/_cjs/actions/schemas/valuedown/valuedown.js.map +0 -1
  539. package/_cjs/actions/schemas/valueup/index.js +0 -7
  540. package/_cjs/actions/schemas/valueup/index.js.map +0 -1
  541. package/_cjs/actions/schemas/valueup/valueup.js +0 -29
  542. package/_cjs/actions/schemas/valueup/valueup.js.map +0 -1
  543. package/_cjs/actions/schemas/withdraw/index.js +0 -16
  544. package/_cjs/actions/schemas/withdraw/index.js.map +0 -1
  545. package/_cjs/actions/schemas/withdraw/removeLiquidity.js +0 -36
  546. package/_cjs/actions/schemas/withdraw/removeLiquidity.js.map +0 -1
  547. package/_cjs/actions/schemas/withdraw/unstake.js +0 -26
  548. package/_cjs/actions/schemas/withdraw/unstake.js.map +0 -1
  549. package/_cjs/actions/schemas/withdraw/withdraw.js +0 -26
  550. package/_cjs/actions/schemas/withdraw/withdraw.js.map +0 -1
  551. package/_cjs/actions/schemas/withdraw/withdrawWithBond.js +0 -36
  552. package/_cjs/actions/schemas/withdraw/withdrawWithBond.js.map +0 -1
  553. package/_cjs/actions/types/action.js +0 -3
  554. package/_cjs/actions/types/action.js.map +0 -1
  555. package/_cjs/actions/types/addLiquidity.js +0 -3
  556. package/_cjs/actions/types/addLiquidity.js.map +0 -1
  557. package/_cjs/actions/types/approve.js +0 -3
  558. package/_cjs/actions/types/approve.js.map +0 -1
  559. package/_cjs/actions/types/atomicArbitrage.js +0 -3
  560. package/_cjs/actions/types/atomicArbitrage.js.map +0 -1
  561. package/_cjs/actions/types/borrow.js +0 -3
  562. package/_cjs/actions/types/borrow.js.map +0 -1
  563. package/_cjs/actions/types/bridgeFrom.js +0 -3
  564. package/_cjs/actions/types/bridgeFrom.js.map +0 -1
  565. package/_cjs/actions/types/bridgeTo.js +0 -3
  566. package/_cjs/actions/types/bridgeTo.js.map +0 -1
  567. package/_cjs/actions/types/buyCrypto.js +0 -3
  568. package/_cjs/actions/types/buyCrypto.js.map +0 -1
  569. package/_cjs/actions/types/buyNft.js +0 -3
  570. package/_cjs/actions/types/buyNft.js.map +0 -1
  571. package/_cjs/actions/types/crossActionBundle.js +0 -3
  572. package/_cjs/actions/types/crossActionBundle.js.map +0 -1
  573. package/_cjs/actions/types/crossReplace.js +0 -3
  574. package/_cjs/actions/types/crossReplace.js.map +0 -1
  575. package/_cjs/actions/types/crossTrade.js +0 -3
  576. package/_cjs/actions/types/crossTrade.js.map +0 -1
  577. package/_cjs/actions/types/default.js +0 -3
  578. package/_cjs/actions/types/default.js.map +0 -1
  579. package/_cjs/actions/types/deposit.js +0 -3
  580. package/_cjs/actions/types/deposit.js.map +0 -1
  581. package/_cjs/actions/types/depositWithBond.js +0 -3
  582. package/_cjs/actions/types/depositWithBond.js.map +0 -1
  583. package/_cjs/actions/types/failTx.js +0 -3
  584. package/_cjs/actions/types/failTx.js.map +0 -1
  585. package/_cjs/actions/types/fee.js +0 -3
  586. package/_cjs/actions/types/fee.js.map +0 -1
  587. package/_cjs/actions/types/freeMintNft.js +0 -3
  588. package/_cjs/actions/types/freeMintNft.js.map +0 -1
  589. package/_cjs/actions/types/ignore.js +0 -3
  590. package/_cjs/actions/types/ignore.js.map +0 -1
  591. package/_cjs/actions/types/income.js +0 -3
  592. package/_cjs/actions/types/income.js.map +0 -1
  593. package/_cjs/actions/types/index.js +0 -3
  594. package/_cjs/actions/types/index.js.map +0 -1
  595. package/_cjs/actions/types/mintNft.js +0 -3
  596. package/_cjs/actions/types/mintNft.js.map +0 -1
  597. package/_cjs/actions/types/move.js +0 -3
  598. package/_cjs/actions/types/move.js.map +0 -1
  599. package/_cjs/actions/types/nftRoyalty.js +0 -3
  600. package/_cjs/actions/types/nftRoyalty.js.map +0 -1
  601. package/_cjs/actions/types/receiveFromCex.js +0 -3
  602. package/_cjs/actions/types/receiveFromCex.js.map +0 -1
  603. package/_cjs/actions/types/reduce.js +0 -3
  604. package/_cjs/actions/types/reduce.js.map +0 -1
  605. package/_cjs/actions/types/removeLiquidity.js +0 -3
  606. package/_cjs/actions/types/removeLiquidity.js.map +0 -1
  607. package/_cjs/actions/types/repayment.js +0 -3
  608. package/_cjs/actions/types/repayment.js.map +0 -1
  609. package/_cjs/actions/types/repaymentWithDebt.js +0 -3
  610. package/_cjs/actions/types/repaymentWithDebt.js.map +0 -1
  611. package/_cjs/actions/types/replace.js +0 -3
  612. package/_cjs/actions/types/replace.js.map +0 -1
  613. package/_cjs/actions/types/revoke.js +0 -3
  614. package/_cjs/actions/types/revoke.js.map +0 -1
  615. package/_cjs/actions/types/sellCrypto.js +0 -3
  616. package/_cjs/actions/types/sellCrypto.js.map +0 -1
  617. package/_cjs/actions/types/sellNft.js +0 -3
  618. package/_cjs/actions/types/sellNft.js.map +0 -1
  619. package/_cjs/actions/types/sendToCex.js +0 -3
  620. package/_cjs/actions/types/sendToCex.js.map +0 -1
  621. package/_cjs/actions/types/spam.js +0 -3
  622. package/_cjs/actions/types/spam.js.map +0 -1
  623. package/_cjs/actions/types/stake.js +0 -3
  624. package/_cjs/actions/types/stake.js.map +0 -1
  625. package/_cjs/actions/types/swapIncome.js +0 -3
  626. package/_cjs/actions/types/swapIncome.js.map +0 -1
  627. package/_cjs/actions/types/swapNft.js +0 -3
  628. package/_cjs/actions/types/swapNft.js.map +0 -1
  629. package/_cjs/actions/types/swapTransfer.js +0 -3
  630. package/_cjs/actions/types/swapTransfer.js.map +0 -1
  631. package/_cjs/actions/types/trade.js +0 -3
  632. package/_cjs/actions/types/trade.js.map +0 -1
  633. package/_cjs/actions/types/transactionFee.js +0 -3
  634. package/_cjs/actions/types/transactionFee.js.map +0 -1
  635. package/_cjs/actions/types/transfer.js +0 -3
  636. package/_cjs/actions/types/transfer.js.map +0 -1
  637. package/_cjs/actions/types/unstake.js +0 -3
  638. package/_cjs/actions/types/unstake.js.map +0 -1
  639. package/_cjs/actions/types/unwrap.js +0 -3
  640. package/_cjs/actions/types/unwrap.js.map +0 -1
  641. package/_cjs/actions/types/valuedown.js +0 -3
  642. package/_cjs/actions/types/valuedown.js.map +0 -1
  643. package/_cjs/actions/types/valueup.js +0 -3
  644. package/_cjs/actions/types/valueup.js.map +0 -1
  645. package/_cjs/actions/types/withdraw.js +0 -3
  646. package/_cjs/actions/types/withdraw.js.map +0 -1
  647. package/_cjs/actions/types/withdrawWithBond.js +0 -3
  648. package/_cjs/actions/types/withdrawWithBond.js.map +0 -1
  649. package/_cjs/actions/types/wrap.js +0 -3
  650. package/_cjs/actions/types/wrap.js.map +0 -1
  651. package/_cjs/actions/utils/checkIfAccountActionsIsValid.js +0 -60
  652. package/_cjs/actions/utils/checkIfAccountActionsIsValid.js.map +0 -1
  653. package/_cjs/actions/utils/createEvidenceNoneAccountActions.js +0 -210
  654. package/_cjs/actions/utils/createEvidenceNoneAccountActions.js.map +0 -1
  655. package/_cjs/actions/utils/parseBaseAccountActionToAccountAction.js +0 -680
  656. package/_cjs/actions/utils/parseBaseAccountActionToAccountAction.js.map +0 -1
  657. package/_cjs/actions/utils/parseBaseNormalActionToNormalAction.js +0 -609
  658. package/_cjs/actions/utils/parseBaseNormalActionToNormalAction.js.map +0 -1
  659. package/_cjs/actions/utils/transfer.js +0 -22
  660. package/_cjs/actions/utils/transfer.js.map +0 -1
  661. package/_cjs/assets/creates/index.js +0 -8
  662. package/_cjs/assets/creates/index.js.map +0 -1
  663. package/_cjs/assets/definitions/coingeckoCryptoCurrencyDataSource.js +0 -93
  664. package/_cjs/assets/definitions/coingeckoCryptoCurrencyDataSource.js.map +0 -1
  665. package/_cjs/assets/definitions/index.js +0 -40
  666. package/_cjs/assets/definitions/index.js.map +0 -1
  667. package/_cjs/assets/externals/coingecko/constants.js +0 -5
  668. package/_cjs/assets/externals/coingecko/constants.js.map +0 -1
  669. package/_cjs/assets/externals/coingecko/getAutoRetry.js +0 -31
  670. package/_cjs/assets/externals/coingecko/getAutoRetry.js.map +0 -1
  671. package/_cjs/assets/externals/coingecko/getCoinMarketChartRange.js +0 -22
  672. package/_cjs/assets/externals/coingecko/getCoinMarketChartRange.js.map +0 -1
  673. package/_cjs/assets/externals/coingecko/getCoinsMarkets.js +0 -36
  674. package/_cjs/assets/externals/coingecko/getCoinsMarkets.js.map +0 -1
  675. package/_cjs/assets/externals/coingecko/index.js +0 -8
  676. package/_cjs/assets/externals/coingecko/index.js.map +0 -1
  677. package/_cjs/assets/externals/index.js +0 -7
  678. package/_cjs/assets/externals/index.js.map +0 -1
  679. package/_cjs/portfolios/createPortfolio.js +0 -8
  680. package/_cjs/portfolios/createPortfolio.js.map +0 -1
  681. package/_cjs/portfolios/index.js +0 -6
  682. package/_cjs/portfolios/index.js.map +0 -1
  683. package/_cjs/portfolios/type.js +0 -3
  684. package/_cjs/portfolios/type.js.map +0 -1
  685. package/_cjs/setAccountActionPrices.js +0 -81
  686. package/_cjs/setAccountActionPrices.js.map +0 -1
  687. package/_cjs/tests/constants.js +0 -5
  688. package/_cjs/tests/constants.js.map +0 -1
  689. package/_cjs/tests/index.js +0 -8
  690. package/_cjs/tests/index.js.map +0 -1
  691. package/_cjs/tests/utils.js +0 -26
  692. package/_cjs/tests/utils.js.map +0 -1
  693. package/_esm/accounts/index.js +0 -2
  694. package/_esm/accounts/index.js.map +0 -1
  695. package/_esm/accounts/types/account.js +0 -2
  696. package/_esm/accounts/types/account.js.map +0 -1
  697. package/_esm/accounts/types/index.js +0 -2
  698. package/_esm/accounts/types/index.js.map +0 -1
  699. package/_esm/actions/parsers/action.js +0 -331
  700. package/_esm/actions/parsers/action.js.map +0 -1
  701. package/_esm/actions/parsers/borrow/borrow.js +0 -19
  702. package/_esm/actions/parsers/borrow/borrow.js.map +0 -1
  703. package/_esm/actions/parsers/borrow/index.js +0 -2
  704. package/_esm/actions/parsers/borrow/index.js.map +0 -1
  705. package/_esm/actions/parsers/crossReplace/bridgeFrom.js +0 -20
  706. package/_esm/actions/parsers/crossReplace/bridgeFrom.js.map +0 -1
  707. package/_esm/actions/parsers/crossReplace/bridgeTo.js +0 -20
  708. package/_esm/actions/parsers/crossReplace/bridgeTo.js.map +0 -1
  709. package/_esm/actions/parsers/crossReplace/crossReplace.js +0 -20
  710. package/_esm/actions/parsers/crossReplace/crossReplace.js.map +0 -1
  711. package/_esm/actions/parsers/crossReplace/index.js +0 -4
  712. package/_esm/actions/parsers/crossReplace/index.js.map +0 -1
  713. package/_esm/actions/parsers/crossTrade/crossTrade.js +0 -20
  714. package/_esm/actions/parsers/crossTrade/crossTrade.js.map +0 -1
  715. package/_esm/actions/parsers/crossTrade/index.js +0 -2
  716. package/_esm/actions/parsers/crossTrade/index.js.map +0 -1
  717. package/_esm/actions/parsers/default.js +0 -124
  718. package/_esm/actions/parsers/default.js.map +0 -1
  719. package/_esm/actions/parsers/deposit/addLiquidity.js +0 -19
  720. package/_esm/actions/parsers/deposit/addLiquidity.js.map +0 -1
  721. package/_esm/actions/parsers/deposit/deposit.js +0 -19
  722. package/_esm/actions/parsers/deposit/deposit.js.map +0 -1
  723. package/_esm/actions/parsers/deposit/depositWithBond.js +0 -19
  724. package/_esm/actions/parsers/deposit/depositWithBond.js.map +0 -1
  725. package/_esm/actions/parsers/deposit/index.js +0 -5
  726. package/_esm/actions/parsers/deposit/index.js.map +0 -1
  727. package/_esm/actions/parsers/deposit/stake.js +0 -19
  728. package/_esm/actions/parsers/deposit/stake.js.map +0 -1
  729. package/_esm/actions/parsers/fee/fee.js +0 -37
  730. package/_esm/actions/parsers/fee/fee.js.map +0 -1
  731. package/_esm/actions/parsers/fee/index.js +0 -3
  732. package/_esm/actions/parsers/fee/index.js.map +0 -1
  733. package/_esm/actions/parsers/fee/transactionFee.js +0 -18
  734. package/_esm/actions/parsers/fee/transactionFee.js.map +0 -1
  735. package/_esm/actions/parsers/ignore/approve.js +0 -11
  736. package/_esm/actions/parsers/ignore/approve.js.map +0 -1
  737. package/_esm/actions/parsers/ignore/failTx.js +0 -11
  738. package/_esm/actions/parsers/ignore/failTx.js.map +0 -1
  739. package/_esm/actions/parsers/ignore/index.js +0 -7
  740. package/_esm/actions/parsers/ignore/index.js.map +0 -1
  741. package/_esm/actions/parsers/ignore/receiveFromCex.js +0 -8
  742. package/_esm/actions/parsers/ignore/receiveFromCex.js.map +0 -1
  743. package/_esm/actions/parsers/ignore/revoke.js +0 -11
  744. package/_esm/actions/parsers/ignore/revoke.js.map +0 -1
  745. package/_esm/actions/parsers/ignore/sendToCex.js +0 -8
  746. package/_esm/actions/parsers/ignore/sendToCex.js.map +0 -1
  747. package/_esm/actions/parsers/ignore/spam.js +0 -19
  748. package/_esm/actions/parsers/ignore/spam.js.map +0 -1
  749. package/_esm/actions/parsers/income/atomicArbitrage.js +0 -83
  750. package/_esm/actions/parsers/income/atomicArbitrage.js.map +0 -1
  751. package/_esm/actions/parsers/income/freeMintNft.js +0 -18
  752. package/_esm/actions/parsers/income/freeMintNft.js.map +0 -1
  753. package/_esm/actions/parsers/income/income.js +0 -25
  754. package/_esm/actions/parsers/income/income.js.map +0 -1
  755. package/_esm/actions/parsers/income/index.js +0 -4
  756. package/_esm/actions/parsers/income/index.js.map +0 -1
  757. package/_esm/actions/parsers/index.js +0 -16
  758. package/_esm/actions/parsers/index.js.map +0 -1
  759. package/_esm/actions/parsers/repayment/index.js +0 -3
  760. package/_esm/actions/parsers/repayment/index.js.map +0 -1
  761. package/_esm/actions/parsers/repayment/repayment.js +0 -19
  762. package/_esm/actions/parsers/repayment/repayment.js.map +0 -1
  763. package/_esm/actions/parsers/repayment/repaymentWithDebt.js +0 -19
  764. package/_esm/actions/parsers/repayment/repaymentWithDebt.js.map +0 -1
  765. package/_esm/actions/parsers/replace/index.js +0 -5
  766. package/_esm/actions/parsers/replace/index.js.map +0 -1
  767. package/_esm/actions/parsers/replace/replace.js +0 -18
  768. package/_esm/actions/parsers/replace/replace.js.map +0 -1
  769. package/_esm/actions/parsers/replace/swapNft.js +0 -18
  770. package/_esm/actions/parsers/replace/swapNft.js.map +0 -1
  771. package/_esm/actions/parsers/replace/unwrap.js +0 -18
  772. package/_esm/actions/parsers/replace/unwrap.js.map +0 -1
  773. package/_esm/actions/parsers/replace/wrap.js +0 -18
  774. package/_esm/actions/parsers/replace/wrap.js.map +0 -1
  775. package/_esm/actions/parsers/trade/buyCrypto.js +0 -49
  776. package/_esm/actions/parsers/trade/buyCrypto.js.map +0 -1
  777. package/_esm/actions/parsers/trade/buyNft.js +0 -124
  778. package/_esm/actions/parsers/trade/buyNft.js.map +0 -1
  779. package/_esm/actions/parsers/trade/index.js +0 -7
  780. package/_esm/actions/parsers/trade/index.js.map +0 -1
  781. package/_esm/actions/parsers/trade/mintNft.js +0 -91
  782. package/_esm/actions/parsers/trade/mintNft.js.map +0 -1
  783. package/_esm/actions/parsers/trade/sellCrypto.js +0 -49
  784. package/_esm/actions/parsers/trade/sellCrypto.js.map +0 -1
  785. package/_esm/actions/parsers/trade/sellNft.js +0 -125
  786. package/_esm/actions/parsers/trade/sellNft.js.map +0 -1
  787. package/_esm/actions/parsers/trade/trade.js +0 -176
  788. package/_esm/actions/parsers/trade/trade.js.map +0 -1
  789. package/_esm/actions/parsers/transfer/index.js +0 -2
  790. package/_esm/actions/parsers/transfer/index.js.map +0 -1
  791. package/_esm/actions/parsers/transfer/transfer.js +0 -11
  792. package/_esm/actions/parsers/transfer/transfer.js.map +0 -1
  793. package/_esm/actions/parsers/types.js +0 -2
  794. package/_esm/actions/parsers/types.js.map +0 -1
  795. package/_esm/actions/parsers/valuedown/index.js +0 -2
  796. package/_esm/actions/parsers/valuedown/index.js.map +0 -1
  797. package/_esm/actions/parsers/valuedown/valuedown.js +0 -19
  798. package/_esm/actions/parsers/valuedown/valuedown.js.map +0 -1
  799. package/_esm/actions/parsers/valueup/index.js +0 -2
  800. package/_esm/actions/parsers/valueup/index.js.map +0 -1
  801. package/_esm/actions/parsers/valueup/valueup.js +0 -19
  802. package/_esm/actions/parsers/valueup/valueup.js.map +0 -1
  803. package/_esm/actions/parsers/withdraw/index.js +0 -5
  804. package/_esm/actions/parsers/withdraw/index.js.map +0 -1
  805. package/_esm/actions/parsers/withdraw/removeLiquidity.js +0 -19
  806. package/_esm/actions/parsers/withdraw/removeLiquidity.js.map +0 -1
  807. package/_esm/actions/parsers/withdraw/unstake.js +0 -19
  808. package/_esm/actions/parsers/withdraw/unstake.js.map +0 -1
  809. package/_esm/actions/parsers/withdraw/withdraw.js +0 -19
  810. package/_esm/actions/parsers/withdraw/withdraw.js.map +0 -1
  811. package/_esm/actions/parsers/withdraw/withdrawWithBond.js +0 -19
  812. package/_esm/actions/parsers/withdraw/withdrawWithBond.js.map +0 -1
  813. package/_esm/actions/schemas/action.js +0 -175
  814. package/_esm/actions/schemas/action.js.map +0 -1
  815. package/_esm/actions/schemas/borrow/borrow.js +0 -23
  816. package/_esm/actions/schemas/borrow/borrow.js.map +0 -1
  817. package/_esm/actions/schemas/borrow/index.js +0 -2
  818. package/_esm/actions/schemas/borrow/index.js.map +0 -1
  819. package/_esm/actions/schemas/crossActionBundle.js +0 -13
  820. package/_esm/actions/schemas/crossActionBundle.js.map +0 -1
  821. package/_esm/actions/schemas/crossReplace/bridgeFrom.js +0 -23
  822. package/_esm/actions/schemas/crossReplace/bridgeFrom.js.map +0 -1
  823. package/_esm/actions/schemas/crossReplace/bridgeTo.js +0 -23
  824. package/_esm/actions/schemas/crossReplace/bridgeTo.js.map +0 -1
  825. package/_esm/actions/schemas/crossReplace/crossReplace.js +0 -23
  826. package/_esm/actions/schemas/crossReplace/crossReplace.js.map +0 -1
  827. package/_esm/actions/schemas/crossReplace/index.js +0 -4
  828. package/_esm/actions/schemas/crossReplace/index.js.map +0 -1
  829. package/_esm/actions/schemas/crossTrade/crossTrade.js +0 -23
  830. package/_esm/actions/schemas/crossTrade/crossTrade.js.map +0 -1
  831. package/_esm/actions/schemas/crossTrade/index.js +0 -2
  832. package/_esm/actions/schemas/crossTrade/index.js.map +0 -1
  833. package/_esm/actions/schemas/default/accountAction.js +0 -27
  834. package/_esm/actions/schemas/default/accountAction.js.map +0 -1
  835. package/_esm/actions/schemas/default/index.js +0 -5
  836. package/_esm/actions/schemas/default/index.js.map +0 -1
  837. package/_esm/actions/schemas/default/normalAction.js +0 -23
  838. package/_esm/actions/schemas/default/normalAction.js.map +0 -1
  839. package/_esm/actions/schemas/default/transfer.js +0 -134
  840. package/_esm/actions/schemas/default/transfer.js.map +0 -1
  841. package/_esm/actions/schemas/default/unions.js +0 -96
  842. package/_esm/actions/schemas/default/unions.js.map +0 -1
  843. package/_esm/actions/schemas/deposit/addLiquidity.js +0 -33
  844. package/_esm/actions/schemas/deposit/addLiquidity.js.map +0 -1
  845. package/_esm/actions/schemas/deposit/deposit.js +0 -23
  846. package/_esm/actions/schemas/deposit/deposit.js.map +0 -1
  847. package/_esm/actions/schemas/deposit/depositWithBond.js +0 -33
  848. package/_esm/actions/schemas/deposit/depositWithBond.js.map +0 -1
  849. package/_esm/actions/schemas/deposit/index.js +0 -5
  850. package/_esm/actions/schemas/deposit/index.js.map +0 -1
  851. package/_esm/actions/schemas/deposit/stake.js +0 -23
  852. package/_esm/actions/schemas/deposit/stake.js.map +0 -1
  853. package/_esm/actions/schemas/fee/fee.js +0 -23
  854. package/_esm/actions/schemas/fee/fee.js.map +0 -1
  855. package/_esm/actions/schemas/fee/index.js +0 -3
  856. package/_esm/actions/schemas/fee/index.js.map +0 -1
  857. package/_esm/actions/schemas/fee/transactionFee.js +0 -23
  858. package/_esm/actions/schemas/fee/transactionFee.js.map +0 -1
  859. package/_esm/actions/schemas/ignore/approve.js +0 -23
  860. package/_esm/actions/schemas/ignore/approve.js.map +0 -1
  861. package/_esm/actions/schemas/ignore/failTx.js +0 -23
  862. package/_esm/actions/schemas/ignore/failTx.js.map +0 -1
  863. package/_esm/actions/schemas/ignore/ignore.js +0 -12
  864. package/_esm/actions/schemas/ignore/ignore.js.map +0 -1
  865. package/_esm/actions/schemas/ignore/index.js +0 -9
  866. package/_esm/actions/schemas/ignore/index.js.map +0 -1
  867. package/_esm/actions/schemas/ignore/move.js +0 -12
  868. package/_esm/actions/schemas/ignore/move.js.map +0 -1
  869. package/_esm/actions/schemas/ignore/receiveFromCex.js +0 -23
  870. package/_esm/actions/schemas/ignore/receiveFromCex.js.map +0 -1
  871. package/_esm/actions/schemas/ignore/revoke.js +0 -23
  872. package/_esm/actions/schemas/ignore/revoke.js.map +0 -1
  873. package/_esm/actions/schemas/ignore/sendToCex.js +0 -23
  874. package/_esm/actions/schemas/ignore/sendToCex.js.map +0 -1
  875. package/_esm/actions/schemas/ignore/spam.js +0 -33
  876. package/_esm/actions/schemas/ignore/spam.js.map +0 -1
  877. package/_esm/actions/schemas/income/atomicArbitrage.js +0 -29
  878. package/_esm/actions/schemas/income/atomicArbitrage.js.map +0 -1
  879. package/_esm/actions/schemas/income/freeMintNft.js +0 -23
  880. package/_esm/actions/schemas/income/freeMintNft.js.map +0 -1
  881. package/_esm/actions/schemas/income/income.js +0 -23
  882. package/_esm/actions/schemas/income/income.js.map +0 -1
  883. package/_esm/actions/schemas/income/index.js +0 -6
  884. package/_esm/actions/schemas/income/index.js.map +0 -1
  885. package/_esm/actions/schemas/income/nftRoyalty.js +0 -13
  886. package/_esm/actions/schemas/income/nftRoyalty.js.map +0 -1
  887. package/_esm/actions/schemas/income/swapIncome.js +0 -13
  888. package/_esm/actions/schemas/income/swapIncome.js.map +0 -1
  889. package/_esm/actions/schemas/index.js +0 -19
  890. package/_esm/actions/schemas/index.js.map +0 -1
  891. package/_esm/actions/schemas/reduce/index.js +0 -2
  892. package/_esm/actions/schemas/reduce/index.js.map +0 -1
  893. package/_esm/actions/schemas/reduce/reduce.js +0 -13
  894. package/_esm/actions/schemas/reduce/reduce.js.map +0 -1
  895. package/_esm/actions/schemas/repayment/index.js +0 -3
  896. package/_esm/actions/schemas/repayment/index.js.map +0 -1
  897. package/_esm/actions/schemas/repayment/repayment.js +0 -23
  898. package/_esm/actions/schemas/repayment/repayment.js.map +0 -1
  899. package/_esm/actions/schemas/repayment/repaymentWithDebt.js +0 -33
  900. package/_esm/actions/schemas/repayment/repaymentWithDebt.js.map +0 -1
  901. package/_esm/actions/schemas/replace/index.js +0 -5
  902. package/_esm/actions/schemas/replace/index.js.map +0 -1
  903. package/_esm/actions/schemas/replace/replace.js +0 -33
  904. package/_esm/actions/schemas/replace/replace.js.map +0 -1
  905. package/_esm/actions/schemas/replace/swapNft.js +0 -23
  906. package/_esm/actions/schemas/replace/swapNft.js.map +0 -1
  907. package/_esm/actions/schemas/replace/unwrap.js +0 -29
  908. package/_esm/actions/schemas/replace/unwrap.js.map +0 -1
  909. package/_esm/actions/schemas/replace/wrap.js +0 -29
  910. package/_esm/actions/schemas/replace/wrap.js.map +0 -1
  911. package/_esm/actions/schemas/trade/buyCrypto.js +0 -23
  912. package/_esm/actions/schemas/trade/buyCrypto.js.map +0 -1
  913. package/_esm/actions/schemas/trade/buyNft.js +0 -31
  914. package/_esm/actions/schemas/trade/buyNft.js.map +0 -1
  915. package/_esm/actions/schemas/trade/index.js +0 -7
  916. package/_esm/actions/schemas/trade/index.js.map +0 -1
  917. package/_esm/actions/schemas/trade/mintNft.js +0 -31
  918. package/_esm/actions/schemas/trade/mintNft.js.map +0 -1
  919. package/_esm/actions/schemas/trade/sellCrypto.js +0 -23
  920. package/_esm/actions/schemas/trade/sellCrypto.js.map +0 -1
  921. package/_esm/actions/schemas/trade/sellNft.js +0 -31
  922. package/_esm/actions/schemas/trade/sellNft.js.map +0 -1
  923. package/_esm/actions/schemas/trade/trade.js +0 -23
  924. package/_esm/actions/schemas/trade/trade.js.map +0 -1
  925. package/_esm/actions/schemas/transfer/index.js +0 -3
  926. package/_esm/actions/schemas/transfer/index.js.map +0 -1
  927. package/_esm/actions/schemas/transfer/swapTransfer.js +0 -13
  928. package/_esm/actions/schemas/transfer/swapTransfer.js.map +0 -1
  929. package/_esm/actions/schemas/transfer/transfer.js +0 -22
  930. package/_esm/actions/schemas/transfer/transfer.js.map +0 -1
  931. package/_esm/actions/schemas/valuedown/index.js +0 -2
  932. package/_esm/actions/schemas/valuedown/index.js.map +0 -1
  933. package/_esm/actions/schemas/valuedown/valuedown.js +0 -26
  934. package/_esm/actions/schemas/valuedown/valuedown.js.map +0 -1
  935. package/_esm/actions/schemas/valueup/index.js +0 -2
  936. package/_esm/actions/schemas/valueup/index.js.map +0 -1
  937. package/_esm/actions/schemas/valueup/valueup.js +0 -26
  938. package/_esm/actions/schemas/valueup/valueup.js.map +0 -1
  939. package/_esm/actions/schemas/withdraw/index.js +0 -5
  940. package/_esm/actions/schemas/withdraw/index.js.map +0 -1
  941. package/_esm/actions/schemas/withdraw/removeLiquidity.js +0 -33
  942. package/_esm/actions/schemas/withdraw/removeLiquidity.js.map +0 -1
  943. package/_esm/actions/schemas/withdraw/unstake.js +0 -23
  944. package/_esm/actions/schemas/withdraw/unstake.js.map +0 -1
  945. package/_esm/actions/schemas/withdraw/withdraw.js +0 -23
  946. package/_esm/actions/schemas/withdraw/withdraw.js.map +0 -1
  947. package/_esm/actions/schemas/withdraw/withdrawWithBond.js +0 -33
  948. package/_esm/actions/schemas/withdraw/withdrawWithBond.js.map +0 -1
  949. package/_esm/actions/types/action.js +0 -2
  950. package/_esm/actions/types/action.js.map +0 -1
  951. package/_esm/actions/types/addLiquidity.js +0 -2
  952. package/_esm/actions/types/addLiquidity.js.map +0 -1
  953. package/_esm/actions/types/approve.js +0 -2
  954. package/_esm/actions/types/approve.js.map +0 -1
  955. package/_esm/actions/types/atomicArbitrage.js +0 -2
  956. package/_esm/actions/types/atomicArbitrage.js.map +0 -1
  957. package/_esm/actions/types/borrow.js +0 -2
  958. package/_esm/actions/types/borrow.js.map +0 -1
  959. package/_esm/actions/types/bridgeFrom.js +0 -2
  960. package/_esm/actions/types/bridgeFrom.js.map +0 -1
  961. package/_esm/actions/types/bridgeTo.js +0 -2
  962. package/_esm/actions/types/bridgeTo.js.map +0 -1
  963. package/_esm/actions/types/buyCrypto.js +0 -2
  964. package/_esm/actions/types/buyCrypto.js.map +0 -1
  965. package/_esm/actions/types/buyNft.js +0 -2
  966. package/_esm/actions/types/buyNft.js.map +0 -1
  967. package/_esm/actions/types/crossActionBundle.js +0 -2
  968. package/_esm/actions/types/crossActionBundle.js.map +0 -1
  969. package/_esm/actions/types/crossReplace.js +0 -2
  970. package/_esm/actions/types/crossReplace.js.map +0 -1
  971. package/_esm/actions/types/crossTrade.js +0 -2
  972. package/_esm/actions/types/crossTrade.js.map +0 -1
  973. package/_esm/actions/types/default.js +0 -2
  974. package/_esm/actions/types/default.js.map +0 -1
  975. package/_esm/actions/types/deposit.js +0 -2
  976. package/_esm/actions/types/deposit.js.map +0 -1
  977. package/_esm/actions/types/depositWithBond.js +0 -2
  978. package/_esm/actions/types/depositWithBond.js.map +0 -1
  979. package/_esm/actions/types/failTx.js +0 -2
  980. package/_esm/actions/types/failTx.js.map +0 -1
  981. package/_esm/actions/types/fee.js +0 -2
  982. package/_esm/actions/types/fee.js.map +0 -1
  983. package/_esm/actions/types/freeMintNft.js +0 -2
  984. package/_esm/actions/types/freeMintNft.js.map +0 -1
  985. package/_esm/actions/types/ignore.js +0 -2
  986. package/_esm/actions/types/ignore.js.map +0 -1
  987. package/_esm/actions/types/income.js +0 -2
  988. package/_esm/actions/types/income.js.map +0 -1
  989. package/_esm/actions/types/index.js +0 -2
  990. package/_esm/actions/types/index.js.map +0 -1
  991. package/_esm/actions/types/mintNft.js +0 -2
  992. package/_esm/actions/types/mintNft.js.map +0 -1
  993. package/_esm/actions/types/move.js +0 -2
  994. package/_esm/actions/types/move.js.map +0 -1
  995. package/_esm/actions/types/nftRoyalty.js +0 -2
  996. package/_esm/actions/types/nftRoyalty.js.map +0 -1
  997. package/_esm/actions/types/receiveFromCex.js +0 -2
  998. package/_esm/actions/types/receiveFromCex.js.map +0 -1
  999. package/_esm/actions/types/reduce.js +0 -2
  1000. package/_esm/actions/types/reduce.js.map +0 -1
  1001. package/_esm/actions/types/removeLiquidity.js +0 -2
  1002. package/_esm/actions/types/removeLiquidity.js.map +0 -1
  1003. package/_esm/actions/types/repayment.js +0 -2
  1004. package/_esm/actions/types/repayment.js.map +0 -1
  1005. package/_esm/actions/types/repaymentWithDebt.js +0 -2
  1006. package/_esm/actions/types/repaymentWithDebt.js.map +0 -1
  1007. package/_esm/actions/types/replace.js +0 -2
  1008. package/_esm/actions/types/replace.js.map +0 -1
  1009. package/_esm/actions/types/revoke.js +0 -2
  1010. package/_esm/actions/types/revoke.js.map +0 -1
  1011. package/_esm/actions/types/sellCrypto.js +0 -2
  1012. package/_esm/actions/types/sellCrypto.js.map +0 -1
  1013. package/_esm/actions/types/sellNft.js +0 -2
  1014. package/_esm/actions/types/sellNft.js.map +0 -1
  1015. package/_esm/actions/types/sendToCex.js +0 -2
  1016. package/_esm/actions/types/sendToCex.js.map +0 -1
  1017. package/_esm/actions/types/spam.js +0 -2
  1018. package/_esm/actions/types/spam.js.map +0 -1
  1019. package/_esm/actions/types/stake.js +0 -2
  1020. package/_esm/actions/types/stake.js.map +0 -1
  1021. package/_esm/actions/types/swapIncome.js +0 -2
  1022. package/_esm/actions/types/swapIncome.js.map +0 -1
  1023. package/_esm/actions/types/swapNft.js +0 -2
  1024. package/_esm/actions/types/swapNft.js.map +0 -1
  1025. package/_esm/actions/types/swapTransfer.js +0 -2
  1026. package/_esm/actions/types/swapTransfer.js.map +0 -1
  1027. package/_esm/actions/types/trade.js +0 -2
  1028. package/_esm/actions/types/trade.js.map +0 -1
  1029. package/_esm/actions/types/transactionFee.js +0 -2
  1030. package/_esm/actions/types/transactionFee.js.map +0 -1
  1031. package/_esm/actions/types/transfer.js +0 -2
  1032. package/_esm/actions/types/transfer.js.map +0 -1
  1033. package/_esm/actions/types/unstake.js +0 -2
  1034. package/_esm/actions/types/unstake.js.map +0 -1
  1035. package/_esm/actions/types/unwrap.js +0 -2
  1036. package/_esm/actions/types/unwrap.js.map +0 -1
  1037. package/_esm/actions/types/valuedown.js +0 -2
  1038. package/_esm/actions/types/valuedown.js.map +0 -1
  1039. package/_esm/actions/types/valueup.js +0 -2
  1040. package/_esm/actions/types/valueup.js.map +0 -1
  1041. package/_esm/actions/types/withdraw.js +0 -2
  1042. package/_esm/actions/types/withdraw.js.map +0 -1
  1043. package/_esm/actions/types/withdrawWithBond.js +0 -2
  1044. package/_esm/actions/types/withdrawWithBond.js.map +0 -1
  1045. package/_esm/actions/types/wrap.js +0 -2
  1046. package/_esm/actions/types/wrap.js.map +0 -1
  1047. package/_esm/actions/utils/checkIfAccountActionsIsValid.js +0 -66
  1048. package/_esm/actions/utils/checkIfAccountActionsIsValid.js.map +0 -1
  1049. package/_esm/actions/utils/createEvidenceNoneAccountActions.js +0 -216
  1050. package/_esm/actions/utils/createEvidenceNoneAccountActions.js.map +0 -1
  1051. package/_esm/actions/utils/parseBaseAccountActionToAccountAction.js +0 -746
  1052. package/_esm/actions/utils/parseBaseAccountActionToAccountAction.js.map +0 -1
  1053. package/_esm/actions/utils/parseBaseNormalActionToNormalAction.js +0 -605
  1054. package/_esm/actions/utils/parseBaseNormalActionToNormalAction.js.map +0 -1
  1055. package/_esm/actions/utils/transfer.js +0 -10
  1056. package/_esm/actions/utils/transfer.js.map +0 -1
  1057. package/_esm/assets/creates/index.js +0 -3
  1058. package/_esm/assets/creates/index.js.map +0 -1
  1059. package/_esm/assets/definitions/coingeckoCryptoCurrencyDataSource.js +0 -97
  1060. package/_esm/assets/definitions/coingeckoCryptoCurrencyDataSource.js.map +0 -1
  1061. package/_esm/assets/definitions/index.js +0 -19
  1062. package/_esm/assets/definitions/index.js.map +0 -1
  1063. package/_esm/assets/externals/coingecko/constants.js +0 -2
  1064. package/_esm/assets/externals/coingecko/constants.js.map +0 -1
  1065. package/_esm/assets/externals/coingecko/getAutoRetry.js +0 -27
  1066. package/_esm/assets/externals/coingecko/getAutoRetry.js.map +0 -1
  1067. package/_esm/assets/externals/coingecko/getCoinMarketChartRange.js +0 -21
  1068. package/_esm/assets/externals/coingecko/getCoinMarketChartRange.js.map +0 -1
  1069. package/_esm/assets/externals/coingecko/getCoinsMarkets.js +0 -44
  1070. package/_esm/assets/externals/coingecko/getCoinsMarkets.js.map +0 -1
  1071. package/_esm/assets/externals/coingecko/index.js +0 -3
  1072. package/_esm/assets/externals/coingecko/index.js.map +0 -1
  1073. package/_esm/assets/externals/index.js +0 -2
  1074. package/_esm/assets/externals/index.js.map +0 -1
  1075. package/_esm/portfolios/createPortfolio.js +0 -4
  1076. package/_esm/portfolios/createPortfolio.js.map +0 -1
  1077. package/_esm/portfolios/index.js +0 -2
  1078. package/_esm/portfolios/index.js.map +0 -1
  1079. package/_esm/portfolios/type.js +0 -2
  1080. package/_esm/portfolios/type.js.map +0 -1
  1081. package/_esm/setAccountActionPrices.js +0 -80
  1082. package/_esm/setAccountActionPrices.js.map +0 -1
  1083. package/_esm/tests/constants.js +0 -2
  1084. package/_esm/tests/constants.js.map +0 -1
  1085. package/_esm/tests/index.js +0 -3
  1086. package/_esm/tests/index.js.map +0 -1
  1087. package/_esm/tests/utils.js +0 -24
  1088. package/_esm/tests/utils.js.map +0 -1
  1089. package/_types/accounts/index.d.ts +0 -2
  1090. package/_types/accounts/index.d.ts.map +0 -1
  1091. package/_types/accounts/types/account.d.ts +0 -6
  1092. package/_types/accounts/types/account.d.ts.map +0 -1
  1093. package/_types/accounts/types/index.d.ts +0 -2
  1094. package/_types/accounts/types/index.d.ts.map +0 -1
  1095. package/_types/actions/parsers/action.d.ts +0 -4
  1096. package/_types/actions/parsers/action.d.ts.map +0 -1
  1097. package/_types/actions/parsers/borrow/borrow.d.ts +0 -4
  1098. package/_types/actions/parsers/borrow/borrow.d.ts.map +0 -1
  1099. package/_types/actions/parsers/borrow/index.d.ts +0 -2
  1100. package/_types/actions/parsers/borrow/index.d.ts.map +0 -1
  1101. package/_types/actions/parsers/crossReplace/bridgeFrom.d.ts +0 -4
  1102. package/_types/actions/parsers/crossReplace/bridgeFrom.d.ts.map +0 -1
  1103. package/_types/actions/parsers/crossReplace/bridgeTo.d.ts +0 -4
  1104. package/_types/actions/parsers/crossReplace/bridgeTo.d.ts.map +0 -1
  1105. package/_types/actions/parsers/crossReplace/crossReplace.d.ts +0 -4
  1106. package/_types/actions/parsers/crossReplace/crossReplace.d.ts.map +0 -1
  1107. package/_types/actions/parsers/crossReplace/index.d.ts +0 -4
  1108. package/_types/actions/parsers/crossReplace/index.d.ts.map +0 -1
  1109. package/_types/actions/parsers/crossTrade/crossTrade.d.ts +0 -4
  1110. package/_types/actions/parsers/crossTrade/crossTrade.d.ts.map +0 -1
  1111. package/_types/actions/parsers/crossTrade/index.d.ts +0 -2
  1112. package/_types/actions/parsers/crossTrade/index.d.ts.map +0 -1
  1113. package/_types/actions/parsers/default.d.ts +0 -24
  1114. package/_types/actions/parsers/default.d.ts.map +0 -1
  1115. package/_types/actions/parsers/deposit/addLiquidity.d.ts +0 -4
  1116. package/_types/actions/parsers/deposit/addLiquidity.d.ts.map +0 -1
  1117. package/_types/actions/parsers/deposit/deposit.d.ts +0 -4
  1118. package/_types/actions/parsers/deposit/deposit.d.ts.map +0 -1
  1119. package/_types/actions/parsers/deposit/depositWithBond.d.ts +0 -4
  1120. package/_types/actions/parsers/deposit/depositWithBond.d.ts.map +0 -1
  1121. package/_types/actions/parsers/deposit/index.d.ts +0 -5
  1122. package/_types/actions/parsers/deposit/index.d.ts.map +0 -1
  1123. package/_types/actions/parsers/deposit/stake.d.ts +0 -4
  1124. package/_types/actions/parsers/deposit/stake.d.ts.map +0 -1
  1125. package/_types/actions/parsers/fee/fee.d.ts +0 -4
  1126. package/_types/actions/parsers/fee/fee.d.ts.map +0 -1
  1127. package/_types/actions/parsers/fee/index.d.ts +0 -3
  1128. package/_types/actions/parsers/fee/index.d.ts.map +0 -1
  1129. package/_types/actions/parsers/fee/transactionFee.d.ts +0 -4
  1130. package/_types/actions/parsers/fee/transactionFee.d.ts.map +0 -1
  1131. package/_types/actions/parsers/ignore/approve.d.ts +0 -4
  1132. package/_types/actions/parsers/ignore/approve.d.ts.map +0 -1
  1133. package/_types/actions/parsers/ignore/failTx.d.ts +0 -4
  1134. package/_types/actions/parsers/ignore/failTx.d.ts.map +0 -1
  1135. package/_types/actions/parsers/ignore/index.d.ts +0 -7
  1136. package/_types/actions/parsers/ignore/index.d.ts.map +0 -1
  1137. package/_types/actions/parsers/ignore/receiveFromCex.d.ts +0 -4
  1138. package/_types/actions/parsers/ignore/receiveFromCex.d.ts.map +0 -1
  1139. package/_types/actions/parsers/ignore/revoke.d.ts +0 -4
  1140. package/_types/actions/parsers/ignore/revoke.d.ts.map +0 -1
  1141. package/_types/actions/parsers/ignore/sendToCex.d.ts +0 -4
  1142. package/_types/actions/parsers/ignore/sendToCex.d.ts.map +0 -1
  1143. package/_types/actions/parsers/ignore/spam.d.ts +0 -4
  1144. package/_types/actions/parsers/ignore/spam.d.ts.map +0 -1
  1145. package/_types/actions/parsers/income/atomicArbitrage.d.ts +0 -4
  1146. package/_types/actions/parsers/income/atomicArbitrage.d.ts.map +0 -1
  1147. package/_types/actions/parsers/income/freeMintNft.d.ts +0 -4
  1148. package/_types/actions/parsers/income/freeMintNft.d.ts.map +0 -1
  1149. package/_types/actions/parsers/income/income.d.ts +0 -4
  1150. package/_types/actions/parsers/income/income.d.ts.map +0 -1
  1151. package/_types/actions/parsers/income/index.d.ts +0 -4
  1152. package/_types/actions/parsers/income/index.d.ts.map +0 -1
  1153. package/_types/actions/parsers/index.d.ts +0 -16
  1154. package/_types/actions/parsers/index.d.ts.map +0 -1
  1155. package/_types/actions/parsers/repayment/index.d.ts +0 -3
  1156. package/_types/actions/parsers/repayment/index.d.ts.map +0 -1
  1157. package/_types/actions/parsers/repayment/repayment.d.ts +0 -4
  1158. package/_types/actions/parsers/repayment/repayment.d.ts.map +0 -1
  1159. package/_types/actions/parsers/repayment/repaymentWithDebt.d.ts +0 -4
  1160. package/_types/actions/parsers/repayment/repaymentWithDebt.d.ts.map +0 -1
  1161. package/_types/actions/parsers/replace/index.d.ts +0 -5
  1162. package/_types/actions/parsers/replace/index.d.ts.map +0 -1
  1163. package/_types/actions/parsers/replace/replace.d.ts +0 -4
  1164. package/_types/actions/parsers/replace/replace.d.ts.map +0 -1
  1165. package/_types/actions/parsers/replace/swapNft.d.ts +0 -4
  1166. package/_types/actions/parsers/replace/swapNft.d.ts.map +0 -1
  1167. package/_types/actions/parsers/replace/unwrap.d.ts +0 -4
  1168. package/_types/actions/parsers/replace/unwrap.d.ts.map +0 -1
  1169. package/_types/actions/parsers/replace/wrap.d.ts +0 -4
  1170. package/_types/actions/parsers/replace/wrap.d.ts.map +0 -1
  1171. package/_types/actions/parsers/trade/buyCrypto.d.ts +0 -4
  1172. package/_types/actions/parsers/trade/buyCrypto.d.ts.map +0 -1
  1173. package/_types/actions/parsers/trade/buyNft.d.ts +0 -4
  1174. package/_types/actions/parsers/trade/buyNft.d.ts.map +0 -1
  1175. package/_types/actions/parsers/trade/index.d.ts +0 -7
  1176. package/_types/actions/parsers/trade/index.d.ts.map +0 -1
  1177. package/_types/actions/parsers/trade/mintNft.d.ts +0 -4
  1178. package/_types/actions/parsers/trade/mintNft.d.ts.map +0 -1
  1179. package/_types/actions/parsers/trade/sellCrypto.d.ts +0 -4
  1180. package/_types/actions/parsers/trade/sellCrypto.d.ts.map +0 -1
  1181. package/_types/actions/parsers/trade/sellNft.d.ts +0 -4
  1182. package/_types/actions/parsers/trade/sellNft.d.ts.map +0 -1
  1183. package/_types/actions/parsers/trade/trade.d.ts +0 -4
  1184. package/_types/actions/parsers/trade/trade.d.ts.map +0 -1
  1185. package/_types/actions/parsers/transfer/index.d.ts +0 -2
  1186. package/_types/actions/parsers/transfer/index.d.ts.map +0 -1
  1187. package/_types/actions/parsers/transfer/transfer.d.ts +0 -4
  1188. package/_types/actions/parsers/transfer/transfer.d.ts.map +0 -1
  1189. package/_types/actions/parsers/types.d.ts +0 -8
  1190. package/_types/actions/parsers/types.d.ts.map +0 -1
  1191. package/_types/actions/parsers/valuedown/index.d.ts +0 -2
  1192. package/_types/actions/parsers/valuedown/index.d.ts.map +0 -1
  1193. package/_types/actions/parsers/valuedown/valuedown.d.ts +0 -4
  1194. package/_types/actions/parsers/valuedown/valuedown.d.ts.map +0 -1
  1195. package/_types/actions/parsers/valueup/index.d.ts +0 -2
  1196. package/_types/actions/parsers/valueup/index.d.ts.map +0 -1
  1197. package/_types/actions/parsers/valueup/valueup.d.ts +0 -4
  1198. package/_types/actions/parsers/valueup/valueup.d.ts.map +0 -1
  1199. package/_types/actions/parsers/withdraw/index.d.ts +0 -5
  1200. package/_types/actions/parsers/withdraw/index.d.ts.map +0 -1
  1201. package/_types/actions/parsers/withdraw/removeLiquidity.d.ts +0 -4
  1202. package/_types/actions/parsers/withdraw/removeLiquidity.d.ts.map +0 -1
  1203. package/_types/actions/parsers/withdraw/unstake.d.ts +0 -4
  1204. package/_types/actions/parsers/withdraw/unstake.d.ts.map +0 -1
  1205. package/_types/actions/parsers/withdraw/withdraw.d.ts +0 -4
  1206. package/_types/actions/parsers/withdraw/withdraw.d.ts.map +0 -1
  1207. package/_types/actions/parsers/withdraw/withdrawWithBond.d.ts +0 -4
  1208. package/_types/actions/parsers/withdraw/withdrawWithBond.d.ts.map +0 -1
  1209. package/_types/actions/schemas/action.d.ts +0 -106
  1210. package/_types/actions/schemas/action.d.ts.map +0 -1
  1211. package/_types/actions/schemas/borrow/borrow.d.ts +0 -4829
  1212. package/_types/actions/schemas/borrow/borrow.d.ts.map +0 -1
  1213. package/_types/actions/schemas/borrow/index.d.ts +0 -2
  1214. package/_types/actions/schemas/borrow/index.d.ts.map +0 -1
  1215. package/_types/actions/schemas/crossActionBundle.d.ts +0 -10726
  1216. package/_types/actions/schemas/crossActionBundle.d.ts.map +0 -1
  1217. package/_types/actions/schemas/crossReplace/bridgeFrom.d.ts +0 -4839
  1218. package/_types/actions/schemas/crossReplace/bridgeFrom.d.ts.map +0 -1
  1219. package/_types/actions/schemas/crossReplace/bridgeTo.d.ts +0 -4839
  1220. package/_types/actions/schemas/crossReplace/bridgeTo.d.ts.map +0 -1
  1221. package/_types/actions/schemas/crossReplace/crossReplace.d.ts +0 -5101
  1222. package/_types/actions/schemas/crossReplace/crossReplace.d.ts.map +0 -1
  1223. package/_types/actions/schemas/crossReplace/index.d.ts +0 -4
  1224. package/_types/actions/schemas/crossReplace/index.d.ts.map +0 -1
  1225. package/_types/actions/schemas/crossTrade/crossTrade.d.ts +0 -5101
  1226. package/_types/actions/schemas/crossTrade/crossTrade.d.ts.map +0 -1
  1227. package/_types/actions/schemas/crossTrade/index.d.ts +0 -2
  1228. package/_types/actions/schemas/crossTrade/index.d.ts.map +0 -1
  1229. package/_types/actions/schemas/default/accountAction.d.ts +0 -4790
  1230. package/_types/actions/schemas/default/accountAction.d.ts.map +0 -1
  1231. package/_types/actions/schemas/default/index.d.ts +0 -5
  1232. package/_types/actions/schemas/default/index.d.ts.map +0 -1
  1233. package/_types/actions/schemas/default/normalAction.d.ts +0 -4773
  1234. package/_types/actions/schemas/default/normalAction.d.ts.map +0 -1
  1235. package/_types/actions/schemas/default/transfer.d.ts +0 -6329
  1236. package/_types/actions/schemas/default/transfer.d.ts.map +0 -1
  1237. package/_types/actions/schemas/default/unions.d.ts +0 -5
  1238. package/_types/actions/schemas/default/unions.d.ts.map +0 -1
  1239. package/_types/actions/schemas/deposit/addLiquidity.d.ts +0 -6959
  1240. package/_types/actions/schemas/deposit/addLiquidity.d.ts.map +0 -1
  1241. package/_types/actions/schemas/deposit/deposit.d.ts +0 -4829
  1242. package/_types/actions/schemas/deposit/deposit.d.ts.map +0 -1
  1243. package/_types/actions/schemas/deposit/depositWithBond.d.ts +0 -6959
  1244. package/_types/actions/schemas/deposit/depositWithBond.d.ts.map +0 -1
  1245. package/_types/actions/schemas/deposit/index.d.ts +0 -5
  1246. package/_types/actions/schemas/deposit/index.d.ts.map +0 -1
  1247. package/_types/actions/schemas/deposit/stake.d.ts +0 -4829
  1248. package/_types/actions/schemas/deposit/stake.d.ts.map +0 -1
  1249. package/_types/actions/schemas/fee/fee.d.ts +0 -4765
  1250. package/_types/actions/schemas/fee/fee.d.ts.map +0 -1
  1251. package/_types/actions/schemas/fee/index.d.ts +0 -3
  1252. package/_types/actions/schemas/fee/index.d.ts.map +0 -1
  1253. package/_types/actions/schemas/fee/transactionFee.d.ts +0 -3873
  1254. package/_types/actions/schemas/fee/transactionFee.d.ts.map +0 -1
  1255. package/_types/actions/schemas/ignore/approve.d.ts +0 -2687
  1256. package/_types/actions/schemas/ignore/approve.d.ts.map +0 -1
  1257. package/_types/actions/schemas/ignore/failTx.d.ts +0 -2687
  1258. package/_types/actions/schemas/ignore/failTx.d.ts.map +0 -1
  1259. package/_types/actions/schemas/ignore/ignore.d.ts +0 -1913
  1260. package/_types/actions/schemas/ignore/ignore.d.ts.map +0 -1
  1261. package/_types/actions/schemas/ignore/index.d.ts +0 -9
  1262. package/_types/actions/schemas/ignore/index.d.ts.map +0 -1
  1263. package/_types/actions/schemas/ignore/move.d.ts +0 -1913
  1264. package/_types/actions/schemas/ignore/move.d.ts.map +0 -1
  1265. package/_types/actions/schemas/ignore/receiveFromCex.d.ts +0 -4817
  1266. package/_types/actions/schemas/ignore/receiveFromCex.d.ts.map +0 -1
  1267. package/_types/actions/schemas/ignore/revoke.d.ts +0 -2687
  1268. package/_types/actions/schemas/ignore/revoke.d.ts.map +0 -1
  1269. package/_types/actions/schemas/ignore/sendToCex.d.ts +0 -4817
  1270. package/_types/actions/schemas/ignore/sendToCex.d.ts.map +0 -1
  1271. package/_types/actions/schemas/ignore/spam.d.ts +0 -6947
  1272. package/_types/actions/schemas/ignore/spam.d.ts.map +0 -1
  1273. package/_types/actions/schemas/income/atomicArbitrage.d.ts +0 -5059
  1274. package/_types/actions/schemas/income/atomicArbitrage.d.ts.map +0 -1
  1275. package/_types/actions/schemas/income/freeMintNft.d.ts +0 -3631
  1276. package/_types/actions/schemas/income/freeMintNft.d.ts.map +0 -1
  1277. package/_types/actions/schemas/income/income.d.ts +0 -3883
  1278. package/_types/actions/schemas/income/income.d.ts.map +0 -1
  1279. package/_types/actions/schemas/income/index.d.ts +0 -6
  1280. package/_types/actions/schemas/income/index.d.ts.map +0 -1
  1281. package/_types/actions/schemas/income/nftRoyalty.d.ts +0 -2389
  1282. package/_types/actions/schemas/income/nftRoyalty.d.ts.map +0 -1
  1283. package/_types/actions/schemas/income/swapIncome.d.ts +0 -2415
  1284. package/_types/actions/schemas/income/swapIncome.d.ts.map +0 -1
  1285. package/_types/actions/schemas/index.d.ts +0 -19
  1286. package/_types/actions/schemas/index.d.ts.map +0 -1
  1287. package/_types/actions/schemas/reduce/index.d.ts +0 -2
  1288. package/_types/actions/schemas/reduce/index.d.ts.map +0 -1
  1289. package/_types/actions/schemas/reduce/reduce.d.ts +0 -2415
  1290. package/_types/actions/schemas/reduce/reduce.d.ts.map +0 -1
  1291. package/_types/actions/schemas/repayment/index.d.ts +0 -3
  1292. package/_types/actions/schemas/repayment/index.d.ts.map +0 -1
  1293. package/_types/actions/schemas/repayment/repayment.d.ts +0 -4829
  1294. package/_types/actions/schemas/repayment/repayment.d.ts.map +0 -1
  1295. package/_types/actions/schemas/repayment/repaymentWithDebt.d.ts +0 -6959
  1296. package/_types/actions/schemas/repayment/repaymentWithDebt.d.ts.map +0 -1
  1297. package/_types/actions/schemas/replace/index.d.ts +0 -5
  1298. package/_types/actions/schemas/replace/index.d.ts.map +0 -1
  1299. package/_types/actions/schemas/replace/replace.d.ts +0 -6947
  1300. package/_types/actions/schemas/replace/replace.d.ts.map +0 -1
  1301. package/_types/actions/schemas/replace/swapNft.d.ts +0 -4575
  1302. package/_types/actions/schemas/replace/swapNft.d.ts.map +0 -1
  1303. package/_types/actions/schemas/replace/unwrap.d.ts +0 -5059
  1304. package/_types/actions/schemas/replace/unwrap.d.ts.map +0 -1
  1305. package/_types/actions/schemas/replace/wrap.d.ts +0 -5059
  1306. package/_types/actions/schemas/replace/wrap.d.ts.map +0 -1
  1307. package/_types/actions/schemas/trade/buyCrypto.d.ts +0 -4765
  1308. package/_types/actions/schemas/trade/buyCrypto.d.ts.map +0 -1
  1309. package/_types/actions/schemas/trade/buyNft.d.ts +0 -5709
  1310. package/_types/actions/schemas/trade/buyNft.d.ts.map +0 -1
  1311. package/_types/actions/schemas/trade/index.d.ts +0 -7
  1312. package/_types/actions/schemas/trade/index.d.ts.map +0 -1
  1313. package/_types/actions/schemas/trade/mintNft.d.ts +0 -5709
  1314. package/_types/actions/schemas/trade/mintNft.d.ts.map +0 -1
  1315. package/_types/actions/schemas/trade/sellCrypto.d.ts +0 -4765
  1316. package/_types/actions/schemas/trade/sellCrypto.d.ts.map +0 -1
  1317. package/_types/actions/schemas/trade/sellNft.d.ts +0 -5709
  1318. package/_types/actions/schemas/trade/sellNft.d.ts.map +0 -1
  1319. package/_types/actions/schemas/trade/trade.d.ts +0 -5079
  1320. package/_types/actions/schemas/trade/trade.d.ts.map +0 -1
  1321. package/_types/actions/schemas/transfer/index.d.ts +0 -3
  1322. package/_types/actions/schemas/transfer/index.d.ts.map +0 -1
  1323. package/_types/actions/schemas/transfer/swapTransfer.d.ts +0 -2415
  1324. package/_types/actions/schemas/transfer/swapTransfer.d.ts.map +0 -1
  1325. package/_types/actions/schemas/transfer/transfer.d.ts +0 -3848
  1326. package/_types/actions/schemas/transfer/transfer.d.ts.map +0 -1
  1327. package/_types/actions/schemas/valuedown/index.d.ts +0 -2
  1328. package/_types/actions/schemas/valuedown/index.d.ts.map +0 -1
  1329. package/_types/actions/schemas/valuedown/valuedown.d.ts +0 -4037
  1330. package/_types/actions/schemas/valuedown/valuedown.d.ts.map +0 -1
  1331. package/_types/actions/schemas/valueup/index.d.ts +0 -2
  1332. package/_types/actions/schemas/valueup/index.d.ts.map +0 -1
  1333. package/_types/actions/schemas/valueup/valueup.d.ts +0 -4037
  1334. package/_types/actions/schemas/valueup/valueup.d.ts.map +0 -1
  1335. package/_types/actions/schemas/withdraw/index.d.ts +0 -5
  1336. package/_types/actions/schemas/withdraw/index.d.ts.map +0 -1
  1337. package/_types/actions/schemas/withdraw/removeLiquidity.d.ts +0 -6959
  1338. package/_types/actions/schemas/withdraw/removeLiquidity.d.ts.map +0 -1
  1339. package/_types/actions/schemas/withdraw/unstake.d.ts +0 -4829
  1340. package/_types/actions/schemas/withdraw/unstake.d.ts.map +0 -1
  1341. package/_types/actions/schemas/withdraw/withdraw.d.ts +0 -4829
  1342. package/_types/actions/schemas/withdraw/withdraw.d.ts.map +0 -1
  1343. package/_types/actions/schemas/withdraw/withdrawWithBond.d.ts +0 -6959
  1344. package/_types/actions/schemas/withdraw/withdrawWithBond.d.ts.map +0 -1
  1345. package/_types/actions/types/action.d.ts +0 -24
  1346. package/_types/actions/types/action.d.ts.map +0 -1
  1347. package/_types/actions/types/addLiquidity.d.ts +0 -5
  1348. package/_types/actions/types/addLiquidity.d.ts.map +0 -1
  1349. package/_types/actions/types/approve.d.ts +0 -5
  1350. package/_types/actions/types/approve.d.ts.map +0 -1
  1351. package/_types/actions/types/atomicArbitrage.d.ts +0 -5
  1352. package/_types/actions/types/atomicArbitrage.d.ts.map +0 -1
  1353. package/_types/actions/types/borrow.d.ts +0 -5
  1354. package/_types/actions/types/borrow.d.ts.map +0 -1
  1355. package/_types/actions/types/bridgeFrom.d.ts +0 -5
  1356. package/_types/actions/types/bridgeFrom.d.ts.map +0 -1
  1357. package/_types/actions/types/bridgeTo.d.ts +0 -5
  1358. package/_types/actions/types/bridgeTo.d.ts.map +0 -1
  1359. package/_types/actions/types/buyCrypto.d.ts +0 -5
  1360. package/_types/actions/types/buyCrypto.d.ts.map +0 -1
  1361. package/_types/actions/types/buyNft.d.ts +0 -5
  1362. package/_types/actions/types/buyNft.d.ts.map +0 -1
  1363. package/_types/actions/types/crossActionBundle.d.ts +0 -4
  1364. package/_types/actions/types/crossActionBundle.d.ts.map +0 -1
  1365. package/_types/actions/types/crossReplace.d.ts +0 -5
  1366. package/_types/actions/types/crossReplace.d.ts.map +0 -1
  1367. package/_types/actions/types/crossTrade.d.ts +0 -5
  1368. package/_types/actions/types/crossTrade.d.ts.map +0 -1
  1369. package/_types/actions/types/default.d.ts +0 -16
  1370. package/_types/actions/types/default.d.ts.map +0 -1
  1371. package/_types/actions/types/deposit.d.ts +0 -5
  1372. package/_types/actions/types/deposit.d.ts.map +0 -1
  1373. package/_types/actions/types/depositWithBond.d.ts +0 -5
  1374. package/_types/actions/types/depositWithBond.d.ts.map +0 -1
  1375. package/_types/actions/types/failTx.d.ts +0 -5
  1376. package/_types/actions/types/failTx.d.ts.map +0 -1
  1377. package/_types/actions/types/fee.d.ts +0 -5
  1378. package/_types/actions/types/fee.d.ts.map +0 -1
  1379. package/_types/actions/types/freeMintNft.d.ts +0 -6
  1380. package/_types/actions/types/freeMintNft.d.ts.map +0 -1
  1381. package/_types/actions/types/ignore.d.ts +0 -4
  1382. package/_types/actions/types/ignore.d.ts.map +0 -1
  1383. package/_types/actions/types/income.d.ts +0 -5
  1384. package/_types/actions/types/income.d.ts.map +0 -1
  1385. package/_types/actions/types/index.d.ts +0 -49
  1386. package/_types/actions/types/index.d.ts.map +0 -1
  1387. package/_types/actions/types/mintNft.d.ts +0 -5
  1388. package/_types/actions/types/mintNft.d.ts.map +0 -1
  1389. package/_types/actions/types/move.d.ts +0 -4
  1390. package/_types/actions/types/move.d.ts.map +0 -1
  1391. package/_types/actions/types/nftRoyalty.d.ts +0 -4
  1392. package/_types/actions/types/nftRoyalty.d.ts.map +0 -1
  1393. package/_types/actions/types/receiveFromCex.d.ts +0 -5
  1394. package/_types/actions/types/receiveFromCex.d.ts.map +0 -1
  1395. package/_types/actions/types/reduce.d.ts +0 -4
  1396. package/_types/actions/types/reduce.d.ts.map +0 -1
  1397. package/_types/actions/types/removeLiquidity.d.ts +0 -5
  1398. package/_types/actions/types/removeLiquidity.d.ts.map +0 -1
  1399. package/_types/actions/types/repayment.d.ts +0 -5
  1400. package/_types/actions/types/repayment.d.ts.map +0 -1
  1401. package/_types/actions/types/repaymentWithDebt.d.ts +0 -5
  1402. package/_types/actions/types/repaymentWithDebt.d.ts.map +0 -1
  1403. package/_types/actions/types/replace.d.ts +0 -5
  1404. package/_types/actions/types/replace.d.ts.map +0 -1
  1405. package/_types/actions/types/revoke.d.ts +0 -5
  1406. package/_types/actions/types/revoke.d.ts.map +0 -1
  1407. package/_types/actions/types/sellCrypto.d.ts +0 -5
  1408. package/_types/actions/types/sellCrypto.d.ts.map +0 -1
  1409. package/_types/actions/types/sellNft.d.ts +0 -5
  1410. package/_types/actions/types/sellNft.d.ts.map +0 -1
  1411. package/_types/actions/types/sendToCex.d.ts +0 -5
  1412. package/_types/actions/types/sendToCex.d.ts.map +0 -1
  1413. package/_types/actions/types/spam.d.ts +0 -5
  1414. package/_types/actions/types/spam.d.ts.map +0 -1
  1415. package/_types/actions/types/stake.d.ts +0 -5
  1416. package/_types/actions/types/stake.d.ts.map +0 -1
  1417. package/_types/actions/types/swapIncome.d.ts +0 -4
  1418. package/_types/actions/types/swapIncome.d.ts.map +0 -1
  1419. package/_types/actions/types/swapNft.d.ts +0 -5
  1420. package/_types/actions/types/swapNft.d.ts.map +0 -1
  1421. package/_types/actions/types/swapTransfer.d.ts +0 -4
  1422. package/_types/actions/types/swapTransfer.d.ts.map +0 -1
  1423. package/_types/actions/types/trade.d.ts +0 -5
  1424. package/_types/actions/types/trade.d.ts.map +0 -1
  1425. package/_types/actions/types/transactionFee.d.ts +0 -5
  1426. package/_types/actions/types/transactionFee.d.ts.map +0 -1
  1427. package/_types/actions/types/transfer.d.ts +0 -5
  1428. package/_types/actions/types/transfer.d.ts.map +0 -1
  1429. package/_types/actions/types/unstake.d.ts +0 -5
  1430. package/_types/actions/types/unstake.d.ts.map +0 -1
  1431. package/_types/actions/types/unwrap.d.ts +0 -5
  1432. package/_types/actions/types/unwrap.d.ts.map +0 -1
  1433. package/_types/actions/types/valuedown.d.ts +0 -5
  1434. package/_types/actions/types/valuedown.d.ts.map +0 -1
  1435. package/_types/actions/types/valueup.d.ts +0 -5
  1436. package/_types/actions/types/valueup.d.ts.map +0 -1
  1437. package/_types/actions/types/withdraw.d.ts +0 -5
  1438. package/_types/actions/types/withdraw.d.ts.map +0 -1
  1439. package/_types/actions/types/withdrawWithBond.d.ts +0 -5
  1440. package/_types/actions/types/withdrawWithBond.d.ts.map +0 -1
  1441. package/_types/actions/types/wrap.d.ts +0 -5
  1442. package/_types/actions/types/wrap.d.ts.map +0 -1
  1443. package/_types/actions/utils/checkIfAccountActionsIsValid.d.ts +0 -9
  1444. package/_types/actions/utils/checkIfAccountActionsIsValid.d.ts.map +0 -1
  1445. package/_types/actions/utils/createEvidenceNoneAccountActions.d.ts +0 -10
  1446. package/_types/actions/utils/createEvidenceNoneAccountActions.d.ts.map +0 -1
  1447. package/_types/actions/utils/parseBaseAccountActionToAccountAction.d.ts +0 -3
  1448. package/_types/actions/utils/parseBaseAccountActionToAccountAction.d.ts.map +0 -1
  1449. package/_types/actions/utils/parseBaseNormalActionToNormalAction.d.ts +0 -3
  1450. package/_types/actions/utils/parseBaseNormalActionToNormalAction.d.ts.map +0 -1
  1451. package/_types/actions/utils/transfer.d.ts +0 -11
  1452. package/_types/actions/utils/transfer.d.ts.map +0 -1
  1453. package/_types/assets/creates/index.d.ts +0 -3
  1454. package/_types/assets/creates/index.d.ts.map +0 -1
  1455. package/_types/assets/definitions/coingeckoCryptoCurrencyDataSource.d.ts +0 -40
  1456. package/_types/assets/definitions/coingeckoCryptoCurrencyDataSource.d.ts.map +0 -1
  1457. package/_types/assets/definitions/index.d.ts +0 -19
  1458. package/_types/assets/definitions/index.d.ts.map +0 -1
  1459. package/_types/assets/externals/coingecko/constants.d.ts +0 -2
  1460. package/_types/assets/externals/coingecko/constants.d.ts.map +0 -1
  1461. package/_types/assets/externals/coingecko/getAutoRetry.d.ts +0 -4
  1462. package/_types/assets/externals/coingecko/getAutoRetry.d.ts.map +0 -1
  1463. package/_types/assets/externals/coingecko/getCoinMarketChartRange.d.ts +0 -49
  1464. package/_types/assets/externals/coingecko/getCoinMarketChartRange.d.ts.map +0 -1
  1465. package/_types/assets/externals/coingecko/getCoinsMarkets.d.ts +0 -58
  1466. package/_types/assets/externals/coingecko/getCoinsMarkets.d.ts.map +0 -1
  1467. package/_types/assets/externals/coingecko/index.d.ts +0 -3
  1468. package/_types/assets/externals/coingecko/index.d.ts.map +0 -1
  1469. package/_types/assets/externals/index.d.ts +0 -2
  1470. package/_types/assets/externals/index.d.ts.map +0 -1
  1471. package/_types/portfolios/createPortfolio.d.ts +0 -2
  1472. package/_types/portfolios/createPortfolio.d.ts.map +0 -1
  1473. package/_types/portfolios/index.d.ts +0 -3
  1474. package/_types/portfolios/index.d.ts.map +0 -1
  1475. package/_types/portfolios/type.d.ts +0 -4
  1476. package/_types/portfolios/type.d.ts.map +0 -1
  1477. package/_types/setAccountActionPrices.d.ts +0 -3943
  1478. package/_types/setAccountActionPrices.d.ts.map +0 -1
  1479. package/_types/tests/constants.d.ts +0 -2
  1480. package/_types/tests/constants.d.ts.map +0 -1
  1481. package/_types/tests/index.d.ts +0 -3
  1482. package/_types/tests/index.d.ts.map +0 -1
  1483. package/_types/tests/utils.d.ts +0 -3
  1484. package/_types/tests/utils.d.ts.map +0 -1
  1485. package/accounts/index.ts +0 -1
  1486. package/accounts/types/account.ts +0 -5
  1487. package/accounts/types/index.ts +0 -1
  1488. package/actions/parsers/action.ts +0 -381
  1489. package/actions/parsers/borrow/borrow.ts +0 -47
  1490. package/actions/parsers/borrow/index.ts +0 -1
  1491. package/actions/parsers/crossReplace/bridgeFrom.ts +0 -48
  1492. package/actions/parsers/crossReplace/bridgeTo.ts +0 -48
  1493. package/actions/parsers/crossReplace/crossReplace.ts +0 -48
  1494. package/actions/parsers/crossReplace/index.ts +0 -3
  1495. package/actions/parsers/crossTrade/crossTrade.ts +0 -48
  1496. package/actions/parsers/crossTrade/index.ts +0 -1
  1497. package/actions/parsers/default.ts +0 -210
  1498. package/actions/parsers/deposit/addLiquidity.ts +0 -47
  1499. package/actions/parsers/deposit/deposit.ts +0 -47
  1500. package/actions/parsers/deposit/depositWithBond.ts +0 -47
  1501. package/actions/parsers/deposit/index.ts +0 -4
  1502. package/actions/parsers/deposit/stake.ts +0 -47
  1503. package/actions/parsers/fee/fee.ts +0 -70
  1504. package/actions/parsers/fee/index.ts +0 -2
  1505. package/actions/parsers/fee/transactionFee.ts +0 -46
  1506. package/actions/parsers/ignore/approve.ts +0 -18
  1507. package/actions/parsers/ignore/failTx.ts +0 -18
  1508. package/actions/parsers/ignore/index.ts +0 -6
  1509. package/actions/parsers/ignore/receiveFromCex.ts +0 -29
  1510. package/actions/parsers/ignore/revoke.ts +0 -18
  1511. package/actions/parsers/ignore/sendToCex.ts +0 -29
  1512. package/actions/parsers/ignore/spam.ts +0 -47
  1513. package/actions/parsers/income/atomicArbitrage.ts +0 -162
  1514. package/actions/parsers/income/freeMintNft.ts +0 -46
  1515. package/actions/parsers/income/income.ts +0 -57
  1516. package/actions/parsers/income/index.ts +0 -3
  1517. package/actions/parsers/index.ts +0 -58
  1518. package/actions/parsers/repayment/index.ts +0 -2
  1519. package/actions/parsers/repayment/repayment.ts +0 -47
  1520. package/actions/parsers/repayment/repaymentWithDebt.ts +0 -47
  1521. package/actions/parsers/replace/index.ts +0 -4
  1522. package/actions/parsers/replace/replace.ts +0 -46
  1523. package/actions/parsers/replace/swapNft.ts +0 -46
  1524. package/actions/parsers/replace/unwrap.ts +0 -46
  1525. package/actions/parsers/replace/wrap.ts +0 -46
  1526. package/actions/parsers/trade/buyCrypto.ts +0 -81
  1527. package/actions/parsers/trade/buyNft.ts +0 -208
  1528. package/actions/parsers/trade/index.ts +0 -6
  1529. package/actions/parsers/trade/mintNft.ts +0 -167
  1530. package/actions/parsers/trade/sellCrypto.ts +0 -81
  1531. package/actions/parsers/trade/sellNft.ts +0 -209
  1532. package/actions/parsers/trade/trade.ts +0 -279
  1533. package/actions/parsers/transfer/index.ts +0 -1
  1534. package/actions/parsers/transfer/transfer.ts +0 -32
  1535. package/actions/parsers/types.ts +0 -10
  1536. package/actions/parsers/valuedown/index.ts +0 -1
  1537. package/actions/parsers/valuedown/valuedown.ts +0 -47
  1538. package/actions/parsers/valueup/index.ts +0 -1
  1539. package/actions/parsers/valueup/valueup.ts +0 -47
  1540. package/actions/parsers/withdraw/index.ts +0 -4
  1541. package/actions/parsers/withdraw/removeLiquidity.ts +0 -47
  1542. package/actions/parsers/withdraw/unstake.ts +0 -47
  1543. package/actions/parsers/withdraw/withdraw.ts +0 -47
  1544. package/actions/parsers/withdraw/withdrawWithBond.ts +0 -47
  1545. package/actions/schemas/action.ts +0 -361
  1546. package/actions/schemas/borrow/borrow.ts +0 -33
  1547. package/actions/schemas/borrow/index.ts +0 -1
  1548. package/actions/schemas/crossActionBundle.ts +0 -19
  1549. package/actions/schemas/crossReplace/bridgeFrom.ts +0 -33
  1550. package/actions/schemas/crossReplace/bridgeTo.ts +0 -33
  1551. package/actions/schemas/crossReplace/crossReplace.ts +0 -29
  1552. package/actions/schemas/crossReplace/index.ts +0 -12
  1553. package/actions/schemas/crossTrade/crossTrade.ts +0 -29
  1554. package/actions/schemas/crossTrade/index.ts +0 -4
  1555. package/actions/schemas/default/accountAction.ts +0 -38
  1556. package/actions/schemas/default/index.ts +0 -27
  1557. package/actions/schemas/default/normalAction.ts +0 -29
  1558. package/actions/schemas/default/transfer.ts +0 -154
  1559. package/actions/schemas/default/unions.ts +0 -99
  1560. package/actions/schemas/deposit/addLiquidity.ts +0 -45
  1561. package/actions/schemas/deposit/deposit.ts +0 -33
  1562. package/actions/schemas/deposit/depositWithBond.ts +0 -45
  1563. package/actions/schemas/deposit/index.ts +0 -13
  1564. package/actions/schemas/deposit/stake.ts +0 -33
  1565. package/actions/schemas/fee/fee.ts +0 -33
  1566. package/actions/schemas/fee/index.ts +0 -5
  1567. package/actions/schemas/fee/transactionFee.ts +0 -29
  1568. package/actions/schemas/ignore/approve.ts +0 -27
  1569. package/actions/schemas/ignore/failTx.ts +0 -27
  1570. package/actions/schemas/ignore/ignore.ts +0 -12
  1571. package/actions/schemas/ignore/index.ts +0 -17
  1572. package/actions/schemas/ignore/move.ts +0 -12
  1573. package/actions/schemas/ignore/receiveFromCex.ts +0 -34
  1574. package/actions/schemas/ignore/revoke.ts +0 -27
  1575. package/actions/schemas/ignore/sendToCex.ts +0 -33
  1576. package/actions/schemas/ignore/spam.ts +0 -45
  1577. package/actions/schemas/income/atomicArbitrage.ts +0 -40
  1578. package/actions/schemas/income/freeMintNft.ts +0 -28
  1579. package/actions/schemas/income/income.ts +0 -28
  1580. package/actions/schemas/income/index.ts +0 -11
  1581. package/actions/schemas/income/nftRoyalty.ts +0 -19
  1582. package/actions/schemas/income/swapIncome.ts +0 -19
  1583. package/actions/schemas/index.ts +0 -131
  1584. package/actions/schemas/reduce/index.ts +0 -1
  1585. package/actions/schemas/reduce/reduce.ts +0 -19
  1586. package/actions/schemas/repayment/index.ts +0 -8
  1587. package/actions/schemas/repayment/repayment.ts +0 -33
  1588. package/actions/schemas/repayment/repaymentWithDebt.ts +0 -46
  1589. package/actions/schemas/replace/index.ts +0 -10
  1590. package/actions/schemas/replace/replace.ts +0 -45
  1591. package/actions/schemas/replace/swapNft.ts +0 -29
  1592. package/actions/schemas/replace/unwrap.ts +0 -39
  1593. package/actions/schemas/replace/wrap.ts +0 -39
  1594. package/actions/schemas/trade/buyCrypto.ts +0 -33
  1595. package/actions/schemas/trade/buyNft.ts +0 -42
  1596. package/actions/schemas/trade/index.ts +0 -18
  1597. package/actions/schemas/trade/mintNft.ts +0 -42
  1598. package/actions/schemas/trade/sellCrypto.ts +0 -33
  1599. package/actions/schemas/trade/sellNft.ts +0 -42
  1600. package/actions/schemas/trade/trade.ts +0 -29
  1601. package/actions/schemas/transfer/index.ts +0 -5
  1602. package/actions/schemas/transfer/swapTransfer.ts +0 -19
  1603. package/actions/schemas/transfer/transfer.ts +0 -27
  1604. package/actions/schemas/valuedown/index.ts +0 -4
  1605. package/actions/schemas/valuedown/valuedown.ts +0 -31
  1606. package/actions/schemas/valueup/index.ts +0 -4
  1607. package/actions/schemas/valueup/valueup.ts +0 -31
  1608. package/actions/schemas/withdraw/index.ts +0 -16
  1609. package/actions/schemas/withdraw/removeLiquidity.ts +0 -45
  1610. package/actions/schemas/withdraw/unstake.ts +0 -33
  1611. package/actions/schemas/withdraw/withdraw.ts +0 -33
  1612. package/actions/schemas/withdraw/withdrawWithBond.ts +0 -46
  1613. package/actions/types/action.ts +0 -37
  1614. package/actions/types/addLiquidity.ts +0 -13
  1615. package/actions/types/approve.ts +0 -9
  1616. package/actions/types/atomicArbitrage.ts +0 -13
  1617. package/actions/types/borrow.ts +0 -9
  1618. package/actions/types/bridgeFrom.ts +0 -13
  1619. package/actions/types/bridgeTo.ts +0 -9
  1620. package/actions/types/buyCrypto.ts +0 -11
  1621. package/actions/types/buyNft.ts +0 -9
  1622. package/actions/types/crossActionBundle.ts +0 -4
  1623. package/actions/types/crossReplace.ts +0 -13
  1624. package/actions/types/crossTrade.ts +0 -13
  1625. package/actions/types/default.ts +0 -54
  1626. package/actions/types/deposit.ts +0 -9
  1627. package/actions/types/depositWithBond.ts +0 -13
  1628. package/actions/types/failTx.ts +0 -9
  1629. package/actions/types/fee.ts +0 -6
  1630. package/actions/types/freeMintNft.ts +0 -15
  1631. package/actions/types/ignore.ts +0 -4
  1632. package/actions/types/income.ts +0 -9
  1633. package/actions/types/index.ts +0 -109
  1634. package/actions/types/mintNft.ts +0 -9
  1635. package/actions/types/move.ts +0 -4
  1636. package/actions/types/nftRoyalty.ts +0 -6
  1637. package/actions/types/receiveFromCex.ts +0 -13
  1638. package/actions/types/reduce.ts +0 -4
  1639. package/actions/types/removeLiquidity.ts +0 -13
  1640. package/actions/types/repayment.ts +0 -11
  1641. package/actions/types/repaymentWithDebt.ts +0 -13
  1642. package/actions/types/replace.ts +0 -9
  1643. package/actions/types/revoke.ts +0 -9
  1644. package/actions/types/sellCrypto.ts +0 -13
  1645. package/actions/types/sellNft.ts +0 -9
  1646. package/actions/types/sendToCex.ts +0 -11
  1647. package/actions/types/spam.ts +0 -9
  1648. package/actions/types/stake.ts +0 -9
  1649. package/actions/types/swapIncome.ts +0 -6
  1650. package/actions/types/swapNft.ts +0 -9
  1651. package/actions/types/swapTransfer.ts +0 -6
  1652. package/actions/types/trade.ts +0 -9
  1653. package/actions/types/transactionFee.ts +0 -13
  1654. package/actions/types/transfer.ts +0 -9
  1655. package/actions/types/unstake.ts +0 -9
  1656. package/actions/types/unwrap.ts +0 -9
  1657. package/actions/types/valuedown.ts +0 -11
  1658. package/actions/types/valueup.ts +0 -9
  1659. package/actions/types/withdraw.ts +0 -9
  1660. package/actions/types/withdrawWithBond.ts +0 -13
  1661. package/actions/types/wrap.ts +0 -9
  1662. package/actions/utils/checkIfAccountActionsIsValid.ts +0 -129
  1663. package/actions/utils/createEvidenceNoneAccountActions.ts +0 -309
  1664. package/actions/utils/parseBaseAccountActionToAccountAction.ts +0 -1043
  1665. package/actions/utils/parseBaseNormalActionToNormalAction.ts +0 -874
  1666. package/actions/utils/transfer.ts +0 -57
  1667. package/assets/creates/index.ts +0 -2
  1668. package/assets/definitions/coingeckoCryptoCurrencyDataSource.ts +0 -167
  1669. package/assets/definitions/index.ts +0 -18
  1670. package/assets/externals/coingecko/constants.ts +0 -1
  1671. package/assets/externals/coingecko/getAutoRetry.ts +0 -35
  1672. package/assets/externals/coingecko/getCoinMarketChartRange.ts +0 -88
  1673. package/assets/externals/coingecko/getCoinsMarkets.ts +0 -106
  1674. package/assets/externals/coingecko/index.ts +0 -2
  1675. package/assets/externals/index.ts +0 -1
  1676. package/portfolios/createPortfolio.ts +0 -3
  1677. package/portfolios/index.ts +0 -2
  1678. package/portfolios/type.ts +0 -3
  1679. package/setAccountActionPrices.ts +0 -131
  1680. package/tests/constants.ts +0 -1
  1681. package/tests/index.ts +0 -2
  1682. package/tests/utils.ts +0 -25
@@ -1,4765 +0,0 @@
1
- import { z } from 'zod';
2
- export declare const normalActionBuyCryptoSchema: z.ZodEffects<z.ZodObject<z.objectUtil.extendShape<{
3
- type: z.ZodLiteral<"NormalAction">;
4
- action: z.ZodUnion<[z.ZodLiteral<"add-liquidity">, z.ZodLiteral<"approve">, z.ZodLiteral<"atomic-arbitrage">, z.ZodLiteral<"borrow">, z.ZodLiteral<"bridge-from">, z.ZodLiteral<"bridge-to">, z.ZodLiteral<"buy-nft">, z.ZodLiteral<"buy-crypto">, z.ZodLiteral<"cross-replace">, z.ZodLiteral<"cross-trade">, z.ZodLiteral<"deposit">, z.ZodLiteral<"deposit-with-bond">, z.ZodLiteral<"fail-tx">, z.ZodLiteral<"fee">, z.ZodLiteral<"free-mint-nft">, z.ZodLiteral<"mint-nft">, z.ZodLiteral<"remove-liquidity">, z.ZodLiteral<"repayment">, z.ZodLiteral<"repayment-with-debt">, z.ZodLiteral<"revoke">, z.ZodLiteral<"sell-crypto">, z.ZodLiteral<"spam">, z.ZodLiteral<"stake">, z.ZodLiteral<"swap-nft">, z.ZodLiteral<"trade">, z.ZodLiteral<"transaction-fee">, z.ZodLiteral<"transfer">, z.ZodLiteral<"unstake">, z.ZodLiteral<"unwrap">, z.ZodLiteral<"valuedown">, z.ZodLiteral<"valueup">, z.ZodLiteral<"withdraw">, z.ZodLiteral<"withdraw-with-bond">, z.ZodLiteral<"wrap">]>;
5
- evidence: z.ZodUnion<[z.ZodLiteral<"contract">, z.ZodLiteral<"system-rule">, z.ZodLiteral<"user-rule">, z.ZodLiteral<"manual-check">, z.ZodLiteral<"none">]>;
6
- timestamp: z.ZodNumber;
7
- comment: z.ZodOptional<z.ZodString>;
8
- app: z.ZodOptional<z.ZodEffects<z.ZodObject<{
9
- id: z.ZodString;
10
- categories: z.ZodArray<z.ZodUnion<[z.ZodLiteral<"bridge">, z.ZodLiteral<"cex">, z.ZodLiteral<"cross-chain">, z.ZodLiteral<"dex">, z.ZodLiteral<"gaming">, z.ZodLiteral<"lending">, z.ZodLiteral<"nft-marketplace">, z.ZodLiteral<"other">]>, "many">;
11
- name: z.ZodString;
12
- description: z.ZodOptional<z.ZodString>;
13
- website: z.ZodOptional<z.ZodString>;
14
- icon: z.ZodOptional<z.ZodString>;
15
- }, "strip", z.ZodTypeAny, {
16
- id: string;
17
- name: string;
18
- categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
19
- icon?: string | undefined;
20
- description?: string | undefined;
21
- website?: string | undefined;
22
- }, {
23
- id: string;
24
- name: string;
25
- categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
26
- icon?: string | undefined;
27
- description?: string | undefined;
28
- website?: string | undefined;
29
- }>, {
30
- description: string | undefined;
31
- website: string | undefined;
32
- icon: string | undefined;
33
- id: string;
34
- name: string;
35
- categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
36
- }, {
37
- id: string;
38
- name: string;
39
- categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
40
- icon?: string | undefined;
41
- description?: string | undefined;
42
- website?: string | undefined;
43
- }>>;
44
- transfers: z.ZodArray<z.ZodUnion<[z.ZodEffects<z.ZodObject<z.objectUtil.extendShape<{
45
- from: z.ZodOptional<z.ZodString>;
46
- to: z.ZodOptional<z.ZodString>;
47
- asset: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
48
- type: z.ZodLiteral<"CryptoCurrency">;
49
- id: z.ZodString;
50
- name: z.ZodString;
51
- symbol: z.ZodString;
52
- icon: z.ZodOptional<z.ZodString>;
53
- market: z.ZodEffects<z.ZodObject<{
54
- coingeckoId: z.ZodOptional<z.ZodString>;
55
- marketCapUsd: z.ZodOptional<z.ZodObject<{
56
- value: z.ZodBigInt;
57
- decimals: z.ZodNumber;
58
- }, "strip", z.ZodTypeAny, {
59
- value: bigint;
60
- decimals: number;
61
- }, {
62
- value: bigint;
63
- decimals: number;
64
- }>>;
65
- }, "strip", z.ZodTypeAny, {
66
- coingeckoId?: string | undefined;
67
- marketCapUsd?: {
68
- value: bigint;
69
- decimals: number;
70
- } | undefined;
71
- }, {
72
- coingeckoId?: string | undefined;
73
- marketCapUsd?: {
74
- value: bigint;
75
- decimals: number;
76
- } | undefined;
77
- }>, {
78
- coingeckoId: string | undefined;
79
- marketCapUsd: {
80
- value: bigint;
81
- decimals: number;
82
- } | undefined;
83
- }, {
84
- coingeckoId?: string | undefined;
85
- marketCapUsd?: {
86
- value: bigint;
87
- decimals: number;
88
- } | undefined;
89
- }>;
90
- priceDatasourceId: z.ZodOptional<z.ZodString>;
91
- updatedAt: z.ZodNumber;
92
- }, "strip", z.ZodTypeAny, {
93
- symbol: string;
94
- type: "CryptoCurrency";
95
- id: string;
96
- name: string;
97
- market: {
98
- coingeckoId: string | undefined;
99
- marketCapUsd: {
100
- value: bigint;
101
- decimals: number;
102
- } | undefined;
103
- };
104
- updatedAt: number;
105
- icon?: string | undefined;
106
- priceDatasourceId?: string | undefined;
107
- }, {
108
- symbol: string;
109
- type: "CryptoCurrency";
110
- id: string;
111
- name: string;
112
- market: {
113
- coingeckoId?: string | undefined;
114
- marketCapUsd?: {
115
- value: bigint;
116
- decimals: number;
117
- } | undefined;
118
- };
119
- updatedAt: number;
120
- icon?: string | undefined;
121
- priceDatasourceId?: string | undefined;
122
- }>, {
123
- icon: string | undefined;
124
- priceDatasourceId: string | undefined;
125
- symbol: string;
126
- type: "CryptoCurrency";
127
- id: string;
128
- name: string;
129
- market: {
130
- coingeckoId: string | undefined;
131
- marketCapUsd: {
132
- value: bigint;
133
- decimals: number;
134
- } | undefined;
135
- };
136
- updatedAt: number;
137
- }, {
138
- symbol: string;
139
- type: "CryptoCurrency";
140
- id: string;
141
- name: string;
142
- market: {
143
- coingeckoId?: string | undefined;
144
- marketCapUsd?: {
145
- value: bigint;
146
- decimals: number;
147
- } | undefined;
148
- };
149
- updatedAt: number;
150
- icon?: string | undefined;
151
- priceDatasourceId?: string | undefined;
152
- }>, z.ZodEffects<z.ZodObject<{
153
- type: z.ZodLiteral<"FiatCurrency">;
154
- id: z.ZodUnion<[z.ZodLiteral<"cny">, z.ZodLiteral<"eur">, z.ZodLiteral<"idr">, z.ZodLiteral<"jpy">, z.ZodLiteral<"krw">, z.ZodLiteral<"rub">, z.ZodLiteral<"twd">, z.ZodLiteral<"usd">]>;
155
- name: z.ZodString;
156
- symbol: z.ZodString;
157
- icon: z.ZodOptional<z.ZodString>;
158
- }, "strip", z.ZodTypeAny, {
159
- symbol: string;
160
- type: "FiatCurrency";
161
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
162
- name: string;
163
- icon?: string | undefined;
164
- }, {
165
- symbol: string;
166
- type: "FiatCurrency";
167
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
168
- name: string;
169
- icon?: string | undefined;
170
- }>, {
171
- icon: string | undefined;
172
- symbol: string;
173
- type: "FiatCurrency";
174
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
175
- name: string;
176
- }, {
177
- symbol: string;
178
- type: "FiatCurrency";
179
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
180
- name: string;
181
- icon?: string | undefined;
182
- }>, z.ZodEffects<z.ZodObject<{
183
- type: z.ZodLiteral<"Nft">;
184
- id: z.ZodString;
185
- name: z.ZodOptional<z.ZodString>;
186
- symbol: z.ZodOptional<z.ZodString>;
187
- image: z.ZodOptional<z.ZodString>;
188
- metadata: z.ZodOptional<z.ZodString>;
189
- updatedAt: z.ZodNumber;
190
- }, "strip", z.ZodTypeAny, {
191
- type: "Nft";
192
- id: string;
193
- updatedAt: number;
194
- symbol?: string | undefined;
195
- name?: string | undefined;
196
- image?: string | undefined;
197
- metadata?: string | undefined;
198
- }, {
199
- type: "Nft";
200
- id: string;
201
- updatedAt: number;
202
- symbol?: string | undefined;
203
- name?: string | undefined;
204
- image?: string | undefined;
205
- metadata?: string | undefined;
206
- }>, {
207
- name: string | undefined;
208
- symbol: string | undefined;
209
- image: string | undefined;
210
- metadata: string | undefined;
211
- type: "Nft";
212
- id: string;
213
- updatedAt: number;
214
- }, {
215
- type: "Nft";
216
- id: string;
217
- updatedAt: number;
218
- symbol?: string | undefined;
219
- name?: string | undefined;
220
- image?: string | undefined;
221
- metadata?: string | undefined;
222
- }>]>;
223
- amount: z.ZodObject<{
224
- value: z.ZodBigInt;
225
- decimals: z.ZodNumber;
226
- }, "strip", z.ZodTypeAny, {
227
- value: bigint;
228
- decimals: number;
229
- }, {
230
- value: bigint;
231
- decimals: number;
232
- }>;
233
- price: z.ZodOptional<z.ZodObject<{
234
- cryptoCurrencyId: z.ZodString;
235
- fiatCurrencyId: z.ZodString;
236
- price: z.ZodObject<{
237
- value: z.ZodBigInt;
238
- decimals: z.ZodNumber;
239
- }, "strip", z.ZodTypeAny, {
240
- value: bigint;
241
- decimals: number;
242
- }, {
243
- value: bigint;
244
- decimals: number;
245
- }>;
246
- timestamp: z.ZodNumber;
247
- }, "strip", z.ZodTypeAny, {
248
- cryptoCurrencyId: string;
249
- fiatCurrencyId: string;
250
- price: {
251
- value: bigint;
252
- decimals: number;
253
- };
254
- timestamp: number;
255
- }, {
256
- cryptoCurrencyId: string;
257
- fiatCurrencyId: string;
258
- price: {
259
- value: bigint;
260
- decimals: number;
261
- };
262
- timestamp: number;
263
- }>>;
264
- }, {
265
- direction: z.ZodLiteral<"in">;
266
- }>, "strip", z.ZodTypeAny, {
267
- asset: {
268
- icon: string | undefined;
269
- priceDatasourceId: string | undefined;
270
- symbol: string;
271
- type: "CryptoCurrency";
272
- id: string;
273
- name: string;
274
- market: {
275
- coingeckoId: string | undefined;
276
- marketCapUsd: {
277
- value: bigint;
278
- decimals: number;
279
- } | undefined;
280
- };
281
- updatedAt: number;
282
- } | {
283
- icon: string | undefined;
284
- symbol: string;
285
- type: "FiatCurrency";
286
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
287
- name: string;
288
- } | {
289
- name: string | undefined;
290
- symbol: string | undefined;
291
- image: string | undefined;
292
- metadata: string | undefined;
293
- type: "Nft";
294
- id: string;
295
- updatedAt: number;
296
- };
297
- amount: {
298
- value: bigint;
299
- decimals: number;
300
- };
301
- direction: "in";
302
- price?: {
303
- cryptoCurrencyId: string;
304
- fiatCurrencyId: string;
305
- price: {
306
- value: bigint;
307
- decimals: number;
308
- };
309
- timestamp: number;
310
- } | undefined;
311
- from?: string | undefined;
312
- to?: string | undefined;
313
- }, {
314
- asset: {
315
- symbol: string;
316
- type: "CryptoCurrency";
317
- id: string;
318
- name: string;
319
- market: {
320
- coingeckoId?: string | undefined;
321
- marketCapUsd?: {
322
- value: bigint;
323
- decimals: number;
324
- } | undefined;
325
- };
326
- updatedAt: number;
327
- icon?: string | undefined;
328
- priceDatasourceId?: string | undefined;
329
- } | {
330
- symbol: string;
331
- type: "FiatCurrency";
332
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
333
- name: string;
334
- icon?: string | undefined;
335
- } | {
336
- type: "Nft";
337
- id: string;
338
- updatedAt: number;
339
- symbol?: string | undefined;
340
- name?: string | undefined;
341
- image?: string | undefined;
342
- metadata?: string | undefined;
343
- };
344
- amount: {
345
- value: bigint;
346
- decimals: number;
347
- };
348
- direction: "in";
349
- price?: {
350
- cryptoCurrencyId: string;
351
- fiatCurrencyId: string;
352
- price: {
353
- value: bigint;
354
- decimals: number;
355
- };
356
- timestamp: number;
357
- } | undefined;
358
- from?: string | undefined;
359
- to?: string | undefined;
360
- }>, {
361
- from: string | undefined;
362
- to: string | undefined;
363
- price: {
364
- cryptoCurrencyId: string;
365
- fiatCurrencyId: string;
366
- price: {
367
- value: bigint;
368
- decimals: number;
369
- };
370
- timestamp: number;
371
- } | undefined;
372
- asset: {
373
- icon: string | undefined;
374
- priceDatasourceId: string | undefined;
375
- symbol: string;
376
- type: "CryptoCurrency";
377
- id: string;
378
- name: string;
379
- market: {
380
- coingeckoId: string | undefined;
381
- marketCapUsd: {
382
- value: bigint;
383
- decimals: number;
384
- } | undefined;
385
- };
386
- updatedAt: number;
387
- } | {
388
- icon: string | undefined;
389
- symbol: string;
390
- type: "FiatCurrency";
391
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
392
- name: string;
393
- } | {
394
- name: string | undefined;
395
- symbol: string | undefined;
396
- image: string | undefined;
397
- metadata: string | undefined;
398
- type: "Nft";
399
- id: string;
400
- updatedAt: number;
401
- };
402
- amount: {
403
- value: bigint;
404
- decimals: number;
405
- };
406
- direction: "in";
407
- }, {
408
- asset: {
409
- symbol: string;
410
- type: "CryptoCurrency";
411
- id: string;
412
- name: string;
413
- market: {
414
- coingeckoId?: string | undefined;
415
- marketCapUsd?: {
416
- value: bigint;
417
- decimals: number;
418
- } | undefined;
419
- };
420
- updatedAt: number;
421
- icon?: string | undefined;
422
- priceDatasourceId?: string | undefined;
423
- } | {
424
- symbol: string;
425
- type: "FiatCurrency";
426
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
427
- name: string;
428
- icon?: string | undefined;
429
- } | {
430
- type: "Nft";
431
- id: string;
432
- updatedAt: number;
433
- symbol?: string | undefined;
434
- name?: string | undefined;
435
- image?: string | undefined;
436
- metadata?: string | undefined;
437
- };
438
- amount: {
439
- value: bigint;
440
- decimals: number;
441
- };
442
- direction: "in";
443
- price?: {
444
- cryptoCurrencyId: string;
445
- fiatCurrencyId: string;
446
- price: {
447
- value: bigint;
448
- decimals: number;
449
- };
450
- timestamp: number;
451
- } | undefined;
452
- from?: string | undefined;
453
- to?: string | undefined;
454
- }>, z.ZodEffects<z.ZodObject<z.objectUtil.extendShape<{
455
- from: z.ZodOptional<z.ZodString>;
456
- to: z.ZodOptional<z.ZodString>;
457
- asset: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
458
- type: z.ZodLiteral<"CryptoCurrency">;
459
- id: z.ZodString;
460
- name: z.ZodString;
461
- symbol: z.ZodString;
462
- icon: z.ZodOptional<z.ZodString>;
463
- market: z.ZodEffects<z.ZodObject<{
464
- coingeckoId: z.ZodOptional<z.ZodString>;
465
- marketCapUsd: z.ZodOptional<z.ZodObject<{
466
- value: z.ZodBigInt;
467
- decimals: z.ZodNumber;
468
- }, "strip", z.ZodTypeAny, {
469
- value: bigint;
470
- decimals: number;
471
- }, {
472
- value: bigint;
473
- decimals: number;
474
- }>>;
475
- }, "strip", z.ZodTypeAny, {
476
- coingeckoId?: string | undefined;
477
- marketCapUsd?: {
478
- value: bigint;
479
- decimals: number;
480
- } | undefined;
481
- }, {
482
- coingeckoId?: string | undefined;
483
- marketCapUsd?: {
484
- value: bigint;
485
- decimals: number;
486
- } | undefined;
487
- }>, {
488
- coingeckoId: string | undefined;
489
- marketCapUsd: {
490
- value: bigint;
491
- decimals: number;
492
- } | undefined;
493
- }, {
494
- coingeckoId?: string | undefined;
495
- marketCapUsd?: {
496
- value: bigint;
497
- decimals: number;
498
- } | undefined;
499
- }>;
500
- priceDatasourceId: z.ZodOptional<z.ZodString>;
501
- updatedAt: z.ZodNumber;
502
- }, "strip", z.ZodTypeAny, {
503
- symbol: string;
504
- type: "CryptoCurrency";
505
- id: string;
506
- name: string;
507
- market: {
508
- coingeckoId: string | undefined;
509
- marketCapUsd: {
510
- value: bigint;
511
- decimals: number;
512
- } | undefined;
513
- };
514
- updatedAt: number;
515
- icon?: string | undefined;
516
- priceDatasourceId?: string | undefined;
517
- }, {
518
- symbol: string;
519
- type: "CryptoCurrency";
520
- id: string;
521
- name: string;
522
- market: {
523
- coingeckoId?: string | undefined;
524
- marketCapUsd?: {
525
- value: bigint;
526
- decimals: number;
527
- } | undefined;
528
- };
529
- updatedAt: number;
530
- icon?: string | undefined;
531
- priceDatasourceId?: string | undefined;
532
- }>, {
533
- icon: string | undefined;
534
- priceDatasourceId: string | undefined;
535
- symbol: string;
536
- type: "CryptoCurrency";
537
- id: string;
538
- name: string;
539
- market: {
540
- coingeckoId: string | undefined;
541
- marketCapUsd: {
542
- value: bigint;
543
- decimals: number;
544
- } | undefined;
545
- };
546
- updatedAt: number;
547
- }, {
548
- symbol: string;
549
- type: "CryptoCurrency";
550
- id: string;
551
- name: string;
552
- market: {
553
- coingeckoId?: string | undefined;
554
- marketCapUsd?: {
555
- value: bigint;
556
- decimals: number;
557
- } | undefined;
558
- };
559
- updatedAt: number;
560
- icon?: string | undefined;
561
- priceDatasourceId?: string | undefined;
562
- }>, z.ZodEffects<z.ZodObject<{
563
- type: z.ZodLiteral<"FiatCurrency">;
564
- id: z.ZodUnion<[z.ZodLiteral<"cny">, z.ZodLiteral<"eur">, z.ZodLiteral<"idr">, z.ZodLiteral<"jpy">, z.ZodLiteral<"krw">, z.ZodLiteral<"rub">, z.ZodLiteral<"twd">, z.ZodLiteral<"usd">]>;
565
- name: z.ZodString;
566
- symbol: z.ZodString;
567
- icon: z.ZodOptional<z.ZodString>;
568
- }, "strip", z.ZodTypeAny, {
569
- symbol: string;
570
- type: "FiatCurrency";
571
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
572
- name: string;
573
- icon?: string | undefined;
574
- }, {
575
- symbol: string;
576
- type: "FiatCurrency";
577
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
578
- name: string;
579
- icon?: string | undefined;
580
- }>, {
581
- icon: string | undefined;
582
- symbol: string;
583
- type: "FiatCurrency";
584
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
585
- name: string;
586
- }, {
587
- symbol: string;
588
- type: "FiatCurrency";
589
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
590
- name: string;
591
- icon?: string | undefined;
592
- }>, z.ZodEffects<z.ZodObject<{
593
- type: z.ZodLiteral<"Nft">;
594
- id: z.ZodString;
595
- name: z.ZodOptional<z.ZodString>;
596
- symbol: z.ZodOptional<z.ZodString>;
597
- image: z.ZodOptional<z.ZodString>;
598
- metadata: z.ZodOptional<z.ZodString>;
599
- updatedAt: z.ZodNumber;
600
- }, "strip", z.ZodTypeAny, {
601
- type: "Nft";
602
- id: string;
603
- updatedAt: number;
604
- symbol?: string | undefined;
605
- name?: string | undefined;
606
- image?: string | undefined;
607
- metadata?: string | undefined;
608
- }, {
609
- type: "Nft";
610
- id: string;
611
- updatedAt: number;
612
- symbol?: string | undefined;
613
- name?: string | undefined;
614
- image?: string | undefined;
615
- metadata?: string | undefined;
616
- }>, {
617
- name: string | undefined;
618
- symbol: string | undefined;
619
- image: string | undefined;
620
- metadata: string | undefined;
621
- type: "Nft";
622
- id: string;
623
- updatedAt: number;
624
- }, {
625
- type: "Nft";
626
- id: string;
627
- updatedAt: number;
628
- symbol?: string | undefined;
629
- name?: string | undefined;
630
- image?: string | undefined;
631
- metadata?: string | undefined;
632
- }>]>;
633
- amount: z.ZodObject<{
634
- value: z.ZodBigInt;
635
- decimals: z.ZodNumber;
636
- }, "strip", z.ZodTypeAny, {
637
- value: bigint;
638
- decimals: number;
639
- }, {
640
- value: bigint;
641
- decimals: number;
642
- }>;
643
- price: z.ZodOptional<z.ZodObject<{
644
- cryptoCurrencyId: z.ZodString;
645
- fiatCurrencyId: z.ZodString;
646
- price: z.ZodObject<{
647
- value: z.ZodBigInt;
648
- decimals: z.ZodNumber;
649
- }, "strip", z.ZodTypeAny, {
650
- value: bigint;
651
- decimals: number;
652
- }, {
653
- value: bigint;
654
- decimals: number;
655
- }>;
656
- timestamp: z.ZodNumber;
657
- }, "strip", z.ZodTypeAny, {
658
- cryptoCurrencyId: string;
659
- fiatCurrencyId: string;
660
- price: {
661
- value: bigint;
662
- decimals: number;
663
- };
664
- timestamp: number;
665
- }, {
666
- cryptoCurrencyId: string;
667
- fiatCurrencyId: string;
668
- price: {
669
- value: bigint;
670
- decimals: number;
671
- };
672
- timestamp: number;
673
- }>>;
674
- }, {
675
- direction: z.ZodLiteral<"out">;
676
- }>, "strip", z.ZodTypeAny, {
677
- asset: {
678
- icon: string | undefined;
679
- priceDatasourceId: string | undefined;
680
- symbol: string;
681
- type: "CryptoCurrency";
682
- id: string;
683
- name: string;
684
- market: {
685
- coingeckoId: string | undefined;
686
- marketCapUsd: {
687
- value: bigint;
688
- decimals: number;
689
- } | undefined;
690
- };
691
- updatedAt: number;
692
- } | {
693
- icon: string | undefined;
694
- symbol: string;
695
- type: "FiatCurrency";
696
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
697
- name: string;
698
- } | {
699
- name: string | undefined;
700
- symbol: string | undefined;
701
- image: string | undefined;
702
- metadata: string | undefined;
703
- type: "Nft";
704
- id: string;
705
- updatedAt: number;
706
- };
707
- amount: {
708
- value: bigint;
709
- decimals: number;
710
- };
711
- direction: "out";
712
- price?: {
713
- cryptoCurrencyId: string;
714
- fiatCurrencyId: string;
715
- price: {
716
- value: bigint;
717
- decimals: number;
718
- };
719
- timestamp: number;
720
- } | undefined;
721
- from?: string | undefined;
722
- to?: string | undefined;
723
- }, {
724
- asset: {
725
- symbol: string;
726
- type: "CryptoCurrency";
727
- id: string;
728
- name: string;
729
- market: {
730
- coingeckoId?: string | undefined;
731
- marketCapUsd?: {
732
- value: bigint;
733
- decimals: number;
734
- } | undefined;
735
- };
736
- updatedAt: number;
737
- icon?: string | undefined;
738
- priceDatasourceId?: string | undefined;
739
- } | {
740
- symbol: string;
741
- type: "FiatCurrency";
742
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
743
- name: string;
744
- icon?: string | undefined;
745
- } | {
746
- type: "Nft";
747
- id: string;
748
- updatedAt: number;
749
- symbol?: string | undefined;
750
- name?: string | undefined;
751
- image?: string | undefined;
752
- metadata?: string | undefined;
753
- };
754
- amount: {
755
- value: bigint;
756
- decimals: number;
757
- };
758
- direction: "out";
759
- price?: {
760
- cryptoCurrencyId: string;
761
- fiatCurrencyId: string;
762
- price: {
763
- value: bigint;
764
- decimals: number;
765
- };
766
- timestamp: number;
767
- } | undefined;
768
- from?: string | undefined;
769
- to?: string | undefined;
770
- }>, {
771
- from: string | undefined;
772
- to: string | undefined;
773
- price: {
774
- cryptoCurrencyId: string;
775
- fiatCurrencyId: string;
776
- price: {
777
- value: bigint;
778
- decimals: number;
779
- };
780
- timestamp: number;
781
- } | undefined;
782
- asset: {
783
- icon: string | undefined;
784
- priceDatasourceId: string | undefined;
785
- symbol: string;
786
- type: "CryptoCurrency";
787
- id: string;
788
- name: string;
789
- market: {
790
- coingeckoId: string | undefined;
791
- marketCapUsd: {
792
- value: bigint;
793
- decimals: number;
794
- } | undefined;
795
- };
796
- updatedAt: number;
797
- } | {
798
- icon: string | undefined;
799
- symbol: string;
800
- type: "FiatCurrency";
801
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
802
- name: string;
803
- } | {
804
- name: string | undefined;
805
- symbol: string | undefined;
806
- image: string | undefined;
807
- metadata: string | undefined;
808
- type: "Nft";
809
- id: string;
810
- updatedAt: number;
811
- };
812
- amount: {
813
- value: bigint;
814
- decimals: number;
815
- };
816
- direction: "out";
817
- }, {
818
- asset: {
819
- symbol: string;
820
- type: "CryptoCurrency";
821
- id: string;
822
- name: string;
823
- market: {
824
- coingeckoId?: string | undefined;
825
- marketCapUsd?: {
826
- value: bigint;
827
- decimals: number;
828
- } | undefined;
829
- };
830
- updatedAt: number;
831
- icon?: string | undefined;
832
- priceDatasourceId?: string | undefined;
833
- } | {
834
- symbol: string;
835
- type: "FiatCurrency";
836
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
837
- name: string;
838
- icon?: string | undefined;
839
- } | {
840
- type: "Nft";
841
- id: string;
842
- updatedAt: number;
843
- symbol?: string | undefined;
844
- name?: string | undefined;
845
- image?: string | undefined;
846
- metadata?: string | undefined;
847
- };
848
- amount: {
849
- value: bigint;
850
- decimals: number;
851
- };
852
- direction: "out";
853
- price?: {
854
- cryptoCurrencyId: string;
855
- fiatCurrencyId: string;
856
- price: {
857
- value: bigint;
858
- decimals: number;
859
- };
860
- timestamp: number;
861
- } | undefined;
862
- from?: string | undefined;
863
- to?: string | undefined;
864
- }>, z.ZodEffects<z.ZodObject<z.objectUtil.extendShape<{
865
- from: z.ZodOptional<z.ZodString>;
866
- to: z.ZodOptional<z.ZodString>;
867
- asset: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
868
- type: z.ZodLiteral<"CryptoCurrency">;
869
- id: z.ZodString;
870
- name: z.ZodString;
871
- symbol: z.ZodString;
872
- icon: z.ZodOptional<z.ZodString>;
873
- market: z.ZodEffects<z.ZodObject<{
874
- coingeckoId: z.ZodOptional<z.ZodString>;
875
- marketCapUsd: z.ZodOptional<z.ZodObject<{
876
- value: z.ZodBigInt;
877
- decimals: z.ZodNumber;
878
- }, "strip", z.ZodTypeAny, {
879
- value: bigint;
880
- decimals: number;
881
- }, {
882
- value: bigint;
883
- decimals: number;
884
- }>>;
885
- }, "strip", z.ZodTypeAny, {
886
- coingeckoId?: string | undefined;
887
- marketCapUsd?: {
888
- value: bigint;
889
- decimals: number;
890
- } | undefined;
891
- }, {
892
- coingeckoId?: string | undefined;
893
- marketCapUsd?: {
894
- value: bigint;
895
- decimals: number;
896
- } | undefined;
897
- }>, {
898
- coingeckoId: string | undefined;
899
- marketCapUsd: {
900
- value: bigint;
901
- decimals: number;
902
- } | undefined;
903
- }, {
904
- coingeckoId?: string | undefined;
905
- marketCapUsd?: {
906
- value: bigint;
907
- decimals: number;
908
- } | undefined;
909
- }>;
910
- priceDatasourceId: z.ZodOptional<z.ZodString>;
911
- updatedAt: z.ZodNumber;
912
- }, "strip", z.ZodTypeAny, {
913
- symbol: string;
914
- type: "CryptoCurrency";
915
- id: string;
916
- name: string;
917
- market: {
918
- coingeckoId: string | undefined;
919
- marketCapUsd: {
920
- value: bigint;
921
- decimals: number;
922
- } | undefined;
923
- };
924
- updatedAt: number;
925
- icon?: string | undefined;
926
- priceDatasourceId?: string | undefined;
927
- }, {
928
- symbol: string;
929
- type: "CryptoCurrency";
930
- id: string;
931
- name: string;
932
- market: {
933
- coingeckoId?: string | undefined;
934
- marketCapUsd?: {
935
- value: bigint;
936
- decimals: number;
937
- } | undefined;
938
- };
939
- updatedAt: number;
940
- icon?: string | undefined;
941
- priceDatasourceId?: string | undefined;
942
- }>, {
943
- icon: string | undefined;
944
- priceDatasourceId: string | undefined;
945
- symbol: string;
946
- type: "CryptoCurrency";
947
- id: string;
948
- name: string;
949
- market: {
950
- coingeckoId: string | undefined;
951
- marketCapUsd: {
952
- value: bigint;
953
- decimals: number;
954
- } | undefined;
955
- };
956
- updatedAt: number;
957
- }, {
958
- symbol: string;
959
- type: "CryptoCurrency";
960
- id: string;
961
- name: string;
962
- market: {
963
- coingeckoId?: string | undefined;
964
- marketCapUsd?: {
965
- value: bigint;
966
- decimals: number;
967
- } | undefined;
968
- };
969
- updatedAt: number;
970
- icon?: string | undefined;
971
- priceDatasourceId?: string | undefined;
972
- }>, z.ZodEffects<z.ZodObject<{
973
- type: z.ZodLiteral<"FiatCurrency">;
974
- id: z.ZodUnion<[z.ZodLiteral<"cny">, z.ZodLiteral<"eur">, z.ZodLiteral<"idr">, z.ZodLiteral<"jpy">, z.ZodLiteral<"krw">, z.ZodLiteral<"rub">, z.ZodLiteral<"twd">, z.ZodLiteral<"usd">]>;
975
- name: z.ZodString;
976
- symbol: z.ZodString;
977
- icon: z.ZodOptional<z.ZodString>;
978
- }, "strip", z.ZodTypeAny, {
979
- symbol: string;
980
- type: "FiatCurrency";
981
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
982
- name: string;
983
- icon?: string | undefined;
984
- }, {
985
- symbol: string;
986
- type: "FiatCurrency";
987
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
988
- name: string;
989
- icon?: string | undefined;
990
- }>, {
991
- icon: string | undefined;
992
- symbol: string;
993
- type: "FiatCurrency";
994
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
995
- name: string;
996
- }, {
997
- symbol: string;
998
- type: "FiatCurrency";
999
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
1000
- name: string;
1001
- icon?: string | undefined;
1002
- }>, z.ZodEffects<z.ZodObject<{
1003
- type: z.ZodLiteral<"Nft">;
1004
- id: z.ZodString;
1005
- name: z.ZodOptional<z.ZodString>;
1006
- symbol: z.ZodOptional<z.ZodString>;
1007
- image: z.ZodOptional<z.ZodString>;
1008
- metadata: z.ZodOptional<z.ZodString>;
1009
- updatedAt: z.ZodNumber;
1010
- }, "strip", z.ZodTypeAny, {
1011
- type: "Nft";
1012
- id: string;
1013
- updatedAt: number;
1014
- symbol?: string | undefined;
1015
- name?: string | undefined;
1016
- image?: string | undefined;
1017
- metadata?: string | undefined;
1018
- }, {
1019
- type: "Nft";
1020
- id: string;
1021
- updatedAt: number;
1022
- symbol?: string | undefined;
1023
- name?: string | undefined;
1024
- image?: string | undefined;
1025
- metadata?: string | undefined;
1026
- }>, {
1027
- name: string | undefined;
1028
- symbol: string | undefined;
1029
- image: string | undefined;
1030
- metadata: string | undefined;
1031
- type: "Nft";
1032
- id: string;
1033
- updatedAt: number;
1034
- }, {
1035
- type: "Nft";
1036
- id: string;
1037
- updatedAt: number;
1038
- symbol?: string | undefined;
1039
- name?: string | undefined;
1040
- image?: string | undefined;
1041
- metadata?: string | undefined;
1042
- }>]>;
1043
- amount: z.ZodObject<{
1044
- value: z.ZodBigInt;
1045
- decimals: z.ZodNumber;
1046
- }, "strip", z.ZodTypeAny, {
1047
- value: bigint;
1048
- decimals: number;
1049
- }, {
1050
- value: bigint;
1051
- decimals: number;
1052
- }>;
1053
- price: z.ZodOptional<z.ZodObject<{
1054
- cryptoCurrencyId: z.ZodString;
1055
- fiatCurrencyId: z.ZodString;
1056
- price: z.ZodObject<{
1057
- value: z.ZodBigInt;
1058
- decimals: z.ZodNumber;
1059
- }, "strip", z.ZodTypeAny, {
1060
- value: bigint;
1061
- decimals: number;
1062
- }, {
1063
- value: bigint;
1064
- decimals: number;
1065
- }>;
1066
- timestamp: z.ZodNumber;
1067
- }, "strip", z.ZodTypeAny, {
1068
- cryptoCurrencyId: string;
1069
- fiatCurrencyId: string;
1070
- price: {
1071
- value: bigint;
1072
- decimals: number;
1073
- };
1074
- timestamp: number;
1075
- }, {
1076
- cryptoCurrencyId: string;
1077
- fiatCurrencyId: string;
1078
- price: {
1079
- value: bigint;
1080
- decimals: number;
1081
- };
1082
- timestamp: number;
1083
- }>>;
1084
- }, {
1085
- direction: z.ZodLiteral<"none">;
1086
- }>, "strip", z.ZodTypeAny, {
1087
- asset: {
1088
- icon: string | undefined;
1089
- priceDatasourceId: string | undefined;
1090
- symbol: string;
1091
- type: "CryptoCurrency";
1092
- id: string;
1093
- name: string;
1094
- market: {
1095
- coingeckoId: string | undefined;
1096
- marketCapUsd: {
1097
- value: bigint;
1098
- decimals: number;
1099
- } | undefined;
1100
- };
1101
- updatedAt: number;
1102
- } | {
1103
- icon: string | undefined;
1104
- symbol: string;
1105
- type: "FiatCurrency";
1106
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
1107
- name: string;
1108
- } | {
1109
- name: string | undefined;
1110
- symbol: string | undefined;
1111
- image: string | undefined;
1112
- metadata: string | undefined;
1113
- type: "Nft";
1114
- id: string;
1115
- updatedAt: number;
1116
- };
1117
- amount: {
1118
- value: bigint;
1119
- decimals: number;
1120
- };
1121
- direction: "none";
1122
- price?: {
1123
- cryptoCurrencyId: string;
1124
- fiatCurrencyId: string;
1125
- price: {
1126
- value: bigint;
1127
- decimals: number;
1128
- };
1129
- timestamp: number;
1130
- } | undefined;
1131
- from?: string | undefined;
1132
- to?: string | undefined;
1133
- }, {
1134
- asset: {
1135
- symbol: string;
1136
- type: "CryptoCurrency";
1137
- id: string;
1138
- name: string;
1139
- market: {
1140
- coingeckoId?: string | undefined;
1141
- marketCapUsd?: {
1142
- value: bigint;
1143
- decimals: number;
1144
- } | undefined;
1145
- };
1146
- updatedAt: number;
1147
- icon?: string | undefined;
1148
- priceDatasourceId?: string | undefined;
1149
- } | {
1150
- symbol: string;
1151
- type: "FiatCurrency";
1152
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
1153
- name: string;
1154
- icon?: string | undefined;
1155
- } | {
1156
- type: "Nft";
1157
- id: string;
1158
- updatedAt: number;
1159
- symbol?: string | undefined;
1160
- name?: string | undefined;
1161
- image?: string | undefined;
1162
- metadata?: string | undefined;
1163
- };
1164
- amount: {
1165
- value: bigint;
1166
- decimals: number;
1167
- };
1168
- direction: "none";
1169
- price?: {
1170
- cryptoCurrencyId: string;
1171
- fiatCurrencyId: string;
1172
- price: {
1173
- value: bigint;
1174
- decimals: number;
1175
- };
1176
- timestamp: number;
1177
- } | undefined;
1178
- from?: string | undefined;
1179
- to?: string | undefined;
1180
- }>, {
1181
- from: string | undefined;
1182
- to: string | undefined;
1183
- price: {
1184
- cryptoCurrencyId: string;
1185
- fiatCurrencyId: string;
1186
- price: {
1187
- value: bigint;
1188
- decimals: number;
1189
- };
1190
- timestamp: number;
1191
- } | undefined;
1192
- asset: {
1193
- icon: string | undefined;
1194
- priceDatasourceId: string | undefined;
1195
- symbol: string;
1196
- type: "CryptoCurrency";
1197
- id: string;
1198
- name: string;
1199
- market: {
1200
- coingeckoId: string | undefined;
1201
- marketCapUsd: {
1202
- value: bigint;
1203
- decimals: number;
1204
- } | undefined;
1205
- };
1206
- updatedAt: number;
1207
- } | {
1208
- icon: string | undefined;
1209
- symbol: string;
1210
- type: "FiatCurrency";
1211
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
1212
- name: string;
1213
- } | {
1214
- name: string | undefined;
1215
- symbol: string | undefined;
1216
- image: string | undefined;
1217
- metadata: string | undefined;
1218
- type: "Nft";
1219
- id: string;
1220
- updatedAt: number;
1221
- };
1222
- amount: {
1223
- value: bigint;
1224
- decimals: number;
1225
- };
1226
- direction: "none";
1227
- }, {
1228
- asset: {
1229
- symbol: string;
1230
- type: "CryptoCurrency";
1231
- id: string;
1232
- name: string;
1233
- market: {
1234
- coingeckoId?: string | undefined;
1235
- marketCapUsd?: {
1236
- value: bigint;
1237
- decimals: number;
1238
- } | undefined;
1239
- };
1240
- updatedAt: number;
1241
- icon?: string | undefined;
1242
- priceDatasourceId?: string | undefined;
1243
- } | {
1244
- symbol: string;
1245
- type: "FiatCurrency";
1246
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
1247
- name: string;
1248
- icon?: string | undefined;
1249
- } | {
1250
- type: "Nft";
1251
- id: string;
1252
- updatedAt: number;
1253
- symbol?: string | undefined;
1254
- name?: string | undefined;
1255
- image?: string | undefined;
1256
- metadata?: string | undefined;
1257
- };
1258
- amount: {
1259
- value: bigint;
1260
- decimals: number;
1261
- };
1262
- direction: "none";
1263
- price?: {
1264
- cryptoCurrencyId: string;
1265
- fiatCurrencyId: string;
1266
- price: {
1267
- value: bigint;
1268
- decimals: number;
1269
- };
1270
- timestamp: number;
1271
- } | undefined;
1272
- from?: string | undefined;
1273
- to?: string | undefined;
1274
- }>]>, "many">;
1275
- }, {
1276
- action: z.ZodLiteral<"buy-crypto">;
1277
- transfers: z.ZodArray<z.ZodUnion<[z.ZodEffects<z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
1278
- from: z.ZodOptional<z.ZodString>;
1279
- to: z.ZodOptional<z.ZodString>;
1280
- asset: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
1281
- type: z.ZodLiteral<"CryptoCurrency">;
1282
- id: z.ZodString;
1283
- name: z.ZodString;
1284
- symbol: z.ZodString;
1285
- icon: z.ZodOptional<z.ZodString>;
1286
- market: z.ZodEffects<z.ZodObject<{
1287
- coingeckoId: z.ZodOptional<z.ZodString>;
1288
- marketCapUsd: z.ZodOptional<z.ZodObject<{
1289
- value: z.ZodBigInt;
1290
- decimals: z.ZodNumber;
1291
- }, "strip", z.ZodTypeAny, {
1292
- value: bigint;
1293
- decimals: number;
1294
- }, {
1295
- value: bigint;
1296
- decimals: number;
1297
- }>>;
1298
- }, "strip", z.ZodTypeAny, {
1299
- coingeckoId?: string | undefined;
1300
- marketCapUsd?: {
1301
- value: bigint;
1302
- decimals: number;
1303
- } | undefined;
1304
- }, {
1305
- coingeckoId?: string | undefined;
1306
- marketCapUsd?: {
1307
- value: bigint;
1308
- decimals: number;
1309
- } | undefined;
1310
- }>, {
1311
- coingeckoId: string | undefined;
1312
- marketCapUsd: {
1313
- value: bigint;
1314
- decimals: number;
1315
- } | undefined;
1316
- }, {
1317
- coingeckoId?: string | undefined;
1318
- marketCapUsd?: {
1319
- value: bigint;
1320
- decimals: number;
1321
- } | undefined;
1322
- }>;
1323
- priceDatasourceId: z.ZodOptional<z.ZodString>;
1324
- updatedAt: z.ZodNumber;
1325
- }, "strip", z.ZodTypeAny, {
1326
- symbol: string;
1327
- type: "CryptoCurrency";
1328
- id: string;
1329
- name: string;
1330
- market: {
1331
- coingeckoId: string | undefined;
1332
- marketCapUsd: {
1333
- value: bigint;
1334
- decimals: number;
1335
- } | undefined;
1336
- };
1337
- updatedAt: number;
1338
- icon?: string | undefined;
1339
- priceDatasourceId?: string | undefined;
1340
- }, {
1341
- symbol: string;
1342
- type: "CryptoCurrency";
1343
- id: string;
1344
- name: string;
1345
- market: {
1346
- coingeckoId?: string | undefined;
1347
- marketCapUsd?: {
1348
- value: bigint;
1349
- decimals: number;
1350
- } | undefined;
1351
- };
1352
- updatedAt: number;
1353
- icon?: string | undefined;
1354
- priceDatasourceId?: string | undefined;
1355
- }>, {
1356
- icon: string | undefined;
1357
- priceDatasourceId: string | undefined;
1358
- symbol: string;
1359
- type: "CryptoCurrency";
1360
- id: string;
1361
- name: string;
1362
- market: {
1363
- coingeckoId: string | undefined;
1364
- marketCapUsd: {
1365
- value: bigint;
1366
- decimals: number;
1367
- } | undefined;
1368
- };
1369
- updatedAt: number;
1370
- }, {
1371
- symbol: string;
1372
- type: "CryptoCurrency";
1373
- id: string;
1374
- name: string;
1375
- market: {
1376
- coingeckoId?: string | undefined;
1377
- marketCapUsd?: {
1378
- value: bigint;
1379
- decimals: number;
1380
- } | undefined;
1381
- };
1382
- updatedAt: number;
1383
- icon?: string | undefined;
1384
- priceDatasourceId?: string | undefined;
1385
- }>, z.ZodEffects<z.ZodObject<{
1386
- type: z.ZodLiteral<"FiatCurrency">;
1387
- id: z.ZodUnion<[z.ZodLiteral<"cny">, z.ZodLiteral<"eur">, z.ZodLiteral<"idr">, z.ZodLiteral<"jpy">, z.ZodLiteral<"krw">, z.ZodLiteral<"rub">, z.ZodLiteral<"twd">, z.ZodLiteral<"usd">]>;
1388
- name: z.ZodString;
1389
- symbol: z.ZodString;
1390
- icon: z.ZodOptional<z.ZodString>;
1391
- }, "strip", z.ZodTypeAny, {
1392
- symbol: string;
1393
- type: "FiatCurrency";
1394
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
1395
- name: string;
1396
- icon?: string | undefined;
1397
- }, {
1398
- symbol: string;
1399
- type: "FiatCurrency";
1400
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
1401
- name: string;
1402
- icon?: string | undefined;
1403
- }>, {
1404
- icon: string | undefined;
1405
- symbol: string;
1406
- type: "FiatCurrency";
1407
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
1408
- name: string;
1409
- }, {
1410
- symbol: string;
1411
- type: "FiatCurrency";
1412
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
1413
- name: string;
1414
- icon?: string | undefined;
1415
- }>, z.ZodEffects<z.ZodObject<{
1416
- type: z.ZodLiteral<"Nft">;
1417
- id: z.ZodString;
1418
- name: z.ZodOptional<z.ZodString>;
1419
- symbol: z.ZodOptional<z.ZodString>;
1420
- image: z.ZodOptional<z.ZodString>;
1421
- metadata: z.ZodOptional<z.ZodString>;
1422
- updatedAt: z.ZodNumber;
1423
- }, "strip", z.ZodTypeAny, {
1424
- type: "Nft";
1425
- id: string;
1426
- updatedAt: number;
1427
- symbol?: string | undefined;
1428
- name?: string | undefined;
1429
- image?: string | undefined;
1430
- metadata?: string | undefined;
1431
- }, {
1432
- type: "Nft";
1433
- id: string;
1434
- updatedAt: number;
1435
- symbol?: string | undefined;
1436
- name?: string | undefined;
1437
- image?: string | undefined;
1438
- metadata?: string | undefined;
1439
- }>, {
1440
- name: string | undefined;
1441
- symbol: string | undefined;
1442
- image: string | undefined;
1443
- metadata: string | undefined;
1444
- type: "Nft";
1445
- id: string;
1446
- updatedAt: number;
1447
- }, {
1448
- type: "Nft";
1449
- id: string;
1450
- updatedAt: number;
1451
- symbol?: string | undefined;
1452
- name?: string | undefined;
1453
- image?: string | undefined;
1454
- metadata?: string | undefined;
1455
- }>]>;
1456
- amount: z.ZodObject<{
1457
- value: z.ZodBigInt;
1458
- decimals: z.ZodNumber;
1459
- }, "strip", z.ZodTypeAny, {
1460
- value: bigint;
1461
- decimals: number;
1462
- }, {
1463
- value: bigint;
1464
- decimals: number;
1465
- }>;
1466
- price: z.ZodOptional<z.ZodObject<{
1467
- cryptoCurrencyId: z.ZodString;
1468
- fiatCurrencyId: z.ZodString;
1469
- price: z.ZodObject<{
1470
- value: z.ZodBigInt;
1471
- decimals: z.ZodNumber;
1472
- }, "strip", z.ZodTypeAny, {
1473
- value: bigint;
1474
- decimals: number;
1475
- }, {
1476
- value: bigint;
1477
- decimals: number;
1478
- }>;
1479
- timestamp: z.ZodNumber;
1480
- }, "strip", z.ZodTypeAny, {
1481
- cryptoCurrencyId: string;
1482
- fiatCurrencyId: string;
1483
- price: {
1484
- value: bigint;
1485
- decimals: number;
1486
- };
1487
- timestamp: number;
1488
- }, {
1489
- cryptoCurrencyId: string;
1490
- fiatCurrencyId: string;
1491
- price: {
1492
- value: bigint;
1493
- decimals: number;
1494
- };
1495
- timestamp: number;
1496
- }>>;
1497
- }, {
1498
- direction: z.ZodLiteral<"in">;
1499
- }>, {
1500
- asset: z.ZodEffects<z.ZodObject<{
1501
- type: z.ZodLiteral<"CryptoCurrency">;
1502
- id: z.ZodString;
1503
- name: z.ZodString;
1504
- symbol: z.ZodString;
1505
- icon: z.ZodOptional<z.ZodString>;
1506
- market: z.ZodEffects<z.ZodObject<{
1507
- coingeckoId: z.ZodOptional<z.ZodString>;
1508
- marketCapUsd: z.ZodOptional<z.ZodObject<{
1509
- value: z.ZodBigInt;
1510
- decimals: z.ZodNumber;
1511
- }, "strip", z.ZodTypeAny, {
1512
- value: bigint;
1513
- decimals: number;
1514
- }, {
1515
- value: bigint;
1516
- decimals: number;
1517
- }>>;
1518
- }, "strip", z.ZodTypeAny, {
1519
- coingeckoId?: string | undefined;
1520
- marketCapUsd?: {
1521
- value: bigint;
1522
- decimals: number;
1523
- } | undefined;
1524
- }, {
1525
- coingeckoId?: string | undefined;
1526
- marketCapUsd?: {
1527
- value: bigint;
1528
- decimals: number;
1529
- } | undefined;
1530
- }>, {
1531
- coingeckoId: string | undefined;
1532
- marketCapUsd: {
1533
- value: bigint;
1534
- decimals: number;
1535
- } | undefined;
1536
- }, {
1537
- coingeckoId?: string | undefined;
1538
- marketCapUsd?: {
1539
- value: bigint;
1540
- decimals: number;
1541
- } | undefined;
1542
- }>;
1543
- priceDatasourceId: z.ZodOptional<z.ZodString>;
1544
- updatedAt: z.ZodNumber;
1545
- }, "strip", z.ZodTypeAny, {
1546
- symbol: string;
1547
- type: "CryptoCurrency";
1548
- id: string;
1549
- name: string;
1550
- market: {
1551
- coingeckoId: string | undefined;
1552
- marketCapUsd: {
1553
- value: bigint;
1554
- decimals: number;
1555
- } | undefined;
1556
- };
1557
- updatedAt: number;
1558
- icon?: string | undefined;
1559
- priceDatasourceId?: string | undefined;
1560
- }, {
1561
- symbol: string;
1562
- type: "CryptoCurrency";
1563
- id: string;
1564
- name: string;
1565
- market: {
1566
- coingeckoId?: string | undefined;
1567
- marketCapUsd?: {
1568
- value: bigint;
1569
- decimals: number;
1570
- } | undefined;
1571
- };
1572
- updatedAt: number;
1573
- icon?: string | undefined;
1574
- priceDatasourceId?: string | undefined;
1575
- }>, {
1576
- icon: string | undefined;
1577
- priceDatasourceId: string | undefined;
1578
- symbol: string;
1579
- type: "CryptoCurrency";
1580
- id: string;
1581
- name: string;
1582
- market: {
1583
- coingeckoId: string | undefined;
1584
- marketCapUsd: {
1585
- value: bigint;
1586
- decimals: number;
1587
- } | undefined;
1588
- };
1589
- updatedAt: number;
1590
- }, {
1591
- symbol: string;
1592
- type: "CryptoCurrency";
1593
- id: string;
1594
- name: string;
1595
- market: {
1596
- coingeckoId?: string | undefined;
1597
- marketCapUsd?: {
1598
- value: bigint;
1599
- decimals: number;
1600
- } | undefined;
1601
- };
1602
- updatedAt: number;
1603
- icon?: string | undefined;
1604
- priceDatasourceId?: string | undefined;
1605
- }>;
1606
- }>, "strip", z.ZodTypeAny, {
1607
- asset: {
1608
- icon: string | undefined;
1609
- priceDatasourceId: string | undefined;
1610
- symbol: string;
1611
- type: "CryptoCurrency";
1612
- id: string;
1613
- name: string;
1614
- market: {
1615
- coingeckoId: string | undefined;
1616
- marketCapUsd: {
1617
- value: bigint;
1618
- decimals: number;
1619
- } | undefined;
1620
- };
1621
- updatedAt: number;
1622
- };
1623
- amount: {
1624
- value: bigint;
1625
- decimals: number;
1626
- };
1627
- direction: "in";
1628
- price?: {
1629
- cryptoCurrencyId: string;
1630
- fiatCurrencyId: string;
1631
- price: {
1632
- value: bigint;
1633
- decimals: number;
1634
- };
1635
- timestamp: number;
1636
- } | undefined;
1637
- from?: string | undefined;
1638
- to?: string | undefined;
1639
- }, {
1640
- asset: {
1641
- symbol: string;
1642
- type: "CryptoCurrency";
1643
- id: string;
1644
- name: string;
1645
- market: {
1646
- coingeckoId?: string | undefined;
1647
- marketCapUsd?: {
1648
- value: bigint;
1649
- decimals: number;
1650
- } | undefined;
1651
- };
1652
- updatedAt: number;
1653
- icon?: string | undefined;
1654
- priceDatasourceId?: string | undefined;
1655
- };
1656
- amount: {
1657
- value: bigint;
1658
- decimals: number;
1659
- };
1660
- direction: "in";
1661
- price?: {
1662
- cryptoCurrencyId: string;
1663
- fiatCurrencyId: string;
1664
- price: {
1665
- value: bigint;
1666
- decimals: number;
1667
- };
1668
- timestamp: number;
1669
- } | undefined;
1670
- from?: string | undefined;
1671
- to?: string | undefined;
1672
- }>, {
1673
- from: string | undefined;
1674
- to: string | undefined;
1675
- price: {
1676
- cryptoCurrencyId: string;
1677
- fiatCurrencyId: string;
1678
- price: {
1679
- value: bigint;
1680
- decimals: number;
1681
- };
1682
- timestamp: number;
1683
- } | undefined;
1684
- asset: {
1685
- icon: string | undefined;
1686
- priceDatasourceId: string | undefined;
1687
- symbol: string;
1688
- type: "CryptoCurrency";
1689
- id: string;
1690
- name: string;
1691
- market: {
1692
- coingeckoId: string | undefined;
1693
- marketCapUsd: {
1694
- value: bigint;
1695
- decimals: number;
1696
- } | undefined;
1697
- };
1698
- updatedAt: number;
1699
- };
1700
- amount: {
1701
- value: bigint;
1702
- decimals: number;
1703
- };
1704
- direction: "in";
1705
- }, {
1706
- asset: {
1707
- symbol: string;
1708
- type: "CryptoCurrency";
1709
- id: string;
1710
- name: string;
1711
- market: {
1712
- coingeckoId?: string | undefined;
1713
- marketCapUsd?: {
1714
- value: bigint;
1715
- decimals: number;
1716
- } | undefined;
1717
- };
1718
- updatedAt: number;
1719
- icon?: string | undefined;
1720
- priceDatasourceId?: string | undefined;
1721
- };
1722
- amount: {
1723
- value: bigint;
1724
- decimals: number;
1725
- };
1726
- direction: "in";
1727
- price?: {
1728
- cryptoCurrencyId: string;
1729
- fiatCurrencyId: string;
1730
- price: {
1731
- value: bigint;
1732
- decimals: number;
1733
- };
1734
- timestamp: number;
1735
- } | undefined;
1736
- from?: string | undefined;
1737
- to?: string | undefined;
1738
- }>, z.ZodEffects<z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
1739
- from: z.ZodOptional<z.ZodString>;
1740
- to: z.ZodOptional<z.ZodString>;
1741
- asset: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
1742
- type: z.ZodLiteral<"CryptoCurrency">;
1743
- id: z.ZodString;
1744
- name: z.ZodString;
1745
- symbol: z.ZodString;
1746
- icon: z.ZodOptional<z.ZodString>;
1747
- market: z.ZodEffects<z.ZodObject<{
1748
- coingeckoId: z.ZodOptional<z.ZodString>;
1749
- marketCapUsd: z.ZodOptional<z.ZodObject<{
1750
- value: z.ZodBigInt;
1751
- decimals: z.ZodNumber;
1752
- }, "strip", z.ZodTypeAny, {
1753
- value: bigint;
1754
- decimals: number;
1755
- }, {
1756
- value: bigint;
1757
- decimals: number;
1758
- }>>;
1759
- }, "strip", z.ZodTypeAny, {
1760
- coingeckoId?: string | undefined;
1761
- marketCapUsd?: {
1762
- value: bigint;
1763
- decimals: number;
1764
- } | undefined;
1765
- }, {
1766
- coingeckoId?: string | undefined;
1767
- marketCapUsd?: {
1768
- value: bigint;
1769
- decimals: number;
1770
- } | undefined;
1771
- }>, {
1772
- coingeckoId: string | undefined;
1773
- marketCapUsd: {
1774
- value: bigint;
1775
- decimals: number;
1776
- } | undefined;
1777
- }, {
1778
- coingeckoId?: string | undefined;
1779
- marketCapUsd?: {
1780
- value: bigint;
1781
- decimals: number;
1782
- } | undefined;
1783
- }>;
1784
- priceDatasourceId: z.ZodOptional<z.ZodString>;
1785
- updatedAt: z.ZodNumber;
1786
- }, "strip", z.ZodTypeAny, {
1787
- symbol: string;
1788
- type: "CryptoCurrency";
1789
- id: string;
1790
- name: string;
1791
- market: {
1792
- coingeckoId: string | undefined;
1793
- marketCapUsd: {
1794
- value: bigint;
1795
- decimals: number;
1796
- } | undefined;
1797
- };
1798
- updatedAt: number;
1799
- icon?: string | undefined;
1800
- priceDatasourceId?: string | undefined;
1801
- }, {
1802
- symbol: string;
1803
- type: "CryptoCurrency";
1804
- id: string;
1805
- name: string;
1806
- market: {
1807
- coingeckoId?: string | undefined;
1808
- marketCapUsd?: {
1809
- value: bigint;
1810
- decimals: number;
1811
- } | undefined;
1812
- };
1813
- updatedAt: number;
1814
- icon?: string | undefined;
1815
- priceDatasourceId?: string | undefined;
1816
- }>, {
1817
- icon: string | undefined;
1818
- priceDatasourceId: string | undefined;
1819
- symbol: string;
1820
- type: "CryptoCurrency";
1821
- id: string;
1822
- name: string;
1823
- market: {
1824
- coingeckoId: string | undefined;
1825
- marketCapUsd: {
1826
- value: bigint;
1827
- decimals: number;
1828
- } | undefined;
1829
- };
1830
- updatedAt: number;
1831
- }, {
1832
- symbol: string;
1833
- type: "CryptoCurrency";
1834
- id: string;
1835
- name: string;
1836
- market: {
1837
- coingeckoId?: string | undefined;
1838
- marketCapUsd?: {
1839
- value: bigint;
1840
- decimals: number;
1841
- } | undefined;
1842
- };
1843
- updatedAt: number;
1844
- icon?: string | undefined;
1845
- priceDatasourceId?: string | undefined;
1846
- }>, z.ZodEffects<z.ZodObject<{
1847
- type: z.ZodLiteral<"FiatCurrency">;
1848
- id: z.ZodUnion<[z.ZodLiteral<"cny">, z.ZodLiteral<"eur">, z.ZodLiteral<"idr">, z.ZodLiteral<"jpy">, z.ZodLiteral<"krw">, z.ZodLiteral<"rub">, z.ZodLiteral<"twd">, z.ZodLiteral<"usd">]>;
1849
- name: z.ZodString;
1850
- symbol: z.ZodString;
1851
- icon: z.ZodOptional<z.ZodString>;
1852
- }, "strip", z.ZodTypeAny, {
1853
- symbol: string;
1854
- type: "FiatCurrency";
1855
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
1856
- name: string;
1857
- icon?: string | undefined;
1858
- }, {
1859
- symbol: string;
1860
- type: "FiatCurrency";
1861
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
1862
- name: string;
1863
- icon?: string | undefined;
1864
- }>, {
1865
- icon: string | undefined;
1866
- symbol: string;
1867
- type: "FiatCurrency";
1868
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
1869
- name: string;
1870
- }, {
1871
- symbol: string;
1872
- type: "FiatCurrency";
1873
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
1874
- name: string;
1875
- icon?: string | undefined;
1876
- }>, z.ZodEffects<z.ZodObject<{
1877
- type: z.ZodLiteral<"Nft">;
1878
- id: z.ZodString;
1879
- name: z.ZodOptional<z.ZodString>;
1880
- symbol: z.ZodOptional<z.ZodString>;
1881
- image: z.ZodOptional<z.ZodString>;
1882
- metadata: z.ZodOptional<z.ZodString>;
1883
- updatedAt: z.ZodNumber;
1884
- }, "strip", z.ZodTypeAny, {
1885
- type: "Nft";
1886
- id: string;
1887
- updatedAt: number;
1888
- symbol?: string | undefined;
1889
- name?: string | undefined;
1890
- image?: string | undefined;
1891
- metadata?: string | undefined;
1892
- }, {
1893
- type: "Nft";
1894
- id: string;
1895
- updatedAt: number;
1896
- symbol?: string | undefined;
1897
- name?: string | undefined;
1898
- image?: string | undefined;
1899
- metadata?: string | undefined;
1900
- }>, {
1901
- name: string | undefined;
1902
- symbol: string | undefined;
1903
- image: string | undefined;
1904
- metadata: string | undefined;
1905
- type: "Nft";
1906
- id: string;
1907
- updatedAt: number;
1908
- }, {
1909
- type: "Nft";
1910
- id: string;
1911
- updatedAt: number;
1912
- symbol?: string | undefined;
1913
- name?: string | undefined;
1914
- image?: string | undefined;
1915
- metadata?: string | undefined;
1916
- }>]>;
1917
- amount: z.ZodObject<{
1918
- value: z.ZodBigInt;
1919
- decimals: z.ZodNumber;
1920
- }, "strip", z.ZodTypeAny, {
1921
- value: bigint;
1922
- decimals: number;
1923
- }, {
1924
- value: bigint;
1925
- decimals: number;
1926
- }>;
1927
- price: z.ZodOptional<z.ZodObject<{
1928
- cryptoCurrencyId: z.ZodString;
1929
- fiatCurrencyId: z.ZodString;
1930
- price: z.ZodObject<{
1931
- value: z.ZodBigInt;
1932
- decimals: z.ZodNumber;
1933
- }, "strip", z.ZodTypeAny, {
1934
- value: bigint;
1935
- decimals: number;
1936
- }, {
1937
- value: bigint;
1938
- decimals: number;
1939
- }>;
1940
- timestamp: z.ZodNumber;
1941
- }, "strip", z.ZodTypeAny, {
1942
- cryptoCurrencyId: string;
1943
- fiatCurrencyId: string;
1944
- price: {
1945
- value: bigint;
1946
- decimals: number;
1947
- };
1948
- timestamp: number;
1949
- }, {
1950
- cryptoCurrencyId: string;
1951
- fiatCurrencyId: string;
1952
- price: {
1953
- value: bigint;
1954
- decimals: number;
1955
- };
1956
- timestamp: number;
1957
- }>>;
1958
- }, {
1959
- direction: z.ZodLiteral<"out">;
1960
- }>, {
1961
- asset: z.ZodEffects<z.ZodObject<{
1962
- type: z.ZodLiteral<"FiatCurrency">;
1963
- id: z.ZodUnion<[z.ZodLiteral<"cny">, z.ZodLiteral<"eur">, z.ZodLiteral<"idr">, z.ZodLiteral<"jpy">, z.ZodLiteral<"krw">, z.ZodLiteral<"rub">, z.ZodLiteral<"twd">, z.ZodLiteral<"usd">]>;
1964
- name: z.ZodString;
1965
- symbol: z.ZodString;
1966
- icon: z.ZodOptional<z.ZodString>;
1967
- }, "strip", z.ZodTypeAny, {
1968
- symbol: string;
1969
- type: "FiatCurrency";
1970
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
1971
- name: string;
1972
- icon?: string | undefined;
1973
- }, {
1974
- symbol: string;
1975
- type: "FiatCurrency";
1976
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
1977
- name: string;
1978
- icon?: string | undefined;
1979
- }>, {
1980
- icon: string | undefined;
1981
- symbol: string;
1982
- type: "FiatCurrency";
1983
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
1984
- name: string;
1985
- }, {
1986
- symbol: string;
1987
- type: "FiatCurrency";
1988
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
1989
- name: string;
1990
- icon?: string | undefined;
1991
- }>;
1992
- }>, "strip", z.ZodTypeAny, {
1993
- asset: {
1994
- icon: string | undefined;
1995
- symbol: string;
1996
- type: "FiatCurrency";
1997
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
1998
- name: string;
1999
- };
2000
- amount: {
2001
- value: bigint;
2002
- decimals: number;
2003
- };
2004
- direction: "out";
2005
- price?: {
2006
- cryptoCurrencyId: string;
2007
- fiatCurrencyId: string;
2008
- price: {
2009
- value: bigint;
2010
- decimals: number;
2011
- };
2012
- timestamp: number;
2013
- } | undefined;
2014
- from?: string | undefined;
2015
- to?: string | undefined;
2016
- }, {
2017
- asset: {
2018
- symbol: string;
2019
- type: "FiatCurrency";
2020
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
2021
- name: string;
2022
- icon?: string | undefined;
2023
- };
2024
- amount: {
2025
- value: bigint;
2026
- decimals: number;
2027
- };
2028
- direction: "out";
2029
- price?: {
2030
- cryptoCurrencyId: string;
2031
- fiatCurrencyId: string;
2032
- price: {
2033
- value: bigint;
2034
- decimals: number;
2035
- };
2036
- timestamp: number;
2037
- } | undefined;
2038
- from?: string | undefined;
2039
- to?: string | undefined;
2040
- }>, {
2041
- from: string | undefined;
2042
- to: string | undefined;
2043
- price: {
2044
- cryptoCurrencyId: string;
2045
- fiatCurrencyId: string;
2046
- price: {
2047
- value: bigint;
2048
- decimals: number;
2049
- };
2050
- timestamp: number;
2051
- } | undefined;
2052
- asset: {
2053
- icon: string | undefined;
2054
- symbol: string;
2055
- type: "FiatCurrency";
2056
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
2057
- name: string;
2058
- };
2059
- amount: {
2060
- value: bigint;
2061
- decimals: number;
2062
- };
2063
- direction: "out";
2064
- }, {
2065
- asset: {
2066
- symbol: string;
2067
- type: "FiatCurrency";
2068
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
2069
- name: string;
2070
- icon?: string | undefined;
2071
- };
2072
- amount: {
2073
- value: bigint;
2074
- decimals: number;
2075
- };
2076
- direction: "out";
2077
- price?: {
2078
- cryptoCurrencyId: string;
2079
- fiatCurrencyId: string;
2080
- price: {
2081
- value: bigint;
2082
- decimals: number;
2083
- };
2084
- timestamp: number;
2085
- } | undefined;
2086
- from?: string | undefined;
2087
- to?: string | undefined;
2088
- }>]>, "many">;
2089
- }>, "strip", z.ZodTypeAny, {
2090
- type: "NormalAction";
2091
- timestamp: number;
2092
- action: "buy-crypto";
2093
- evidence: "none" | "contract" | "system-rule" | "user-rule" | "manual-check";
2094
- transfers: ({
2095
- from: string | undefined;
2096
- to: string | undefined;
2097
- price: {
2098
- cryptoCurrencyId: string;
2099
- fiatCurrencyId: string;
2100
- price: {
2101
- value: bigint;
2102
- decimals: number;
2103
- };
2104
- timestamp: number;
2105
- } | undefined;
2106
- asset: {
2107
- icon: string | undefined;
2108
- priceDatasourceId: string | undefined;
2109
- symbol: string;
2110
- type: "CryptoCurrency";
2111
- id: string;
2112
- name: string;
2113
- market: {
2114
- coingeckoId: string | undefined;
2115
- marketCapUsd: {
2116
- value: bigint;
2117
- decimals: number;
2118
- } | undefined;
2119
- };
2120
- updatedAt: number;
2121
- };
2122
- amount: {
2123
- value: bigint;
2124
- decimals: number;
2125
- };
2126
- direction: "in";
2127
- } | {
2128
- from: string | undefined;
2129
- to: string | undefined;
2130
- price: {
2131
- cryptoCurrencyId: string;
2132
- fiatCurrencyId: string;
2133
- price: {
2134
- value: bigint;
2135
- decimals: number;
2136
- };
2137
- timestamp: number;
2138
- } | undefined;
2139
- asset: {
2140
- icon: string | undefined;
2141
- symbol: string;
2142
- type: "FiatCurrency";
2143
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
2144
- name: string;
2145
- };
2146
- amount: {
2147
- value: bigint;
2148
- decimals: number;
2149
- };
2150
- direction: "out";
2151
- })[];
2152
- comment?: string | undefined;
2153
- app?: {
2154
- description: string | undefined;
2155
- website: string | undefined;
2156
- icon: string | undefined;
2157
- id: string;
2158
- name: string;
2159
- categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
2160
- } | undefined;
2161
- }, {
2162
- type: "NormalAction";
2163
- timestamp: number;
2164
- action: "buy-crypto";
2165
- evidence: "none" | "contract" | "system-rule" | "user-rule" | "manual-check";
2166
- transfers: ({
2167
- asset: {
2168
- symbol: string;
2169
- type: "CryptoCurrency";
2170
- id: string;
2171
- name: string;
2172
- market: {
2173
- coingeckoId?: string | undefined;
2174
- marketCapUsd?: {
2175
- value: bigint;
2176
- decimals: number;
2177
- } | undefined;
2178
- };
2179
- updatedAt: number;
2180
- icon?: string | undefined;
2181
- priceDatasourceId?: string | undefined;
2182
- };
2183
- amount: {
2184
- value: bigint;
2185
- decimals: number;
2186
- };
2187
- direction: "in";
2188
- price?: {
2189
- cryptoCurrencyId: string;
2190
- fiatCurrencyId: string;
2191
- price: {
2192
- value: bigint;
2193
- decimals: number;
2194
- };
2195
- timestamp: number;
2196
- } | undefined;
2197
- from?: string | undefined;
2198
- to?: string | undefined;
2199
- } | {
2200
- asset: {
2201
- symbol: string;
2202
- type: "FiatCurrency";
2203
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
2204
- name: string;
2205
- icon?: string | undefined;
2206
- };
2207
- amount: {
2208
- value: bigint;
2209
- decimals: number;
2210
- };
2211
- direction: "out";
2212
- price?: {
2213
- cryptoCurrencyId: string;
2214
- fiatCurrencyId: string;
2215
- price: {
2216
- value: bigint;
2217
- decimals: number;
2218
- };
2219
- timestamp: number;
2220
- } | undefined;
2221
- from?: string | undefined;
2222
- to?: string | undefined;
2223
- })[];
2224
- comment?: string | undefined;
2225
- app?: {
2226
- id: string;
2227
- name: string;
2228
- categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
2229
- icon?: string | undefined;
2230
- description?: string | undefined;
2231
- website?: string | undefined;
2232
- } | undefined;
2233
- }>, {
2234
- comment: string | undefined;
2235
- app: {
2236
- description: string | undefined;
2237
- website: string | undefined;
2238
- icon: string | undefined;
2239
- id: string;
2240
- name: string;
2241
- categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
2242
- } | undefined;
2243
- type: "NormalAction";
2244
- timestamp: number;
2245
- action: "buy-crypto";
2246
- evidence: "none" | "contract" | "system-rule" | "user-rule" | "manual-check";
2247
- transfers: ({
2248
- from: string | undefined;
2249
- to: string | undefined;
2250
- price: {
2251
- cryptoCurrencyId: string;
2252
- fiatCurrencyId: string;
2253
- price: {
2254
- value: bigint;
2255
- decimals: number;
2256
- };
2257
- timestamp: number;
2258
- } | undefined;
2259
- asset: {
2260
- icon: string | undefined;
2261
- priceDatasourceId: string | undefined;
2262
- symbol: string;
2263
- type: "CryptoCurrency";
2264
- id: string;
2265
- name: string;
2266
- market: {
2267
- coingeckoId: string | undefined;
2268
- marketCapUsd: {
2269
- value: bigint;
2270
- decimals: number;
2271
- } | undefined;
2272
- };
2273
- updatedAt: number;
2274
- };
2275
- amount: {
2276
- value: bigint;
2277
- decimals: number;
2278
- };
2279
- direction: "in";
2280
- } | {
2281
- from: string | undefined;
2282
- to: string | undefined;
2283
- price: {
2284
- cryptoCurrencyId: string;
2285
- fiatCurrencyId: string;
2286
- price: {
2287
- value: bigint;
2288
- decimals: number;
2289
- };
2290
- timestamp: number;
2291
- } | undefined;
2292
- asset: {
2293
- icon: string | undefined;
2294
- symbol: string;
2295
- type: "FiatCurrency";
2296
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
2297
- name: string;
2298
- };
2299
- amount: {
2300
- value: bigint;
2301
- decimals: number;
2302
- };
2303
- direction: "out";
2304
- })[];
2305
- }, {
2306
- type: "NormalAction";
2307
- timestamp: number;
2308
- action: "buy-crypto";
2309
- evidence: "none" | "contract" | "system-rule" | "user-rule" | "manual-check";
2310
- transfers: ({
2311
- asset: {
2312
- symbol: string;
2313
- type: "CryptoCurrency";
2314
- id: string;
2315
- name: string;
2316
- market: {
2317
- coingeckoId?: string | undefined;
2318
- marketCapUsd?: {
2319
- value: bigint;
2320
- decimals: number;
2321
- } | undefined;
2322
- };
2323
- updatedAt: number;
2324
- icon?: string | undefined;
2325
- priceDatasourceId?: string | undefined;
2326
- };
2327
- amount: {
2328
- value: bigint;
2329
- decimals: number;
2330
- };
2331
- direction: "in";
2332
- price?: {
2333
- cryptoCurrencyId: string;
2334
- fiatCurrencyId: string;
2335
- price: {
2336
- value: bigint;
2337
- decimals: number;
2338
- };
2339
- timestamp: number;
2340
- } | undefined;
2341
- from?: string | undefined;
2342
- to?: string | undefined;
2343
- } | {
2344
- asset: {
2345
- symbol: string;
2346
- type: "FiatCurrency";
2347
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
2348
- name: string;
2349
- icon?: string | undefined;
2350
- };
2351
- amount: {
2352
- value: bigint;
2353
- decimals: number;
2354
- };
2355
- direction: "out";
2356
- price?: {
2357
- cryptoCurrencyId: string;
2358
- fiatCurrencyId: string;
2359
- price: {
2360
- value: bigint;
2361
- decimals: number;
2362
- };
2363
- timestamp: number;
2364
- } | undefined;
2365
- from?: string | undefined;
2366
- to?: string | undefined;
2367
- })[];
2368
- comment?: string | undefined;
2369
- app?: {
2370
- id: string;
2371
- name: string;
2372
- categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
2373
- icon?: string | undefined;
2374
- description?: string | undefined;
2375
- website?: string | undefined;
2376
- } | undefined;
2377
- }>;
2378
- export declare const accountActionBuyCryptoSchema: z.ZodEffects<z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
2379
- action: z.ZodUnion<[z.ZodLiteral<"add-liquidity">, z.ZodLiteral<"approve">, z.ZodLiteral<"atomic-arbitrage">, z.ZodLiteral<"borrow">, z.ZodLiteral<"bridge-from">, z.ZodLiteral<"bridge-to">, z.ZodLiteral<"buy-nft">, z.ZodLiteral<"buy-crypto">, z.ZodLiteral<"cross-replace">, z.ZodLiteral<"cross-trade">, z.ZodLiteral<"deposit">, z.ZodLiteral<"deposit-with-bond">, z.ZodLiteral<"fail-tx">, z.ZodLiteral<"fee">, z.ZodLiteral<"free-mint-nft">, z.ZodLiteral<"ignore">, z.ZodLiteral<"income">, z.ZodLiteral<"mint-nft">, z.ZodLiteral<"move">, z.ZodLiteral<"nft-royalty">, z.ZodLiteral<"receive-from-cex">, z.ZodLiteral<"reduce">, z.ZodLiteral<"remove-liquidity">, z.ZodLiteral<"repayment">, z.ZodLiteral<"repayment-with-debt">, z.ZodLiteral<"revoke">, z.ZodLiteral<"sell-crypto">, z.ZodLiteral<"sell-nft">, z.ZodLiteral<"send-to-cex">, z.ZodLiteral<"spam">, z.ZodLiteral<"stake">, z.ZodLiteral<"swap-income">, z.ZodLiteral<"swap-nft">, z.ZodLiteral<"swap-transfer">, z.ZodLiteral<"trade">, z.ZodLiteral<"transaction-fee">, z.ZodLiteral<"transfer">, z.ZodLiteral<"unstake">, z.ZodLiteral<"unwrap">, z.ZodLiteral<"valuedown">, z.ZodLiteral<"valueup">, z.ZodLiteral<"withdraw">, z.ZodLiteral<"withdraw-with-bond">, z.ZodLiteral<"wrap">]>;
2380
- source: z.ZodString;
2381
- evidence: z.ZodUnion<[z.ZodLiteral<"contract">, z.ZodLiteral<"system-rule">, z.ZodLiteral<"user-rule">, z.ZodLiteral<"manual-check">, z.ZodLiteral<"none">]>;
2382
- timestamp: z.ZodNumber;
2383
- order: z.ZodNumber;
2384
- comment: z.ZodOptional<z.ZodString>;
2385
- app: z.ZodOptional<z.ZodEffects<z.ZodObject<{
2386
- id: z.ZodString;
2387
- categories: z.ZodArray<z.ZodUnion<[z.ZodLiteral<"bridge">, z.ZodLiteral<"cex">, z.ZodLiteral<"cross-chain">, z.ZodLiteral<"dex">, z.ZodLiteral<"gaming">, z.ZodLiteral<"lending">, z.ZodLiteral<"nft-marketplace">, z.ZodLiteral<"other">]>, "many">;
2388
- name: z.ZodString;
2389
- description: z.ZodOptional<z.ZodString>;
2390
- website: z.ZodOptional<z.ZodString>;
2391
- icon: z.ZodOptional<z.ZodString>;
2392
- }, "strip", z.ZodTypeAny, {
2393
- id: string;
2394
- name: string;
2395
- categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
2396
- icon?: string | undefined;
2397
- description?: string | undefined;
2398
- website?: string | undefined;
2399
- }, {
2400
- id: string;
2401
- name: string;
2402
- categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
2403
- icon?: string | undefined;
2404
- description?: string | undefined;
2405
- website?: string | undefined;
2406
- }>, {
2407
- description: string | undefined;
2408
- website: string | undefined;
2409
- icon: string | undefined;
2410
- id: string;
2411
- name: string;
2412
- categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
2413
- }, {
2414
- id: string;
2415
- name: string;
2416
- categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
2417
- icon?: string | undefined;
2418
- description?: string | undefined;
2419
- website?: string | undefined;
2420
- }>>;
2421
- transfers: z.ZodArray<z.ZodUnion<[z.ZodEffects<z.ZodObject<z.objectUtil.extendShape<{
2422
- from: z.ZodOptional<z.ZodString>;
2423
- to: z.ZodOptional<z.ZodString>;
2424
- asset: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
2425
- type: z.ZodLiteral<"CryptoCurrency">;
2426
- id: z.ZodString;
2427
- name: z.ZodString;
2428
- symbol: z.ZodString;
2429
- icon: z.ZodOptional<z.ZodString>;
2430
- market: z.ZodEffects<z.ZodObject<{
2431
- coingeckoId: z.ZodOptional<z.ZodString>;
2432
- marketCapUsd: z.ZodOptional<z.ZodObject<{
2433
- value: z.ZodBigInt;
2434
- decimals: z.ZodNumber;
2435
- }, "strip", z.ZodTypeAny, {
2436
- value: bigint;
2437
- decimals: number;
2438
- }, {
2439
- value: bigint;
2440
- decimals: number;
2441
- }>>;
2442
- }, "strip", z.ZodTypeAny, {
2443
- coingeckoId?: string | undefined;
2444
- marketCapUsd?: {
2445
- value: bigint;
2446
- decimals: number;
2447
- } | undefined;
2448
- }, {
2449
- coingeckoId?: string | undefined;
2450
- marketCapUsd?: {
2451
- value: bigint;
2452
- decimals: number;
2453
- } | undefined;
2454
- }>, {
2455
- coingeckoId: string | undefined;
2456
- marketCapUsd: {
2457
- value: bigint;
2458
- decimals: number;
2459
- } | undefined;
2460
- }, {
2461
- coingeckoId?: string | undefined;
2462
- marketCapUsd?: {
2463
- value: bigint;
2464
- decimals: number;
2465
- } | undefined;
2466
- }>;
2467
- priceDatasourceId: z.ZodOptional<z.ZodString>;
2468
- updatedAt: z.ZodNumber;
2469
- }, "strip", z.ZodTypeAny, {
2470
- symbol: string;
2471
- type: "CryptoCurrency";
2472
- id: string;
2473
- name: string;
2474
- market: {
2475
- coingeckoId: string | undefined;
2476
- marketCapUsd: {
2477
- value: bigint;
2478
- decimals: number;
2479
- } | undefined;
2480
- };
2481
- updatedAt: number;
2482
- icon?: string | undefined;
2483
- priceDatasourceId?: string | undefined;
2484
- }, {
2485
- symbol: string;
2486
- type: "CryptoCurrency";
2487
- id: string;
2488
- name: string;
2489
- market: {
2490
- coingeckoId?: string | undefined;
2491
- marketCapUsd?: {
2492
- value: bigint;
2493
- decimals: number;
2494
- } | undefined;
2495
- };
2496
- updatedAt: number;
2497
- icon?: string | undefined;
2498
- priceDatasourceId?: string | undefined;
2499
- }>, {
2500
- icon: string | undefined;
2501
- priceDatasourceId: string | undefined;
2502
- symbol: string;
2503
- type: "CryptoCurrency";
2504
- id: string;
2505
- name: string;
2506
- market: {
2507
- coingeckoId: string | undefined;
2508
- marketCapUsd: {
2509
- value: bigint;
2510
- decimals: number;
2511
- } | undefined;
2512
- };
2513
- updatedAt: number;
2514
- }, {
2515
- symbol: string;
2516
- type: "CryptoCurrency";
2517
- id: string;
2518
- name: string;
2519
- market: {
2520
- coingeckoId?: string | undefined;
2521
- marketCapUsd?: {
2522
- value: bigint;
2523
- decimals: number;
2524
- } | undefined;
2525
- };
2526
- updatedAt: number;
2527
- icon?: string | undefined;
2528
- priceDatasourceId?: string | undefined;
2529
- }>, z.ZodEffects<z.ZodObject<{
2530
- type: z.ZodLiteral<"FiatCurrency">;
2531
- id: z.ZodUnion<[z.ZodLiteral<"cny">, z.ZodLiteral<"eur">, z.ZodLiteral<"idr">, z.ZodLiteral<"jpy">, z.ZodLiteral<"krw">, z.ZodLiteral<"rub">, z.ZodLiteral<"twd">, z.ZodLiteral<"usd">]>;
2532
- name: z.ZodString;
2533
- symbol: z.ZodString;
2534
- icon: z.ZodOptional<z.ZodString>;
2535
- }, "strip", z.ZodTypeAny, {
2536
- symbol: string;
2537
- type: "FiatCurrency";
2538
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
2539
- name: string;
2540
- icon?: string | undefined;
2541
- }, {
2542
- symbol: string;
2543
- type: "FiatCurrency";
2544
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
2545
- name: string;
2546
- icon?: string | undefined;
2547
- }>, {
2548
- icon: string | undefined;
2549
- symbol: string;
2550
- type: "FiatCurrency";
2551
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
2552
- name: string;
2553
- }, {
2554
- symbol: string;
2555
- type: "FiatCurrency";
2556
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
2557
- name: string;
2558
- icon?: string | undefined;
2559
- }>, z.ZodEffects<z.ZodObject<{
2560
- type: z.ZodLiteral<"Nft">;
2561
- id: z.ZodString;
2562
- name: z.ZodOptional<z.ZodString>;
2563
- symbol: z.ZodOptional<z.ZodString>;
2564
- image: z.ZodOptional<z.ZodString>;
2565
- metadata: z.ZodOptional<z.ZodString>;
2566
- updatedAt: z.ZodNumber;
2567
- }, "strip", z.ZodTypeAny, {
2568
- type: "Nft";
2569
- id: string;
2570
- updatedAt: number;
2571
- symbol?: string | undefined;
2572
- name?: string | undefined;
2573
- image?: string | undefined;
2574
- metadata?: string | undefined;
2575
- }, {
2576
- type: "Nft";
2577
- id: string;
2578
- updatedAt: number;
2579
- symbol?: string | undefined;
2580
- name?: string | undefined;
2581
- image?: string | undefined;
2582
- metadata?: string | undefined;
2583
- }>, {
2584
- name: string | undefined;
2585
- symbol: string | undefined;
2586
- image: string | undefined;
2587
- metadata: string | undefined;
2588
- type: "Nft";
2589
- id: string;
2590
- updatedAt: number;
2591
- }, {
2592
- type: "Nft";
2593
- id: string;
2594
- updatedAt: number;
2595
- symbol?: string | undefined;
2596
- name?: string | undefined;
2597
- image?: string | undefined;
2598
- metadata?: string | undefined;
2599
- }>]>;
2600
- amount: z.ZodObject<{
2601
- value: z.ZodBigInt;
2602
- decimals: z.ZodNumber;
2603
- }, "strip", z.ZodTypeAny, {
2604
- value: bigint;
2605
- decimals: number;
2606
- }, {
2607
- value: bigint;
2608
- decimals: number;
2609
- }>;
2610
- price: z.ZodOptional<z.ZodObject<{
2611
- cryptoCurrencyId: z.ZodString;
2612
- fiatCurrencyId: z.ZodString;
2613
- price: z.ZodObject<{
2614
- value: z.ZodBigInt;
2615
- decimals: z.ZodNumber;
2616
- }, "strip", z.ZodTypeAny, {
2617
- value: bigint;
2618
- decimals: number;
2619
- }, {
2620
- value: bigint;
2621
- decimals: number;
2622
- }>;
2623
- timestamp: z.ZodNumber;
2624
- }, "strip", z.ZodTypeAny, {
2625
- cryptoCurrencyId: string;
2626
- fiatCurrencyId: string;
2627
- price: {
2628
- value: bigint;
2629
- decimals: number;
2630
- };
2631
- timestamp: number;
2632
- }, {
2633
- cryptoCurrencyId: string;
2634
- fiatCurrencyId: string;
2635
- price: {
2636
- value: bigint;
2637
- decimals: number;
2638
- };
2639
- timestamp: number;
2640
- }>>;
2641
- }, {
2642
- direction: z.ZodLiteral<"in">;
2643
- }>, "strip", z.ZodTypeAny, {
2644
- asset: {
2645
- icon: string | undefined;
2646
- priceDatasourceId: string | undefined;
2647
- symbol: string;
2648
- type: "CryptoCurrency";
2649
- id: string;
2650
- name: string;
2651
- market: {
2652
- coingeckoId: string | undefined;
2653
- marketCapUsd: {
2654
- value: bigint;
2655
- decimals: number;
2656
- } | undefined;
2657
- };
2658
- updatedAt: number;
2659
- } | {
2660
- icon: string | undefined;
2661
- symbol: string;
2662
- type: "FiatCurrency";
2663
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
2664
- name: string;
2665
- } | {
2666
- name: string | undefined;
2667
- symbol: string | undefined;
2668
- image: string | undefined;
2669
- metadata: string | undefined;
2670
- type: "Nft";
2671
- id: string;
2672
- updatedAt: number;
2673
- };
2674
- amount: {
2675
- value: bigint;
2676
- decimals: number;
2677
- };
2678
- direction: "in";
2679
- price?: {
2680
- cryptoCurrencyId: string;
2681
- fiatCurrencyId: string;
2682
- price: {
2683
- value: bigint;
2684
- decimals: number;
2685
- };
2686
- timestamp: number;
2687
- } | undefined;
2688
- from?: string | undefined;
2689
- to?: string | undefined;
2690
- }, {
2691
- asset: {
2692
- symbol: string;
2693
- type: "CryptoCurrency";
2694
- id: string;
2695
- name: string;
2696
- market: {
2697
- coingeckoId?: string | undefined;
2698
- marketCapUsd?: {
2699
- value: bigint;
2700
- decimals: number;
2701
- } | undefined;
2702
- };
2703
- updatedAt: number;
2704
- icon?: string | undefined;
2705
- priceDatasourceId?: string | undefined;
2706
- } | {
2707
- symbol: string;
2708
- type: "FiatCurrency";
2709
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
2710
- name: string;
2711
- icon?: string | undefined;
2712
- } | {
2713
- type: "Nft";
2714
- id: string;
2715
- updatedAt: number;
2716
- symbol?: string | undefined;
2717
- name?: string | undefined;
2718
- image?: string | undefined;
2719
- metadata?: string | undefined;
2720
- };
2721
- amount: {
2722
- value: bigint;
2723
- decimals: number;
2724
- };
2725
- direction: "in";
2726
- price?: {
2727
- cryptoCurrencyId: string;
2728
- fiatCurrencyId: string;
2729
- price: {
2730
- value: bigint;
2731
- decimals: number;
2732
- };
2733
- timestamp: number;
2734
- } | undefined;
2735
- from?: string | undefined;
2736
- to?: string | undefined;
2737
- }>, {
2738
- from: string | undefined;
2739
- to: string | undefined;
2740
- price: {
2741
- cryptoCurrencyId: string;
2742
- fiatCurrencyId: string;
2743
- price: {
2744
- value: bigint;
2745
- decimals: number;
2746
- };
2747
- timestamp: number;
2748
- } | undefined;
2749
- asset: {
2750
- icon: string | undefined;
2751
- priceDatasourceId: string | undefined;
2752
- symbol: string;
2753
- type: "CryptoCurrency";
2754
- id: string;
2755
- name: string;
2756
- market: {
2757
- coingeckoId: string | undefined;
2758
- marketCapUsd: {
2759
- value: bigint;
2760
- decimals: number;
2761
- } | undefined;
2762
- };
2763
- updatedAt: number;
2764
- } | {
2765
- icon: string | undefined;
2766
- symbol: string;
2767
- type: "FiatCurrency";
2768
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
2769
- name: string;
2770
- } | {
2771
- name: string | undefined;
2772
- symbol: string | undefined;
2773
- image: string | undefined;
2774
- metadata: string | undefined;
2775
- type: "Nft";
2776
- id: string;
2777
- updatedAt: number;
2778
- };
2779
- amount: {
2780
- value: bigint;
2781
- decimals: number;
2782
- };
2783
- direction: "in";
2784
- }, {
2785
- asset: {
2786
- symbol: string;
2787
- type: "CryptoCurrency";
2788
- id: string;
2789
- name: string;
2790
- market: {
2791
- coingeckoId?: string | undefined;
2792
- marketCapUsd?: {
2793
- value: bigint;
2794
- decimals: number;
2795
- } | undefined;
2796
- };
2797
- updatedAt: number;
2798
- icon?: string | undefined;
2799
- priceDatasourceId?: string | undefined;
2800
- } | {
2801
- symbol: string;
2802
- type: "FiatCurrency";
2803
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
2804
- name: string;
2805
- icon?: string | undefined;
2806
- } | {
2807
- type: "Nft";
2808
- id: string;
2809
- updatedAt: number;
2810
- symbol?: string | undefined;
2811
- name?: string | undefined;
2812
- image?: string | undefined;
2813
- metadata?: string | undefined;
2814
- };
2815
- amount: {
2816
- value: bigint;
2817
- decimals: number;
2818
- };
2819
- direction: "in";
2820
- price?: {
2821
- cryptoCurrencyId: string;
2822
- fiatCurrencyId: string;
2823
- price: {
2824
- value: bigint;
2825
- decimals: number;
2826
- };
2827
- timestamp: number;
2828
- } | undefined;
2829
- from?: string | undefined;
2830
- to?: string | undefined;
2831
- }>, z.ZodEffects<z.ZodObject<z.objectUtil.extendShape<{
2832
- from: z.ZodOptional<z.ZodString>;
2833
- to: z.ZodOptional<z.ZodString>;
2834
- asset: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
2835
- type: z.ZodLiteral<"CryptoCurrency">;
2836
- id: z.ZodString;
2837
- name: z.ZodString;
2838
- symbol: z.ZodString;
2839
- icon: z.ZodOptional<z.ZodString>;
2840
- market: z.ZodEffects<z.ZodObject<{
2841
- coingeckoId: z.ZodOptional<z.ZodString>;
2842
- marketCapUsd: z.ZodOptional<z.ZodObject<{
2843
- value: z.ZodBigInt;
2844
- decimals: z.ZodNumber;
2845
- }, "strip", z.ZodTypeAny, {
2846
- value: bigint;
2847
- decimals: number;
2848
- }, {
2849
- value: bigint;
2850
- decimals: number;
2851
- }>>;
2852
- }, "strip", z.ZodTypeAny, {
2853
- coingeckoId?: string | undefined;
2854
- marketCapUsd?: {
2855
- value: bigint;
2856
- decimals: number;
2857
- } | undefined;
2858
- }, {
2859
- coingeckoId?: string | undefined;
2860
- marketCapUsd?: {
2861
- value: bigint;
2862
- decimals: number;
2863
- } | undefined;
2864
- }>, {
2865
- coingeckoId: string | undefined;
2866
- marketCapUsd: {
2867
- value: bigint;
2868
- decimals: number;
2869
- } | undefined;
2870
- }, {
2871
- coingeckoId?: string | undefined;
2872
- marketCapUsd?: {
2873
- value: bigint;
2874
- decimals: number;
2875
- } | undefined;
2876
- }>;
2877
- priceDatasourceId: z.ZodOptional<z.ZodString>;
2878
- updatedAt: z.ZodNumber;
2879
- }, "strip", z.ZodTypeAny, {
2880
- symbol: string;
2881
- type: "CryptoCurrency";
2882
- id: string;
2883
- name: string;
2884
- market: {
2885
- coingeckoId: string | undefined;
2886
- marketCapUsd: {
2887
- value: bigint;
2888
- decimals: number;
2889
- } | undefined;
2890
- };
2891
- updatedAt: number;
2892
- icon?: string | undefined;
2893
- priceDatasourceId?: string | undefined;
2894
- }, {
2895
- symbol: string;
2896
- type: "CryptoCurrency";
2897
- id: string;
2898
- name: string;
2899
- market: {
2900
- coingeckoId?: string | undefined;
2901
- marketCapUsd?: {
2902
- value: bigint;
2903
- decimals: number;
2904
- } | undefined;
2905
- };
2906
- updatedAt: number;
2907
- icon?: string | undefined;
2908
- priceDatasourceId?: string | undefined;
2909
- }>, {
2910
- icon: string | undefined;
2911
- priceDatasourceId: string | undefined;
2912
- symbol: string;
2913
- type: "CryptoCurrency";
2914
- id: string;
2915
- name: string;
2916
- market: {
2917
- coingeckoId: string | undefined;
2918
- marketCapUsd: {
2919
- value: bigint;
2920
- decimals: number;
2921
- } | undefined;
2922
- };
2923
- updatedAt: number;
2924
- }, {
2925
- symbol: string;
2926
- type: "CryptoCurrency";
2927
- id: string;
2928
- name: string;
2929
- market: {
2930
- coingeckoId?: string | undefined;
2931
- marketCapUsd?: {
2932
- value: bigint;
2933
- decimals: number;
2934
- } | undefined;
2935
- };
2936
- updatedAt: number;
2937
- icon?: string | undefined;
2938
- priceDatasourceId?: string | undefined;
2939
- }>, z.ZodEffects<z.ZodObject<{
2940
- type: z.ZodLiteral<"FiatCurrency">;
2941
- id: z.ZodUnion<[z.ZodLiteral<"cny">, z.ZodLiteral<"eur">, z.ZodLiteral<"idr">, z.ZodLiteral<"jpy">, z.ZodLiteral<"krw">, z.ZodLiteral<"rub">, z.ZodLiteral<"twd">, z.ZodLiteral<"usd">]>;
2942
- name: z.ZodString;
2943
- symbol: z.ZodString;
2944
- icon: z.ZodOptional<z.ZodString>;
2945
- }, "strip", z.ZodTypeAny, {
2946
- symbol: string;
2947
- type: "FiatCurrency";
2948
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
2949
- name: string;
2950
- icon?: string | undefined;
2951
- }, {
2952
- symbol: string;
2953
- type: "FiatCurrency";
2954
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
2955
- name: string;
2956
- icon?: string | undefined;
2957
- }>, {
2958
- icon: string | undefined;
2959
- symbol: string;
2960
- type: "FiatCurrency";
2961
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
2962
- name: string;
2963
- }, {
2964
- symbol: string;
2965
- type: "FiatCurrency";
2966
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
2967
- name: string;
2968
- icon?: string | undefined;
2969
- }>, z.ZodEffects<z.ZodObject<{
2970
- type: z.ZodLiteral<"Nft">;
2971
- id: z.ZodString;
2972
- name: z.ZodOptional<z.ZodString>;
2973
- symbol: z.ZodOptional<z.ZodString>;
2974
- image: z.ZodOptional<z.ZodString>;
2975
- metadata: z.ZodOptional<z.ZodString>;
2976
- updatedAt: z.ZodNumber;
2977
- }, "strip", z.ZodTypeAny, {
2978
- type: "Nft";
2979
- id: string;
2980
- updatedAt: number;
2981
- symbol?: string | undefined;
2982
- name?: string | undefined;
2983
- image?: string | undefined;
2984
- metadata?: string | undefined;
2985
- }, {
2986
- type: "Nft";
2987
- id: string;
2988
- updatedAt: number;
2989
- symbol?: string | undefined;
2990
- name?: string | undefined;
2991
- image?: string | undefined;
2992
- metadata?: string | undefined;
2993
- }>, {
2994
- name: string | undefined;
2995
- symbol: string | undefined;
2996
- image: string | undefined;
2997
- metadata: string | undefined;
2998
- type: "Nft";
2999
- id: string;
3000
- updatedAt: number;
3001
- }, {
3002
- type: "Nft";
3003
- id: string;
3004
- updatedAt: number;
3005
- symbol?: string | undefined;
3006
- name?: string | undefined;
3007
- image?: string | undefined;
3008
- metadata?: string | undefined;
3009
- }>]>;
3010
- amount: z.ZodObject<{
3011
- value: z.ZodBigInt;
3012
- decimals: z.ZodNumber;
3013
- }, "strip", z.ZodTypeAny, {
3014
- value: bigint;
3015
- decimals: number;
3016
- }, {
3017
- value: bigint;
3018
- decimals: number;
3019
- }>;
3020
- price: z.ZodOptional<z.ZodObject<{
3021
- cryptoCurrencyId: z.ZodString;
3022
- fiatCurrencyId: z.ZodString;
3023
- price: z.ZodObject<{
3024
- value: z.ZodBigInt;
3025
- decimals: z.ZodNumber;
3026
- }, "strip", z.ZodTypeAny, {
3027
- value: bigint;
3028
- decimals: number;
3029
- }, {
3030
- value: bigint;
3031
- decimals: number;
3032
- }>;
3033
- timestamp: z.ZodNumber;
3034
- }, "strip", z.ZodTypeAny, {
3035
- cryptoCurrencyId: string;
3036
- fiatCurrencyId: string;
3037
- price: {
3038
- value: bigint;
3039
- decimals: number;
3040
- };
3041
- timestamp: number;
3042
- }, {
3043
- cryptoCurrencyId: string;
3044
- fiatCurrencyId: string;
3045
- price: {
3046
- value: bigint;
3047
- decimals: number;
3048
- };
3049
- timestamp: number;
3050
- }>>;
3051
- }, {
3052
- direction: z.ZodLiteral<"out">;
3053
- }>, "strip", z.ZodTypeAny, {
3054
- asset: {
3055
- icon: string | undefined;
3056
- priceDatasourceId: string | undefined;
3057
- symbol: string;
3058
- type: "CryptoCurrency";
3059
- id: string;
3060
- name: string;
3061
- market: {
3062
- coingeckoId: string | undefined;
3063
- marketCapUsd: {
3064
- value: bigint;
3065
- decimals: number;
3066
- } | undefined;
3067
- };
3068
- updatedAt: number;
3069
- } | {
3070
- icon: string | undefined;
3071
- symbol: string;
3072
- type: "FiatCurrency";
3073
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
3074
- name: string;
3075
- } | {
3076
- name: string | undefined;
3077
- symbol: string | undefined;
3078
- image: string | undefined;
3079
- metadata: string | undefined;
3080
- type: "Nft";
3081
- id: string;
3082
- updatedAt: number;
3083
- };
3084
- amount: {
3085
- value: bigint;
3086
- decimals: number;
3087
- };
3088
- direction: "out";
3089
- price?: {
3090
- cryptoCurrencyId: string;
3091
- fiatCurrencyId: string;
3092
- price: {
3093
- value: bigint;
3094
- decimals: number;
3095
- };
3096
- timestamp: number;
3097
- } | undefined;
3098
- from?: string | undefined;
3099
- to?: string | undefined;
3100
- }, {
3101
- asset: {
3102
- symbol: string;
3103
- type: "CryptoCurrency";
3104
- id: string;
3105
- name: string;
3106
- market: {
3107
- coingeckoId?: string | undefined;
3108
- marketCapUsd?: {
3109
- value: bigint;
3110
- decimals: number;
3111
- } | undefined;
3112
- };
3113
- updatedAt: number;
3114
- icon?: string | undefined;
3115
- priceDatasourceId?: string | undefined;
3116
- } | {
3117
- symbol: string;
3118
- type: "FiatCurrency";
3119
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
3120
- name: string;
3121
- icon?: string | undefined;
3122
- } | {
3123
- type: "Nft";
3124
- id: string;
3125
- updatedAt: number;
3126
- symbol?: string | undefined;
3127
- name?: string | undefined;
3128
- image?: string | undefined;
3129
- metadata?: string | undefined;
3130
- };
3131
- amount: {
3132
- value: bigint;
3133
- decimals: number;
3134
- };
3135
- direction: "out";
3136
- price?: {
3137
- cryptoCurrencyId: string;
3138
- fiatCurrencyId: string;
3139
- price: {
3140
- value: bigint;
3141
- decimals: number;
3142
- };
3143
- timestamp: number;
3144
- } | undefined;
3145
- from?: string | undefined;
3146
- to?: string | undefined;
3147
- }>, {
3148
- from: string | undefined;
3149
- to: string | undefined;
3150
- price: {
3151
- cryptoCurrencyId: string;
3152
- fiatCurrencyId: string;
3153
- price: {
3154
- value: bigint;
3155
- decimals: number;
3156
- };
3157
- timestamp: number;
3158
- } | undefined;
3159
- asset: {
3160
- icon: string | undefined;
3161
- priceDatasourceId: string | undefined;
3162
- symbol: string;
3163
- type: "CryptoCurrency";
3164
- id: string;
3165
- name: string;
3166
- market: {
3167
- coingeckoId: string | undefined;
3168
- marketCapUsd: {
3169
- value: bigint;
3170
- decimals: number;
3171
- } | undefined;
3172
- };
3173
- updatedAt: number;
3174
- } | {
3175
- icon: string | undefined;
3176
- symbol: string;
3177
- type: "FiatCurrency";
3178
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
3179
- name: string;
3180
- } | {
3181
- name: string | undefined;
3182
- symbol: string | undefined;
3183
- image: string | undefined;
3184
- metadata: string | undefined;
3185
- type: "Nft";
3186
- id: string;
3187
- updatedAt: number;
3188
- };
3189
- amount: {
3190
- value: bigint;
3191
- decimals: number;
3192
- };
3193
- direction: "out";
3194
- }, {
3195
- asset: {
3196
- symbol: string;
3197
- type: "CryptoCurrency";
3198
- id: string;
3199
- name: string;
3200
- market: {
3201
- coingeckoId?: string | undefined;
3202
- marketCapUsd?: {
3203
- value: bigint;
3204
- decimals: number;
3205
- } | undefined;
3206
- };
3207
- updatedAt: number;
3208
- icon?: string | undefined;
3209
- priceDatasourceId?: string | undefined;
3210
- } | {
3211
- symbol: string;
3212
- type: "FiatCurrency";
3213
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
3214
- name: string;
3215
- icon?: string | undefined;
3216
- } | {
3217
- type: "Nft";
3218
- id: string;
3219
- updatedAt: number;
3220
- symbol?: string | undefined;
3221
- name?: string | undefined;
3222
- image?: string | undefined;
3223
- metadata?: string | undefined;
3224
- };
3225
- amount: {
3226
- value: bigint;
3227
- decimals: number;
3228
- };
3229
- direction: "out";
3230
- price?: {
3231
- cryptoCurrencyId: string;
3232
- fiatCurrencyId: string;
3233
- price: {
3234
- value: bigint;
3235
- decimals: number;
3236
- };
3237
- timestamp: number;
3238
- } | undefined;
3239
- from?: string | undefined;
3240
- to?: string | undefined;
3241
- }>, z.ZodEffects<z.ZodObject<z.objectUtil.extendShape<{
3242
- from: z.ZodOptional<z.ZodString>;
3243
- to: z.ZodOptional<z.ZodString>;
3244
- asset: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
3245
- type: z.ZodLiteral<"CryptoCurrency">;
3246
- id: z.ZodString;
3247
- name: z.ZodString;
3248
- symbol: z.ZodString;
3249
- icon: z.ZodOptional<z.ZodString>;
3250
- market: z.ZodEffects<z.ZodObject<{
3251
- coingeckoId: z.ZodOptional<z.ZodString>;
3252
- marketCapUsd: z.ZodOptional<z.ZodObject<{
3253
- value: z.ZodBigInt;
3254
- decimals: z.ZodNumber;
3255
- }, "strip", z.ZodTypeAny, {
3256
- value: bigint;
3257
- decimals: number;
3258
- }, {
3259
- value: bigint;
3260
- decimals: number;
3261
- }>>;
3262
- }, "strip", z.ZodTypeAny, {
3263
- coingeckoId?: string | undefined;
3264
- marketCapUsd?: {
3265
- value: bigint;
3266
- decimals: number;
3267
- } | undefined;
3268
- }, {
3269
- coingeckoId?: string | undefined;
3270
- marketCapUsd?: {
3271
- value: bigint;
3272
- decimals: number;
3273
- } | undefined;
3274
- }>, {
3275
- coingeckoId: string | undefined;
3276
- marketCapUsd: {
3277
- value: bigint;
3278
- decimals: number;
3279
- } | undefined;
3280
- }, {
3281
- coingeckoId?: string | undefined;
3282
- marketCapUsd?: {
3283
- value: bigint;
3284
- decimals: number;
3285
- } | undefined;
3286
- }>;
3287
- priceDatasourceId: z.ZodOptional<z.ZodString>;
3288
- updatedAt: z.ZodNumber;
3289
- }, "strip", z.ZodTypeAny, {
3290
- symbol: string;
3291
- type: "CryptoCurrency";
3292
- id: string;
3293
- name: string;
3294
- market: {
3295
- coingeckoId: string | undefined;
3296
- marketCapUsd: {
3297
- value: bigint;
3298
- decimals: number;
3299
- } | undefined;
3300
- };
3301
- updatedAt: number;
3302
- icon?: string | undefined;
3303
- priceDatasourceId?: string | undefined;
3304
- }, {
3305
- symbol: string;
3306
- type: "CryptoCurrency";
3307
- id: string;
3308
- name: string;
3309
- market: {
3310
- coingeckoId?: string | undefined;
3311
- marketCapUsd?: {
3312
- value: bigint;
3313
- decimals: number;
3314
- } | undefined;
3315
- };
3316
- updatedAt: number;
3317
- icon?: string | undefined;
3318
- priceDatasourceId?: string | undefined;
3319
- }>, {
3320
- icon: string | undefined;
3321
- priceDatasourceId: string | undefined;
3322
- symbol: string;
3323
- type: "CryptoCurrency";
3324
- id: string;
3325
- name: string;
3326
- market: {
3327
- coingeckoId: string | undefined;
3328
- marketCapUsd: {
3329
- value: bigint;
3330
- decimals: number;
3331
- } | undefined;
3332
- };
3333
- updatedAt: number;
3334
- }, {
3335
- symbol: string;
3336
- type: "CryptoCurrency";
3337
- id: string;
3338
- name: string;
3339
- market: {
3340
- coingeckoId?: string | undefined;
3341
- marketCapUsd?: {
3342
- value: bigint;
3343
- decimals: number;
3344
- } | undefined;
3345
- };
3346
- updatedAt: number;
3347
- icon?: string | undefined;
3348
- priceDatasourceId?: string | undefined;
3349
- }>, z.ZodEffects<z.ZodObject<{
3350
- type: z.ZodLiteral<"FiatCurrency">;
3351
- id: z.ZodUnion<[z.ZodLiteral<"cny">, z.ZodLiteral<"eur">, z.ZodLiteral<"idr">, z.ZodLiteral<"jpy">, z.ZodLiteral<"krw">, z.ZodLiteral<"rub">, z.ZodLiteral<"twd">, z.ZodLiteral<"usd">]>;
3352
- name: z.ZodString;
3353
- symbol: z.ZodString;
3354
- icon: z.ZodOptional<z.ZodString>;
3355
- }, "strip", z.ZodTypeAny, {
3356
- symbol: string;
3357
- type: "FiatCurrency";
3358
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
3359
- name: string;
3360
- icon?: string | undefined;
3361
- }, {
3362
- symbol: string;
3363
- type: "FiatCurrency";
3364
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
3365
- name: string;
3366
- icon?: string | undefined;
3367
- }>, {
3368
- icon: string | undefined;
3369
- symbol: string;
3370
- type: "FiatCurrency";
3371
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
3372
- name: string;
3373
- }, {
3374
- symbol: string;
3375
- type: "FiatCurrency";
3376
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
3377
- name: string;
3378
- icon?: string | undefined;
3379
- }>, z.ZodEffects<z.ZodObject<{
3380
- type: z.ZodLiteral<"Nft">;
3381
- id: z.ZodString;
3382
- name: z.ZodOptional<z.ZodString>;
3383
- symbol: z.ZodOptional<z.ZodString>;
3384
- image: z.ZodOptional<z.ZodString>;
3385
- metadata: z.ZodOptional<z.ZodString>;
3386
- updatedAt: z.ZodNumber;
3387
- }, "strip", z.ZodTypeAny, {
3388
- type: "Nft";
3389
- id: string;
3390
- updatedAt: number;
3391
- symbol?: string | undefined;
3392
- name?: string | undefined;
3393
- image?: string | undefined;
3394
- metadata?: string | undefined;
3395
- }, {
3396
- type: "Nft";
3397
- id: string;
3398
- updatedAt: number;
3399
- symbol?: string | undefined;
3400
- name?: string | undefined;
3401
- image?: string | undefined;
3402
- metadata?: string | undefined;
3403
- }>, {
3404
- name: string | undefined;
3405
- symbol: string | undefined;
3406
- image: string | undefined;
3407
- metadata: string | undefined;
3408
- type: "Nft";
3409
- id: string;
3410
- updatedAt: number;
3411
- }, {
3412
- type: "Nft";
3413
- id: string;
3414
- updatedAt: number;
3415
- symbol?: string | undefined;
3416
- name?: string | undefined;
3417
- image?: string | undefined;
3418
- metadata?: string | undefined;
3419
- }>]>;
3420
- amount: z.ZodObject<{
3421
- value: z.ZodBigInt;
3422
- decimals: z.ZodNumber;
3423
- }, "strip", z.ZodTypeAny, {
3424
- value: bigint;
3425
- decimals: number;
3426
- }, {
3427
- value: bigint;
3428
- decimals: number;
3429
- }>;
3430
- price: z.ZodOptional<z.ZodObject<{
3431
- cryptoCurrencyId: z.ZodString;
3432
- fiatCurrencyId: z.ZodString;
3433
- price: z.ZodObject<{
3434
- value: z.ZodBigInt;
3435
- decimals: z.ZodNumber;
3436
- }, "strip", z.ZodTypeAny, {
3437
- value: bigint;
3438
- decimals: number;
3439
- }, {
3440
- value: bigint;
3441
- decimals: number;
3442
- }>;
3443
- timestamp: z.ZodNumber;
3444
- }, "strip", z.ZodTypeAny, {
3445
- cryptoCurrencyId: string;
3446
- fiatCurrencyId: string;
3447
- price: {
3448
- value: bigint;
3449
- decimals: number;
3450
- };
3451
- timestamp: number;
3452
- }, {
3453
- cryptoCurrencyId: string;
3454
- fiatCurrencyId: string;
3455
- price: {
3456
- value: bigint;
3457
- decimals: number;
3458
- };
3459
- timestamp: number;
3460
- }>>;
3461
- }, {
3462
- direction: z.ZodLiteral<"none">;
3463
- }>, "strip", z.ZodTypeAny, {
3464
- asset: {
3465
- icon: string | undefined;
3466
- priceDatasourceId: string | undefined;
3467
- symbol: string;
3468
- type: "CryptoCurrency";
3469
- id: string;
3470
- name: string;
3471
- market: {
3472
- coingeckoId: string | undefined;
3473
- marketCapUsd: {
3474
- value: bigint;
3475
- decimals: number;
3476
- } | undefined;
3477
- };
3478
- updatedAt: number;
3479
- } | {
3480
- icon: string | undefined;
3481
- symbol: string;
3482
- type: "FiatCurrency";
3483
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
3484
- name: string;
3485
- } | {
3486
- name: string | undefined;
3487
- symbol: string | undefined;
3488
- image: string | undefined;
3489
- metadata: string | undefined;
3490
- type: "Nft";
3491
- id: string;
3492
- updatedAt: number;
3493
- };
3494
- amount: {
3495
- value: bigint;
3496
- decimals: number;
3497
- };
3498
- direction: "none";
3499
- price?: {
3500
- cryptoCurrencyId: string;
3501
- fiatCurrencyId: string;
3502
- price: {
3503
- value: bigint;
3504
- decimals: number;
3505
- };
3506
- timestamp: number;
3507
- } | undefined;
3508
- from?: string | undefined;
3509
- to?: string | undefined;
3510
- }, {
3511
- asset: {
3512
- symbol: string;
3513
- type: "CryptoCurrency";
3514
- id: string;
3515
- name: string;
3516
- market: {
3517
- coingeckoId?: string | undefined;
3518
- marketCapUsd?: {
3519
- value: bigint;
3520
- decimals: number;
3521
- } | undefined;
3522
- };
3523
- updatedAt: number;
3524
- icon?: string | undefined;
3525
- priceDatasourceId?: string | undefined;
3526
- } | {
3527
- symbol: string;
3528
- type: "FiatCurrency";
3529
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
3530
- name: string;
3531
- icon?: string | undefined;
3532
- } | {
3533
- type: "Nft";
3534
- id: string;
3535
- updatedAt: number;
3536
- symbol?: string | undefined;
3537
- name?: string | undefined;
3538
- image?: string | undefined;
3539
- metadata?: string | undefined;
3540
- };
3541
- amount: {
3542
- value: bigint;
3543
- decimals: number;
3544
- };
3545
- direction: "none";
3546
- price?: {
3547
- cryptoCurrencyId: string;
3548
- fiatCurrencyId: string;
3549
- price: {
3550
- value: bigint;
3551
- decimals: number;
3552
- };
3553
- timestamp: number;
3554
- } | undefined;
3555
- from?: string | undefined;
3556
- to?: string | undefined;
3557
- }>, {
3558
- from: string | undefined;
3559
- to: string | undefined;
3560
- price: {
3561
- cryptoCurrencyId: string;
3562
- fiatCurrencyId: string;
3563
- price: {
3564
- value: bigint;
3565
- decimals: number;
3566
- };
3567
- timestamp: number;
3568
- } | undefined;
3569
- asset: {
3570
- icon: string | undefined;
3571
- priceDatasourceId: string | undefined;
3572
- symbol: string;
3573
- type: "CryptoCurrency";
3574
- id: string;
3575
- name: string;
3576
- market: {
3577
- coingeckoId: string | undefined;
3578
- marketCapUsd: {
3579
- value: bigint;
3580
- decimals: number;
3581
- } | undefined;
3582
- };
3583
- updatedAt: number;
3584
- } | {
3585
- icon: string | undefined;
3586
- symbol: string;
3587
- type: "FiatCurrency";
3588
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
3589
- name: string;
3590
- } | {
3591
- name: string | undefined;
3592
- symbol: string | undefined;
3593
- image: string | undefined;
3594
- metadata: string | undefined;
3595
- type: "Nft";
3596
- id: string;
3597
- updatedAt: number;
3598
- };
3599
- amount: {
3600
- value: bigint;
3601
- decimals: number;
3602
- };
3603
- direction: "none";
3604
- }, {
3605
- asset: {
3606
- symbol: string;
3607
- type: "CryptoCurrency";
3608
- id: string;
3609
- name: string;
3610
- market: {
3611
- coingeckoId?: string | undefined;
3612
- marketCapUsd?: {
3613
- value: bigint;
3614
- decimals: number;
3615
- } | undefined;
3616
- };
3617
- updatedAt: number;
3618
- icon?: string | undefined;
3619
- priceDatasourceId?: string | undefined;
3620
- } | {
3621
- symbol: string;
3622
- type: "FiatCurrency";
3623
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
3624
- name: string;
3625
- icon?: string | undefined;
3626
- } | {
3627
- type: "Nft";
3628
- id: string;
3629
- updatedAt: number;
3630
- symbol?: string | undefined;
3631
- name?: string | undefined;
3632
- image?: string | undefined;
3633
- metadata?: string | undefined;
3634
- };
3635
- amount: {
3636
- value: bigint;
3637
- decimals: number;
3638
- };
3639
- direction: "none";
3640
- price?: {
3641
- cryptoCurrencyId: string;
3642
- fiatCurrencyId: string;
3643
- price: {
3644
- value: bigint;
3645
- decimals: number;
3646
- };
3647
- timestamp: number;
3648
- } | undefined;
3649
- from?: string | undefined;
3650
- to?: string | undefined;
3651
- }>]>, "many">;
3652
- }, {
3653
- type: z.ZodLiteral<"NormalAccountAction">;
3654
- }>, {
3655
- action: z.ZodLiteral<"buy-crypto">;
3656
- transfers: z.ZodArray<z.ZodUnion<[z.ZodEffects<z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
3657
- from: z.ZodOptional<z.ZodString>;
3658
- to: z.ZodOptional<z.ZodString>;
3659
- asset: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
3660
- type: z.ZodLiteral<"CryptoCurrency">;
3661
- id: z.ZodString;
3662
- name: z.ZodString;
3663
- symbol: z.ZodString;
3664
- icon: z.ZodOptional<z.ZodString>;
3665
- market: z.ZodEffects<z.ZodObject<{
3666
- coingeckoId: z.ZodOptional<z.ZodString>;
3667
- marketCapUsd: z.ZodOptional<z.ZodObject<{
3668
- value: z.ZodBigInt;
3669
- decimals: z.ZodNumber;
3670
- }, "strip", z.ZodTypeAny, {
3671
- value: bigint;
3672
- decimals: number;
3673
- }, {
3674
- value: bigint;
3675
- decimals: number;
3676
- }>>;
3677
- }, "strip", z.ZodTypeAny, {
3678
- coingeckoId?: string | undefined;
3679
- marketCapUsd?: {
3680
- value: bigint;
3681
- decimals: number;
3682
- } | undefined;
3683
- }, {
3684
- coingeckoId?: string | undefined;
3685
- marketCapUsd?: {
3686
- value: bigint;
3687
- decimals: number;
3688
- } | undefined;
3689
- }>, {
3690
- coingeckoId: string | undefined;
3691
- marketCapUsd: {
3692
- value: bigint;
3693
- decimals: number;
3694
- } | undefined;
3695
- }, {
3696
- coingeckoId?: string | undefined;
3697
- marketCapUsd?: {
3698
- value: bigint;
3699
- decimals: number;
3700
- } | undefined;
3701
- }>;
3702
- priceDatasourceId: z.ZodOptional<z.ZodString>;
3703
- updatedAt: z.ZodNumber;
3704
- }, "strip", z.ZodTypeAny, {
3705
- symbol: string;
3706
- type: "CryptoCurrency";
3707
- id: string;
3708
- name: string;
3709
- market: {
3710
- coingeckoId: string | undefined;
3711
- marketCapUsd: {
3712
- value: bigint;
3713
- decimals: number;
3714
- } | undefined;
3715
- };
3716
- updatedAt: number;
3717
- icon?: string | undefined;
3718
- priceDatasourceId?: string | undefined;
3719
- }, {
3720
- symbol: string;
3721
- type: "CryptoCurrency";
3722
- id: string;
3723
- name: string;
3724
- market: {
3725
- coingeckoId?: string | undefined;
3726
- marketCapUsd?: {
3727
- value: bigint;
3728
- decimals: number;
3729
- } | undefined;
3730
- };
3731
- updatedAt: number;
3732
- icon?: string | undefined;
3733
- priceDatasourceId?: string | undefined;
3734
- }>, {
3735
- icon: string | undefined;
3736
- priceDatasourceId: string | undefined;
3737
- symbol: string;
3738
- type: "CryptoCurrency";
3739
- id: string;
3740
- name: string;
3741
- market: {
3742
- coingeckoId: string | undefined;
3743
- marketCapUsd: {
3744
- value: bigint;
3745
- decimals: number;
3746
- } | undefined;
3747
- };
3748
- updatedAt: number;
3749
- }, {
3750
- symbol: string;
3751
- type: "CryptoCurrency";
3752
- id: string;
3753
- name: string;
3754
- market: {
3755
- coingeckoId?: string | undefined;
3756
- marketCapUsd?: {
3757
- value: bigint;
3758
- decimals: number;
3759
- } | undefined;
3760
- };
3761
- updatedAt: number;
3762
- icon?: string | undefined;
3763
- priceDatasourceId?: string | undefined;
3764
- }>, z.ZodEffects<z.ZodObject<{
3765
- type: z.ZodLiteral<"FiatCurrency">;
3766
- id: z.ZodUnion<[z.ZodLiteral<"cny">, z.ZodLiteral<"eur">, z.ZodLiteral<"idr">, z.ZodLiteral<"jpy">, z.ZodLiteral<"krw">, z.ZodLiteral<"rub">, z.ZodLiteral<"twd">, z.ZodLiteral<"usd">]>;
3767
- name: z.ZodString;
3768
- symbol: z.ZodString;
3769
- icon: z.ZodOptional<z.ZodString>;
3770
- }, "strip", z.ZodTypeAny, {
3771
- symbol: string;
3772
- type: "FiatCurrency";
3773
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
3774
- name: string;
3775
- icon?: string | undefined;
3776
- }, {
3777
- symbol: string;
3778
- type: "FiatCurrency";
3779
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
3780
- name: string;
3781
- icon?: string | undefined;
3782
- }>, {
3783
- icon: string | undefined;
3784
- symbol: string;
3785
- type: "FiatCurrency";
3786
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
3787
- name: string;
3788
- }, {
3789
- symbol: string;
3790
- type: "FiatCurrency";
3791
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
3792
- name: string;
3793
- icon?: string | undefined;
3794
- }>, z.ZodEffects<z.ZodObject<{
3795
- type: z.ZodLiteral<"Nft">;
3796
- id: z.ZodString;
3797
- name: z.ZodOptional<z.ZodString>;
3798
- symbol: z.ZodOptional<z.ZodString>;
3799
- image: z.ZodOptional<z.ZodString>;
3800
- metadata: z.ZodOptional<z.ZodString>;
3801
- updatedAt: z.ZodNumber;
3802
- }, "strip", z.ZodTypeAny, {
3803
- type: "Nft";
3804
- id: string;
3805
- updatedAt: number;
3806
- symbol?: string | undefined;
3807
- name?: string | undefined;
3808
- image?: string | undefined;
3809
- metadata?: string | undefined;
3810
- }, {
3811
- type: "Nft";
3812
- id: string;
3813
- updatedAt: number;
3814
- symbol?: string | undefined;
3815
- name?: string | undefined;
3816
- image?: string | undefined;
3817
- metadata?: string | undefined;
3818
- }>, {
3819
- name: string | undefined;
3820
- symbol: string | undefined;
3821
- image: string | undefined;
3822
- metadata: string | undefined;
3823
- type: "Nft";
3824
- id: string;
3825
- updatedAt: number;
3826
- }, {
3827
- type: "Nft";
3828
- id: string;
3829
- updatedAt: number;
3830
- symbol?: string | undefined;
3831
- name?: string | undefined;
3832
- image?: string | undefined;
3833
- metadata?: string | undefined;
3834
- }>]>;
3835
- amount: z.ZodObject<{
3836
- value: z.ZodBigInt;
3837
- decimals: z.ZodNumber;
3838
- }, "strip", z.ZodTypeAny, {
3839
- value: bigint;
3840
- decimals: number;
3841
- }, {
3842
- value: bigint;
3843
- decimals: number;
3844
- }>;
3845
- price: z.ZodOptional<z.ZodObject<{
3846
- cryptoCurrencyId: z.ZodString;
3847
- fiatCurrencyId: z.ZodString;
3848
- price: z.ZodObject<{
3849
- value: z.ZodBigInt;
3850
- decimals: z.ZodNumber;
3851
- }, "strip", z.ZodTypeAny, {
3852
- value: bigint;
3853
- decimals: number;
3854
- }, {
3855
- value: bigint;
3856
- decimals: number;
3857
- }>;
3858
- timestamp: z.ZodNumber;
3859
- }, "strip", z.ZodTypeAny, {
3860
- cryptoCurrencyId: string;
3861
- fiatCurrencyId: string;
3862
- price: {
3863
- value: bigint;
3864
- decimals: number;
3865
- };
3866
- timestamp: number;
3867
- }, {
3868
- cryptoCurrencyId: string;
3869
- fiatCurrencyId: string;
3870
- price: {
3871
- value: bigint;
3872
- decimals: number;
3873
- };
3874
- timestamp: number;
3875
- }>>;
3876
- }, {
3877
- direction: z.ZodLiteral<"in">;
3878
- }>, {
3879
- asset: z.ZodEffects<z.ZodObject<{
3880
- type: z.ZodLiteral<"CryptoCurrency">;
3881
- id: z.ZodString;
3882
- name: z.ZodString;
3883
- symbol: z.ZodString;
3884
- icon: z.ZodOptional<z.ZodString>;
3885
- market: z.ZodEffects<z.ZodObject<{
3886
- coingeckoId: z.ZodOptional<z.ZodString>;
3887
- marketCapUsd: z.ZodOptional<z.ZodObject<{
3888
- value: z.ZodBigInt;
3889
- decimals: z.ZodNumber;
3890
- }, "strip", z.ZodTypeAny, {
3891
- value: bigint;
3892
- decimals: number;
3893
- }, {
3894
- value: bigint;
3895
- decimals: number;
3896
- }>>;
3897
- }, "strip", z.ZodTypeAny, {
3898
- coingeckoId?: string | undefined;
3899
- marketCapUsd?: {
3900
- value: bigint;
3901
- decimals: number;
3902
- } | undefined;
3903
- }, {
3904
- coingeckoId?: string | undefined;
3905
- marketCapUsd?: {
3906
- value: bigint;
3907
- decimals: number;
3908
- } | undefined;
3909
- }>, {
3910
- coingeckoId: string | undefined;
3911
- marketCapUsd: {
3912
- value: bigint;
3913
- decimals: number;
3914
- } | undefined;
3915
- }, {
3916
- coingeckoId?: string | undefined;
3917
- marketCapUsd?: {
3918
- value: bigint;
3919
- decimals: number;
3920
- } | undefined;
3921
- }>;
3922
- priceDatasourceId: z.ZodOptional<z.ZodString>;
3923
- updatedAt: z.ZodNumber;
3924
- }, "strip", z.ZodTypeAny, {
3925
- symbol: string;
3926
- type: "CryptoCurrency";
3927
- id: string;
3928
- name: string;
3929
- market: {
3930
- coingeckoId: string | undefined;
3931
- marketCapUsd: {
3932
- value: bigint;
3933
- decimals: number;
3934
- } | undefined;
3935
- };
3936
- updatedAt: number;
3937
- icon?: string | undefined;
3938
- priceDatasourceId?: string | undefined;
3939
- }, {
3940
- symbol: string;
3941
- type: "CryptoCurrency";
3942
- id: string;
3943
- name: string;
3944
- market: {
3945
- coingeckoId?: string | undefined;
3946
- marketCapUsd?: {
3947
- value: bigint;
3948
- decimals: number;
3949
- } | undefined;
3950
- };
3951
- updatedAt: number;
3952
- icon?: string | undefined;
3953
- priceDatasourceId?: string | undefined;
3954
- }>, {
3955
- icon: string | undefined;
3956
- priceDatasourceId: string | undefined;
3957
- symbol: string;
3958
- type: "CryptoCurrency";
3959
- id: string;
3960
- name: string;
3961
- market: {
3962
- coingeckoId: string | undefined;
3963
- marketCapUsd: {
3964
- value: bigint;
3965
- decimals: number;
3966
- } | undefined;
3967
- };
3968
- updatedAt: number;
3969
- }, {
3970
- symbol: string;
3971
- type: "CryptoCurrency";
3972
- id: string;
3973
- name: string;
3974
- market: {
3975
- coingeckoId?: string | undefined;
3976
- marketCapUsd?: {
3977
- value: bigint;
3978
- decimals: number;
3979
- } | undefined;
3980
- };
3981
- updatedAt: number;
3982
- icon?: string | undefined;
3983
- priceDatasourceId?: string | undefined;
3984
- }>;
3985
- }>, "strip", z.ZodTypeAny, {
3986
- asset: {
3987
- icon: string | undefined;
3988
- priceDatasourceId: string | undefined;
3989
- symbol: string;
3990
- type: "CryptoCurrency";
3991
- id: string;
3992
- name: string;
3993
- market: {
3994
- coingeckoId: string | undefined;
3995
- marketCapUsd: {
3996
- value: bigint;
3997
- decimals: number;
3998
- } | undefined;
3999
- };
4000
- updatedAt: number;
4001
- };
4002
- amount: {
4003
- value: bigint;
4004
- decimals: number;
4005
- };
4006
- direction: "in";
4007
- price?: {
4008
- cryptoCurrencyId: string;
4009
- fiatCurrencyId: string;
4010
- price: {
4011
- value: bigint;
4012
- decimals: number;
4013
- };
4014
- timestamp: number;
4015
- } | undefined;
4016
- from?: string | undefined;
4017
- to?: string | undefined;
4018
- }, {
4019
- asset: {
4020
- symbol: string;
4021
- type: "CryptoCurrency";
4022
- id: string;
4023
- name: string;
4024
- market: {
4025
- coingeckoId?: string | undefined;
4026
- marketCapUsd?: {
4027
- value: bigint;
4028
- decimals: number;
4029
- } | undefined;
4030
- };
4031
- updatedAt: number;
4032
- icon?: string | undefined;
4033
- priceDatasourceId?: string | undefined;
4034
- };
4035
- amount: {
4036
- value: bigint;
4037
- decimals: number;
4038
- };
4039
- direction: "in";
4040
- price?: {
4041
- cryptoCurrencyId: string;
4042
- fiatCurrencyId: string;
4043
- price: {
4044
- value: bigint;
4045
- decimals: number;
4046
- };
4047
- timestamp: number;
4048
- } | undefined;
4049
- from?: string | undefined;
4050
- to?: string | undefined;
4051
- }>, {
4052
- from: string | undefined;
4053
- to: string | undefined;
4054
- price: {
4055
- cryptoCurrencyId: string;
4056
- fiatCurrencyId: string;
4057
- price: {
4058
- value: bigint;
4059
- decimals: number;
4060
- };
4061
- timestamp: number;
4062
- } | undefined;
4063
- asset: {
4064
- icon: string | undefined;
4065
- priceDatasourceId: string | undefined;
4066
- symbol: string;
4067
- type: "CryptoCurrency";
4068
- id: string;
4069
- name: string;
4070
- market: {
4071
- coingeckoId: string | undefined;
4072
- marketCapUsd: {
4073
- value: bigint;
4074
- decimals: number;
4075
- } | undefined;
4076
- };
4077
- updatedAt: number;
4078
- };
4079
- amount: {
4080
- value: bigint;
4081
- decimals: number;
4082
- };
4083
- direction: "in";
4084
- }, {
4085
- asset: {
4086
- symbol: string;
4087
- type: "CryptoCurrency";
4088
- id: string;
4089
- name: string;
4090
- market: {
4091
- coingeckoId?: string | undefined;
4092
- marketCapUsd?: {
4093
- value: bigint;
4094
- decimals: number;
4095
- } | undefined;
4096
- };
4097
- updatedAt: number;
4098
- icon?: string | undefined;
4099
- priceDatasourceId?: string | undefined;
4100
- };
4101
- amount: {
4102
- value: bigint;
4103
- decimals: number;
4104
- };
4105
- direction: "in";
4106
- price?: {
4107
- cryptoCurrencyId: string;
4108
- fiatCurrencyId: string;
4109
- price: {
4110
- value: bigint;
4111
- decimals: number;
4112
- };
4113
- timestamp: number;
4114
- } | undefined;
4115
- from?: string | undefined;
4116
- to?: string | undefined;
4117
- }>, z.ZodEffects<z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
4118
- from: z.ZodOptional<z.ZodString>;
4119
- to: z.ZodOptional<z.ZodString>;
4120
- asset: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
4121
- type: z.ZodLiteral<"CryptoCurrency">;
4122
- id: z.ZodString;
4123
- name: z.ZodString;
4124
- symbol: z.ZodString;
4125
- icon: z.ZodOptional<z.ZodString>;
4126
- market: z.ZodEffects<z.ZodObject<{
4127
- coingeckoId: z.ZodOptional<z.ZodString>;
4128
- marketCapUsd: z.ZodOptional<z.ZodObject<{
4129
- value: z.ZodBigInt;
4130
- decimals: z.ZodNumber;
4131
- }, "strip", z.ZodTypeAny, {
4132
- value: bigint;
4133
- decimals: number;
4134
- }, {
4135
- value: bigint;
4136
- decimals: number;
4137
- }>>;
4138
- }, "strip", z.ZodTypeAny, {
4139
- coingeckoId?: string | undefined;
4140
- marketCapUsd?: {
4141
- value: bigint;
4142
- decimals: number;
4143
- } | undefined;
4144
- }, {
4145
- coingeckoId?: string | undefined;
4146
- marketCapUsd?: {
4147
- value: bigint;
4148
- decimals: number;
4149
- } | undefined;
4150
- }>, {
4151
- coingeckoId: string | undefined;
4152
- marketCapUsd: {
4153
- value: bigint;
4154
- decimals: number;
4155
- } | undefined;
4156
- }, {
4157
- coingeckoId?: string | undefined;
4158
- marketCapUsd?: {
4159
- value: bigint;
4160
- decimals: number;
4161
- } | undefined;
4162
- }>;
4163
- priceDatasourceId: z.ZodOptional<z.ZodString>;
4164
- updatedAt: z.ZodNumber;
4165
- }, "strip", z.ZodTypeAny, {
4166
- symbol: string;
4167
- type: "CryptoCurrency";
4168
- id: string;
4169
- name: string;
4170
- market: {
4171
- coingeckoId: string | undefined;
4172
- marketCapUsd: {
4173
- value: bigint;
4174
- decimals: number;
4175
- } | undefined;
4176
- };
4177
- updatedAt: number;
4178
- icon?: string | undefined;
4179
- priceDatasourceId?: string | undefined;
4180
- }, {
4181
- symbol: string;
4182
- type: "CryptoCurrency";
4183
- id: string;
4184
- name: string;
4185
- market: {
4186
- coingeckoId?: string | undefined;
4187
- marketCapUsd?: {
4188
- value: bigint;
4189
- decimals: number;
4190
- } | undefined;
4191
- };
4192
- updatedAt: number;
4193
- icon?: string | undefined;
4194
- priceDatasourceId?: string | undefined;
4195
- }>, {
4196
- icon: string | undefined;
4197
- priceDatasourceId: string | undefined;
4198
- symbol: string;
4199
- type: "CryptoCurrency";
4200
- id: string;
4201
- name: string;
4202
- market: {
4203
- coingeckoId: string | undefined;
4204
- marketCapUsd: {
4205
- value: bigint;
4206
- decimals: number;
4207
- } | undefined;
4208
- };
4209
- updatedAt: number;
4210
- }, {
4211
- symbol: string;
4212
- type: "CryptoCurrency";
4213
- id: string;
4214
- name: string;
4215
- market: {
4216
- coingeckoId?: string | undefined;
4217
- marketCapUsd?: {
4218
- value: bigint;
4219
- decimals: number;
4220
- } | undefined;
4221
- };
4222
- updatedAt: number;
4223
- icon?: string | undefined;
4224
- priceDatasourceId?: string | undefined;
4225
- }>, z.ZodEffects<z.ZodObject<{
4226
- type: z.ZodLiteral<"FiatCurrency">;
4227
- id: z.ZodUnion<[z.ZodLiteral<"cny">, z.ZodLiteral<"eur">, z.ZodLiteral<"idr">, z.ZodLiteral<"jpy">, z.ZodLiteral<"krw">, z.ZodLiteral<"rub">, z.ZodLiteral<"twd">, z.ZodLiteral<"usd">]>;
4228
- name: z.ZodString;
4229
- symbol: z.ZodString;
4230
- icon: z.ZodOptional<z.ZodString>;
4231
- }, "strip", z.ZodTypeAny, {
4232
- symbol: string;
4233
- type: "FiatCurrency";
4234
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
4235
- name: string;
4236
- icon?: string | undefined;
4237
- }, {
4238
- symbol: string;
4239
- type: "FiatCurrency";
4240
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
4241
- name: string;
4242
- icon?: string | undefined;
4243
- }>, {
4244
- icon: string | undefined;
4245
- symbol: string;
4246
- type: "FiatCurrency";
4247
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
4248
- name: string;
4249
- }, {
4250
- symbol: string;
4251
- type: "FiatCurrency";
4252
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
4253
- name: string;
4254
- icon?: string | undefined;
4255
- }>, z.ZodEffects<z.ZodObject<{
4256
- type: z.ZodLiteral<"Nft">;
4257
- id: z.ZodString;
4258
- name: z.ZodOptional<z.ZodString>;
4259
- symbol: z.ZodOptional<z.ZodString>;
4260
- image: z.ZodOptional<z.ZodString>;
4261
- metadata: z.ZodOptional<z.ZodString>;
4262
- updatedAt: z.ZodNumber;
4263
- }, "strip", z.ZodTypeAny, {
4264
- type: "Nft";
4265
- id: string;
4266
- updatedAt: number;
4267
- symbol?: string | undefined;
4268
- name?: string | undefined;
4269
- image?: string | undefined;
4270
- metadata?: string | undefined;
4271
- }, {
4272
- type: "Nft";
4273
- id: string;
4274
- updatedAt: number;
4275
- symbol?: string | undefined;
4276
- name?: string | undefined;
4277
- image?: string | undefined;
4278
- metadata?: string | undefined;
4279
- }>, {
4280
- name: string | undefined;
4281
- symbol: string | undefined;
4282
- image: string | undefined;
4283
- metadata: string | undefined;
4284
- type: "Nft";
4285
- id: string;
4286
- updatedAt: number;
4287
- }, {
4288
- type: "Nft";
4289
- id: string;
4290
- updatedAt: number;
4291
- symbol?: string | undefined;
4292
- name?: string | undefined;
4293
- image?: string | undefined;
4294
- metadata?: string | undefined;
4295
- }>]>;
4296
- amount: z.ZodObject<{
4297
- value: z.ZodBigInt;
4298
- decimals: z.ZodNumber;
4299
- }, "strip", z.ZodTypeAny, {
4300
- value: bigint;
4301
- decimals: number;
4302
- }, {
4303
- value: bigint;
4304
- decimals: number;
4305
- }>;
4306
- price: z.ZodOptional<z.ZodObject<{
4307
- cryptoCurrencyId: z.ZodString;
4308
- fiatCurrencyId: z.ZodString;
4309
- price: z.ZodObject<{
4310
- value: z.ZodBigInt;
4311
- decimals: z.ZodNumber;
4312
- }, "strip", z.ZodTypeAny, {
4313
- value: bigint;
4314
- decimals: number;
4315
- }, {
4316
- value: bigint;
4317
- decimals: number;
4318
- }>;
4319
- timestamp: z.ZodNumber;
4320
- }, "strip", z.ZodTypeAny, {
4321
- cryptoCurrencyId: string;
4322
- fiatCurrencyId: string;
4323
- price: {
4324
- value: bigint;
4325
- decimals: number;
4326
- };
4327
- timestamp: number;
4328
- }, {
4329
- cryptoCurrencyId: string;
4330
- fiatCurrencyId: string;
4331
- price: {
4332
- value: bigint;
4333
- decimals: number;
4334
- };
4335
- timestamp: number;
4336
- }>>;
4337
- }, {
4338
- direction: z.ZodLiteral<"out">;
4339
- }>, {
4340
- asset: z.ZodEffects<z.ZodObject<{
4341
- type: z.ZodLiteral<"FiatCurrency">;
4342
- id: z.ZodUnion<[z.ZodLiteral<"cny">, z.ZodLiteral<"eur">, z.ZodLiteral<"idr">, z.ZodLiteral<"jpy">, z.ZodLiteral<"krw">, z.ZodLiteral<"rub">, z.ZodLiteral<"twd">, z.ZodLiteral<"usd">]>;
4343
- name: z.ZodString;
4344
- symbol: z.ZodString;
4345
- icon: z.ZodOptional<z.ZodString>;
4346
- }, "strip", z.ZodTypeAny, {
4347
- symbol: string;
4348
- type: "FiatCurrency";
4349
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
4350
- name: string;
4351
- icon?: string | undefined;
4352
- }, {
4353
- symbol: string;
4354
- type: "FiatCurrency";
4355
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
4356
- name: string;
4357
- icon?: string | undefined;
4358
- }>, {
4359
- icon: string | undefined;
4360
- symbol: string;
4361
- type: "FiatCurrency";
4362
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
4363
- name: string;
4364
- }, {
4365
- symbol: string;
4366
- type: "FiatCurrency";
4367
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
4368
- name: string;
4369
- icon?: string | undefined;
4370
- }>;
4371
- }>, "strip", z.ZodTypeAny, {
4372
- asset: {
4373
- icon: string | undefined;
4374
- symbol: string;
4375
- type: "FiatCurrency";
4376
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
4377
- name: string;
4378
- };
4379
- amount: {
4380
- value: bigint;
4381
- decimals: number;
4382
- };
4383
- direction: "out";
4384
- price?: {
4385
- cryptoCurrencyId: string;
4386
- fiatCurrencyId: string;
4387
- price: {
4388
- value: bigint;
4389
- decimals: number;
4390
- };
4391
- timestamp: number;
4392
- } | undefined;
4393
- from?: string | undefined;
4394
- to?: string | undefined;
4395
- }, {
4396
- asset: {
4397
- symbol: string;
4398
- type: "FiatCurrency";
4399
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
4400
- name: string;
4401
- icon?: string | undefined;
4402
- };
4403
- amount: {
4404
- value: bigint;
4405
- decimals: number;
4406
- };
4407
- direction: "out";
4408
- price?: {
4409
- cryptoCurrencyId: string;
4410
- fiatCurrencyId: string;
4411
- price: {
4412
- value: bigint;
4413
- decimals: number;
4414
- };
4415
- timestamp: number;
4416
- } | undefined;
4417
- from?: string | undefined;
4418
- to?: string | undefined;
4419
- }>, {
4420
- from: string | undefined;
4421
- to: string | undefined;
4422
- price: {
4423
- cryptoCurrencyId: string;
4424
- fiatCurrencyId: string;
4425
- price: {
4426
- value: bigint;
4427
- decimals: number;
4428
- };
4429
- timestamp: number;
4430
- } | undefined;
4431
- asset: {
4432
- icon: string | undefined;
4433
- symbol: string;
4434
- type: "FiatCurrency";
4435
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
4436
- name: string;
4437
- };
4438
- amount: {
4439
- value: bigint;
4440
- decimals: number;
4441
- };
4442
- direction: "out";
4443
- }, {
4444
- asset: {
4445
- symbol: string;
4446
- type: "FiatCurrency";
4447
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
4448
- name: string;
4449
- icon?: string | undefined;
4450
- };
4451
- amount: {
4452
- value: bigint;
4453
- decimals: number;
4454
- };
4455
- direction: "out";
4456
- price?: {
4457
- cryptoCurrencyId: string;
4458
- fiatCurrencyId: string;
4459
- price: {
4460
- value: bigint;
4461
- decimals: number;
4462
- };
4463
- timestamp: number;
4464
- } | undefined;
4465
- from?: string | undefined;
4466
- to?: string | undefined;
4467
- }>]>, "many">;
4468
- }>, "strip", z.ZodTypeAny, {
4469
- type: "NormalAccountAction";
4470
- timestamp: number;
4471
- order: number;
4472
- action: "buy-crypto";
4473
- source: string;
4474
- evidence: "none" | "contract" | "system-rule" | "user-rule" | "manual-check";
4475
- transfers: ({
4476
- from: string | undefined;
4477
- to: string | undefined;
4478
- price: {
4479
- cryptoCurrencyId: string;
4480
- fiatCurrencyId: string;
4481
- price: {
4482
- value: bigint;
4483
- decimals: number;
4484
- };
4485
- timestamp: number;
4486
- } | undefined;
4487
- asset: {
4488
- icon: string | undefined;
4489
- priceDatasourceId: string | undefined;
4490
- symbol: string;
4491
- type: "CryptoCurrency";
4492
- id: string;
4493
- name: string;
4494
- market: {
4495
- coingeckoId: string | undefined;
4496
- marketCapUsd: {
4497
- value: bigint;
4498
- decimals: number;
4499
- } | undefined;
4500
- };
4501
- updatedAt: number;
4502
- };
4503
- amount: {
4504
- value: bigint;
4505
- decimals: number;
4506
- };
4507
- direction: "in";
4508
- } | {
4509
- from: string | undefined;
4510
- to: string | undefined;
4511
- price: {
4512
- cryptoCurrencyId: string;
4513
- fiatCurrencyId: string;
4514
- price: {
4515
- value: bigint;
4516
- decimals: number;
4517
- };
4518
- timestamp: number;
4519
- } | undefined;
4520
- asset: {
4521
- icon: string | undefined;
4522
- symbol: string;
4523
- type: "FiatCurrency";
4524
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
4525
- name: string;
4526
- };
4527
- amount: {
4528
- value: bigint;
4529
- decimals: number;
4530
- };
4531
- direction: "out";
4532
- })[];
4533
- comment?: string | undefined;
4534
- app?: {
4535
- description: string | undefined;
4536
- website: string | undefined;
4537
- icon: string | undefined;
4538
- id: string;
4539
- name: string;
4540
- categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
4541
- } | undefined;
4542
- }, {
4543
- type: "NormalAccountAction";
4544
- timestamp: number;
4545
- order: number;
4546
- action: "buy-crypto";
4547
- source: string;
4548
- evidence: "none" | "contract" | "system-rule" | "user-rule" | "manual-check";
4549
- transfers: ({
4550
- asset: {
4551
- symbol: string;
4552
- type: "CryptoCurrency";
4553
- id: string;
4554
- name: string;
4555
- market: {
4556
- coingeckoId?: string | undefined;
4557
- marketCapUsd?: {
4558
- value: bigint;
4559
- decimals: number;
4560
- } | undefined;
4561
- };
4562
- updatedAt: number;
4563
- icon?: string | undefined;
4564
- priceDatasourceId?: string | undefined;
4565
- };
4566
- amount: {
4567
- value: bigint;
4568
- decimals: number;
4569
- };
4570
- direction: "in";
4571
- price?: {
4572
- cryptoCurrencyId: string;
4573
- fiatCurrencyId: string;
4574
- price: {
4575
- value: bigint;
4576
- decimals: number;
4577
- };
4578
- timestamp: number;
4579
- } | undefined;
4580
- from?: string | undefined;
4581
- to?: string | undefined;
4582
- } | {
4583
- asset: {
4584
- symbol: string;
4585
- type: "FiatCurrency";
4586
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
4587
- name: string;
4588
- icon?: string | undefined;
4589
- };
4590
- amount: {
4591
- value: bigint;
4592
- decimals: number;
4593
- };
4594
- direction: "out";
4595
- price?: {
4596
- cryptoCurrencyId: string;
4597
- fiatCurrencyId: string;
4598
- price: {
4599
- value: bigint;
4600
- decimals: number;
4601
- };
4602
- timestamp: number;
4603
- } | undefined;
4604
- from?: string | undefined;
4605
- to?: string | undefined;
4606
- })[];
4607
- comment?: string | undefined;
4608
- app?: {
4609
- id: string;
4610
- name: string;
4611
- categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
4612
- icon?: string | undefined;
4613
- description?: string | undefined;
4614
- website?: string | undefined;
4615
- } | undefined;
4616
- }>, {
4617
- comment: string | undefined;
4618
- app: {
4619
- description: string | undefined;
4620
- website: string | undefined;
4621
- icon: string | undefined;
4622
- id: string;
4623
- name: string;
4624
- categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
4625
- } | undefined;
4626
- type: "NormalAccountAction";
4627
- timestamp: number;
4628
- order: number;
4629
- action: "buy-crypto";
4630
- source: string;
4631
- evidence: "none" | "contract" | "system-rule" | "user-rule" | "manual-check";
4632
- transfers: ({
4633
- from: string | undefined;
4634
- to: string | undefined;
4635
- price: {
4636
- cryptoCurrencyId: string;
4637
- fiatCurrencyId: string;
4638
- price: {
4639
- value: bigint;
4640
- decimals: number;
4641
- };
4642
- timestamp: number;
4643
- } | undefined;
4644
- asset: {
4645
- icon: string | undefined;
4646
- priceDatasourceId: string | undefined;
4647
- symbol: string;
4648
- type: "CryptoCurrency";
4649
- id: string;
4650
- name: string;
4651
- market: {
4652
- coingeckoId: string | undefined;
4653
- marketCapUsd: {
4654
- value: bigint;
4655
- decimals: number;
4656
- } | undefined;
4657
- };
4658
- updatedAt: number;
4659
- };
4660
- amount: {
4661
- value: bigint;
4662
- decimals: number;
4663
- };
4664
- direction: "in";
4665
- } | {
4666
- from: string | undefined;
4667
- to: string | undefined;
4668
- price: {
4669
- cryptoCurrencyId: string;
4670
- fiatCurrencyId: string;
4671
- price: {
4672
- value: bigint;
4673
- decimals: number;
4674
- };
4675
- timestamp: number;
4676
- } | undefined;
4677
- asset: {
4678
- icon: string | undefined;
4679
- symbol: string;
4680
- type: "FiatCurrency";
4681
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
4682
- name: string;
4683
- };
4684
- amount: {
4685
- value: bigint;
4686
- decimals: number;
4687
- };
4688
- direction: "out";
4689
- })[];
4690
- }, {
4691
- type: "NormalAccountAction";
4692
- timestamp: number;
4693
- order: number;
4694
- action: "buy-crypto";
4695
- source: string;
4696
- evidence: "none" | "contract" | "system-rule" | "user-rule" | "manual-check";
4697
- transfers: ({
4698
- asset: {
4699
- symbol: string;
4700
- type: "CryptoCurrency";
4701
- id: string;
4702
- name: string;
4703
- market: {
4704
- coingeckoId?: string | undefined;
4705
- marketCapUsd?: {
4706
- value: bigint;
4707
- decimals: number;
4708
- } | undefined;
4709
- };
4710
- updatedAt: number;
4711
- icon?: string | undefined;
4712
- priceDatasourceId?: string | undefined;
4713
- };
4714
- amount: {
4715
- value: bigint;
4716
- decimals: number;
4717
- };
4718
- direction: "in";
4719
- price?: {
4720
- cryptoCurrencyId: string;
4721
- fiatCurrencyId: string;
4722
- price: {
4723
- value: bigint;
4724
- decimals: number;
4725
- };
4726
- timestamp: number;
4727
- } | undefined;
4728
- from?: string | undefined;
4729
- to?: string | undefined;
4730
- } | {
4731
- asset: {
4732
- symbol: string;
4733
- type: "FiatCurrency";
4734
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
4735
- name: string;
4736
- icon?: string | undefined;
4737
- };
4738
- amount: {
4739
- value: bigint;
4740
- decimals: number;
4741
- };
4742
- direction: "out";
4743
- price?: {
4744
- cryptoCurrencyId: string;
4745
- fiatCurrencyId: string;
4746
- price: {
4747
- value: bigint;
4748
- decimals: number;
4749
- };
4750
- timestamp: number;
4751
- } | undefined;
4752
- from?: string | undefined;
4753
- to?: string | undefined;
4754
- })[];
4755
- comment?: string | undefined;
4756
- app?: {
4757
- id: string;
4758
- name: string;
4759
- categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
4760
- icon?: string | undefined;
4761
- description?: string | undefined;
4762
- website?: string | undefined;
4763
- } | undefined;
4764
- }>;
4765
- //# sourceMappingURL=buyCrypto.d.ts.map