@primuslabs/fhetransform-sdk 0.4.0

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 (302) hide show
  1. package/README.md +198 -0
  2. package/dist/abis/acl.abi.d.ts +379 -0
  3. package/dist/abis/acl.abi.js +495 -0
  4. package/dist/abis/acl.abi.js.map +1 -0
  5. package/dist/abis/alphatrion_reward.abi.d.ts +407 -0
  6. package/dist/abis/alphatrion_reward.abi.js +532 -0
  7. package/dist/abis/alphatrion_reward.abi.js.map +1 -0
  8. package/dist/abis/ciphertext_digests.abi.d.ts +336 -0
  9. package/dist/abis/ciphertext_digests.abi.js +444 -0
  10. package/dist/abis/ciphertext_digests.abi.js.map +1 -0
  11. package/dist/abis/ciphertext_verification.abi.d.ts +637 -0
  12. package/dist/abis/ciphertext_verification.abi.js +830 -0
  13. package/dist/abis/ciphertext_verification.abi.js.map +1 -0
  14. package/dist/abis/convert_token.abi.d.ts +922 -0
  15. package/dist/abis/convert_token.abi.js +1208 -0
  16. package/dist/abis/convert_token.abi.js.map +1 -0
  17. package/dist/abis/decryption.abi.d.ts +956 -0
  18. package/dist/abis/decryption.abi.js +1244 -0
  19. package/dist/abis/decryption.abi.js.map +1 -0
  20. package/dist/abis/erc20.abi.d.ts +265 -0
  21. package/dist/abis/erc20.abi.js +350 -0
  22. package/dist/abis/erc20.abi.js.map +1 -0
  23. package/dist/abis/fhe_executor.abi.d.ts +1535 -0
  24. package/dist/abis/fhe_executor.abi.js +1962 -0
  25. package/dist/abis/fhe_executor.abi.js.map +1 -0
  26. package/dist/abis/space_bridge_config.abi.d.ts +792 -0
  27. package/dist/abis/space_bridge_config.abi.js +1032 -0
  28. package/dist/abis/space_bridge_config.abi.js.map +1 -0
  29. package/dist/abis/token.abi.d.ts +630 -0
  30. package/dist/abis/token.abi.js +828 -0
  31. package/dist/abis/token.abi.js.map +1 -0
  32. package/dist/cli/eusdc.d.ts +2 -0
  33. package/dist/cli/eusdc.js +41 -0
  34. package/dist/cli/eusdc.js.map +1 -0
  35. package/dist/contract/callbacks.d.ts +59 -0
  36. package/dist/contract/callbacks.js +2 -0
  37. package/dist/contract/callbacks.js.map +1 -0
  38. package/dist/contract/convert-token.d.ts +107 -0
  39. package/dist/contract/convert-token.js +249 -0
  40. package/dist/contract/convert-token.js.map +1 -0
  41. package/dist/contract/token.d.ts +167 -0
  42. package/dist/contract/token.js +404 -0
  43. package/dist/contract/token.js.map +1 -0
  44. package/dist/contract/transaction.d.ts +29 -0
  45. package/dist/contract/transaction.js +2 -0
  46. package/dist/contract/transaction.js.map +1 -0
  47. package/dist/core/address.d.ts +118 -0
  48. package/dist/core/address.js +200 -0
  49. package/dist/core/address.js.map +1 -0
  50. package/dist/core/auth.d.ts +68 -0
  51. package/dist/core/auth.js +58 -0
  52. package/dist/core/auth.js.map +1 -0
  53. package/dist/core/bytes.d.ts +48 -0
  54. package/dist/core/bytes.js +117 -0
  55. package/dist/core/bytes.js.map +1 -0
  56. package/dist/core/cache-manager.d.ts +138 -0
  57. package/dist/core/cache-manager.js +440 -0
  58. package/dist/core/cache-manager.js.map +1 -0
  59. package/dist/core/chain.d.ts +41 -0
  60. package/dist/core/chain.js +59 -0
  61. package/dist/core/chain.js.map +1 -0
  62. package/dist/core/constants.d.ts +24 -0
  63. package/dist/core/constants.js +25 -0
  64. package/dist/core/constants.js.map +1 -0
  65. package/dist/core/error.d.ts +2 -0
  66. package/dist/core/error.js +14 -0
  67. package/dist/core/error.js.map +1 -0
  68. package/dist/core/errors/error-catalog.d.ts +29 -0
  69. package/dist/core/errors/error-catalog.js +84 -0
  70. package/dist/core/errors/error-catalog.js.map +1 -0
  71. package/dist/core/errors/error-codes.d.ts +52 -0
  72. package/dist/core/errors/error-codes.js +61 -0
  73. package/dist/core/errors/error-codes.js.map +1 -0
  74. package/dist/core/errors/error-utils.d.ts +27 -0
  75. package/dist/core/errors/error-utils.js +110 -0
  76. package/dist/core/errors/error-utils.js.map +1 -0
  77. package/dist/core/errors/fhe-error.d.ts +98 -0
  78. package/dist/core/errors/fhe-error.js +190 -0
  79. package/dist/core/errors/fhe-error.js.map +1 -0
  80. package/dist/core/errors/index.d.ts +4 -0
  81. package/dist/core/errors/index.js +5 -0
  82. package/dist/core/errors/index.js.map +1 -0
  83. package/dist/core/estimate.d.ts +39 -0
  84. package/dist/core/estimate.js +111 -0
  85. package/dist/core/estimate.js.map +1 -0
  86. package/dist/core/event.d.ts +212 -0
  87. package/dist/core/event.js +42 -0
  88. package/dist/core/event.js.map +1 -0
  89. package/dist/core/fhe-type.d.ts +75 -0
  90. package/dist/core/fhe-type.js +115 -0
  91. package/dist/core/fhe-type.js.map +1 -0
  92. package/dist/core/fhe.d.ts +11 -0
  93. package/dist/core/fhe.js +23 -0
  94. package/dist/core/fhe.js.map +1 -0
  95. package/dist/core/handle.d.ts +42 -0
  96. package/dist/core/handle.js +99 -0
  97. package/dist/core/handle.js.map +1 -0
  98. package/dist/core/json-utils.d.ts +18 -0
  99. package/dist/core/json-utils.js +37 -0
  100. package/dist/core/json-utils.js.map +1 -0
  101. package/dist/core/kms.d.ts +42 -0
  102. package/dist/core/kms.js +70 -0
  103. package/dist/core/kms.js.map +1 -0
  104. package/dist/core/logger.d.ts +3 -0
  105. package/dist/core/logger.js +11 -0
  106. package/dist/core/logger.js.map +1 -0
  107. package/dist/core/pretty-print.d.ts +18 -0
  108. package/dist/core/pretty-print.js +84 -0
  109. package/dist/core/pretty-print.js.map +1 -0
  110. package/dist/core/primitives.d.ts +22 -0
  111. package/dist/core/primitives.js +2 -0
  112. package/dist/core/primitives.js.map +1 -0
  113. package/dist/core/retryable-handler.d.ts +74 -0
  114. package/dist/core/retryable-handler.js +227 -0
  115. package/dist/core/retryable-handler.js.map +1 -0
  116. package/dist/core/signer-address-info.d.ts +15 -0
  117. package/dist/core/signer-address-info.js +33 -0
  118. package/dist/core/signer-address-info.js.map +1 -0
  119. package/dist/core/string.d.ts +28 -0
  120. package/dist/core/string.js +33 -0
  121. package/dist/core/string.js.map +1 -0
  122. package/dist/core/swallow.d.ts +23 -0
  123. package/dist/core/swallow.js +37 -0
  124. package/dist/core/swallow.js.map +1 -0
  125. package/dist/core/system-contract-info.d.ts +17 -0
  126. package/dist/core/system-contract-info.js +41 -0
  127. package/dist/core/system-contract-info.js.map +1 -0
  128. package/dist/core/ttl-cache.d.ts +81 -0
  129. package/dist/core/ttl-cache.js +113 -0
  130. package/dist/core/ttl-cache.js.map +1 -0
  131. package/dist/core/tx-error-parser.d.ts +40 -0
  132. package/dist/core/tx-error-parser.js +83 -0
  133. package/dist/core/tx-error-parser.js.map +1 -0
  134. package/dist/core/utils.d.ts +62 -0
  135. package/dist/core/utils.js +143 -0
  136. package/dist/core/utils.js.map +1 -0
  137. package/dist/index.d.ts +40 -0
  138. package/dist/index.js +48 -0
  139. package/dist/index.js.map +1 -0
  140. package/dist/jazz/encrypt-key-p.d.ts +65 -0
  141. package/dist/jazz/encrypt-key-p.js +283 -0
  142. package/dist/jazz/encrypt-key-p.js.map +1 -0
  143. package/dist/jazz/encrypt-p.d.ts +82 -0
  144. package/dist/jazz/encrypt-p.js +139 -0
  145. package/dist/jazz/encrypt-p.js.map +1 -0
  146. package/dist/jazz/encrypt.d.ts +58 -0
  147. package/dist/jazz/encrypt.js +155 -0
  148. package/dist/jazz/encrypt.js.map +1 -0
  149. package/dist/jazz/input-proof-p.d.ts +122 -0
  150. package/dist/jazz/input-proof-p.js +265 -0
  151. package/dist/jazz/input-proof-p.js.map +1 -0
  152. package/dist/jazz/jazz-client-i.d.ts +16 -0
  153. package/dist/jazz/jazz-client-i.js +2 -0
  154. package/dist/jazz/jazz-client-i.js.map +1 -0
  155. package/dist/jazz/jazz-client.d.ts +18 -0
  156. package/dist/jazz/jazz-client.js +24 -0
  157. package/dist/jazz/jazz-client.js.map +1 -0
  158. package/dist/jazz/key-pair.d.ts +50 -0
  159. package/dist/jazz/key-pair.js +166 -0
  160. package/dist/jazz/key-pair.js.map +1 -0
  161. package/dist/jazz/mock/fake.d.ts +3 -0
  162. package/dist/jazz/mock/fake.js +23 -0
  163. package/dist/jazz/mock/fake.js.map +1 -0
  164. package/dist/jazz/mock/fetch-input-proof.d.ts +4 -0
  165. package/dist/jazz/mock/fetch-input-proof.js +63 -0
  166. package/dist/jazz/mock/fetch-input-proof.js.map +1 -0
  167. package/dist/jazz/mock/fetch-key-url.d.ts +3 -0
  168. package/dist/jazz/mock/fetch-key-url.js +15 -0
  169. package/dist/jazz/mock/fetch-key-url.js.map +1 -0
  170. package/dist/jazz/mock/fetch-public-decrypt.d.ts +3 -0
  171. package/dist/jazz/mock/fetch-public-decrypt.js +81 -0
  172. package/dist/jazz/mock/fetch-public-decrypt.js.map +1 -0
  173. package/dist/jazz/mock/fetch-user-decrypt.d.ts +4 -0
  174. package/dist/jazz/mock/fetch-user-decrypt.js +174 -0
  175. package/dist/jazz/mock/fetch-user-decrypt.js.map +1 -0
  176. package/dist/jazz/module/fetch-input-proof.d.ts +19 -0
  177. package/dist/jazz/module/fetch-input-proof.js +72 -0
  178. package/dist/jazz/module/fetch-input-proof.js.map +1 -0
  179. package/dist/jazz/module/fetch-key-url.d.ts +17 -0
  180. package/dist/jazz/module/fetch-key-url.js +46 -0
  181. package/dist/jazz/module/fetch-key-url.js.map +1 -0
  182. package/dist/jazz/module/fetch-public-decrypt.d.ts +19 -0
  183. package/dist/jazz/module/fetch-public-decrypt.js +65 -0
  184. package/dist/jazz/module/fetch-public-decrypt.js.map +1 -0
  185. package/dist/jazz/module/fetch-user-decrypt.d.ts +19 -0
  186. package/dist/jazz/module/fetch-user-decrypt.js +109 -0
  187. package/dist/jazz/module/fetch-user-decrypt.js.map +1 -0
  188. package/dist/jazz/module/jazz-async-request.d.ts +102 -0
  189. package/dist/jazz/module/jazz-async-request.js +515 -0
  190. package/dist/jazz/module/jazz-async-request.js.map +1 -0
  191. package/dist/jazz/module/jazz-p.d.ts +61 -0
  192. package/dist/jazz/module/jazz-p.js +33 -0
  193. package/dist/jazz/module/jazz-p.js.map +1 -0
  194. package/dist/jazz/module/s3-download.d.ts +85 -0
  195. package/dist/jazz/module/s3-download.js +293 -0
  196. package/dist/jazz/module/s3-download.js.map +1 -0
  197. package/dist/jazz/permit.d.ts +200 -0
  198. package/dist/jazz/permit.js +319 -0
  199. package/dist/jazz/permit.js.map +1 -0
  200. package/dist/jazz/public-decrypt-p.d.ts +96 -0
  201. package/dist/jazz/public-decrypt-p.js +258 -0
  202. package/dist/jazz/public-decrypt-p.js.map +1 -0
  203. package/dist/jazz/public-decrypt.d.ts +48 -0
  204. package/dist/jazz/public-decrypt.js +156 -0
  205. package/dist/jazz/public-decrypt.js.map +1 -0
  206. package/dist/jazz/read-contract.d.ts +81 -0
  207. package/dist/jazz/read-contract.js +125 -0
  208. package/dist/jazz/read-contract.js.map +1 -0
  209. package/dist/jazz/types/common.d.ts +17 -0
  210. package/dist/jazz/types/common.js +2 -0
  211. package/dist/jazz/types/common.js.map +1 -0
  212. package/dist/jazz/types/input-proof.d.ts +76 -0
  213. package/dist/jazz/types/input-proof.js +2 -0
  214. package/dist/jazz/types/input-proof.js.map +1 -0
  215. package/dist/jazz/types/key-url.d.ts +68 -0
  216. package/dist/jazz/types/key-url.js +5 -0
  217. package/dist/jazz/types/key-url.js.map +1 -0
  218. package/dist/jazz/types/public-decrypt.d.ts +61 -0
  219. package/dist/jazz/types/public-decrypt.js +2 -0
  220. package/dist/jazz/types/public-decrypt.js.map +1 -0
  221. package/dist/jazz/types/user-decrypt.d.ts +123 -0
  222. package/dist/jazz/types/user-decrypt.js +2 -0
  223. package/dist/jazz/types/user-decrypt.js.map +1 -0
  224. package/dist/jazz/user-decrypt-p.d.ts +111 -0
  225. package/dist/jazz/user-decrypt-p.js +280 -0
  226. package/dist/jazz/user-decrypt-p.js.map +1 -0
  227. package/dist/jazz/user-decrypt.d.ts +74 -0
  228. package/dist/jazz/user-decrypt.js +143 -0
  229. package/dist/jazz/user-decrypt.js.map +1 -0
  230. package/dist/native/fhe-api.js +5959 -0
  231. package/dist/native/fhe-api.node.cjs +6167 -0
  232. package/dist/native/fhe-api.node.worker.cjs +210 -0
  233. package/dist/native/fhe-api.wasm +0 -0
  234. package/dist/native/fhe-api.worker.js +164 -0
  235. package/dist/native/kms/node/kms_lib.d.ts +38 -0
  236. package/dist/native/kms/node/kms_lib.js +356 -0
  237. package/dist/native/kms/node/kms_lib_bg.wasm +0 -0
  238. package/dist/native/kms/node/kms_lib_bg.wasm.d.ts +21 -0
  239. package/dist/native/kms/node/package.json +11 -0
  240. package/dist/native/kms/web/kms_lib.d.ts +84 -0
  241. package/dist/native/kms/web/kms_lib.js +443 -0
  242. package/dist/native/kms/web/kms_lib_bg.wasm +0 -0
  243. package/dist/native/kms/web/kms_lib_bg.wasm.d.ts +21 -0
  244. package/dist/native/kms/web/package.json +15 -0
  245. package/dist/runtime/browser.d.ts +36 -0
  246. package/dist/runtime/browser.js +115 -0
  247. package/dist/runtime/browser.js.map +1 -0
  248. package/dist/runtime/node.d.ts +30 -0
  249. package/dist/runtime/node.js +95 -0
  250. package/dist/runtime/node.js.map +1 -0
  251. package/dist/sdk/fhetransform-sdk-b.d.ts +102 -0
  252. package/dist/sdk/fhetransform-sdk-b.js +294 -0
  253. package/dist/sdk/fhetransform-sdk-b.js.map +1 -0
  254. package/dist/sdk/fhetransform-sdk.d.ts +87 -0
  255. package/dist/sdk/fhetransform-sdk.js +135 -0
  256. package/dist/sdk/fhetransform-sdk.js.map +1 -0
  257. package/dist/sdk/jazz-service.d.ts +13 -0
  258. package/dist/sdk/jazz-service.js +58 -0
  259. package/dist/sdk/jazz-service.js.map +1 -0
  260. package/dist/sdk/permit-service.d.ts +45 -0
  261. package/dist/sdk/permit-service.js +144 -0
  262. package/dist/sdk/permit-service.js.map +1 -0
  263. package/dist/wasm/fhe-wasm-client.d.ts +19 -0
  264. package/dist/wasm/fhe-wasm-client.js +23 -0
  265. package/dist/wasm/fhe-wasm-client.js.map +1 -0
  266. package/dist/wasm/fhe-wasm-module.d.ts +24 -0
  267. package/dist/wasm/fhe-wasm-module.js +141 -0
  268. package/dist/wasm/fhe-wasm-module.js.map +1 -0
  269. package/dist/wasm/fhe-wasm-type.d.ts +59 -0
  270. package/dist/wasm/fhe-wasm-type.js +244 -0
  271. package/dist/wasm/fhe-wasm-type.js.map +1 -0
  272. package/dist/wasm/wasm-loader.browser.d.ts +21 -0
  273. package/dist/wasm/wasm-loader.browser.js +143 -0
  274. package/dist/wasm/wasm-loader.browser.js.map +1 -0
  275. package/dist/wasm/wasm-loader.node.d.ts +24 -0
  276. package/dist/wasm/wasm-loader.node.js +114 -0
  277. package/dist/wasm/wasm-loader.node.js.map +1 -0
  278. package/dist/wasm/worker-client.browser.d.ts +6 -0
  279. package/dist/wasm/worker-client.browser.js +21 -0
  280. package/dist/wasm/worker-client.browser.js.map +1 -0
  281. package/dist/wasm/worker-client.d.ts +34 -0
  282. package/dist/wasm/worker-client.js +160 -0
  283. package/dist/wasm/worker-client.js.map +1 -0
  284. package/dist/wasm/worker-client.node.d.ts +6 -0
  285. package/dist/wasm/worker-client.node.js +20 -0
  286. package/dist/wasm/worker-client.node.js.map +1 -0
  287. package/dist/wasm/worker-message.d.ts +61 -0
  288. package/dist/wasm/worker-message.js +2 -0
  289. package/dist/wasm/worker-message.js.map +1 -0
  290. package/dist/wasm/worker-transport.browser.d.ts +15 -0
  291. package/dist/wasm/worker-transport.browser.js +35 -0
  292. package/dist/wasm/worker-transport.browser.js.map +1 -0
  293. package/dist/wasm/worker-transport.d.ts +6 -0
  294. package/dist/wasm/worker-transport.js +2 -0
  295. package/dist/wasm/worker-transport.js.map +1 -0
  296. package/dist/wasm/worker-transport.node.d.ts +17 -0
  297. package/dist/wasm/worker-transport.node.js +39 -0
  298. package/dist/wasm/worker-transport.node.js.map +1 -0
  299. package/dist/wasm/worker.d.ts +1 -0
  300. package/dist/wasm/worker.js +69 -0
  301. package/dist/wasm/worker.js.map +1 -0
  302. package/package.json +81 -0
