Development and contribution guide
Cloning the Repository and Opening PRs
Clone the repository with git clone git@github.com:0xProject/0x-mesh.git
. Mesh uses Go Modules for dependency management, so depending on your settings you might need to clone the repository outside of your GOPATH
.
0x Mesh uses two main branches:
The
development
branch contains the latest (possibly unreleased) changesand is not guaranteed to be stable.
The
master
branch contains the latest stable release.
If you intend to fork 0x Mesh and open a PR, you should work off of the development
branch. Make sure you check out the development
branch and pull the latest changes.
All PRs should use development
as the base branch. When opening a new PR, use the dropdown menu in the GitHub UI to select development
.
Prerequisites
GNU Make If you are using a Unix-like OS, you probably already have this.
Node.js version >=11 (or use the nvm version manager).
Python. (Many OSes already have this).
Google Chrome. If you already have Google Chrome you typically don't need to do anything. On Ubuntu you can run
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb && dpkg -i google-chrome-stable_current_amd64.deb; apt-get -fy install
.
Installing Dependencies
Building TypeScript packages
Mesh contains some TypeScript packages, all of which are contained in a small monorepo in the packages/ directory. Some packages are published, and some are only used internally for development and testing.
To build all the TypeScript packages:
You can also run yarn build
inside of individual packages in order to just build that package and its dependencies. However, changing any Go code will require running yarn build
at the root of the project again.
Running Tests
Some of the tests depend on having a test Ethereum node running. Before running the tests, make sure you have Docker installed locally and start 0xorg/ganache-cli with the appropriate snapshot version passed in the VERSION
environment variable. The snapshot version that is used in the mesh project's CI can be found here
There are various Make targets for running tests:
Potential Issues
The default maximum number of open files is too low in some operating systems for the tests to be run successfully. If an error that reads like "Too many open files," it may be necessary to increase this limit. On Unix-like operating systems, the ulimit
command can be used as follows to accomplish this change:
It may be convenient to add this line to the .bashrc
(or .bash_profile
for MacOs users) file so that the change will go into effect whenever a new shell is created.
Running the Linters
0x Mesh is configured to use linters for both Go and TypeScript code. To run all available linters, run:
Running prettier
0x Mesh uses a tool called prettier, which is a tool that enforces a consistent style across the Typescript codebase. The continuous integration pipeline will fail if Typescript code is not "prettified," so prettier
must be run to ensure that the code is properly formatted.
The prettier tool can be run using the following command from the top-level of the 0x-Mesh repository (outside of a directory inside packages/):
Managing Dependencies
Mesh uses Go Modules for managing Go dependencies and Yarn for managing TypeScript/JavaScript dependencies.
Editor Configuration
Visual Studio Code
For VS Code, the following editor configuration is recommended:
When working on code with the build tag js,wasm
, you might need to add the following to your editor config:
Prettier
Prettier configurations for most popular text editors can be found here.
TSLint
TSLint configurations for most popular text editors can be found here.
Updating the Go contract wrappers
Installing abi-gen:
See https://geth.ethereum.org/docs/dapp/native-bindings
Obtain contract ABIs:
Extract any ABI from @0x/contract-artifacts/artifacts/*.json
, taking only the contents of the abi
key. For example for the V4 DevUtils contract:
jq < ../protocol/packages/contract-artifacts/artifacts/IZeroEx.json .compilerOutput.abi > IZeroEx.abi.json
The V4 ABI contains some internal functions whose names start with _
. The next abigen
command will strip the underscores and fail due to name collisions with non-prefixed versions. The easiest solution is to manually remove these functions from the JSON. (TODO: Come up with a jq
query to automate this).
Generate wrapper:
Then edit the file and correct the package
name and remove any commonalities between different wrappers.
Last updated