@0xtorch/core 0.0.36 → 0.0.38

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