Skip to content

Commit bbb1c14

Browse files
authored
Revert "Pedro/pike 98 integrate berachain bartio and monad testnets (#25)"
This reverts commit 1486cc9.
1 parent 1486cc9 commit bbb1c14

File tree

18 files changed

+584
-2218
lines changed

18 files changed

+584
-2218
lines changed

.env.example

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,6 @@
22
BASE_SEPOLIA_RPC_URL=
33
OPTIMISM_SEPOLIA_RPC_URL=
44
ARBITRUM_SEPOLIA_RPC_URL=
5-
BERACHAIN_TESTNET_BARTIO_RPC_URL=
6-
MONAD_TESTNET_RPC_URL=
7-
HYPERLIQUID_TESTNET_RPC_URL=
85

96
# SCRIPT CONFIG
107
FUNDING_PRIVATE_KEY=

abis/BeaconAbi.ts

Lines changed: 96 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,96 @@
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;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
export const FactoryAbiV0 = [
1+
export const FactoryAbi = [
22
{
33
type: 'constructor',
44
inputs: [],

abis/FactoryAbi/index.ts

Lines changed: 0 additions & 5 deletions
This file was deleted.

0 commit comments

Comments
 (0)