10 lines
381 B
TypeScript
10 lines
381 B
TypeScript
/**
|
|
* Web-app wagmi config — delegates to @harb/web3 shared package.
|
|
* Re-exports for backward compatibility with existing imports.
|
|
*/
|
|
import { createHarbConfig, KRAIKEN_LOCAL_CHAIN } from '@harb/web3';
|
|
|
|
const LOCAL_RPC_URL = import.meta.env.VITE_LOCAL_RPC_URL ?? '/api/rpc';
|
|
|
|
export { KRAIKEN_LOCAL_CHAIN };
|
|
export const config = createHarbConfig({ rpcUrl: LOCAL_RPC_URL });
|