Skip to content

Commit

Permalink
Revert "chore: delete"
Browse files Browse the repository at this point in the history
This reverts commit 4f7bb91.
  • Loading branch information
joepegler committed Aug 23, 2024
1 parent 4f7bb91 commit b7eabfc
Show file tree
Hide file tree
Showing 22 changed files with 4,121 additions and 1 deletion.
1 change: 1 addition & 0 deletions tests/contracts/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
## The contents of this folder is auto-generated. Please do not edit as they are likely to become overwritten
319 changes: 319 additions & 0 deletions tests/contracts/abi/BiconomyMetaFactoryAbi.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,319 @@
export const BiconomyMetaFactoryAbi = [
{
inputs: [
{
internalType: "address",
name: "owner_",
type: "address"
}
],
stateMutability: "nonpayable",
type: "constructor"
},
{
inputs: [],
name: "AlreadyInitialized",
type: "error"
},
{
inputs: [],
name: "CallToDeployWithFactoryFailed",
type: "error"
},
{
inputs: [],
name: "FactoryNotWhitelisted",
type: "error"
},
{
inputs: [],
name: "InvalidEntryPointAddress",
type: "error"
},
{
inputs: [],
name: "InvalidFactoryAddress",
type: "error"
},
{
inputs: [],
name: "NewOwnerIsZeroAddress",
type: "error"
},
{
inputs: [],
name: "NoHandoverRequest",
type: "error"
},
{
inputs: [],
name: "Unauthorized",
type: "error"
},
{
inputs: [],
name: "ZeroAddressNotAllowed",
type: "error"
},
{
anonymous: false,
inputs: [
{
indexed: true,
internalType: "address",
name: "pendingOwner",
type: "address"
}
],
name: "OwnershipHandoverCanceled",
type: "event"
},
{
anonymous: false,
inputs: [
{
indexed: true,
internalType: "address",
name: "pendingOwner",
type: "address"
}
],
name: "OwnershipHandoverRequested",
type: "event"
},
{
anonymous: false,
inputs: [
{
indexed: true,
internalType: "address",
name: "oldOwner",
type: "address"
},
{
indexed: true,
internalType: "address",
name: "newOwner",
type: "address"
}
],
name: "OwnershipTransferred",
type: "event"
},
{
inputs: [
{
internalType: "address",
name: "factory",
type: "address"
}
],
name: "addFactoryToWhitelist",
outputs: [],
stateMutability: "nonpayable",
type: "function"
},
{
inputs: [
{
internalType: "address",
name: "epAddress",
type: "address"
},
{
internalType: "uint32",
name: "unstakeDelaySec",
type: "uint32"
}
],
name: "addStake",
outputs: [],
stateMutability: "payable",
type: "function"
},
{
inputs: [],
name: "cancelOwnershipHandover",
outputs: [],
stateMutability: "payable",
type: "function"
},
{
inputs: [
{
internalType: "address",
name: "pendingOwner",
type: "address"
}
],
name: "completeOwnershipHandover",
outputs: [],
stateMutability: "payable",
type: "function"
},
{
inputs: [
{
internalType: "address",
name: "factory",
type: "address"
},
{
internalType: "bytes",
name: "factoryData",
type: "bytes"
}
],
name: "deployWithFactory",
outputs: [
{
internalType: "address payable",
name: "createdAccount",
type: "address"
}
],
stateMutability: "payable",
type: "function"
},
{
inputs: [
{
internalType: "address",
name: "",
type: "address"
}
],
name: "factoryWhitelist",
outputs: [
{
internalType: "bool",
name: "",
type: "bool"
}
],
stateMutability: "view",
type: "function"
},
{
inputs: [
{
internalType: "address",
name: "factory",
type: "address"
}
],
name: "isFactoryWhitelisted",
outputs: [
{
internalType: "bool",
name: "",
type: "bool"
}
],
stateMutability: "view",
type: "function"
},
{
inputs: [],
name: "owner",
outputs: [
{
internalType: "address",
name: "result",
type: "address"
}
],
stateMutability: "view",
type: "function"
},
{
inputs: [
{
internalType: "address",
name: "pendingOwner",
type: "address"
}
],
name: "ownershipHandoverExpiresAt",
outputs: [
{
internalType: "uint256",
name: "result",
type: "uint256"
}
],
stateMutability: "view",
type: "function"
},
{
inputs: [
{
internalType: "address",
name: "factory",
type: "address"
}
],
name: "removeFactoryFromWhitelist",
outputs: [],
stateMutability: "nonpayable",
type: "function"
},
{
inputs: [],
name: "renounceOwnership",
outputs: [],
stateMutability: "payable",
type: "function"
},
{
inputs: [],
name: "requestOwnershipHandover",
outputs: [],
stateMutability: "payable",
type: "function"
},
{
inputs: [
{
internalType: "address",
name: "newOwner",
type: "address"
}
],
name: "transferOwnership",
outputs: [],
stateMutability: "payable",
type: "function"
},
{
inputs: [
{
internalType: "address",
name: "epAddress",
type: "address"
}
],
name: "unlockStake",
outputs: [],
stateMutability: "nonpayable",
type: "function"
},
{
inputs: [
{
internalType: "address",
name: "epAddress",
type: "address"
},
{
internalType: "address payable",
name: "withdrawAddress",
type: "address"
}
],
name: "withdrawStake",
outputs: [],
stateMutability: "nonpayable",
type: "function"
}
] as const
Loading

0 comments on commit b7eabfc

Please sign in to comment.