You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+13-3
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,12 @@
1
1
# Wormhole Scaffolding
2
2
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.
@@ -12,6 +18,8 @@ If your xChain app will require EVM smart contracts, we recommend using [Foundry
12
18
13
19
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.
14
20
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
+
15
23
### SUI
16
24
17
25
Install the `Sui` CLI. This tool is used to compile the contracts and run the tests.
Copy file name to clipboardexpand all lines: docs/01_hello_world.md
+16-4
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ Create a `HelloWorld` style example for using Wormhole's generic-messaging layer
6
6
7
7
## Background
8
8
9
-
Currently, no production grade examples exist that detail how to safely integrate with Wormhole's generic-messaging layer on all available networks. Networkspecific 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.
10
10
11
11
## Goals
12
12
@@ -19,22 +19,30 @@ Provide a complete example for integrating with Wormhole's generic-messaging lay
19
19
20
20
## Non-Goals
21
21
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:
23
23
24
24
- An example off-chain relayer
25
25
- Testnet or mainnet deployment funds
26
26
- An example User Interface
27
27
28
28
## Detailed Design
29
29
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.
31
31
32
32
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.
33
33
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).
35
35
36
36
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.
37
37
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
+
<imgwidth="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
+
38
46
### EVM Interface
39
47
40
48
```solidity
@@ -45,19 +53,23 @@ Once the message is attested by the Wormhole guardians, one will invoke the `rec
45
53
function receiveMessage(bytes memory encodedMessage) public
46
54
function registerEmitter(uint16 emitterChainId, bytes32 emitterAddress) public
Copy file name to clipboardexpand all lines: docs/03_nft_burn_bridging.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# Purpose
2
2
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.
- 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.
7
7
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.
9
9
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.
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.
20
20
21
21
## Test Suite
22
22
23
23
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/).
Copy file name to clipboardexpand all lines: solana/README.md
+9-4
Original file line number
Diff line number
Diff line change
@@ -21,7 +21,7 @@ First, you will need `cargo` and `anchor` CLI tools. If you need these tools,
21
21
please visit the [Anchor book] for more details.
22
22
23
23
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
25
25
`node_modules` and the Wormhole programs from the `solana` directory of the
26
26
[Wormhole repo].
27
27
@@ -37,8 +37,10 @@ NETWORK=testnet make build
37
37
## Tests
38
38
39
39
> **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
+
42
44
43
45
To run both unit and integration tests, run `make test`. If you want to isolate
44
46
your testing, use either of these commands:
@@ -51,8 +53,11 @@ your testing, use either of these commands:
51
53
52
54
If you are pushing code to a branch and there is a PR associated with it, we
53
55
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
0 commit comments