Skip to content

Commit c95f8af

Browse files
* Update 01_hello_world.md * Update README.md * Update README.md * Update 01_hello_world.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update 03_nft_burn_bridging.md * Update README.md * Update README.md * Update README.md * Update 01_hello_world.md * Update README.md
1 parent 662ff87 commit c95f8af

File tree

6 files changed

+49
-17
lines changed

6 files changed

+49
-17
lines changed

README.md

+13-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
# Wormhole Scaffolding
22

3-
This repository warehouses apps that integrate with Wormhole generic messaging and existing apps that use Wormhole message passing. These apps range in complexity and demonstrate how to organize your business logic in your smart contracts. These examples also show how you would write tests supporting your Wormhole integration.
3+
This repository warehouses apps that integrate with Wormhole generic messaging and existing apps that use Wormhole message passing. These apps range in complexity and demonstrate how to organize your business logic in your smart contracts. These examples show the basic structure of an xdapp and how the wormhole works with the respective programming environment.
4+
Example repos also include tests to debug and deploy the dapps in local environment.
5+
6+
There are 3 example dapps that give a walkthrough on some of the core components of the wormhole messaging and portal token bridge.
7+
1. [Hello World](https://github.com/wormhole-foundation/wormhole-scaffolding/blob/main/docs/01_hello_world.md) -> [Solana](https://github.com/wormhole-foundation/wormhole-scaffolding/tree/main/solana/programs/01_hello_world) | [EVM](https://github.com/wormhole-foundation/wormhole-scaffolding/tree/main/evm/src/01_hello_world)
8+
2. [Hello Token](https://github.com/wormhole-foundation/wormhole-scaffolding/blob/main/docs/02_hello_token.md) -> [Solana](https://github.com/wormhole-foundation/wormhole-scaffolding/tree/main/solana/programs/02_hello_token) | [EVM](https://github.com/wormhole-foundation/wormhole-scaffolding/tree/main/evm/src/02_hello_token)
9+
3. [NFT Burn Bridging](https://github.com/wormhole-foundation/wormhole-scaffolding/blob/main/docs/03_nft_burn_bridging.md) -> [Solana](https://github.com/wormhole-foundation/wormhole-scaffolding/tree/main/solana/programs/03_nft_burn_bridging) | [EVM](https://github.com/wormhole-foundation/wormhole-scaffolding/tree/main/evm/src/03_nft_burn_bridging)
410

511
## Prerequisites
612

@@ -12,6 +18,8 @@ If your xChain app will require EVM smart contracts, we recommend using [Foundry
1218

1319
If your xChain app will require Solana programs, prepare your development environment by installing [Solana and Anchor dependencies](https://book.anchor-lang.com/getting_started/installation.html), which include `solana` and `anchor` CLI tools.
1420

21+
Anchor helps in abstracting solana architecture boilerplate code. However, it has its own challenges so you can still write programs in native rust, download ['rust-analyzer'](https://rust-analyzer.github.io/) to debug and write efficient rust.
22+
1523
### SUI
1624

1725
Install the `Sui` CLI. This tool is used to compile the contracts and run the tests.
@@ -22,16 +30,18 @@ cargo install --locked --git https://github.com/MystenLabs/sui.git --rev 09b2081
2230

2331
### Worm CLI
2432

25-
First, checkout the [Wormhole](https://github.com/wormhole-foundation/wormhole) repo, then install the CLI tool by running:
33+
First, check out the [Wormhole](https://github.com/wormhole-foundation/wormhole) repo, then install the CLI tool by running:
2634

2735
```sh
2836
wormhole/clients/js $ make install
2937
```
3038

3139
`worm` is the swiss army knife for interacting with wormhole contracts on all
32-
supported chains, and generating signed messages (VAAs) for testing.
40+
supported chains, verifying payloads, and generating VAAs.
41+
Head to [Cli docs](https://docs.wormhole.com/wormhole/reference/cli-docs) to learn more.
3342

3443
## Build and Test
3544

3645
Each directory represents Wormhole integrations for specific blockchain networks. Please navigate
3746
to a network subdirectory to see more details on building and testing.
47+
If you have questions or doubts join the [wormhole discord](https://discord.gg/8dRSUqAW).

docs/01_hello_world.md

+16-4
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Create a `HelloWorld` style example for using Wormhole's generic-messaging layer
66

77
## Background
88

9-
Currently, no production grade examples exist that detail how to safely integrate with Wormhole's generic-messaging layer on all available networks. Network specific test cases and smart contract design are critical to safely operating an xDapp.
9+
Currently, no production grade examples exist that detail how to safely integrate with Wormhole's generic-messaging layer on all available networks. Network-specific test cases and smart contract design are critical to safely operating an xDapp.
1010

1111
## Goals
1212

@@ -19,22 +19,30 @@ Provide a complete example for integrating with Wormhole's generic-messaging lay
1919

2020
## Non-Goals
2121

22-
This design focuses only on providing an example to interact with Wormhole's generic-message layer. It does not provide:
22+
This design focuses only on providing an example of interaction with Wormhole's generic-message layer. It does not provide:
2323

2424
- An example off-chain relayer
2525
- Testnet or mainnet deployment funds
2626
- An example User Interface
2727

2828
## Detailed Design
2929

30-
The HelloWorld example xDapp utilizes the Wormhole generic-messaging layer to send and receive arbitrary HelloWorld messages between smart contracts.
30+
The HelloWorld example xDapp utilizes the Wormhole generic-messaging layer to send and receive arbitrary messages/payload between smart contracts which for the sake of this example is HelloWorld.
3131

3232
Before the HelloWorld contracts can send and receive messages, the owner (see [Registering Foreign Emitters](#registering-foreign-emitters)) of the contract must invoke the `registerEmitter` method to register trusted HelloWorld contracts on other blockchains. The HelloWorld contracts will confirm that all messages that it receives are sent by trusted HelloWorld contracts on other blockchains.
3333

34-
To send a HelloWorld message, one will invoke the `sendMessage` method and pass an arbitrary message as an argument. The HelloWorld contract will then invoke the Wormhole core contract to publish the message. The Wormhole guardians will then attest the message after waiting the specified number of block confirmations (referred to as `wormholeFinality` in the contracts).
34+
To send a HelloWorld message, one will invoke the `sendMessage` method and pass an arbitrary message as an argument. The HelloWorld contract will then invoke the Wormhole core contract to publish the message. The Wormhole guardians will then attest the message after waiting for the specified number of block confirmations (referred to as `wormholeFinality` in the contracts).
3535

3636
Once the message is attested by the Wormhole guardians, one will invoke the `receiveMessage` method and pass the attested Wormhole message as an argument. The receiving HelloWorld contract will parse and verify the attested Wormhole message, and save the arbitrary HelloWorld message in its state.
3737

38+
To summarise all the Cross program invocations that interact with Wormhole core contract made->
39+
1. **registerEmitter** to flag the user's HelloWorld contract.
40+
2. **sendMessage** invoke the message parsing of wormhole which is picked by Guardians.
41+
3. **receiveMessage** to receive VAAs from the wormhole contract and verify the payload.
42+
<img width="646" alt="Screenshot 2023-08-19 at 7 41 58 PM" src="https://github.com/wormhole-foundation/wormhole-scaffolding/assets/88841339/03121963-1276-4ee9-baa2-33e2e92a4dbf">
43+
44+
45+
3846
### EVM Interface
3947

4048
```solidity
@@ -45,19 +53,23 @@ Once the message is attested by the Wormhole guardians, one will invoke the `rec
4553
function receiveMessage(bytes memory encodedMessage) public
4654
function registerEmitter(uint16 emitterChainId, bytes32 emitterAddress) public
4755
```
56+
[EVM core HelloWorld contracts](https://github.com/wormhole-foundation/wormhole-scaffolding/tree/main/evm/src/01_hello_world)
4857

4958
### Solana Interface
5059

5160
```rust
5261
pub fn initialize(ctx: Context<Initialize>)
62+
// creates a public function (open for cpi)
5363
pub fn register_emitter(
5464
ctx: Context<RegisterEmitter>,
5565
chain: u16,
5666
address: [u8; 32],
5767
)
68+
// register_emitter can only be invoked by the account owner
5869
pub fn send_message(ctx: Context<SendMessage>, message: Vec<u8>)
5970
pub fn receive_message(ctx: Context<ReceiveMessage>, vaa_hash: [u8; 32])
6071
```
72+
[Solana HelloWorld contracts](https://github.com/wormhole-foundation/wormhole-scaffolding/tree/main/solana/programs/01_hello_world/src)
6173

6274
### Registering Foreign Emitters
6375

docs/03_nft_burn_bridging.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Purpose
22

3-
The NftBurnBridging example implements two smart contracts which allow native-to-native bridging of Metaplex NFTs from Solana to an EVM chain using a burn-and-remint mechanism. It showcases an alternative to Wormhole's NFT bridge which locks the original NFT on the source chain and mints a wrapped version on the target chain.
3+
The NftBurnBridging example demonstrates the implementation of two smart contracts facilitating native-to-native bridging of Metaplex NFTs from Solana to an EVM chain using a burn-and-remint mechanism. This approach provides an alternative to Wormhole's NFT bridge, where the original NFT is locked on the source chain, and a wrapped version is minted on the target chain.
44

55
# Overview
66

docs/README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# Documents
22

3-
## Whitepapers
3+
## Getting Started walkthrough
44

55
1. [Hello World](01_hello_world.md)
6-
- A simple network of contracts that use Wormhole generic messaging to send an arbitrary message, which any of the registered contracts can consume.
6+
- A simple set of programs employing Wormhole's universal messaging to transmit an arbitrary message, that can be verified by any contract after integrating with Wormhole core Instructions.
77
2. [Hello Token](02_hello_token.md)
8-
- A simple network of contracts that use Wormhole's token bridge contracts to perform cross-chain token transfer with an arbitrary payload (contract-controlled transfers) which any of the registered contracts can consume.
8+
- A simple network of contracts that use Wormhole's token bridge contracts to perform cross-chain token transfer with an arbitrary payload [(contract-controlled transfers)](https://book.wormhole.com/technical/evm/tokenLayer.html?highlight=contract-controlled#contract-controlled-transfer) which any of the registered contracts can consume after using 'registerEmitter' function.
99
3. [NFT Burn Bridging](03_nft_burn_bridging.md)
10-
- An example for bridging NFTs of a Metaplex NFT collection from Solana to an EVM chain that burns the NFT on Solana, transmits the relevant information via Wormhole, and then remints the equivalent ERC721 NFT on the recipient EVM chain.
10+
- An example for bridging NFTs of a Metaplex NFT collection from Solana to an EVM chain that burns the NFT on Solana, transmits the relevant information via Wormhole, and then remints the equivalent ERC721 NFT on the recipient EVM chain utilizing the simple burn-mint mechanism.

evm/README.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,13 @@ Install [Foundry tools](https://book.getfoundry.sh/getting-started/installation)
1616

1717
## Build
1818

19-
Simply run `make` to install the necessary dependencies and to build the smart contracts.
19+
Simply run `make` to install the necessary dependencies and build with forge, which runs the test simultaneously.
2020

2121
## Test Suite
2222

2323
Run the Solidity-based unit tests with `make unit-test` and the local-validator integration tests via `make integration-test`, or simply `make test` to run both of of them.
24+
25+
## Deployment
26+
27+
The repo can either be run on a local testnet with [Anvil](https://book.getfoundry.sh/anvil/) or deployed on [Ethereum mainnet + testnet with Forge](https://book.getfoundry.sh/forge/deploying).
28+
To avoid the overhead of setting up rpc and wallets, use [Remix IDE](https://remix.ethereum.org/).

solana/README.md

+9-4
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ First, you will need `cargo` and `anchor` CLI tools. If you need these tools,
2121
please visit the [Anchor book] for more details.
2222

2323
Once you have the above CLI tools, you can build the programs by simply running
24-
`make` which will also install this subdirectory's dependencies, such as
24+
`make` that runs the [Makefile](https://github.com/wormhole-foundation/wormhole-scaffolding/blob/main/solana/Makefile) and install subdirectory's dependencies, such as
2525
`node_modules` and the Wormhole programs from the `solana` directory of the
2626
[Wormhole repo].
2727

@@ -37,8 +37,10 @@ NETWORK=testnet make build
3737
## Tests
3838

3939
> **Note**
40-
> Some users reported issues with `make --version` < 4.x.
41-
> If you get a make error like `*** missing separator`, try updating to a later `make` version
40+
41+
> Some users reported issues with `make --version` < 4.x.
42+
> If you get a make error like `*** missing separator`, try updating to a later `make` version with 'brew reinstall make'
43+
4244

4345
To run both unit and integration tests, run `make test`. If you want to isolate
4446
your testing, use either of these commands:
@@ -51,8 +53,11 @@ your testing, use either of these commands:
5153

5254
If you are pushing code to a branch and there is a PR associated with it, we
5355
recommend running `make clean` to make sure the environment does not have any
54-
old artifacts. Then running the tests above afterwards to ensure that all of
56+
old artifacts. Then run the tests above afterwards to ensure that all of
5557
the tests run as you expect.
5658

5759
[anchor book]: https://book.anchor-lang.com/getting_started/installation.html
5860
[wormhole repo]: https://github.com/wormhole-foundation/wormhole/tree/main/solana
61+
62+
[Solana docs]: https://docs.solana.com/
63+

0 commit comments

Comments
 (0)