Skip to content

Commit

Permalink
Add ModuleProxyFactory ABI to project
Browse files Browse the repository at this point in the history
  • Loading branch information
adamgall committed May 6, 2024
1 parent 1b8af29 commit e1934ef
Showing 1 changed file with 79 additions and 0 deletions.
79 changes: 79 additions & 0 deletions src/assets/abi/ModuleProxyFactory.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
const ModuleProxyFactoryAbi = [
{
inputs: [],
name: 'FailedInitialization',
type: 'error',
},
{
inputs: [
{
internalType: 'address',
name: 'address_',
type: 'address',
},
],
name: 'TakenAddress',
type: 'error',
},
{
inputs: [
{
internalType: 'address',
name: 'target',
type: 'address',
},
],
name: 'ZeroAddress',
type: 'error',
},
{
anonymous: false,
inputs: [
{
indexed: true,
internalType: 'address',
name: 'proxy',
type: 'address',
},
{
indexed: true,
internalType: 'address',
name: 'masterCopy',
type: 'address',
},
],
name: 'ModuleProxyCreation',
type: 'event',
},
{
inputs: [
{
internalType: 'address',
name: 'masterCopy',
type: 'address',
},
{
internalType: 'bytes',
name: 'initializer',
type: 'bytes',
},
{
internalType: 'uint256',
name: 'saltNonce',
type: 'uint256',
},
],
name: 'deployModule',
outputs: [
{
internalType: 'address',
name: 'proxy',
type: 'address',
},
],
stateMutability: 'nonpayable',
type: 'function',
},
] as const;

export default ModuleProxyFactoryAbi;

0 comments on commit e1934ef

Please sign in to comment.