Skip to content

Commit fe02f5b

Browse files
committed
fix(admins): correct onchain admins for 4 chains
- avalanche, gnosis, scroll: EOA (not multisig) - chiliz: EOA (not chain-specific Safe)
1 parent d3ff5f1 commit fe02f5b

1 file changed

Lines changed: 4 additions & 6 deletions

File tree

src/components/organisms/AdminsTable.tsx

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@ type Chain = Sablier.Chain;
1010
const MULTISIG: Address = "0x58290bbdb51A4c6B022A81e9cDeD24BE19Ca57fd";
1111
// Sablier-controlled EOA, used on chains that do not yet have the multisig.
1212
const EOA: Address = "0xb1bEF51ebCA01EB12001a639bDBbFF6eEcA12B9F";
13-
// Chiliz does not support the CreateX factory used by the canonical multisig, so a chain-specific Safe is used.
14-
const CHILIZ_MULTISIG: Address = "0x74A234DcAdFCB395b37C8c2B3Edf7A13Be78c935";
1513

1614
// Single source of truth for the admin governing each mainnet. Iterating this
1715
// list (rather than the sablier catalog) makes the rendered rows typed: every
@@ -23,14 +21,14 @@ const CHILIZ_MULTISIG: Address = "0x74A234DcAdFCB395b37C8c2B3Edf7A13Be78c935";
2321
const CHAIN_ADMINS: ReadonlyArray<readonly [Chain, Address]> = [
2422
[chains.abstract, EOA],
2523
[chains.arbitrum, MULTISIG],
26-
[chains.avalanche, MULTISIG],
24+
[chains.avalanche, EOA],
2725
[chains.base, MULTISIG],
2826
[chains.berachain, EOA],
2927
[chains.blast, EOA],
3028
[chains.bsc, MULTISIG],
31-
[chains.chiliz, CHILIZ_MULTISIG],
29+
[chains.chiliz, EOA],
3230
[chains.denergy, EOA],
33-
[chains.gnosis, MULTISIG],
31+
[chains.gnosis, EOA],
3432
[chains.hyperevm, MULTISIG],
3533
[chains.lightlink, EOA],
3634
[chains.linea, MULTISIG],
@@ -40,7 +38,7 @@ const CHAIN_ADMINS: ReadonlyArray<readonly [Chain, Address]> = [
4038
[chains.morph, EOA],
4139
[chains.optimism, MULTISIG],
4240
[chains.polygon, MULTISIG],
43-
[chains.scroll, MULTISIG],
41+
[chains.scroll, EOA],
4442
[chains.sonic, MULTISIG],
4543
[chains.superseed, EOA],
4644
[chains.unichain, EOA],

0 commit comments

Comments
 (0)