line edits

This commit is contained in:
Eric Wong 2022-09-22 17:23:10 -05:00
parent eed39fea3b
commit 4192ac303b
7 changed files with 33 additions and 22 deletions

View File

@ -22,7 +22,7 @@
- [VAA: Verified Action Approval](./wormhole/4_vaa.md)
- [Guardian Network](./wormhole/5_guardianNetwork.md)
- [Relayers](./wormhole/6_relayers.md)
- [xAsset Bridge](./wormhole/7_TokenBridge.md)
- [xAsset Bridge](./wormhole/7_xAssetBridge.md)
- [Wormchain](./wormhole/8_wormchain.md)
- [xDapp Design](./dapps/architecture/0_dappDesign.md)
@ -50,7 +50,7 @@
- [EVM](./technical/evm/overview.md)
- [Core Layer](./technical/evm/coreLayer.md)
- [Token Bridge Module](./technical/evm/tokenLayer.md)
- [NFT Module](./technical/evm/nftLayer.md)
- [NFT Bridge Module](./technical/evm/nftLayer.md)
- [Best Practices](./technical/evm/bestPractices.md)
<!-- - [Relayer Module](./technical/evm/relayer.md) -->
- [Solana](./technical/solana/overview.md)
@ -68,14 +68,13 @@
- [Wormhole Typescript SDK](./technical/typescript/overview.md)
- [Token Registration](./technical/typescript/attestingToken.md)
- [Token Transfer Basics](./technical/typescript/tokenTransfer.md)
- [Cross-Ecosystem Transfer](./technical/typescript/evm-solana-transfer.md)
- [Using Relayers](./technical/typescript/polygon-oasis-relayer.md)
- [Cross-Ecosystem Transfer](./technical/typescript/cross-ecosystem-transfer.md)
- [Using Relayers](./technical/typescript/using-relayer.md)
---
- [Other Resources](./reference/overview.md)
- [Glossary](./reference/glossary.md)
- [Tools](./reference/tools.md)
- [Github](./reference/github.md)
- [Useful Links](./reference/usefulLinks.md)
- [Deployed Contracts](./reference/contracts.md)
- [RPC Nodes](./reference/rpcnodes.md)

View File

@ -1,6 +1,6 @@
# Ecosystems
At present, there are 3 ecosystems supported by Wormhole, though the number of supported ecosystems is always growing.
At present, there are 6 ecosystems supported by Wormhole, though the number of supported ecosystems is always growing.
### EVM
@ -27,6 +27,18 @@ Solana is characterized by its high transaction throughput, increased computatio
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.
### Algorand
Algorand is a leading blockchain on the state proof front and repesents the bleeding edge of trustlessness. These contracts are written in Python.
### Aptos
Aptos is characterized by its optimisitic approach to computation parallelization to bring increased performance. These contracts are written in Move.
### NEAR
NEAR is characterized by its sharding technology that may allow for greater transaction capacity and security. These contracts are written in Rust.
### Read-Only Chains
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).

View File

@ -1,8 +0,0 @@
# Repository
The Wormhole core repository can be found at [https://github.com/certusone/wormhole](https://github.com/certusone/wormhole).
# Design Documents
Wormhole's component design specifications can be found at [https://github.com/certusone/wormhole/tree/dev.v2/whitepapers](https://github.com/certusone/wormhole/tree/dev.v2/whitepapers). These outline the reasoning behind design decisions with added technical depth.

View File

@ -1,15 +1,15 @@
# Tools
# Useful Links
There are a variety of tools in the Wormhole ecosystem that can help you develop xDapps. Here are a few of the most notable:
Below are a variety of useful links to tools and information in the Wormhole ecosystem that can help you develop xDapps.
### Design Documents
Wormhole's component design specifications can be found at [https://github.com/certusone/wormhole/tree/dev.v2/whitepapers](https://github.com/certusone/wormhole/tree/dev.v2/whitepapers). These outline the reasoning behind design decisions with added technical depth.
### Testnet
Wormhole has deployed Core Bridge, Token Bridge and NFT Bridge contracts on various testnets of the chains connected by Wormhole. You can see the deployed addresses at [./contracts.md](./contracts.md). There's only a single Guardian that oversees the testnets, so you might get a higher rate of missed VAAs than you would on mainnet.
### Wormhole Explorer
Wormhole Explorer is a tool that will help you parse VAAs after they've been picked up the Guardian network. It's available at [https://wormholenetwork.com/en/explorer](https://wormholenetwork.com/en/explorer).
### Testnet Bridge UI
If you'd like to try out bridging tokens on testnet, there's a UI you can use to attest and transfer tokens for testnet, hosted [here](https://wormhole-foundation.github.io/example-token-bridge-ui/#/transfer).
@ -18,6 +18,14 @@ If you'd like to try out bridging tokens on testnet, there's a UI you can use to
Tilt is a Kubernetes-based tool that runs a copy of every chain along side a Guardian node to create a simulated testing environment. To set it up and test against it, start at [../development/tilt/overview.md](../development/tilt/overview.md).
### Wormhole Core Repository
The Wormhole core repository can be found at [https://github.com/wormhole-foundation/wormhole](https://github.com/wormhole-foundation/wormhole).
### Wormhole Explorer
Wormhole Explorer is a tool that will help you parse VAAs after they've been picked up the Guardian network. It's available at [https://wormholenetwork.com/en/explorer](https://wormholenetwork.com/en/explorer).
### Wormhole SDK
The SDK is a set of Javascript tools to help you do Token Bridge transfers, plus fetch and submit VAAs from one chain to another. You can install it via NPM at [https://www.npmjs.com/package/@certusone/wormhole-sdk](https://www.npmjs.com/package/@certusone/wormhole-sdk).
The SDK is a set of Javascript tools to help you do Token Bridge transfers, plus fetch and submit VAAs from one chain to another. You can install it via NPM at [https://www.npmjs.com/package/@certusone/wormhole-sdk](https://www.npmjs.com/package/@certusone/wormhole-sdk).