ufomarketplace-sdk
Version:
SDK to interact with set ufo marketplace contracts
45 lines (40 loc) • 903 B
text/typescript
/* Autogenerated file. Do not edit manually. */
/* tslint:disable */
/* eslint-disable */
import { Contract, Signer } from "ethers";
import { Provider } from "@ethersproject/providers";
import type { IERC20Mintable } from "../IERC20Mintable";
export class IERC20Mintable__factory {
static connect(
address: string,
signerOrProvider: Signer | Provider
): IERC20Mintable {
return new Contract(address, _abi, signerOrProvider) as IERC20Mintable;
}
}
const _abi = [
{
inputs: [
{
internalType: "address",
name: "_to",
type: "address",
},
{
internalType: "uint256",
name: "_amount",
type: "uint256",
},
],
name: "mint",
outputs: [
{
internalType: "uint256",
name: "",
type: "uint256",
},
],
stateMutability: "nonpayable",
type: "function",
},
];