We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6670f13 commit 0d480dfCopy full SHA for 0d480df
src/utils/onchain-allocator.ts
@@ -88,19 +88,10 @@ const getPayloadBuilder = async (address: string) => {
88
export const getOnchainAllocator = async (chainId: string) => {
89
let allocator = config.onchainAllocator;
90
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)
+ process.env.SERVICE === "relay-protocol-hub" &&
+ ["hyperliquid"].includes(chainId)
102
) {
103
- allocator = "0x45348c213bf7ddb8e45f34ca4f333307a78ecb9a";
+ allocator = "0x7eda04920f22ba6a2b9f2573fd9a6f6f1946ff9f";
104
}
105
106
if (!allocator) {
0 commit comments