UNPKG

ufomarketplace-sdk

Version:

SDK to interact with set ufo marketplace contracts

45 lines (40 loc) 926 B
/* Autogenerated file. Do not edit manually. */ /* tslint:disable */ /* eslint-disable */ import { Contract, Signer } from "ethers"; import { Provider } from "@ethersproject/providers"; import type { IPlasmaCounter } from "../IPlasmaCounter"; export class IPlasmaCounter__factory { static connect( address: string, signerOrProvider: Signer | Provider ): IPlasmaCounter { return new Contract(address, _abi, signerOrProvider) as IPlasmaCounter; } } const _abi = [ { inputs: [ { internalType: "address", name: "_stakingContract", type: "address", }, ], name: "getAllocationFraction", outputs: [ { internalType: "uint256", name: "num", type: "uint256", }, { internalType: "uint256", name: "den", type: "uint256", }, ], stateMutability: "view", type: "function", }, ];