-
Notifications
You must be signed in to change notification settings - Fork 0
/
input.ts
44 lines (41 loc) · 1.61 KB
/
input.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
42
43
44
import { Task, TaskMode } from '@src';
export type OmniVotingEscrowChildDeployment = {
LayerZeroEndpoint: string;
L2LayerZeroBridgeForwarder: string;
};
const L2LayerZeroBridgeForwarder = new Task('20230404-l2-layer0-bridge-forwarder', TaskMode.READ_ONLY);
export default {
L2LayerZeroBridgeForwarder,
// https://polygonscan.com/address/0x3c2269811836af69497E5F486A85D7316753cf62
polygon: {
LayerZeroEndpoint: '0x3c2269811836af69497E5F486A85D7316753cf62',
},
// https://arbiscan.io/address/0x3c2269811836af69497E5F486A85D7316753cf62
arbitrum: {
LayerZeroEndpoint: '0x3c2269811836af69497E5F486A85D7316753cf62',
},
// https://optimistic.etherscan.io/address/0x3c2269811836af69497E5F486A85D7316753cf62
optimism: {
LayerZeroEndpoint: '0x3c2269811836af69497E5F486A85D7316753cf62',
},
// https://gnosisscan.io/address/0x9740FF91F1985D8d2B71494aE1A2f723bb3Ed9E4
gnosis: {
LayerZeroEndpoint: '0x9740FF91F1985D8d2B71494aE1A2f723bb3Ed9E4',
},
// https://snowtrace.io/address/0x3c2269811836af69497E5F486A85D7316753cf62
avalanche: {
LayerZeroEndpoint: '0x3c2269811836af69497E5F486A85D7316753cf62',
},
// https://zkevm.polygonscan.com/address/0x9740FF91F1985D8d2B71494aE1A2f723bb3Ed9E4
zkevm: {
LayerZeroEndpoint: '0x9740FF91F1985D8d2B71494aE1A2f723bb3Ed9E4',
},
// https://basescan.org/address/0xb6319cC6c8c27A8F5dAF0dD3DF91EA35C4720dd7
base: {
LayerZeroEndpoint: '0xb6319cC6c8c27A8F5dAF0dD3DF91EA35C4720dd7',
},
// https://fraxscan.com/address/0xb6319cC6c8c27A8F5dAF0dD3DF91EA35C4720dd7
fraxtal: {
LayerZeroEndpoint: '0xb6319cC6c8c27A8F5dAF0dD3DF91EA35C4720dd7',
},
};