diff --git a/DEVNET.md b/DEVNET.md index 0a699ba2f..f7c1ace77 100644 --- a/DEVNET.md +++ b/DEVNET.md @@ -18,7 +18,7 @@ Notes: The nodes started by the script have a JSON-RPC server enabled. The por ```sh npx ts-node scripts/seeder.ts --rpcPort=8546 --numBlocks=[number of blocks to seed into network] --sourceFile="[path/to/json/file/with/block/data.json]" --numNodes=[number of nodes in devnet (same as above)] ``` -This will load the first `numBlocks` blocks from your `sourceFile` to the the node with the `rpcPort` specified. +This will load the first `numBlocks` blocks from your `sourceFile` to the node with the `rpcPort` specified. 3. If all goes well, you should see the nodes start to connect with one another @@ -48,4 +48,4 @@ scrape_configs: static_configs: - targets: ["localhost:5051"] -``` \ No newline at end of file +``` diff --git a/README.md b/README.md index 046e8a631..66b3f45e9 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ This monorepo comprises a suite of tools **currently in development** to allow dapps, wallet providers, and really any Javascript based Ethereum application to connect into the Portal Network once development is complete and the Portal Network is live. -## Prequisites +## Prerequisites Node v16+, NPM v7+ diff --git a/packages/browser-client/docs/mobile.md b/packages/browser-client/docs/mobile.md index 3dd6fba23..d106b91b8 100644 --- a/packages/browser-client/docs/mobile.md +++ b/packages/browser-client/docs/mobile.md @@ -23,7 +23,7 @@ The nice part of this for our purposes is that the React web app is the same cod ## Debugging the mobile app There are a couple of ways to debug Android apps but far and away the easiest is: - - Run `npx cap open android` from `[directory root]/packages/browser-client` and then select the "Run" tab on the very bottom left of the Android Studio UI and it wll show you all of the debug logs from the app. + - Run `npx cap open android` from `[directory root]/packages/browser-client` and then select the "Run" tab on the very bottom left of the Android Studio UI and it will show you all of the debug logs from the app. ## Local development notes diff --git a/packages/portalnetwork/README.md b/packages/portalnetwork/README.md index 3920266b3..4b4858ee9 100644 --- a/packages/portalnetwork/README.md +++ b/packages/portalnetwork/README.md @@ -9,7 +9,7 @@ See [Architecture](./ARCHITECTURE.md) for architectural concepts ## Routing Table Management -The Portal Network module currently supports two overlay routing tables for use with tbe below two subnetworks: +The Portal Network module currently supports two overlay routing tables for use with the below two subnetworks: - State Network - History Network @@ -34,4 +34,4 @@ Content for the history network is stored in the DB as key/value pairs consistin - `value` -- hex string encoded representation of the RLP serialized content (block header, block body, receipt) # Acknowledgements -[Chainsafe's `discv5` implementation](https://github.com/ChainSafe/discv5) without which none of this would be possible \ No newline at end of file +[Chainsafe's `discv5` implementation](https://github.com/ChainSafe/discv5) without which none of this would be possible diff --git a/packages/portalnetwork/docs/README.md b/packages/portalnetwork/docs/README.md index cb1223f33..4c1ba3ec2 100644 --- a/packages/portalnetwork/docs/README.md +++ b/packages/portalnetwork/docs/README.md @@ -11,7 +11,7 @@ See [Architecture](./ARCHITECTURE.md) for architectural concepts ## Routing Table Management -The Portal Network module currently supports two overlay routing tables for use with tbe below two subnetworks: +The Portal Network module currently supports two overlay routing tables for use with the below two subnetworks: - State Network - History Network diff --git a/packages/proxy/README.md b/packages/proxy/README.md index 62ccbb232..3195f0834 100644 --- a/packages/proxy/README.md +++ b/packages/proxy/README.md @@ -20,7 +20,7 @@ The proxy strips this prefix from the message payload and forwards the remaining #### UDP -> Websocket forwarding -Any message received at a UDP port are forwarded to the corresponding websocket client unmodified. +Any message received at a UDP port is forwarded to the corresponding websocket client unmodified. ## Usage To run a proxy on a local network, run `npm run start`.