Skip to content

Commit

Permalink
Add FractalModuleAbi
Browse files Browse the repository at this point in the history
  • Loading branch information
adamgall committed May 7, 2024
1 parent 1c0f337 commit 42ce293
Showing 1 changed file with 334 additions and 0 deletions.
334 changes: 334 additions & 0 deletions src/assets/abi/FractalModule.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,334 @@
const FractalModuleAbi = [
{
inputs: [],
stateMutability: 'nonpayable',
type: 'constructor',
},
{
inputs: [
{
internalType: 'address',
name: 'guard_',
type: 'address',
},
],
name: 'NotIERC165Compliant',
type: 'error',
},
{
inputs: [],
name: 'TxFailed',
type: 'error',
},
{
inputs: [],
name: 'Unauthorized',
type: 'error',
},
{
anonymous: false,
inputs: [
{
indexed: true,
internalType: 'address',
name: 'previousAvatar',
type: 'address',
},
{
indexed: true,
internalType: 'address',
name: 'newAvatar',
type: 'address',
},
],
name: 'AvatarSet',
type: 'event',
},
{
anonymous: false,
inputs: [
{
indexed: false,
internalType: 'address',
name: 'guard',
type: 'address',
},
],
name: 'ChangedGuard',
type: 'event',
},
{
anonymous: false,
inputs: [
{
indexed: false,
internalType: 'address[]',
name: 'controllers',
type: 'address[]',
},
],
name: 'ControllersAdded',
type: 'event',
},
{
anonymous: false,
inputs: [
{
indexed: false,
internalType: 'address[]',
name: 'controllers',
type: 'address[]',
},
],
name: 'ControllersRemoved',
type: 'event',
},
{
anonymous: false,
inputs: [
{
indexed: false,
internalType: 'uint8',
name: 'version',
type: 'uint8',
},
],
name: 'Initialized',
type: 'event',
},
{
anonymous: false,
inputs: [
{
indexed: true,
internalType: 'address',
name: 'previousOwner',
type: 'address',
},
{
indexed: true,
internalType: 'address',
name: 'newOwner',
type: 'address',
},
],
name: 'OwnershipTransferred',
type: 'event',
},
{
anonymous: false,
inputs: [
{
indexed: true,
internalType: 'address',
name: 'previousTarget',
type: 'address',
},
{
indexed: true,
internalType: 'address',
name: 'newTarget',
type: 'address',
},
],
name: 'TargetSet',
type: 'event',
},
{
inputs: [
{
internalType: 'address[]',
name: '_controllers',
type: 'address[]',
},
],
name: 'addControllers',
outputs: [],
stateMutability: 'nonpayable',
type: 'function',
},
{
inputs: [],
name: 'avatar',
outputs: [
{
internalType: 'address',
name: '',
type: 'address',
},
],
stateMutability: 'view',
type: 'function',
},
{
inputs: [
{
internalType: 'address',
name: '',
type: 'address',
},
],
name: 'controllers',
outputs: [
{
internalType: 'bool',
name: '',
type: 'bool',
},
],
stateMutability: 'view',
type: 'function',
},
{
inputs: [
{
internalType: 'bytes',
name: 'execTxData',
type: 'bytes',
},
],
name: 'execTx',
outputs: [],
stateMutability: 'nonpayable',
type: 'function',
},
{
inputs: [],
name: 'getGuard',
outputs: [
{
internalType: 'address',
name: '_guard',
type: 'address',
},
],
stateMutability: 'view',
type: 'function',
},
{
inputs: [],
name: 'guard',
outputs: [
{
internalType: 'address',
name: '',
type: 'address',
},
],
stateMutability: 'view',
type: 'function',
},
{
inputs: [],
name: 'owner',
outputs: [
{
internalType: 'address',
name: '',
type: 'address',
},
],
stateMutability: 'view',
type: 'function',
},
{
inputs: [
{
internalType: 'address[]',
name: '_controllers',
type: 'address[]',
},
],
name: 'removeControllers',
outputs: [],
stateMutability: 'nonpayable',
type: 'function',
},
{
inputs: [],
name: 'renounceOwnership',
outputs: [],
stateMutability: 'nonpayable',
type: 'function',
},
{
inputs: [
{
internalType: 'address',
name: '_avatar',
type: 'address',
},
],
name: 'setAvatar',
outputs: [],
stateMutability: 'nonpayable',
type: 'function',
},
{
inputs: [
{
internalType: 'address',
name: '_guard',
type: 'address',
},
],
name: 'setGuard',
outputs: [],
stateMutability: 'nonpayable',
type: 'function',
},
{
inputs: [
{
internalType: 'address',
name: '_target',
type: 'address',
},
],
name: 'setTarget',
outputs: [],
stateMutability: 'nonpayable',
type: 'function',
},
{
inputs: [
{
internalType: 'bytes',
name: 'initializeParams',
type: 'bytes',
},
],
name: 'setUp',
outputs: [],
stateMutability: 'nonpayable',
type: 'function',
},
{
inputs: [],
name: 'target',
outputs: [
{
internalType: 'address',
name: '',
type: 'address',
},
],
stateMutability: 'view',
type: 'function',
},
{
inputs: [
{
internalType: 'address',
name: 'newOwner',
type: 'address',
},
],
name: 'transferOwnership',
outputs: [],
stateMutability: 'nonpayable',
type: 'function',
},
] as const;

export default FractalModuleAbi;

0 comments on commit 42ce293

Please sign in to comment.