|
| 1 | +export const BeaconAbi = [ |
| 2 | + { |
| 3 | + inputs: [ |
| 4 | + { internalType: 'address', name: 'implementation_', type: 'address' }, |
| 5 | + { internalType: 'address', name: 'initialOwner', type: 'address' }, |
| 6 | + ], |
| 7 | + stateMutability: 'nonpayable', |
| 8 | + type: 'constructor', |
| 9 | + }, |
| 10 | + { |
| 11 | + inputs: [ |
| 12 | + { internalType: 'address', name: 'implementation', type: 'address' }, |
| 13 | + ], |
| 14 | + name: 'BeaconInvalidImplementation', |
| 15 | + type: 'error', |
| 16 | + }, |
| 17 | + { |
| 18 | + inputs: [{ internalType: 'address', name: 'owner', type: 'address' }], |
| 19 | + name: 'OwnableInvalidOwner', |
| 20 | + type: 'error', |
| 21 | + }, |
| 22 | + { |
| 23 | + inputs: [{ internalType: 'address', name: 'account', type: 'address' }], |
| 24 | + name: 'OwnableUnauthorizedAccount', |
| 25 | + type: 'error', |
| 26 | + }, |
| 27 | + { |
| 28 | + anonymous: false, |
| 29 | + inputs: [ |
| 30 | + { |
| 31 | + indexed: true, |
| 32 | + internalType: 'address', |
| 33 | + name: 'previousOwner', |
| 34 | + type: 'address', |
| 35 | + }, |
| 36 | + { |
| 37 | + indexed: true, |
| 38 | + internalType: 'address', |
| 39 | + name: 'newOwner', |
| 40 | + type: 'address', |
| 41 | + }, |
| 42 | + ], |
| 43 | + name: 'OwnershipTransferred', |
| 44 | + type: 'event', |
| 45 | + }, |
| 46 | + { |
| 47 | + anonymous: false, |
| 48 | + inputs: [ |
| 49 | + { |
| 50 | + indexed: true, |
| 51 | + internalType: 'address', |
| 52 | + name: 'implementation', |
| 53 | + type: 'address', |
| 54 | + }, |
| 55 | + ], |
| 56 | + name: 'Upgraded', |
| 57 | + type: 'event', |
| 58 | + }, |
| 59 | + { |
| 60 | + inputs: [], |
| 61 | + name: 'implementation', |
| 62 | + outputs: [{ internalType: 'address', name: '', type: 'address' }], |
| 63 | + stateMutability: 'view', |
| 64 | + type: 'function', |
| 65 | + }, |
| 66 | + { |
| 67 | + inputs: [], |
| 68 | + name: 'owner', |
| 69 | + outputs: [{ internalType: 'address', name: '', type: 'address' }], |
| 70 | + stateMutability: 'view', |
| 71 | + type: 'function', |
| 72 | + }, |
| 73 | + { |
| 74 | + inputs: [], |
| 75 | + name: 'renounceOwnership', |
| 76 | + outputs: [], |
| 77 | + stateMutability: 'nonpayable', |
| 78 | + type: 'function', |
| 79 | + }, |
| 80 | + { |
| 81 | + inputs: [{ internalType: 'address', name: 'newOwner', type: 'address' }], |
| 82 | + name: 'transferOwnership', |
| 83 | + outputs: [], |
| 84 | + stateMutability: 'nonpayable', |
| 85 | + type: 'function', |
| 86 | + }, |
| 87 | + { |
| 88 | + inputs: [ |
| 89 | + { internalType: 'address', name: 'newImplementation', type: 'address' }, |
| 90 | + ], |
| 91 | + name: 'upgradeTo', |
| 92 | + outputs: [], |
| 93 | + stateMutability: 'nonpayable', |
| 94 | + type: 'function', |
| 95 | + }, |
| 96 | +] as const; |
0 commit comments