2024-09-04 07:12:35 +00:00
# nitro-bridge-setup
## Setup Ansible
To get started, follow the [installation ](../README.md#installation ) guide to setup ansible on your machine
2024-09-06 08:54:55 +00:00
## Run Nitro Bridge
2024-09-06 06:10:03 +00:00
2024-09-04 07:12:35 +00:00
- Copy the `bridge-vars-example.yml` vars file
```bash
cp bridge-vars-example.yml bridge-vars.yml
```
- Edit [`bridge-vars.yml` ](./bridge-vars.yml ) and fill in the following values
```bash
# L1 WS endpoint
nitro_l1_chain_url: ""
# L2 WS endpoint
nitro_l2_chain_url: ""
# Private key for the bridge's nitro address
nitro_sc_pk: ""
# Private key for a funded account on L1
2024-09-05 12:06:51 +00:00
# This account should have tokens for funding Nitro channels
2024-09-04 07:12:35 +00:00
nitro_chain_pk: ""
# L2 RPC endpoint
optimism_url: ""
# Private key for a funded account on L2 to use for contracts deployment on L2
# Use the same account for L1 and L2 deployments
2024-09-05 12:06:51 +00:00
optimism_deployer_pk: ""
2024-09-06 06:10:03 +00:00
2024-09-06 08:54:55 +00:00
# Custom L2 token to be deployed
2024-09-06 06:10:03 +00:00
token_name: "LaconicNetworkToken"
token_symbol: "LNT"
intial_token_supply: "129600"
# Addresses of the deployed nitro contracts
na_address: ""
vpa_address: ""
ca_address: ""
2024-09-06 08:54:55 +00:00
# Address of deployed custom L1 token
2024-09-06 06:10:03 +00:00
l1_asset_address: ""
2024-09-04 07:12:35 +00:00
```
2024-09-06 06:10:03 +00:00
- To run the nitro bridge, execute the `run-nitro-bridge.yml` Ansible playbook by running the following command:
2024-09-04 07:12:35 +00:00
NOTE: By default, deployments are created in the `nitro-nodes-setup/out` directory. To change this location, update the `nitro_directory` variable in the [setup-vars.yml ](./setup-vars.yml ) file.
```bash
LANG=en_US.utf8 ansible-playbook -i localhost, --connection=local run-nitro-bridge.yml --extra-vars='{ "target_host": "localhost"}' --user $USER -kK
```
- For skipping container build, run with `"skip_container_build" : true` in the `--extra-vars` parameter:
```bash
LANG=en_US.utf8 ansible-playbook -i localhost, --connection=local run-nitro-bridge.yml --extra-vars='{ "target_host": "localhost", "skip_container_build": true }' --user $USER -kK
```
## Check Deployment Status
- Run the following command in the directory where the bridge-deployment is created:
2024-09-05 12:06:51 +00:00
- Check logs for deployments:
2024-09-04 07:12:35 +00:00
```bash
2024-09-06 06:10:03 +00:00
# Check the bridge deployment logs, ensure that the node is running
2024-09-04 07:12:35 +00:00
laconic-so deployment --dir bridge-deployment logs nitro-bridge -f
```
## Get Contract Addresses
- Run the following commands in the directory where the deployments are created:
- Get addresses of L2 nitro contracts:
```bash
laconic-so deployment --dir bridge-deployment exec nitro-bridge "cat /app/deployment/nitro-addresses.json"
```