-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(bridge): add faucet link to announcement (#485)
* feat(bridge): add faucet link to announcement * faucet url * .default.env defaults, basic readme * sensible defaults Co-authored-by: Jeffery Walsh <cyberhorsey@gmail.com> Co-authored-by: jeff <113397187+cyberhorsey@users.noreply.github.com> Co-authored-by: dave | d1onys1us <13951458+d1onys1us@users.noreply.github.com>
- Loading branch information
1 parent
3747d4c
commit d1a4921
Showing
5 changed files
with
28 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,21 @@ | ||
HTTP_PORT=4102 | ||
PROMETHEUS_HTTP_PORT=6060 | ||
HTTP_PORT=4101 | ||
PROMETHEUS_HTTP_PORT=6061 | ||
MYSQL_USER=root | ||
MYSQL_PASSWORD=root | ||
MYSQL_DATABASE=relayer | ||
MYSQL_HOST=localhost:3306 | ||
MYSQL_MAX_IDLE_CONNS=50 | ||
MYSQL_MAX_OPEN_CONNS=3000 | ||
MYSQL_CONN_MAX_LIFETIME_IN_MS=100000 | ||
RELAYER_ECDSA_KEY= | ||
L1_BRIDGE_ADDRESS=0xB12d6112D64B213880Fa53F815aF1F29c91CaCe9 | ||
L2_BRIDGE_ADDRESS=0xA53a0f12879Aba509A24D2e5C959a36cdD18F9d0 | ||
L1_TAIKO_ADDRESS=0x9b557777Be33A8A2fE6aF93E017A0d139B439E5D | ||
L2_TAIKO_ADDRESS=0x80EDBd3f3618b348526F0970AEAFA52b6f204449 | ||
L1_RPC_URL=ws://34.132.67.34:8546 | ||
L2_RPC_URL=ws://ws.a1.testnet.taiko.xyz | ||
BLOCK_BATCH_SIZE=2 | ||
MYSQL_MAX_IDLE_CONNS= | ||
MYSQL_MAX_OPEN_CONNS= | ||
MYSQL_CONN_MAX_LIFETIME_IN_MS= | ||
NUM_GOROUTINES=20 | ||
SUBSCRIPTION_BACKOFF_IN_SECONDS=3 | ||
CONFIRMATIONS_BEFORE_PROCESSING=15 | ||
L1_BRIDGE_ADDRESS=0x3612E284D763f42f5E4CB72B1602b23DAEC3cA60 | ||
L2_BRIDGE_ADDRESS=0x0000777700000000000000000000000000000004 | ||
L1_TAIKO_ADDRESS=0x7B3AF414448ba906f02a1CA307C56c4ADFF27ce7 | ||
L2_TAIKO_ADDRESS=0x0000777700000000000000000000000000000001 | ||
L1_RPC_URL=wss://l1ws.a1.taiko.xyz | ||
L2_RPC_URL=wss://l2ws.a1.taiko.xyz | ||
CONFIRMATIONS_BEFORE_PROCESSING=13 | ||
CORS_ORIGINS=* | ||
NUM_GOROUTINES=100 | ||
BLOCK_BATCH_SIZE=10 | ||
HEADER_SYNC_INTERVAL_IN_SECONDS=60 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters