From e4a44ebac0222b70256ab4eaf99576b612f4591c Mon Sep 17 00:00:00 2001 From: Gorka Ludlow Date: Wed, 22 May 2024 14:42:56 -0300 Subject: [PATCH] docs: devnet faucet (#101) * chore: remove old entry in workflow triggers * docs: add reference to faucet in devnet readme --- .github/workflows/devnet_deploy.yml | 1 - DEVNET.md | 4 ++++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/devnet_deploy.yml b/.github/workflows/devnet_deploy.yml index 9ec17271..cc19a767 100644 --- a/.github/workflows/devnet_deploy.yml +++ b/.github/workflows/devnet_deploy.yml @@ -4,7 +4,6 @@ on: push: branches: - main - - gorka/isolate-components jobs: contracts: diff --git a/DEVNET.md b/DEVNET.md index 88de739a..800f9190 100644 --- a/DEVNET.md +++ b/DEVNET.md @@ -35,6 +35,10 @@ If, for whatever reason, the blockchain node needs to be reset, this can be done 3. In the container shell execute the reset script (`./reset`). This will stop the node, clear the blockchain data, restart the node and fund the admin account. 4. Execute `./stack chain-boot` to compile, deploy and fund the smart contracts, token and accounts respectively. Change the configuration in the Hardhat scripts (`/hardhat.config.ts` and `/scripts/print-contract-env.ts`) to make sure the URLs point to the node's exposed subdomains (at the time of this write-up `8545` -> `https://devnet-chain-http.lilypad.tech` and `8546` -> `wss://devnet-chain-ws.lilypad.tech`). +### Faucet + +Checkout the [Lilypad faucet](https://github.com/Lilypad-Tech/eth-faucet) repository. + ## Solver and Job creator When code changes reach the `main` branch, a GitHub workflow will trigger the flow that will first deploy and run the `solver` and then deploy and run the `job creator`. (*reminder*) The `solver` has to be up and running (and have registered its public URL to the blockchain) before the `job-creator` starts (the `job creator` will fail if it can't find the `solver`'s websocket server).