Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 | 1x | module.exports = [
{
constant: false,
inputs: [{ name: 'newImplementation', type: 'address' }],
name: 'upgradeTo',
outputs: [],
payable: false,
stateMutability: 'nonpayable',
type: 'function',
},
{
constant: false,
inputs: [
{ name: 'newImplementation', type: 'address' },
{ name: 'data', type: 'bytes' },
],
name: 'upgradeToAndCall',
outputs: [],
payable: true,
stateMutability: 'payable',
type: 'function',
},
{
constant: true,
inputs: [],
name: 'implementation',
outputs: [{ name: '', type: 'address' }],
payable: false,
stateMutability: 'view',
type: 'function',
},
{
constant: false,
inputs: [{ name: 'newAdmin', type: 'address' }],
name: 'changeAdmin',
outputs: [],
payable: false,
stateMutability: 'nonpayable',
type: 'function',
},
{
constant: true,
inputs: [],
name: 'admin',
outputs: [{ name: '', type: 'address' }],
payable: false,
stateMutability: 'view',
type: 'function',
},
{
inputs: [
{ name: '_implementation', type: 'address' },
{ name: '_data', type: 'bytes' },
],
payable: true,
stateMutability: 'payable',
type: 'constructor',
},
{ payable: true, stateMutability: 'payable', type: 'fallback' },
{
anonymous: false,
inputs: [
{ indexed: false, name: 'previousAdmin', type: 'address' },
{ indexed: false, name: 'newAdmin', type: 'address' },
],
name: 'AdminChanged',
type: 'event',
},
{
anonymous: false,
inputs: [{ indexed: true, name: 'implementation', type: 'address' }],
name: 'Upgraded',
type: 'event',
},
{
constant: false,
inputs: [{ name: 'data', type: 'bytes' }],
name: 'applyProposal',
outputs: [{ name: '', type: 'bool' }],
payable: false,
stateMutability: 'nonpayable',
type: 'function',
},
];
|