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