From 4a7d27b1ce9955284fed3394dac1217421cd6cb1 Mon Sep 17 00:00:00 2001 From: Ian Traas <108365619+itraas@users.noreply.github.com> Date: Tue, 30 Aug 2022 10:41:53 -0500 Subject: [PATCH] Update 2_ecosystems.md Updated copy for style and flow. --- src/dapps/architecture/2_ecosystems.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/dapps/architecture/2_ecosystems.md b/src/dapps/architecture/2_ecosystems.md index 1741cd7..7efe5f4 100644 --- a/src/dapps/architecture/2_ecosystems.md +++ b/src/dapps/architecture/2_ecosystems.md @@ -4,7 +4,7 @@ At present, there are 3 ecosystems supported by Wormhole, though the number of s ### EVM -EVM is the most popular ecosystem, and most xDapps will have some support for this platform. These contracts are written in Solidity, and it is generally a 'jack of all trades' style of computation environment. A common strategy for xDapps is to develop one single contract in Solidity, and then deploy that contract to all the supported EVM blockchains. +EVM is the most popular ecosystem, and most xDapps will have some support for this platform. These contracts are written in Solidity -- a 'jack of all trades' style of computation environment. A common strategy for xDapps is to develop one single contract in Solidity, and then deploy that contract to all the supported EVM blockchains. Example chains: @@ -21,12 +21,12 @@ Example chains: ### Solana -Solana is characterized by its high transaction throughput, increased computation power, and cheap data storage when compared to EVM environments. These contracts are written in Rust. +Solana is characterized by its high transaction throughput, increased computation power and cheap data storage when compared to EVM environments. These contracts are written in Rust. ### Cosmos -Cosmos is a network of blockchains which share a common ecosystem. Cosmos is a general purpose environment, but excels in certain areas such as application-specific blockchains, and having Cosmos-wide standards via its sdk 'modules'. It uses CosmWasm for its smart contract runtime, which is based in Rust. +Cosmos is a network of blockchains that share a common ecosystem. Cosmos is a general purpose environment, but excels in certain areas like application-specific blockchains and the use of Cosmos-wide standards via its sdk 'modules.' It uses CosmWasm for its smart contract runtime, which is based in Rust. ### Read-Only Chains -Some chains in the Wormhole ecosystem are 'Read-Only'. These chains are able to verify messages which are emitted from other chains in the network, but are not able to emit messages themselves. For information about these chains, check the [contracts page](../../reference/contracts.md). +Some chains in the Wormhole ecosystem are 'Read-Only.' These chains are able to verify messages emitted from other chains in the network, but are not able to emit messages themselves. For information about these chains, check the [contracts page](../../reference/contracts.md).