randomness-js
Version:
A library for consuming, verifying and using randomness from the dcipher network
201 lines (197 loc) • 4.25 kB
text/typescript
/* Autogenerated file. Do not edit manually. */
/* tslint:disable */
/* eslint-disable */
import { Contract, Interface, type ContractRunner } from "ethers";
import type { StdInvariant, StdInvariantInterface } from "../StdInvariant";
const _abi = [
{
type: "function",
name: "excludeArtifacts",
inputs: [],
outputs: [
{
name: "excludedArtifacts_",
type: "string[]",
internalType: "string[]",
},
],
stateMutability: "view",
},
{
type: "function",
name: "excludeContracts",
inputs: [],
outputs: [
{
name: "excludedContracts_",
type: "address[]",
internalType: "address[]",
},
],
stateMutability: "view",
},
{
type: "function",
name: "excludeSelectors",
inputs: [],
outputs: [
{
name: "excludedSelectors_",
type: "tuple[]",
internalType: "struct StdInvariant.FuzzSelector[]",
components: [
{
name: "addr",
type: "address",
internalType: "address",
},
{
name: "selectors",
type: "bytes4[]",
internalType: "bytes4[]",
},
],
},
],
stateMutability: "view",
},
{
type: "function",
name: "excludeSenders",
inputs: [],
outputs: [
{
name: "excludedSenders_",
type: "address[]",
internalType: "address[]",
},
],
stateMutability: "view",
},
{
type: "function",
name: "targetArtifactSelectors",
inputs: [],
outputs: [
{
name: "targetedArtifactSelectors_",
type: "tuple[]",
internalType: "struct StdInvariant.FuzzArtifactSelector[]",
components: [
{
name: "artifact",
type: "string",
internalType: "string",
},
{
name: "selectors",
type: "bytes4[]",
internalType: "bytes4[]",
},
],
},
],
stateMutability: "view",
},
{
type: "function",
name: "targetArtifacts",
inputs: [],
outputs: [
{
name: "targetedArtifacts_",
type: "string[]",
internalType: "string[]",
},
],
stateMutability: "view",
},
{
type: "function",
name: "targetContracts",
inputs: [],
outputs: [
{
name: "targetedContracts_",
type: "address[]",
internalType: "address[]",
},
],
stateMutability: "view",
},
{
type: "function",
name: "targetInterfaces",
inputs: [],
outputs: [
{
name: "targetedInterfaces_",
type: "tuple[]",
internalType: "struct StdInvariant.FuzzInterface[]",
components: [
{
name: "addr",
type: "address",
internalType: "address",
},
{
name: "artifacts",
type: "string[]",
internalType: "string[]",
},
],
},
],
stateMutability: "view",
},
{
type: "function",
name: "targetSelectors",
inputs: [],
outputs: [
{
name: "targetedSelectors_",
type: "tuple[]",
internalType: "struct StdInvariant.FuzzSelector[]",
components: [
{
name: "addr",
type: "address",
internalType: "address",
},
{
name: "selectors",
type: "bytes4[]",
internalType: "bytes4[]",
},
],
},
],
stateMutability: "view",
},
{
type: "function",
name: "targetSenders",
inputs: [],
outputs: [
{
name: "targetedSenders_",
type: "address[]",
internalType: "address[]",
},
],
stateMutability: "view",
},
] as const;
export class StdInvariant__factory {
static readonly abi = _abi;
static createInterface(): StdInvariantInterface {
return new Interface(_abi) as StdInvariantInterface;
}
static connect(
address: string,
runner?: ContractRunner | null
): StdInvariant {
return new Contract(address, _abi, runner) as unknown as StdInvariant;
}
}