@@ -0,0 +1,1208 @@
1
+ export const convertTokenAbi = [
2
+ {
3
+ "inputs": [
4
+ {
5
+ "internalType": "uint256",
6
+ "name": "businessFee",
7
+ "type": "uint256"
8
+ },
9
+ {
10
+ "internalType": "uint256",
11
+ "name": "msgValue",
12
+ "type": "uint256"
13
+ }
14
+ ],
15
+ "name": "BusinessFeeExceedsValue",
16
+ "type": "error"
17
+ },
18
+ {
19
+ "inputs": [],
20
+ "name": "BusinessFeeTransferFailed",
21
+ "type": "error"
22
+ },
23
+ {
24
+ "inputs": [],
25
+ "name": "BusinessFeeZeroRecipient",
26
+ "type": "error"
27
+ },
28
+ {
29
+ "inputs": [],
30
+ "name": "ConfidentialERC20ConverterDecimalsUnavailable",
31
+ "type": "error"
32
+ },
33
+ {
34
+ "inputs": [],
35
+ "name": "ConfidentialERC20ConverterInvalidUnderlying",
36
+ "type": "error"
37
+ },
38
+ {
39
+ "inputs": [
40
+ {
41
+ "internalType": "address",
42
+ "name": "receiver",
43
+ "type": "address"
44
+ }
45
+ ],
46
+ "name": "ConfidentialERC20InvalidReceiver",
47
+ "type": "error"
48
+ },
49
+ {
50
+ "inputs": [
51
+ {
52
+ "internalType": "address",
53
+ "name": "sender",
54
+ "type": "address"
55
+ }
56
+ ],
57
+ "name": "ConfidentialERC20InvalidSender",
58
+ "type": "error"
59
+ },
60
+ {
61
+ "inputs": [],
62
+ "name": "ConfidentialERC20TotalSupplyOverflow",
63
+ "type": "error"
64
+ },
65
+ {
66
+ "inputs": [
67
+ {
68
+ "internalType": "address",
69
+ "name": "caller",
70
+ "type": "address"
71
+ }
72
+ ],
73
+ "name": "ConfidentialERC20UnauthorizedCaller",
74
+ "type": "error"
75
+ },
76
+ {
77
+ "inputs": [
78
+ {
79
+ "internalType": "address",
80
+ "name": "holder",
81
+ "type": "address"
82
+ },
83
+ {
84
+ "internalType": "address",
85
+ "name": "spender",
86
+ "type": "address"
87
+ }
88
+ ],
89
+ "name": "ConfidentialERC20UnauthorizedSpender",
90
+ "type": "error"
91
+ },
92
+ {
93
+ "inputs": [
94
+ {
95
+ "internalType": "ve_uint64",
96
+ "name": "amount",
97
+ "type": "bytes32"
98
+ },
99
+ {
100
+ "internalType": "address",
101
+ "name": "user",
102
+ "type": "address"
103
+ }
104
+ ],
105
+ "name": "ConfidentialERC20UnauthorizedUseOfEncryptedAmount",
106
+ "type": "error"
107
+ },
108
+ {
109
+ "inputs": [
110
+ {
111
+ "internalType": "address",
112
+ "name": "holder",
113
+ "type": "address"
114
+ }
115
+ ],
116
+ "name": "ConfidentialERC20ZeroBalance",
117
+ "type": "error"
118
+ },
119
+ {
120
+ "inputs": [],
121
+ "name": "Erc1363ShieldingDisabled",
122
+ "type": "error"
123
+ },
124
+ {
125
+ "inputs": [
126
+ {
127
+ "internalType": "address",
128
+ "name": "caller",
129
+ "type": "address"
130
+ }
131
+ ],
132
+ "name": "FeeSkipCallerNotRegistered",
133
+ "type": "error"
134
+ },
135
+ {
136
+ "inputs": [],
137
+ "name": "InvalidInitialization",
138
+ "type": "error"
139
+ },
140
+ {
141
+ "inputs": [],
142
+ "name": "InvalidSignatures",
143
+ "type": "error"
144
+ },
145
+ {
146
+ "inputs": [
147
+ {
148
+ "internalType": "bytes32",
149
+ "name": "unshieldRequestId",
150
+ "type": "bytes32"
151
+ }
152
+ ],
153
+ "name": "InvalidUnshieldRequest",
154
+ "type": "error"
155
+ },
156
+ {
157
+ "inputs": [
158
+ {
159
+ "internalType": "address",
160
+ "name": "recipient",
161
+ "type": "address"
162
+ }
163
+ ],
164
+ "name": "NoBusinessFeeToClaim",
165
+ "type": "error"
166
+ },
167
+ {
168
+ "inputs": [],
169
+ "name": "NotInitializing",
170
+ "type": "error"
171
+ },
172
+ {
173
+ "inputs": [
174
+ {
175
+ "internalType": "uint8",
176
+ "name": "bits",
177
+ "type": "uint8"
178
+ },
179
+ {
180
+ "internalType": "uint256",
181
+ "name": "value",
182
+ "type": "uint256"
183
+ }
184
+ ],
185
+ "name": "SafeCastOverflowedUintDowncast",
186
+ "type": "error"
187
+ },
188
+ {
189
+ "inputs": [
190
+ {
191
+ "internalType": "address",
192
+ "name": "token",
193
+ "type": "address"
194
+ }
195
+ ],
196
+ "name": "SafeERC20FailedOperation",
197
+ "type": "error"
198
+ },
199
+ {
200
+ "inputs": [
201
+ {
202
+ "internalType": "bytes32",
203
+ "name": "handle",
204
+ "type": "bytes32"
205
+ },
206
+ {
207
+ "internalType": "address",
208
+ "name": "sender",
209
+ "type": "address"
210
+ }
211
+ ],
212
+ "name": "SenderNotAllowedToUseHandle",
213
+ "type": "error"
214
+ },
215
+ {
216
+ "anonymous": false,
217
+ "inputs": [
218
+ {
219
+ "indexed": true,
220
+ "internalType": "address",
221
+ "name": "recipient",
222
+ "type": "address"
223
+ },
224
+ {
225
+ "indexed": false,
226
+ "internalType": "uint256",
227
+ "name": "amount",
228
+ "type": "uint256"
229
+ }
230
+ ],
231
+ "name": "BusinessFeeAccrued",
232
+ "type": "event"
233
+ },
234
+ {
235
+ "anonymous": false,
236
+ "inputs": [
237
+ {
238
+ "indexed": true,
239
+ "internalType": "address",
240
+ "name": "recipient",
241
+ "type": "address"
242
+ },
243
+ {
244
+ "indexed": false,
245
+ "internalType": "uint256",
246
+ "name": "amount",
247
+ "type": "uint256"
248
+ }
249
+ ],
250
+ "name": "BusinessFeeWithdrawn",
251
+ "type": "event"
252
+ },
253
+ {
254
+ "anonymous": false,
255
+ "inputs": [
256
+ {
257
+ "indexed": true,
258
+ "internalType": "address",
259
+ "name": "from",
260
+ "type": "address"
261
+ },
262
+ {
263
+ "indexed": true,
264
+ "internalType": "address",
265
+ "name": "to",
266
+ "type": "address"
267
+ },
268
+ {
269
+ "indexed": true,
270
+ "internalType": "ve_uint64",
271
+ "name": "amount",
272
+ "type": "bytes32"
273
+ }
274
+ ],
275
+ "name": "ConfidentialTransfer",
276
+ "type": "event"
277
+ },
278
+ {
279
+ "anonymous": false,
280
+ "inputs": [
281
+ {
282
+ "indexed": true,
283
+ "internalType": "address",
284
+ "name": "caller",
285
+ "type": "address"
286
+ },
287
+ {
288
+ "indexed": false,
289
+ "internalType": "bool",
290
+ "name": "skip",
291
+ "type": "bool"
292
+ }
293
+ ],
294
+ "name": "FeeSkipCallerSet",
295
+ "type": "event"
296
+ },
297
+ {
298
+ "anonymous": false,
299
+ "inputs": [
300
+ {
301
+ "indexed": false,
302
+ "internalType": "uint64",
303
+ "name": "version",
304
+ "type": "uint64"
305
+ }
306
+ ],
307
+ "name": "Initialized",
308
+ "type": "event"
309
+ },
310
+ {
311
+ "anonymous": false,
312
+ "inputs": [
313
+ {
314
+ "indexed": true,
315
+ "internalType": "address",
316
+ "name": "holder",
317
+ "type": "address"
318
+ },
319
+ {
320
+ "indexed": true,
321
+ "internalType": "address",
322
+ "name": "operator",
323
+ "type": "address"
324
+ },
325
+ {
326
+ "indexed": false,
327
+ "internalType": "uint48",
328
+ "name": "until",
329
+ "type": "uint48"
330
+ }
331
+ ],
332
+ "name": "OperatorSet",
333
+ "type": "event"
334
+ },
335
+ {
336
+ "anonymous": false,
337
+ "inputs": [
338
+ {
339
+ "indexed": true,
340
+ "internalType": "ve_uint64",
341
+ "name": "handle",
342
+ "type": "bytes32"
343
+ },
344
+ {
345
+ "indexed": true,
346
+ "internalType": "address",
347
+ "name": "requester",
348
+ "type": "address"
349
+ }
350
+ ],
351
+ "name": "RevealRequested",
352
+ "type": "event"
353
+ },
354
+ {
355
+ "anonymous": false,
356
+ "inputs": [
357
+ {
358
+ "indexed": true,
359
+ "internalType": "ve_uint64",
360
+ "name": "handle",
361
+ "type": "bytes32"
362
+ },
363
+ {
364
+ "indexed": false,
365
+ "internalType": "uint64",
366
+ "name": "amount",
367
+ "type": "uint64"
368
+ }
369
+ ],
370
+ "name": "Revealed",
371
+ "type": "event"
372
+ },
373
+ {
374
+ "anonymous": false,
375
+ "inputs": [
376
+ {
377
+ "indexed": true,
378
+ "internalType": "address",
379
+ "name": "to",
380
+ "type": "address"
381
+ },
382
+ {
383
+ "indexed": false,
384
+ "internalType": "uint256",
385
+ "name": "roundedAmount",
386
+ "type": "uint256"
387
+ },
388
+ {
389
+ "indexed": false,
390
+ "internalType": "ve_uint64",
391
+ "name": "encryptedShieldedAmount",
392
+ "type": "bytes32"
393
+ }
394
+ ],
395
+ "name": "Shield",
396
+ "type": "event"
397
+ },
398
+ {
399
+ "anonymous": false,
400
+ "inputs": [
401
+ {
402
+ "indexed": true,
403
+ "internalType": "address",
404
+ "name": "receiver",
405
+ "type": "address"
406
+ },
407
+ {
408
+ "indexed": true,
409
+ "internalType": "bytes32",
410
+ "name": "unshieldRequestId",
411
+ "type": "bytes32"
412
+ },
413
+ {
414
+ "indexed": false,
415
+ "internalType": "ve_uint64",
416
+ "name": "encryptedAmount",
417
+ "type": "bytes32"
418
+ },
419
+ {
420
+ "indexed": false,
421
+ "internalType": "uint64",
422
+ "name": "cleartextAmount",
423
+ "type": "uint64"
424
+ }
425
+ ],
426
+ "name": "UnshieldFinalized",
427
+ "type": "event"
428
+ },
429
+ {
430
+ "anonymous": false,
431
+ "inputs": [
432
+ {
433
+ "indexed": true,
434
+ "internalType": "address",
435
+ "name": "receiver",
436
+ "type": "address"
437
+ },
438
+ {
439
+ "indexed": true,
440
+ "internalType": "bytes32",
441
+ "name": "unshieldRequestId",
442
+ "type": "bytes32"
443
+ },
444
+ {
445
+ "indexed": false,
446
+ "internalType": "ve_uint64",
447
+ "name": "amount",
448
+ "type": "bytes32"
449
+ }
450
+ ],
451
+ "name": "UnshieldRequested",
452
+ "type": "event"
453
+ },
454
+ {
455
+ "inputs": [
456
+ {
457
+ "internalType": "address",
458
+ "name": "recipient",
459
+ "type": "address"
460
+ }
461
+ ],
462
+ "name": "businessFeeBalanceOf",
463
+ "outputs": [
464
+ {
465
+ "internalType": "uint256",
466
+ "name": "",
467
+ "type": "uint256"
468
+ }
469
+ ],
470
+ "stateMutability": "view",
471
+ "type": "function"
472
+ },
473
+ {
474
+ "inputs": [
475
+ {
476
+ "internalType": "address",
477
+ "name": "recipient",
478
+ "type": "address"
479
+ }
480
+ ],
481
+ "name": "claimBusinessFee",
482
+ "outputs": [],
483
+ "stateMutability": "nonpayable",
484
+ "type": "function"
485
+ },
486
+ {
487
+ "inputs": [
488
+ {
489
+ "internalType": "address",
490
+ "name": "account",
491
+ "type": "address"
492
+ }
493
+ ],
494
+ "name": "confidentialBalanceOf",
495
+ "outputs": [
496
+ {
497
+ "internalType": "ve_uint64",
498
+ "name": "",
499
+ "type": "bytes32"
500
+ }
501
+ ],
502
+ "stateMutability": "view",
503
+ "type": "function"
504
+ },
505
+ {
506
+ "inputs": [],
507
+ "name": "confidentialTotalSupply",
508
+ "outputs": [
509
+ {
510
+ "internalType": "ve_uint64",
511
+ "name": "",
512
+ "type": "bytes32"
513
+ }
514
+ ],
515
+ "stateMutability": "view",
516
+ "type": "function"
517
+ },
518
+ {
519
+ "inputs": [
520
+ {
521
+ "internalType": "address",
522
+ "name": "to",
523
+ "type": "address"
524
+ },
525
+ {
526
+ "internalType": "ve_uint64",
527
+ "name": "amount",
528
+ "type": "bytes32"
529
+ }
530
+ ],
531
+ "name": "confidentialTransfer",
532
+ "outputs": [
533
+ {
534
+ "internalType": "ve_uint64",
535
+ "name": "",
536
+ "type": "bytes32"
537
+ }
538
+ ],
539
+ "stateMutability": "payable",
540
+ "type": "function"
541
+ },
542
+ {
543
+ "inputs": [
544
+ {
545
+ "internalType": "address",
546
+ "name": "to",
547
+ "type": "address"
548
+ },
549
+ {
550
+ "components": [
551
+ {
552
+ "internalType": "bytes32",
553
+ "name": "handle",
554
+ "type": "bytes32"
555
+ },
556
+ {
557
+ "internalType": "bytes",
558
+ "name": "data",
559
+ "type": "bytes"
560
+ }
561
+ ],
562
+ "internalType": "struct uve_uint64",
563
+ "name": "encryptedAmount",
564
+ "type": "tuple"
565
+ }
566
+ ],
567
+ "name": "confidentialTransfer",
568
+ "outputs": [
569
+ {
570
+ "internalType": "ve_uint64",
571
+ "name": "",
572
+ "type": "bytes32"
573
+ }
574
+ ],
575
+ "stateMutability": "payable",
576
+ "type": "function"
577
+ },
578
+ {
579
+ "inputs": [
580
+ {
581
+ "internalType": "address",
582
+ "name": "to",
583
+ "type": "address"
584
+ },
585
+ {
586
+ "components": [
587
+ {
588
+ "internalType": "bytes32",
589
+ "name": "handle",
590
+ "type": "bytes32"
591
+ },
592
+ {
593
+ "internalType": "bytes",
594
+ "name": "data",
595
+ "type": "bytes"
596
+ }
597
+ ],
598
+ "internalType": "struct uve_uint64",
599
+ "name": "encryptedAmount",
600
+ "type": "tuple"
601
+ },
602
+ {
603
+ "internalType": "bytes",
604
+ "name": "data",
605
+ "type": "bytes"
606
+ }
607
+ ],
608
+ "name": "confidentialTransferAndCall",
609
+ "outputs": [
610
+ {
611
+ "internalType": "ve_uint64",
612
+ "name": "transferred",
613
+ "type": "bytes32"
614
+ }
615
+ ],
616
+ "stateMutability": "payable",
617
+ "type": "function"
618
+ },
619
+ {
620
+ "inputs": [
621
+ {
622
+ "internalType": "address",
623
+ "name": "to",
624
+ "type": "address"
625
+ },
626
+ {
627
+ "internalType": "ve_uint64",
628
+ "name": "amount",
629
+ "type": "bytes32"
630
+ },
631
+ {
632
+ "internalType": "bytes",
633
+ "name": "data",
634
+ "type": "bytes"
635
+ }
636
+ ],
637
+ "name": "confidentialTransferAndCall",
638
+ "outputs": [
639
+ {
640
+ "internalType": "ve_uint64",
641
+ "name": "transferred",
642
+ "type": "bytes32"
643
+ }
644
+ ],
645
+ "stateMutability": "payable",
646
+ "type": "function"
647
+ },
648
+ {
649
+ "inputs": [
650
+ {
651
+ "internalType": "address",
652
+ "name": "from",
653
+ "type": "address"
654
+ },
655
+ {
656
+ "internalType": "address",
657
+ "name": "to",
658
+ "type": "address"
659
+ },
660
+ {
661
+ "components": [
662
+ {
663
+ "internalType": "bytes32",
664
+ "name": "handle",
665
+ "type": "bytes32"
666
+ },
667
+ {
668
+ "internalType": "bytes",
669
+ "name": "data",
670
+ "type": "bytes"
671
+ }
672
+ ],
673
+ "internalType": "struct uve_uint64",
674
+ "name": "encryptedAmount",
675
+ "type": "tuple"
676
+ }
677
+ ],
678
+ "name": "confidentialTransferFrom",
679
+ "outputs": [
680
+ {
681
+ "internalType": "ve_uint64",
682
+ "name": "transferred",
683
+ "type": "bytes32"
684
+ }
685
+ ],
686
+ "stateMutability": "payable",
687
+ "type": "function"
688
+ },
689
+ {
690
+ "inputs": [
691
+ {
692
+ "internalType": "address",
693
+ "name": "from",
694
+ "type": "address"
695
+ },
696
+ {
697
+ "internalType": "address",
698
+ "name": "to",
699
+ "type": "address"
700
+ },
701
+ {
702
+ "internalType": "ve_uint64",
703
+ "name": "amount",
704
+ "type": "bytes32"
705
+ }
706
+ ],
707
+ "name": "confidentialTransferFrom",
708
+ "outputs": [
709
+ {
710
+ "internalType": "ve_uint64",
711
+ "name": "transferred",
712
+ "type": "bytes32"
713
+ }
714
+ ],
715
+ "stateMutability": "payable",
716
+ "type": "function"
717
+ },
718
+ {
719
+ "inputs": [
720
+ {
721
+ "internalType": "address",
722
+ "name": "from",
723
+ "type": "address"
724
+ },
725
+ {
726
+ "internalType": "address",
727
+ "name": "to",
728
+ "type": "address"
729
+ },
730
+ {
731
+ "components": [
732
+ {
733
+ "internalType": "bytes32",
734
+ "name": "handle",
735
+ "type": "bytes32"
736
+ },
737
+ {
738
+ "internalType": "bytes",
739
+ "name": "data",
740
+ "type": "bytes"
741
+ }
742
+ ],
743
+ "internalType": "struct uve_uint64",
744
+ "name": "encryptedAmount",
745
+ "type": "tuple"
746
+ },
747
+ {
748
+ "internalType": "bytes",
749
+ "name": "data",
750
+ "type": "bytes"
751
+ }
752
+ ],
753
+ "name": "confidentialTransferFromAndCall",
754
+ "outputs": [
755
+ {
756
+ "internalType": "ve_uint64",
757
+ "name": "transferred",
758
+ "type": "bytes32"
759
+ }
760
+ ],
761
+ "stateMutability": "payable",
762
+ "type": "function"
763
+ },
764
+ {
765
+ "inputs": [
766
+ {
767
+ "internalType": "address",
768
+ "name": "from",
769
+ "type": "address"
770
+ },
771
+ {
772
+ "internalType": "address",
773
+ "name": "to",
774
+ "type": "address"
775
+ },
776
+ {
777
+ "internalType": "ve_uint64",
778
+ "name": "amount",
779
+ "type": "bytes32"
780
+ },
781
+ {
782
+ "internalType": "bytes",
783
+ "name": "data",
784
+ "type": "bytes"
785
+ }
786
+ ],
787
+ "name": "confidentialTransferFromAndCall",
788
+ "outputs": [
789
+ {
790
+ "internalType": "ve_uint64",
791
+ "name": "transferred",
792
+ "type": "bytes32"
793
+ }
794
+ ],
795
+ "stateMutability": "payable",
796
+ "type": "function"
797
+ },
798
+ {
799
+ "inputs": [],
800
+ "name": "contractURI",
801
+ "outputs": [
802
+ {
803
+ "internalType": "string",
804
+ "name": "",
805
+ "type": "string"
806
+ }
807
+ ],
808
+ "stateMutability": "view",
809
+ "type": "function"
810
+ },
811
+ {
812
+ "inputs": [],
813
+ "name": "decimals",
814
+ "outputs": [
815
+ {
816
+ "internalType": "uint8",
817
+ "name": "",
818
+ "type": "uint8"
819
+ }
820
+ ],
821
+ "stateMutability": "view",
822
+ "type": "function"
823
+ },
824
+ {
825
+ "inputs": [
826
+ {
827
+ "internalType": "bytes32",
828
+ "name": "unshieldRequestId",
829
+ "type": "bytes32"
830
+ },
831
+ {
832
+ "internalType": "uint64",
833
+ "name": "unshieldAmountCleartext",
834
+ "type": "uint64"
835
+ },
836
+ {
837
+ "internalType": "bytes",
838
+ "name": "decryptionProof",
839
+ "type": "bytes"
840
+ }
841
+ ],
842
+ "name": "finalizeUnshield",
843
+ "outputs": [],
844
+ "stateMutability": "nonpayable",
845
+ "type": "function"
846
+ },
847
+ {
848
+ "inputs": [],
849
+ "name": "inferredTotalSupply",
850
+ "outputs": [
851
+ {
852
+ "internalType": "uint256",
853
+ "name": "",
854
+ "type": "uint256"
855
+ }
856
+ ],
857
+ "stateMutability": "view",
858
+ "type": "function"
859
+ },
860
+ {
861
+ "inputs": [
862
+ {
863
+ "internalType": "address",
864
+ "name": "caller",
865
+ "type": "address"
866
+ }
867
+ ],
868
+ "name": "isFeeSkipCaller",
869
+ "outputs": [
870
+ {
871
+ "internalType": "bool",
872
+ "name": "",
873
+ "type": "bool"
874
+ }
875
+ ],
876
+ "stateMutability": "view",
877
+ "type": "function"
878
+ },
879
+ {
880
+ "inputs": [
881
+ {
882
+ "internalType": "address",
883
+ "name": "holder",
884
+ "type": "address"
885
+ },
886
+ {
887
+ "internalType": "address",
888
+ "name": "spender",
889
+ "type": "address"
890
+ }
891
+ ],
892
+ "name": "isOperator",
893
+ "outputs": [
894
+ {
895
+ "internalType": "bool",
896
+ "name": "",
897
+ "type": "bool"
898
+ }
899
+ ],
900
+ "stateMutability": "view",
901
+ "type": "function"
902
+ },
903
+ {
904
+ "inputs": [
905
+ {
906
+ "internalType": "bytes32",
907
+ "name": "unshieldRequestId",
908
+ "type": "bytes32"
909
+ }
910
+ ],
911
+ "name": "isUnshieldSettled",
912
+ "outputs": [
913
+ {
914
+ "internalType": "bool",
915
+ "name": "",
916
+ "type": "bool"
917
+ }
918
+ ],
919
+ "stateMutability": "view",
920
+ "type": "function"
921
+ },
922
+ {
923
+ "inputs": [],
924
+ "name": "maxTotalSupply",
925
+ "outputs": [
926
+ {
927
+ "internalType": "uint256",
928
+ "name": "",
929
+ "type": "uint256"
930
+ }
931
+ ],
932
+ "stateMutability": "view",
933
+ "type": "function"
934
+ },
935
+ {
936
+ "inputs": [],
937
+ "name": "name",
938
+ "outputs": [
939
+ {
940
+ "internalType": "string",
941
+ "name": "",
942
+ "type": "string"
943
+ }
944
+ ],
945
+ "stateMutability": "view",
946
+ "type": "function"
947
+ },
948
+ {
949
+ "inputs": [
950
+ {
951
+ "internalType": "address",
952
+ "name": "",
953
+ "type": "address"
954
+ },
955
+ {
956
+ "internalType": "address",
957
+ "name": "",
958
+ "type": "address"
959
+ },
960
+ {
961
+ "internalType": "uint256",
962
+ "name": "",
963
+ "type": "uint256"
964
+ },
965
+ {
966
+ "internalType": "bytes",
967
+ "name": "",
968
+ "type": "bytes"
969
+ }
970
+ ],
971
+ "name": "onTransferReceived",
972
+ "outputs": [
973
+ {
974
+ "internalType": "bytes4",
975
+ "name": "",
976
+ "type": "bytes4"
977
+ }
978
+ ],
979
+ "stateMutability": "nonpayable",
980
+ "type": "function"
981
+ },
982
+ {
983
+ "inputs": [],
984
+ "name": "rate",
985
+ "outputs": [
986
+ {
987
+ "internalType": "uint256",
988
+ "name": "",
989
+ "type": "uint256"
990
+ }
991
+ ],
992
+ "stateMutability": "view",
993
+ "type": "function"
994
+ },
995
+ {
996
+ "inputs": [
997
+ {
998
+ "internalType": "ve_uint64",
999
+ "name": "encryptedAmount",
1000
+ "type": "bytes32"
1001
+ }
1002
+ ],
1003
+ "name": "requestReveal",
1004
+ "outputs": [],
1005
+ "stateMutability": "nonpayable",
1006
+ "type": "function"
1007
+ },
1008
+ {
1009
+ "inputs": [
1010
+ {
1011
+ "internalType": "ve_uint64",
1012
+ "name": "encryptedAmount",
1013
+ "type": "bytes32"
1014
+ },
1015
+ {
1016
+ "internalType": "uint64",
1017
+ "name": "cleartextAmount",
1018
+ "type": "uint64"
1019
+ },
1020
+ {
1021
+ "internalType": "bytes",
1022
+ "name": "decryptionProof",
1023
+ "type": "bytes"
1024
+ }
1025
+ ],
1026
+ "name": "reveal",
1027
+ "outputs": [],
1028
+ "stateMutability": "nonpayable",
1029
+ "type": "function"
1030
+ },
1031
+ {
1032
+ "inputs": [
1033
+ {
1034
+ "internalType": "address",
1035
+ "name": "operator",
1036
+ "type": "address"
1037
+ },
1038
+ {
1039
+ "internalType": "uint48",
1040
+ "name": "until",
1041
+ "type": "uint48"
1042
+ }
1043
+ ],
1044
+ "name": "setOperator",
1045
+ "outputs": [],
1046
+ "stateMutability": "nonpayable",
1047
+ "type": "function"
1048
+ },
1049
+ {
1050
+ "inputs": [
1051
+ {
1052
+ "internalType": "address",
1053
+ "name": "to",
1054
+ "type": "address"
1055
+ },
1056
+ {
1057
+ "internalType": "uint256",
1058
+ "name": "amount",
1059
+ "type": "uint256"
1060
+ }
1061
+ ],
1062
+ "name": "shield",
1063
+ "outputs": [
1064
+ {
1065
+ "internalType": "ve_uint64",
1066
+ "name": "",
1067
+ "type": "bytes32"
1068
+ }
1069
+ ],
1070
+ "stateMutability": "payable",
1071
+ "type": "function"
1072
+ },
1073
+ {
1074
+ "inputs": [
1075
+ {
1076
+ "internalType": "bytes4",
1077
+ "name": "interfaceId",
1078
+ "type": "bytes4"
1079
+ }
1080
+ ],
1081
+ "name": "supportsInterface",
1082
+ "outputs": [
1083
+ {
1084
+ "internalType": "bool",
1085
+ "name": "",
1086
+ "type": "bool"
1087
+ }
1088
+ ],
1089
+ "stateMutability": "view",
1090
+ "type": "function"
1091
+ },
1092
+ {
1093
+ "inputs": [],
1094
+ "name": "symbol",
1095
+ "outputs": [
1096
+ {
1097
+ "internalType": "string",
1098
+ "name": "",
1099
+ "type": "string"
1100
+ }
1101
+ ],
1102
+ "stateMutability": "view",
1103
+ "type": "function"
1104
+ },
1105
+ {
1106
+ "inputs": [],
1107
+ "name": "underlying",
1108
+ "outputs": [
1109
+ {
1110
+ "internalType": "address",
1111
+ "name": "",
1112
+ "type": "address"
1113
+ }
1114
+ ],
1115
+ "stateMutability": "view",
1116
+ "type": "function"
1117
+ },
1118
+ {
1119
+ "inputs": [
1120
+ {
1121
+ "internalType": "address",
1122
+ "name": "from",
1123
+ "type": "address"
1124
+ },
1125
+ {
1126
+ "internalType": "address",
1127
+ "name": "to",
1128
+ "type": "address"
1129
+ },
1130
+ {
1131
+ "components": [
1132
+ {
1133
+ "internalType": "bytes32",
1134
+ "name": "handle",
1135
+ "type": "bytes32"
1136
+ },
1137
+ {
1138
+ "internalType": "bytes",
1139
+ "name": "data",
1140
+ "type": "bytes"
1141
+ }
1142
+ ],
1143
+ "internalType": "struct uve_uint64",
1144
+ "name": "encryptedAmount",
1145
+ "type": "tuple"
1146
+ }
1147
+ ],
1148
+ "name": "unshield",
1149
+ "outputs": [
1150
+ {
1151
+ "internalType": "bytes32",
1152
+ "name": "",
1153
+ "type": "bytes32"
1154
+ }
1155
+ ],
1156
+ "stateMutability": "payable",
1157
+ "type": "function"
1158
+ },
1159
+ {
1160
+ "inputs": [
1161
+ {
1162
+ "internalType": "address",
1163
+ "name": "from",
1164
+ "type": "address"
1165
+ },
1166
+ {
1167
+ "internalType": "address",
1168
+ "name": "to",
1169
+ "type": "address"
1170
+ },
1171
+ {
1172
+ "internalType": "ve_uint64",
1173
+ "name": "amount",
1174
+ "type": "bytes32"
1175
+ }
1176
+ ],
1177
+ "name": "unshield",
1178
+ "outputs": [
1179
+ {
1180
+ "internalType": "bytes32",
1181
+ "name": "",
1182
+ "type": "bytes32"
1183
+ }
1184
+ ],
1185
+ "stateMutability": "payable",
1186
+ "type": "function"
1187
+ },
1188
+ {
1189
+ "inputs": [
1190
+ {
1191
+ "internalType": "bytes32",
1192
+ "name": "unshieldRequestId",
1193
+ "type": "bytes32"
1194
+ }
1195
+ ],
1196
+ "name": "unshieldRequester",
1197
+ "outputs": [
1198
+ {
1199
+ "internalType": "address",
1200
+ "name": "",
1201
+ "type": "address"
1202
+ }
1203
+ ],
1204
+ "stateMutability": "view",
1205
+ "type": "function"
1206
+ }
1207
+ ];
1208
+ //# sourceMappingURL=convert_token.abi.js.map