|
| 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 |
0 commit comments