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