-
Notifications
You must be signed in to change notification settings - Fork 4
/
_vars.tf
60 lines (48 loc) · 1.02 KB
/
_vars.tf
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
variable "RPC_HOST" {
type = string
default = "https://sepolia.rpc.zeropool.network"
}
variable "VIRTUAL_HOST" {
type = string
default = "sepolia.testnet.frontend.ENV.v2.zeropool.network"
}
variable "NETWORK_NAME" {
type = string
default = "sepolia"
}
variable "TOKEN_NAME" {
type = string
default = "eth"
}
variable "NETWORK" {
type = string
default = "ethereum"
}
variable "TOKEN" {
type = string
default = "0x25004028Dd2743FF487454eAB2216d3495667189"
}
variable "FAUCET" {
type = string
default = "https://sepoliafaucet.com"
}
variable "RELAYER" {
type = string
default = "https://sepolia.testnet.relayer.v2.zeropool.network"
}
variable "CONTRACT" {
type = string
default = "0xEcbD5fabA99139B2cA25f19B568fF74991a01eD3"
}
variable "TRANSACTION" {
type = string
default = "https://sepolia.etherscan.io/tx/{{hash}}"
}
variable "ENV" {
type = string
default = "dev"
}
variable "VERSION" {
type = string
default = "antonpegov/zeropool-frontend:latest"
}