-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
15 changed files
with
2,761 additions
and
6 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
import { Contract } from '@/contract' | ||
const abi = [ | ||
{ | ||
inputs: [ | ||
{ | ||
internalType: 'address', | ||
name: '_logic', | ||
type: 'address', | ||
}, | ||
{ | ||
internalType: 'bytes', | ||
name: '_data', | ||
type: 'bytes', | ||
}, | ||
], | ||
stateMutability: 'payable', | ||
type: 'constructor', | ||
}, | ||
{ | ||
anonymous: false, | ||
inputs: [ | ||
{ | ||
indexed: false, | ||
internalType: 'address', | ||
name: 'previousAdmin', | ||
type: 'address', | ||
}, | ||
{ | ||
indexed: false, | ||
internalType: 'address', | ||
name: 'newAdmin', | ||
type: 'address', | ||
}, | ||
], | ||
name: 'AdminChanged', | ||
type: 'event', | ||
}, | ||
{ | ||
anonymous: false, | ||
inputs: [ | ||
{ | ||
indexed: true, | ||
internalType: 'address', | ||
name: 'beacon', | ||
type: 'address', | ||
}, | ||
], | ||
name: 'BeaconUpgraded', | ||
type: 'event', | ||
}, | ||
{ | ||
anonymous: false, | ||
inputs: [ | ||
{ | ||
indexed: true, | ||
internalType: 'address', | ||
name: 'implementation', | ||
type: 'address', | ||
}, | ||
], | ||
name: 'Upgraded', | ||
type: 'event', | ||
}, | ||
{ | ||
stateMutability: 'payable', | ||
type: 'fallback', | ||
}, | ||
{ | ||
stateMutability: 'payable', | ||
type: 'receive', | ||
}, | ||
] as const | ||
const APEIRON_APOSTLE_EXTENSION_PROXY: Contract<typeof abi> = { | ||
name: 'Apeiron Apostle Extension Proxy', | ||
address: '0xe0cac03294e61549d43a407f6f734a7e8f35ff0b', | ||
is_deprecated: false, | ||
created_at: 1724227896, | ||
abi: abi, | ||
} | ||
export default APEIRON_APOSTLE_EXTENSION_PROXY |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
import { Contract } from '@/contract' | ||
const abi = [ | ||
{ | ||
inputs: [ | ||
{ | ||
internalType: 'address', | ||
name: '_logic', | ||
type: 'address', | ||
}, | ||
{ | ||
internalType: 'bytes', | ||
name: '_data', | ||
type: 'bytes', | ||
}, | ||
], | ||
stateMutability: 'payable', | ||
type: 'constructor', | ||
}, | ||
{ | ||
anonymous: false, | ||
inputs: [ | ||
{ | ||
indexed: false, | ||
internalType: 'address', | ||
name: 'previousAdmin', | ||
type: 'address', | ||
}, | ||
{ | ||
indexed: false, | ||
internalType: 'address', | ||
name: 'newAdmin', | ||
type: 'address', | ||
}, | ||
], | ||
name: 'AdminChanged', | ||
type: 'event', | ||
}, | ||
{ | ||
anonymous: false, | ||
inputs: [ | ||
{ | ||
indexed: true, | ||
internalType: 'address', | ||
name: 'beacon', | ||
type: 'address', | ||
}, | ||
], | ||
name: 'BeaconUpgraded', | ||
type: 'event', | ||
}, | ||
{ | ||
anonymous: false, | ||
inputs: [ | ||
{ | ||
indexed: true, | ||
internalType: 'address', | ||
name: 'implementation', | ||
type: 'address', | ||
}, | ||
], | ||
name: 'Upgraded', | ||
type: 'event', | ||
}, | ||
{ | ||
stateMutability: 'payable', | ||
type: 'fallback', | ||
}, | ||
{ | ||
stateMutability: 'payable', | ||
type: 'receive', | ||
}, | ||
] as const | ||
const APOSTLE_BOUNTY_PROXY: Contract<typeof abi> = { | ||
name: 'Apostle Bounty Proxy', | ||
address: '0x0b3ef6d18c191c25a7eaac0486e640ad0781a1a4', | ||
is_deprecated: false, | ||
created_at: 1724227665, | ||
abi: abi, | ||
} | ||
export default APOSTLE_BOUNTY_PROXY |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,87 @@ | ||
import { Contract } from '@/contract' | ||
const abi = [ | ||
{ | ||
inputs: [ | ||
{ | ||
internalType: 'address', | ||
name: '_logic', | ||
type: 'address', | ||
}, | ||
{ | ||
internalType: 'address', | ||
name: '_admin', | ||
type: 'address', | ||
}, | ||
{ | ||
internalType: 'bytes', | ||
name: '_data', | ||
type: 'bytes', | ||
}, | ||
], | ||
stateMutability: 'nonpayable', | ||
type: 'constructor', | ||
}, | ||
{ | ||
anonymous: false, | ||
inputs: [ | ||
{ | ||
indexed: false, | ||
internalType: 'address', | ||
name: 'previousAdmin', | ||
type: 'address', | ||
}, | ||
{ | ||
indexed: false, | ||
internalType: 'address', | ||
name: 'newAdmin', | ||
type: 'address', | ||
}, | ||
], | ||
name: 'AdminChanged', | ||
type: 'event', | ||
}, | ||
{ | ||
anonymous: false, | ||
inputs: [ | ||
{ | ||
indexed: true, | ||
internalType: 'address', | ||
name: 'beacon', | ||
type: 'address', | ||
}, | ||
], | ||
name: 'BeaconUpgraded', | ||
type: 'event', | ||
}, | ||
{ | ||
anonymous: false, | ||
inputs: [ | ||
{ | ||
indexed: true, | ||
internalType: 'address', | ||
name: 'implementation', | ||
type: 'address', | ||
}, | ||
], | ||
name: 'Upgraded', | ||
type: 'event', | ||
}, | ||
{ | ||
inputs: [], | ||
stateMutability: 'payable', | ||
type: 'fallback', | ||
}, | ||
{ | ||
inputs: [], | ||
stateMutability: 'payable', | ||
type: 'receive', | ||
}, | ||
] as const | ||
const EMAKI_EQUIPPABLE_PROXY: Contract<typeof abi> = { | ||
name: 'Emaki Equippable Proxy', | ||
address: '0x193e2f020703d903dd4cb8b54fa89583bfbbe124', | ||
is_deprecated: false, | ||
created_at: 1724415571, | ||
abi: abi, | ||
} | ||
export default EMAKI_EQUIPPABLE_PROXY |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,87 @@ | ||
import { Contract } from '@/contract' | ||
const abi = [ | ||
{ | ||
inputs: [ | ||
{ | ||
internalType: 'address', | ||
name: '_logic', | ||
type: 'address', | ||
}, | ||
{ | ||
internalType: 'address', | ||
name: '_admin', | ||
type: 'address', | ||
}, | ||
{ | ||
internalType: 'bytes', | ||
name: '_data', | ||
type: 'bytes', | ||
}, | ||
], | ||
stateMutability: 'nonpayable', | ||
type: 'constructor', | ||
}, | ||
{ | ||
anonymous: false, | ||
inputs: [ | ||
{ | ||
indexed: false, | ||
internalType: 'address', | ||
name: 'previousAdmin', | ||
type: 'address', | ||
}, | ||
{ | ||
indexed: false, | ||
internalType: 'address', | ||
name: 'newAdmin', | ||
type: 'address', | ||
}, | ||
], | ||
name: 'AdminChanged', | ||
type: 'event', | ||
}, | ||
{ | ||
anonymous: false, | ||
inputs: [ | ||
{ | ||
indexed: true, | ||
internalType: 'address', | ||
name: 'beacon', | ||
type: 'address', | ||
}, | ||
], | ||
name: 'BeaconUpgraded', | ||
type: 'event', | ||
}, | ||
{ | ||
anonymous: false, | ||
inputs: [ | ||
{ | ||
indexed: true, | ||
internalType: 'address', | ||
name: 'implementation', | ||
type: 'address', | ||
}, | ||
], | ||
name: 'Upgraded', | ||
type: 'event', | ||
}, | ||
{ | ||
inputs: [], | ||
stateMutability: 'payable', | ||
type: 'fallback', | ||
}, | ||
{ | ||
inputs: [], | ||
stateMutability: 'payable', | ||
type: 'receive', | ||
}, | ||
] as const | ||
const EMAKI_REDEEMER_PROXY: Contract<typeof abi> = { | ||
name: 'Emaki Redeemer Proxy', | ||
address: '0x6cf31c0cc991eb521fb0ed138dfd9701cbb327e8', | ||
is_deprecated: false, | ||
created_at: 1724415559, | ||
abi: abi, | ||
} | ||
export default EMAKI_REDEEMER_PROXY |
Oops, something went wrong.