mintableERC20Abi

1const mintableERC20Abi: readonly [
2 {
3 inputs: readonly [
4 {
5 name: "to";
6 type: "address";
7 },
8 {
9 name: "amount";
10 type: "uint256";
11 },
12 ];
13 name: "transfer";
14 outputs: readonly [];
15 stateMutability: "nonpayable";
16 type: "function";
17 },
18 {
19 inputs: readonly [
20 {
21 name: "to";
22 type: "address";
23 },
24 {
25 name: "amount";
26 type: "uint256";
27 },
28 ];
29 name: "mint";
30 outputs: readonly [];
31 stateMutability: "nonpayable";
32 type: "function";
33 },
34 {
35 inputs: readonly [
36 {
37 name: "target";
38 type: "address";
39 },
40 ];
41 name: "balanceOf";
42 outputs: readonly [
43 {
44 type: "uint256";
45 },
46 ];
47 stateMutability: "nonpayable";
48 type: "function";
49 },
50];

Defined in: account-kit/smart-contracts/src/ma-v2/utils.ts:246