TAGS

polygon-box

CREATED

UPDATED

STARS

INSTALL

...

REPOSITORY
GitHub Download
Please wait: Fetching readme...

b'# Polygon Box\n\n- [Requirements](#requirements)\n- [Installation](#installation)\n- [Setup](#setup)\n * [Using the .env File](#using-the-env-file)\n * [New Configuration File](#new-configuration-file)\n * [New Directory Structure for Artifacts](#new-directory-structure-for-artifacts)\n- [Polygon PoS Chain](#polygon-pos-chain)\n * [Compiling](#compiling)\n * [Migrating](#migrating)\n * [Paying For Migrations](#paying-for-migrations)\n * [Basic Commands](#basic-commands)\n * [Testing](#testing)\n * [Communication Between Ethereum and Polygon PoS Chains](#communication-between-ethereum-and-polygon-pos-chains)\n- [Support](#support)\n\nTable of contents generated with markdown-toc\n\n\nThis Truffle Polygon box provides you with the boilerplate structure necessary to start coding for Polygon\'s Ethereum L2 solution, the Polygon PoS chain (previously called the Matic PoS chain). For detailed information on how the Polygon PoS chain works, please see their documentation [here](https://docs.matic.network/docs/develop/getting-started).\n\nAs a starting point, this box contains only the SimpleStorage Solidity contract. Including minimal code was a conscious decision as this box is meant to provide the initial building blocks needed to get to work on Polygon PoS without pushing developers to write any particular sort of application. With this box, you will be able to compile, migrate, and test Solidity code against several instances of Polygon PoS networks.\n\nPolygon\'s L2 solution is fully compatible with the EVM. This means you will not need a new compiler to deploy Solidity contracts, and should be able to add your own Solidity contracts to this project. The main difference developers will encounter is in accessing and interacting with the Polygon PoS network. Additionally, Polygon offers multiple ways for dapp developers to implement communication between Ethereum ("Layer 1") and Polygon PoS. Further information about how to enable Ethereum-Polygon communication can be found in the Polygon documentation [here](https://docs.matic.network/docs/develop/ethereum-matic/getting-started).\n\n_A note about naming: The Polygon ecosystem was previously called Matic Network. The chain to which we\'ll be deploying in this Truffle Box is now called the Polygon PoS chain. We have named this box the Polygon Box because we expect to include the ability to deploy to future Polygon chains in addition to what is presented here as an initial proof-of-concept, and developers using this Polygon Box may find themselves incorporating additional aspects of the Polygon ecosystem in their work._\n\n## Requirements\n\nThe Polygon box has the following requirements:\n\n- [Node.js](https://nodejs.org/) 10.x or later\n- [NPM](https://docs.npmjs.com/cli/) version 5.2 or later\n- Windows, Linux or MacOS\n\nHelpful, but optional:\n- An [Infura](https://infura.io/) account and Project ID\n- A [MetaMask](https://metamask.io/) account\n\n## Installation\n\n```bash\n$ truffle unbox polygon\n```\n\n## Setup\n\n### Using the env File\n\nYou will need at least one mnemonic to use with the network. The `.dotenv` npm package has been installed for you, and you will need to create a `.env` file for storing your mnemonic and any other needed private information.\n\nThe `.env` file is ignored by git in this project, to help protect your private data. In general, it is good security practice to avoid committing information about your private keys to github. The `truffle-config.polygon.js` file expects a `MNEMONIC` value to exist in `.env` for running migrations on the networks listed in `truffle-config.polygon.js`.\n\nIf you are unfamiliar with using `.env` for managing your mnemonics and other keys, the basic steps for doing so are below:\n\n1) Use `touch .env` in the command line to create a `.env` file at the root of your project.\n2) Open the `.env` file in your preferred IDE\n3) Add the following, filling in your own mnemonic and Infura project key:\n\n```\nMNEMONIC=""\nINFURA_PROJECT_ID=""\n```\n\n4) As you develop your project, you can put any other sensitive information in this file. You can access it from other files with `require(\'dotenv\').config()` and refer to the variable you need with `process.env[\'\']`.\n\n### New Configuration File\n\nA new configuration file exists in this project: `truffle-config.polygon.js`. This file contains a reference to the new file location of the `contracts_build_directory` for Polygon PoS contracts and lists several networks that are running the Polygon PoS Layer 2 network instance (see [below](#migrating)).\n\nPlease note, the classic `truffle-config.js` configuration file is included here as well, because you will eventually want to deploy contracts to Ethereum as well. All normal truffle commands (`truffle compile`, `truffle migrate`, etc.) will use this config file and save built files to `build/ethereum-contracts`. You can save Solidity contracts that you wish to deploy to Ethereum in the `contracts/ethereum` folder.\n\n### New Directory Structure for Artifacts\n\nWhen you compile or migrate, the resulting `json` files will be at `build/polygon-contracts/`. This is to distinguish them from any Ethereum contracts you build, which will live in `build/ethereum-contracts `. As we have included the appropriate `contracts_build_directory` in each configuration file, Truffle will know which set of built files to reference!\n\n## Polygon PoS Chain\n\n### Compiling\n\nYou do not need to add any new compilers or settings to compile your contracts for the Polygon PoS chain, as it is fully EVM compatible. The `truffle-config.polygon.js` configuration file indicates the contract and build paths for Polygon-destined contracts.\n\nIf you are compiling contracts specifically for the Polygon PoS network, use the following command, which indicates the appropriate configuration file:\n\n```\nnpm run compile:polygon\n```\n\nIf you would like to recompile previously compiled contracts, you can manually run this command with\n`truffle compile --config=truffle-config.polygon.js` and add the `--all` flag.\n\n### Migrating\n\nTo migrate on the Polygon PoS network, run `npm run migrate:polygon --network=(polygon_infura_testnet | polygon_infura_mainnet | polygon_testnet | polygon_mainnet)` (remember to choose a network from these options!).\n\nAs you can see, you have several Polygon PoS L2 networks to choose from:\n\n1) *Infura networks*. Infura is running a testnet node as well as a mainnet node for the Polygon PoS chain. Deployment to these networks requires that you sign up for an Infura account and initiate a project. See the Infura website for [details](https://infura.io/). In the example network configuration, we expect you to have a public Infura project key, which you should indicate in your `.env` file. The following Infura networks are indicated in the `truffle-config.polygon.js` file:\n\n - `polygon_infura_testnet`: This is the Infura Polygon PoS testnet.\n - `polygon_infura_mainnet`: This is the Infura Polygon PoS mainnet. Caution! If you deploy to this network using a connected wallet, the fees are charged in mainnet ETH.\n\n2) *Polygon networks* Polygon has provided RPC endpoints for testing and mainnet deployments.\n\n - `polygon_testnet`: This is the Polygon PoS testnet, called "Mumbai". It is goerli-based.\n - `polygon_mainnet`: This is the Polygon PoS mainnet. Caution! Deployment requires mainnet ETH. \n\n\nIf you would like to migrate previously migrated contracts on the same network, you can run `truffle migrate --config truffle-config.polygon.js --network= (polygon_infura_testnet | polygon_infura_mainnet | polygon_testnet | polygon_mainnet)` and add the `--reset` flag.\n\n\n### Paying for Migrations\n\nTo pay for your deployments, you will need to have an account with ETH available to spend. You will need your mnemomic phrase (saved in the `.env` file or through some other secure method). The first account generated by the seed needs to have the ETH you need to deploy. For reference, the Polygon PoS testnets are based in goerli, so you should be able to use goerli ETH.\n\nIf you do not have a wallet with funds to deploy, you will need to connect a wallet to at least one of the networks above. For testing, this means you will want to connect a wallet to the `polygon_infura_testnet` or `polygon_testnet` networks. We recommend using [MetaMask](https://metamask.io/).\n\nDocumentation for how to set up MetaMask custom networks with the Polygon PoS testnet and mainnet can be found [here](https://docs.matic.network/docs/develop/metamask/config-matic).\n\nTo set up a custom network for Infura\'s testnet and mainnet networks, follow the same steps but point the network to Infura\'s RPC endpoints (`"https://polygon-mainnet.infura.io/v3/" + infuraProjectId` and `"https://polygon-mumbai.infura.io/v3/" + infuraProjectId`). The `chainId` values are the same as those on the Polygon networks.\n\nTo get testnet ETH to use, visit a faucet like https://goerli-faucet.slock.it/.\n\n## Basic Commands\n\nThe code here will allow you to compile, migrate, and test your code against a Polygon PoS network instance. The following commands can be run (more details on each can be found in the next section):\n\n To compile:\n ```\n npm run compile:polygon\n ```\n\n To migrate:\n ```\n npm run migrate:polygon --network=(polygon_infura_testnet | polygon_infura_mainnet | polygon_testnet | polygon_mainnet)\n ```\n\n To test:\n ```\n npm run test:polygon --network=(polygon_infura_testnet | polygon_infura_mainnet | polygon_testnet | polygon_mainnet)\n ```\n\n\n### Testing\n\nIn order to run the test currently in the boilerplate, use the following command: `npm run test:polygon --network=(polygon_infura_testnet | polygon_infura_mainnet | polygon_testnet | polygon_mainnet)` (remember to choose a network!). The current test file just has some boilerplate tests to get you started. You will likely want to add network-specific tests to ensure your contracts are behaving as expected.\n\n### Communication Between Ethereum and Polygon PoS Chains\n\nThe information above should allow you to deploy to the Polygon PoS Layer 2 chain. This is only the first step! Once you are ready to deploy your own contracts to function on L1 using L2, you will need to be aware of the [ways in which Layer 1 and Layer 2 interact in the Polygon ecosystem](https://docs.matic.network/docs/develop/ethereum-matic/getting-started). Keep an eye out for additional Truffle tooling and examples that elucidate this second step to full Polygon PoS L2 integration!\n\n## Support\n\nSupport for this box is available via the Truffle community [here](https://www.trufflesuite.com/community).\n'