Skip to content

Commit

Permalink
Add FractalRegistryAbi
Browse files Browse the repository at this point in the history
  • Loading branch information
adamgall committed May 6, 2024
1 parent 39d242f commit 36a3342
Showing 1 changed file with 68 additions and 0 deletions.
68 changes: 68 additions & 0 deletions src/assets/abi/FractalRegistry.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
const FractalRegistryAbi = [
{
anonymous: false,
inputs: [
{
indexed: true,
internalType: 'address',
name: 'daoAddress',
type: 'address',
},
{
indexed: false,
internalType: 'string',
name: 'daoName',
type: 'string',
},
],
name: 'FractalNameUpdated',
type: 'event',
},
{
anonymous: false,
inputs: [
{
indexed: true,
internalType: 'address',
name: 'parentDAOAddress',
type: 'address',
},
{
indexed: true,
internalType: 'address',
name: 'subDAOAddress',
type: 'address',
},
],
name: 'FractalSubDAODeclared',
type: 'event',
},
{
inputs: [
{
internalType: 'address',
name: '_subDAOAddress',
type: 'address',
},
],
name: 'declareSubDAO',
outputs: [],
stateMutability: 'nonpayable',
type: 'function',
},
{
inputs: [
{
internalType: 'string',
name: '_name',
type: 'string',
},
],
name: 'updateDAOName',
outputs: [],
stateMutability: 'nonpayable',
type: 'function',
},
] as const;

export default FractalRegistryAbi;

0 comments on commit 36a3342

Please sign in to comment.