Skip to content

Commit 0d480df

Browse files
committed
chore: start migrating to new allocator
1 parent 6670f13 commit 0d480df

File tree

1 file changed

+3
-12
lines changed

1 file changed

+3
-12
lines changed

src/utils/onchain-allocator.ts

Lines changed: 3 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -88,19 +88,10 @@ const getPayloadBuilder = async (address: string) => {
8888
export const getOnchainAllocator = async (chainId: string) => {
8989
let allocator = config.onchainAllocator;
9090
if (
91-
process.env.SERVICE === "relay-protocol-hub-dev" &&
92-
[
93-
"ethereum",
94-
"optimism",
95-
"polygon",
96-
"abstract",
97-
"base",
98-
"arbitrum",
99-
"solana",
100-
"hyperliquid",
101-
].includes(chainId)
91+
process.env.SERVICE === "relay-protocol-hub" &&
92+
["hyperliquid"].includes(chainId)
10293
) {
103-
allocator = "0x45348c213bf7ddb8e45f34ca4f333307a78ecb9a";
94+
allocator = "0x7eda04920f22ba6a2b9f2573fd9a6f6f1946ff9f";
10495
}
10596

10697
if (!allocator) {

0 commit comments

Comments
 (0)