Advertisement
ynifor

Untitled

Nov 26th, 2024
16
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.90 KB | None | 0 0
  1. [
  2. {
  3. "anonymous": false,
  4. "inputs": [
  5. {
  6. "indexed": true,
  7. "internalType": "address",
  8. "name": "owner",
  9. "type": "address"
  10. },
  11. {
  12. "indexed": true,
  13. "internalType": "address",
  14. "name": "spender",
  15. "type": "address"
  16. },
  17. {
  18. "indexed": false,
  19. "internalType": "uint256",
  20. "name": "value",
  21. "type": "uint256"
  22. }
  23. ],
  24. "name": "Approval",
  25. "type": "event"
  26. },
  27. {
  28. "anonymous": false,
  29. "inputs": [
  30. {
  31. "indexed": true,
  32. "internalType": "address",
  33. "name": "src",
  34. "type": "address"
  35. },
  36. {
  37. "indexed": false,
  38. "internalType": "uint256",
  39. "name": "wad",
  40. "type": "uint256"
  41. }
  42. ],
  43. "name": "Withdrawal",
  44. "type": "event"
  45. },
  46. {
  47. "anonymous": false,
  48. "inputs": [
  49. {
  50. "indexed": true,
  51. "internalType": "address",
  52. "name": "from",
  53. "type": "address"
  54. },
  55. {
  56. "indexed": true,
  57. "internalType": "address",
  58. "name": "to",
  59. "type": "address"
  60. },
  61. {
  62. "indexed": false,
  63. "internalType": "uint256",
  64. "name": "value",
  65. "type": "uint256"
  66. }
  67. ],
  68. "name": "Transfer",
  69. "type": "event"
  70. },
  71. {
  72. "anonymous": false,
  73. "inputs": [
  74. {
  75. "indexed": true,
  76. "internalType": "address",
  77. "name": "dst",
  78. "type": "address"
  79. },
  80. {
  81. "indexed": false,
  82. "internalType": "uint256",
  83. "name": "wad",
  84. "type": "uint256"
  85. }
  86. ],
  87. "name": "Deposit",
  88. "type": "event"
  89. },
  90. {
  91. "inputs": [
  92. {
  93. "internalType": "address",
  94. "name": "owner",
  95. "type": "address"
  96. },
  97. {
  98. "internalType": "address",
  99. "name": "spender",
  100. "type": "address"
  101. }
  102. ],
  103. "name": "allowance",
  104. "outputs": [
  105. {
  106. "internalType": "uint256",
  107. "name": "",
  108. "type": "uint256"
  109. }
  110. ],
  111. "stateMutability": "view",
  112. "type": "function"
  113. },
  114. {
  115. "inputs": [
  116. {
  117. "internalType": "address",
  118. "name": "spender",
  119. "type": "address"
  120. },
  121. {
  122. "internalType": "uint256",
  123. "name": "amount",
  124. "type": "uint256"
  125. }
  126. ],
  127. "name": "approve",
  128. "outputs": [
  129. {
  130. "internalType": "bool",
  131. "name": "",
  132. "type": "bool"
  133. }
  134. ],
  135. "stateMutability": "nonpayable",
  136. "type": "function"
  137. },
  138. {
  139. "inputs": [
  140. {
  141. "internalType": "address",
  142. "name": "account",
  143. "type": "address"
  144. }
  145. ],
  146. "name": "balanceOf",
  147. "outputs": [
  148. {
  149. "internalType": "uint256",
  150. "name": "",
  151. "type": "uint256"
  152. }
  153. ],
  154. "stateMutability": "view",
  155. "type": "function"
  156. },
  157. {
  158. "inputs": [],
  159. "name": "decimals",
  160. "outputs": [
  161. {
  162. "internalType": "uint8",
  163. "name": "",
  164. "type": "uint8"
  165. }
  166. ],
  167. "stateMutability": "view",
  168. "type": "function"
  169. },
  170. {
  171. "inputs": [],
  172. "name": "name",
  173. "outputs": [
  174. {
  175. "internalType": "string",
  176. "name": "",
  177. "type": "string"
  178. }
  179. ],
  180. "stateMutability": "view",
  181. "type": "function"
  182. },
  183. {
  184. "inputs": [],
  185. "name": "symbol",
  186. "outputs": [
  187. {
  188. "internalType": "string",
  189. "name": "",
  190. "type": "string"
  191. }
  192. ],
  193. "stateMutability": "view",
  194. "type": "function"
  195. },
  196. {
  197. "inputs": [],
  198. "name": "totalSupply",
  199. "outputs": [
  200. {
  201. "internalType": "uint256",
  202. "name": "",
  203. "type": "uint256"
  204. }
  205. ],
  206. "stateMutability": "view",
  207. "type": "function"
  208. },
  209. {
  210. "inputs": [
  211. {
  212. "internalType": "address",
  213. "name": "to",
  214. "type": "address"
  215. },
  216. {
  217. "internalType": "uint256",
  218. "name": "amount",
  219. "type": "uint256"
  220. }
  221. ],
  222. "name": "transfer",
  223. "outputs": [
  224. {
  225. "internalType": "bool",
  226. "name": "",
  227. "type": "bool"
  228. }
  229. ],
  230. "stateMutability": "nonpayable",
  231. "type": "function"
  232. },
  233. {
  234. "inputs": [
  235. {
  236. "internalType": "address",
  237. "name": "from",
  238. "type": "address"
  239. },
  240. {
  241. "internalType": "address",
  242. "name": "to",
  243. "type": "address"
  244. },
  245. {
  246. "internalType": "uint256",
  247. "name": "amount",
  248. "type": "uint256"
  249. }
  250. ],
  251. "name": "transferFrom",
  252. "outputs": [
  253. {
  254. "internalType": "bool",
  255. "name": "",
  256. "type": "bool"
  257. }
  258. ],
  259. "stateMutability": "nonpayable",
  260. "type": "function"
  261. }
  262. ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement