-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathclients.ts
41 lines (36 loc) · 945 Bytes
/
clients.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
import {
http,
createTestClient,
createWalletClient,
publicActions,
} from 'viem';
import {
ETH2_DEVNET_NODE_URL,
ETH_DEVNET_NODE_URL,
eth2Devnet,
ethDevnet,
} from './chains';
import { account } from './mainAccount';
export const createClients = () => {
const ethClient = createTestClient({
mode: 'anvil',
chain: ethDevnet,
transport: http(ETH_DEVNET_NODE_URL),
}).extend(publicActions);
const eth2Client = createTestClient({
mode: 'anvil',
chain: eth2Devnet,
transport: http(ETH2_DEVNET_NODE_URL),
}).extend(publicActions);
const ethWallet = createWalletClient({
account,
chain: ethDevnet,
transport: http(ETH_DEVNET_NODE_URL),
}).extend(publicActions);
const eth2Wallet = createWalletClient({
account,
chain: eth2Devnet,
transport: http(ETH2_DEVNET_NODE_URL),
}).extend(publicActions);
return { ethClient, eth2Client, ethWallet, eth2Wallet, account };
};