Skip to content

Commit 9b06de0

Browse files
a5-picklegator-boi
andauthored
Hello world/integration (wormhole-foundation#2)
* evm: add hello world starter * tmp: add build_wormhole_sdk.sh * evm: add WormholeModifier * evm: reorganize; add ts-test * evm: add wormhole-sdk * evm: rename * Add VAA signing simulation to forge test * evm: change method name * Return bytes instead of vm in fetchSignedMessageFromLogs * Fix guardian signature in forge test * solana: create hello-world * solana: add wormhole-sdk; fix context; add tests * Complete EVM HelloWorld contract code * Fix comments * solana: fix context; add tests * solana: fix Makefile * Add deserialization tests for EVM * Finish solidity based unit tests * solana: add register_foreign_emitter * Finish solidity based unit tests * Set up HelloWorld integration test for EVM * solana: add send_message and positive test * evm: change message length type * solana: fix message serialization * solana: fix pda injection in tests * solana: fix context * solana: add wormhole-solana-anchor package * solana: add receive_message skeleton; add util methods * solana: fix receive_message * solana: fix seeds; add hello-token * Update sendMessage to take arbitrary payload * Add LICENSE * solana: refactor hello-world; refactor wormhole-anchor-sdk * Finish HelloWorld EVM local validator tests * solana: add comments * Add Natspec documentation to main contract * solana: clean up; add comments * Finish adding EVM contract documentation * solana: add unit tests * docs: add hello world whitepaper template * solana: add PostedVaa generic * add CONTRIBUTING.md * Update 01_hello_world.md * Update register_emitter context in whitepaper * modify CONTRIBUTING.md * solana: fix context name * solana: fix Makefile and README * Add README.md to evm * solana: fix imports * remove tmp * solana: fix sdk instruction * solana: fix send_message * fix CONTRIBUTING * fix README * fix README * evm: fix package.json * evm: fix TODO * fix TODO * solana: fix register-emitter * Add chainId check * Specify emitterChainId in WormholeSimulator * Fix typo in 01_hello_world.ts * solana: fix Anchor.toml * solana: fix README * solana: fix PostedVAA deserialization * solana: remove utils.rs * solana: fix received pda * solana: fix TODO * solana: fix TODO * Fix evm emitter registration process Co-authored-by: A5 Pickle <a5-pickle@users.noreply.github.com> Co-authored-by: gator-boi <gator-boi@users.noreply.github.com>
1 parent d5efe0f commit 9b06de0

File tree

106 files changed

+15654
-2
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

106 files changed

+15654
-2
lines changed

CONTRIBUTING.md

+254
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,254 @@
1+
# Contributing to Wormhole Scaffolding
2+
3+
:pray: Thank you for spending some time to contribute! :pray:
4+
5+
We hope to outline some clear guidelines for contributing. This repository
6+
hopes to achieve its goal of showcasing many examples of [Wormhole]
7+
integrations. **If we missed any important aspects of contributing in this
8+
document, please submit a [pull request] to modify this document.**
9+
10+
Almost everything starts with a Github issue. And if your issue has a solution,
11+
it will end up being a pull request. The different types of issues are listed
12+
in the table of contents.
13+
14+
## Table of Contents
15+
16+
- [Structure]
17+
- [docs]
18+
- [evm]
19+
- [solana]
20+
- [Issues]
21+
- [Reporting Bugs] :bug:
22+
- [Missing or Incorrect Documentation] :page_with_curl:
23+
- [New Networks] :computer:
24+
- [New Examples] :alien:
25+
- [Help Wanted] :heart_eyes:
26+
- [Pull Requests]
27+
- [Questions]
28+
- [Final Words]
29+
30+
## Structure
31+
32+
Currently we aim to structure this repository like the [Wormhole] repository,
33+
where each blockchain network has its own subdirectory. Each subdirectory will
34+
try to resemble how a typical repository looks for that specific network.
35+
36+
### Docs
37+
38+
Whitepapers for each example exist here. If there are any whitepapers missing
39+
entirely or any info specific to a particular implementation is missing or wrong,
40+
please see [Missing or Incorrect Documentation] on how to submit an issue.
41+
42+
### EVM
43+
44+
We have put together the EVM (Ethereum Virtual Machine) directory assuming a
45+
smart contract structure similar to how `forge init` creates your environment.
46+
Here are the subdirectories:
47+
48+
- `forge-scripts` - Useful scripts written in Solidity.
49+
- `forge-test` - Scripts written in Solidity meant to be run using
50+
`forge test`.
51+
- `modules` - Work-in-progress modules that will eventually become dependencies
52+
that exist as an `npm` library or as a `forge` submodule.
53+
- `shell-scripts` - Useful shell scripts.
54+
- `src` - Smart contract source code, separated by each example (enumerated).
55+
- `ts-test` - Scripts written in Typescript ([TS-Mocha]) using [ethers.js] to
56+
interact with smart contracts deployed to `anvil` as a mainnet fork.
57+
58+
Please read the [evm README] for more details.
59+
60+
### Solana
61+
62+
We have put tgoether the Solana directory assuming a program structure similar
63+
to how `anchor init` creates your environment. Because of this, all of these
64+
programs are written assuming the [Anchor] framework. Here are the
65+
subdirectories:
66+
67+
- `dependencies` - Wormhole-related artifacts live here (built from the
68+
[Wormhole] repo).
69+
- `modules` - Work-in-progress modules that will eventually become dependencies
70+
that exist as a `cargo` library.
71+
- `programs` - Program source code, separated by each example (enumerated).
72+
- `shell-scripts` - Useful shell scripts.
73+
- `ts` - Web3 SDK and scripts written in Typescript ([TS-Mocha]) to interact
74+
with programs loaded in a Solana local validator run with `anchor test`.
75+
76+
Please read the [Solana README] for more details.
77+
78+
## Issues
79+
80+
These are the different categories of issues that exist in this repository.
81+
Some of these issues may be marked with "good first issue," which is an
82+
indication that the issue is good for a newcomer to Wormhole or blockchain
83+
development in general. And if for some reason an issue is not relevant to
84+
Wormhole integrations, an issue may be marked as "invalid."
85+
86+
You can find the list of issues
87+
[here](https://github.com/certusone/wormhole-scaffolding/issues).
88+
89+
### Reporting Bugs
90+
91+
A bug in our examples constitutes anything that has undesirable behavior. This
92+
includes (and is not limited to) malfunctioning methods (unexpected
93+
state-changes and output), vulnerabilities (re-entrancy, fake account
94+
injection, etc) and undefined behavior.
95+
96+
With vulnerabilities, we hope to illustrate as much as we can with protections
97+
against known vulnerabilities. We encourage contributors to add more test
98+
coverage!
99+
100+
If a potential bug is found, be sure to write specifically:
101+
102+
- What the bug is at a high-level
103+
- At least one example of how the bug can be exploited
104+
- A potential solution (either written in the issue or submitted
105+
[pull request])
106+
107+
Here are the list of [bug-related issues].
108+
109+
### Missing or Incorrect Documentation
110+
111+
Maybe missing or incorrect documentation is technically a bug. But we want to
112+
highlight the importance of documentation in a separate section.
113+
114+
We try our best to document everything. Because this repository warehouses
115+
examples of how to integrate with Wormhole, it is very important to describe
116+
the integration as clearly as possible. And each smart contract's
117+
implementation should reflect what is written in its respective whitepaper.
118+
119+
There may be some experimental features that we hope to capture in some
120+
examples. Because these example features may be changing frequently (e.g. if
121+
an example happens to reference a particular [Wormhole PR]), comments may not
122+
be accurate. These count as issues because if a feature changes, the example
123+
and its documentation needs to reflect these changes.
124+
125+
Here are some examples of some possible issues:
126+
127+
- Blockchain network environment set-up is wrong or outdated.
128+
- Comments do not reflect a field, method or object accurately.
129+
- Whitepaper mismatches implementation for a particular blockchain network.
130+
131+
Here is the list of [documentation issues].
132+
133+
### New Networks
134+
135+
Introducing a new network is a big task. In order to adequately cover a
136+
Wormhole integration with a new network, the examples start with the
137+
whitepapers found in the [docs]. All of the smart contracts written in
138+
this repository must reflect the business logic written in these whitepapers.
139+
140+
Test coverage (unit tests and integration tests) are a main part of these smart
141+
contract examples. Because we aim to demonstrate these Wormhole integrations
142+
sending messages to their other network counterparts, there should be
143+
exhaustive test coverage that illustrates all functionality before it can be
144+
considered deployable to mainnet. **We cannot accept a pull request for a new
145+
network if these tests are not met. We consider these examples incomplete.** If
146+
you need help writing specific tests, we can try to help out whenever we can.
147+
148+
We also recommend that the subdirectory representing a specific network to
149+
reflect how those applications exist in that specific ecosystem (e.g. our
150+
EVM contracts closely resemble the directory structure when `forge init` is
151+
called). This network's subdirectory should be inviting to other developers
152+
of that ecosystem.
153+
154+
Here is the list of [new network issues].
155+
156+
### New Examples
157+
158+
Coming up with a new example network of smart contracts to illustrate a new
159+
use case is really exciting! Some examples of how smart contracts across
160+
different networks talk to each other can be modeled using networking
161+
designs like [ZeroMQ Messaging Patterns] for example.
162+
163+
If you have a new idea for an example, you should start by writing a whitepaper
164+
with some psuedocode at least (targeting specific blockchain development
165+
languages is preferred, though).
166+
167+
Here is the list of [new example issues].
168+
169+
### Help Wanted
170+
171+
These issues can span any of the other categories of issues (new networks,
172+
documentation, etc). We will mark whichever issue with "help wanted" if we
173+
cannot prioritize working on these issues or if we do not have the
174+
background to fulfill these tasks.
175+
176+
Here is the list of [help wanted issues].
177+
178+
## Pull Requests
179+
180+
A pull request (PR) is a request to merge changes from one branch with another
181+
branch. Repositories each have their own procedures for submitting a PR, so
182+
we will outline a simple procedure that you should follow. Following this
183+
procedure will facilitate its merge to the `main` branch because the code
184+
owners will have an easier time understanding the code and documentation
185+
changes, as well as the thought process behind these changes.
186+
187+
**Only code owners can approve and merge a pull request.** Only one approval
188+
is required before the code is merged.
189+
190+
In the PR description, please describe the following:
191+
192+
1. The objective of the PR.
193+
- A high-level description of what the PR aims to do and why it should
194+
be merged into the `main` branch.
195+
- This objective may include an issue number, which you can reference by
196+
using a hash (#) followed by the issue number.
197+
2. How to review the PR.
198+
- Before a PR gets merged, code owners need to review and approve the
199+
changes before your branch gets merged into `main`. If the code owners have
200+
any problems reviewing the code, they will write comments referencing
201+
specific line numbers. You should then respond to by either writing a
202+
comment in response or checking in another commit reflecting the code
203+
owner's comment.
204+
205+
**If there are any continuous integration (CI) tests, the existing tests must
206+
pass.** These repository tests are very important for making sure that core
207+
logic existing in the `main` branch has not changed. If a CI test is changed
208+
or added, please be as descriptive as you can about what changed so we can pay
209+
close attention to what happened with the test.
210+
211+
You can find the list of pull requests
212+
[here](https://github.com/certusone/wormhole-scaffolding/pulls).
213+
214+
## Questions
215+
216+
Currently the only spot we can take questions is if there is a [github issue]
217+
outlining the problem. We will try to answer all questions. But keep in mind
218+
that more specific questions (with examples if appropriate) will probably be
219+
addressed sooner than others. Questions too vague may be marked as "won't fix."
220+
221+
## Final Words
222+
223+
Again, thank you for your contributions to the Wormhole Scaffolding repository.
224+
This repository becomes better when more of the community participates in its
225+
development.
226+
227+
[anchor]: https://www.anchor-lang.com/
228+
[bug-related issues]: https://github.com/certusone/wormhole-scaffolding/labels/bug
229+
[docs]: #docs
230+
[documentation issues]: https://github.com/certusone/wormhole-scaffolding/labels/documentation
231+
[ethers.js]: https://docs.ethers.io/v5/
232+
[evm]: #evm
233+
[evm readme]: evm/README.md
234+
[final words]: #final-words
235+
[github issue]: https://github.com/certusone/wormhole-scaffolding/issues
236+
[issues]: #issues
237+
[help wanted]: #help-wanted
238+
[help wanted issues]: https://github.com/certusone/wormhole-scaffolding/labels/help%20wanted
239+
[missing or incorrect documentation]: #missing-or-incorrect-documentation
240+
[new examples]: #new-examples
241+
[new example issues]: https://github.com/certusone/wormhole-scaffolding/labels/new%20example
242+
[new networks]: #new-networks
243+
[new network issues]: https://github.com/certusone/wormhole-scaffolding/labels/new%network
244+
[pull request]: #pull-requests
245+
[pull requests]: #pull-requests
246+
[questions]: #questions
247+
[reporting bugs]: #reporting-bugs
248+
[solana]: #solana
249+
[solana readme]: solana/README.md
250+
[structure]: #structure
251+
[ts-mocha]: https://github.com/piotrwitek/ts-mocha
252+
[wormhole]: https://github.com/wormhole-foundation/wormhole
253+
[wormhole pr]: https://github.com/wormhole-foundation/wormhole/pulls
254+
[zeromq messaging patterns]: https://zguide.zeromq.org/docs/chapter2/#Messaging-Patterns

LICENSE

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
Copyright 2022 Wormhole Project Contributors
2+
3+
Licensed under the Apache License, Version 2.0 (the "License");
4+
you may not use this file except in compliance with the License.
5+
You may obtain a copy of the License at
6+
7+
http://www.apache.org/licenses/LICENSE-2.0
8+
9+
Unless required by applicable law or agreed to in writing, software
10+
distributed under the License is distributed on an "AS IS" BASIS,
11+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
See the License for the specific language governing permissions and
13+
limitations under the License.

README.md

+7-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# Apps for `worm init`
1+
# Wormhole Scaffolding
22

3-
Starter apps to be used with worm cli.
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.
44

55
## Prerequisites
66

@@ -11,3 +11,8 @@ If your xChain app will require EVM smart contracts, we recommend using [Foundry
1111
### Solana
1212

1313
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+
15+
## Build and Test
16+
17+
Each directory represents Wormhole integrations for specific blockchain networks. Please navigate
18+
to a network subdirectory to see more details on building and testing.

docs/01_hello_world.md

+63
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
# Hello World
2+
3+
## Objective
4+
5+
Create a `HelloWorld` style example for using Wormhole's generic-messaging layer for developing xDapps (Cross-Chain Decentralized Applications).
6+
7+
## Background
8+
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+
11+
## Goals
12+
13+
Provide a complete example for integrating with Wormhole's generic-messaging layer by providing the following components:
14+
15+
- Fully documented smart contracts
16+
- Unit and integration test suite
17+
- Deployment scripts
18+
- Dependencies for interacting with the Wormhole smart contracts
19+
20+
## Non-Goals
21+
22+
This design focuses only on providing an example to interact with Wormhole's generic-message layer. It does not provide:
23+
24+
- An example off-chain relayer
25+
- Testnet or mainnet deployment funds
26+
27+
## Detailed Design
28+
29+
The HelloWorld example XDapp utilizes the Wormhole generic-messaging layer to send and receive arbitrary HelloWorld messages between smart contracts.
30+
31+
Before the HelloWorld contracts can send and receive messages, the owner (see `Registering Foreign Emitters` section of this document) of the contract must invoke the `registerEmitter` (or `register_emitter`) 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.
32+
33+
To send a HelloWorld message, one will invoke the `sendMessage` (or `send_message`) 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+
35+
Once the message is attested by the Wormhole guardians, one will invoke the `receiveMessage` (or `receive_message`) 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.
36+
37+
### EVM Interface
38+
39+
```solidity
40+
function sendMessage(string memory helloWorldMessage)
41+
public
42+
payable
43+
returns (uint64 messageSequence)
44+
function receiveMessage(bytes memory encodedMessage) public
45+
function registerEmitter(uint16 emitterChainId, bytes32 emitterAddress) public
46+
```
47+
48+
### Solana Interface
49+
50+
```rust
51+
pub fn initialize(ctx: Context<Initialize>)
52+
pub fn register_emitter(
53+
ctx: Context<RegisterEmitter>,
54+
chain: u16,
55+
address: [u8; 32],
56+
)
57+
pub fn send_message(ctx: Context<SendMessage>, message: Vec<u8>)
58+
pub fn receive_message(ctx: Context<ReceiveMessage>, vaa_hash: [u8; 32])
59+
```
60+
61+
### Registering Foreign Emitters
62+
63+
`registerEmitter` and `register_emitter` are owner-only methods, meaning that only the owner of the contract (EVM contract deployer, payer of Solana `initialize` instruction) can invoke these methods.

docs/README.md

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Documents
2+
3+
## Whitepapers
4+
5+
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.

evm/.gitignore

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
anvil.log
2+
cache
3+
lib
4+
node_modules
5+
out
6+
broadcast
7+
forge-scripts/deploy.out

0 commit comments

Comments
 (0)