ufomarketplace-sdk
Version:
SDK to interact with set ufo marketplace contracts
60 lines (55 loc) • 1.15 kB
text/typescript
/* Autogenerated file. Do not edit manually. */
/* tslint:disable */
/* eslint-disable */
import { Contract, Signer } from "ethers";
import { Provider } from "@ethersproject/providers";
import type { PausableUpgradeable } from "../PausableUpgradeable";
export class PausableUpgradeable__factory {
static connect(
address: string,
signerOrProvider: Signer | Provider
): PausableUpgradeable {
return new Contract(address, _abi, signerOrProvider) as PausableUpgradeable;
}
}
const _abi = [
{
anonymous: false,
inputs: [
{
indexed: false,
internalType: "address",
name: "account",
type: "address",
},
],
name: "Paused",
type: "event",
},
{
anonymous: false,
inputs: [
{
indexed: false,
internalType: "address",
name: "account",
type: "address",
},
],
name: "Unpaused",
type: "event",
},
{
inputs: [],
name: "paused",
outputs: [
{
internalType: "bool",
name: "",
type: "bool",
},
],
stateMutability: "view",
type: "function",
},
];