Last updated
Last updated
Below mentioned script used to build, deploy and Verify the PERI Finance Source code to a Different testnet and mainnet Network.
This will compile bytecode and ABIs for all .sol files found in node_modules and the contratcs folder. It will output them in a compiled folder in the given build path mentioned below, along with the flattened source files under the folder flattened
This will deploy (or reuse) all of the contracts listed in the contract-flags input file, as well as perform initial connections between the contracts.
-a, --add-new-pynths
Whether or not any new pynths in the pynths.json file should be deployed if there is no entry in the config file.
-b, --build-path [value]
Path for built files to go. (default of ./build
- relative to the root of this repo). The folders compiled
and flattened
will be made under this path and the respective files will go in there.
-c, --contract-deployment-gas-limit <value>
Contract deployment gas limit (default: 7000000 (7m))
-d, --deployment-path <value>
Path to a folder that has your input configuration file (config.json
), the synths list (synths.json
) and where your deployment.json
file will be written (and read from if it currently exists).
-g, --gas-price <value>
Gas price in GWEI (default: "1")
-m, --method-call-gas-limit <value>
Method call gas limit (default: 150000)
-n, --network <value>
The network to run off. One of mainnet, kovan. (default: "kovan")
-o, --oracle <value>
The address of the oracle to use.
-f, --fee-auth <value>
The address of the fee Authority to use for feePool. --oracle-gas-limit
To verify the contracts on Etherscan (by uploading the flattened source files and ABIs).
For all given contracts, will invoke nominateNewOwner for the given new owner;
It assist owner take ownership of nominated contracts and run any deployment tasks deferred to them.
This script attempt to remove all given synths from the PERI finance contract (as long as they have total supply of 0 and update config.json and pynths.json for the deployment folder.
This will attempt to replace all given synths with a new given subclass It does this by disconnecting the existing TokenState for the Pynth and attaching it to the new one.
Will attempt purge the given synth with all token holders it can find. Uses the list of holders from mainnet, and as such won't do anything for other networks.
Will initiate the PeriFinance release process, publishing the PeriFinance npm
module and updating all dependent projects in GitHub and npm
.
Will deploy an instance of StakingRewards.sol with the configured stakingToken and rewardsToken in rewards.json. Then run node publish verify
For PeriFinance
repo, we are using the following branch mapping:
alpha
is KOVAN
beta
is RINKEBY
rc
is ROPSTEN
master
is MAINNET
PRs should start being merged into develop
then deployed onto KOVAN
, then merged into staging
once deployed for releasing onto rinkeby
and ropsten
for staging into a mainnet
release. These can be done multiple times for each branch, as long as we keep these up to date.
Using semantic versioning (semver): v[MAJOR].[MINOR].[PATCH]-[ADDITIONAL]
MAJOR
stipulates an overhaul of the Solidity contracts
MINOR
are any changes to the underlying Solidity contracts
PATCH
are for any JavaScript or deployed contract JSON changes
ADDITIONAL
are for testnet deployments
-alpha
is for Kovan
-beta
follows alpha, and contains Rinkeby
.
-rc[N]
follows beta, and contrains Ropsten
. N
starts at 0
and can be incremented until we are ready to release without the suffix.
In the environment folder you are deploying to, add the synth key to the pynths.json
file. If you want the synth to be purgeable, add subclass: "PurgeablePynth"
to the object.
[Optional] Run build
if you've changed any source files, if not you can skip this step.
Run deploy
as usual but add the --add-new-pynths
flag
Run verify
as usual.