diff --git a/README.md b/README.md index 11b33be1..0f1c31cd 100644 --- a/README.md +++ b/README.md @@ -26,10 +26,6 @@ To try the swap on Stagenet/Goerli, follow the instructions [here](./docs/stagen Please see the [developer docs](docs/developing.md). -### Recovery module - -In case the swap process crashes during a swap, you can recover your funds with the recovery module. Please see the instructions [here](./docs/recovery.md). - ### RPC API The swap process comes with a HTTP JSON-RPC API as well as a Websockets API. You can find the documentation [here](./docs/rpc.md). @@ -40,4 +36,6 @@ If you'd like to contribute, feel free to fork the repo and make a pull request. ## Donations -The work on this project is currently funded via a [Monero CCS Proposal](https://ccs.getmonero.org/proposals/noot-eth-xmr-atomic-swap.html) If you would like help fund this project, feel free to contribute to a follow-up CCS proposal when it's ready for funding. In the meantime, check out other [CCS proposals ready for funding](https://ccs.getmonero.org/funding-required/). \ No newline at end of file +The work on this project has been funded previously by community grants. It is currently not funded; if you'd like to donate, you can do so at the following address: +- XMR `8AYdE4Tzq3rQYh7QNHfHz8HqcgT9kcTcHMcRHL1LhVtqYwah27zwPYGdesBgK5PATvGBAd4BC1t2NfrqKQqDguybQrC1tZb` +- ETH `0x39D3b8cc9D08fD83360dDaCFe054b7D6e7f2cA08` diff --git a/ui/README.md b/ui/README.md index 82725304..e333fa58 100644 --- a/ui/README.md +++ b/ui/README.md @@ -16,6 +16,11 @@ yarn install yarn dev ``` +To set the swapd RPC port: +```bash +SWAPD_PORT=5000 yarn dev +``` + Navigate to [localhost:8080](http://localhost:8080). You should see your app running. Edit a component file in `src`, save it, and reload the page to see your changes. By default, the server will only respond to requests from localhost. To allow connections from other computers, edit the `sirv` commands in package.json to include the option `--host 0.0.0.0`.