-
Notifications
You must be signed in to change notification settings - Fork 0
/
local.env.example
68 lines (46 loc) · 2.06 KB
/
local.env.example
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
61
62
63
64
65
66
67
68
# private key to submit txs with
PRIVATE_KEY=0x
# default local rpc url
RPC_URL="http://localhost:8545"
### contract deployment values
# divide withdrawn values by 10^(18-BASE_CHAIN_ASSET_PRECISION)
BASE_CHAIN_ASSET_PRECISION=9
# the address of the bridge on the base chain
BASE_CHAIN_BRIDGE_ADDRESS="astria1rsxyjrcm255ds9euthjx6yc3vrjt9sxrm9cfgm"
# the denomination of the asset on the base chain
BASE_CHAIN_ASSET_DENOMINATION="nria"
# the fee charged for each sequencer withdrawal transaction
SEQUENCER_WITHDRAWAL_FEE=0
# the fee charged for each IBC withdrawal transaction
IBC_WITHDRAWAL_FEE=0
# the address that receives the accumulated withdrawal fees
FEE_RECIPIENT=0x0000000000000000000000000000000000000000
### erc20 contract deployment additional values
# the `astriaBridgeSenderAddress` built into the astria-geth node
# in production, the private key for this address must NOT be known.
EVM_BRIDGE_ADDRESS=0x70997970C51812dc3A010C7d01b50e0d17dc79C8
# name of the token
TOKEN_NAME="astria"
# symbol of the token
TOKEN_SYMBOL="RIA"
### contract call values
# contract address for AstriaWithdrawer.sol
ASTRIA_WITHDRAWER=0x5FbDB2315678afecb367f032d93F642f64180aa3
# contract address for AstriaBridgeableERC20.sol
ASTRIA_BRIDGEABLE_ERC20_ADDRESS=0x5fbdb2315678afecb367f032d93f642f64180aa3
# if withdrawing to the sequencer, this must be set to
# the address to withdraw to on the sequencer
SEQUENCER_DESTINATION_CHAIN_ADDRESS=""
# if withdrawing to another chain via IBC, this must be set to
# the destination chain address to withdraw to
ORIGIN_DESTINATION_CHAIN_ADDRESS="someaddress"
# amount to withdraw, must be greater than 10^ASSET_WITHDRAWAL_DECIMALS
AMOUNT=1000000000
### erc20 mint parameters for testing
# the `astriaBridgeSenderAddress` built into the astria-geth node
# in production, the private key for this address must NOT be known.
EVM_BRIDGE_ADDRESS=0x70997970C51812dc3A010C7d01b50e0d17dc79C8
# if minting, this is the mint recipient
MINT_TO=0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266
# if minting, this is the amount to mint
MINT_AMOUNT=1000000000000000000000