Alchemy Logo

mintableERC20Abi

const mintableERC20Abi: readonly [
  {
    inputs: readonly [
      {
        name: "to";
        type: "address";
      },
      {
        name: "amount";
        type: "uint256";
      },
    ];
    name: "transfer";
    outputs: readonly [];
    stateMutability: "nonpayable";
    type: "function";
  },
  {
    inputs: readonly [
      {
        name: "to";
        type: "address";
      },
      {
        name: "amount";
        type: "uint256";
      },
    ];
    name: "mint";
    outputs: readonly [];
    stateMutability: "nonpayable";
    type: "function";
  },
  {
    inputs: readonly [
      {
        name: "target";
        type: "address";
      },
    ];
    name: "balanceOf";
    outputs: readonly [
      {
        type: "uint256";
      },
    ];
    stateMutability: "nonpayable";
    type: "function";
  },
];

Defined in: account-kit/smart-contracts/dist/types/src/ma-v2/utils.d.ts:43

Was this page helpful?