NB: New deployments to Rinkeby is now a testbed for future mainnet upgrades. I.e. we shouldn't do complete redeploys just new migrations.
-
Add new migration test scripts in
rinkeby_migrations
folder.
NB: add only new steps, dont change earlier ones. Check Contract dependency graph and contract migrations google sheet -
yarn clean && truffle compile
-
Dry run
- Test the migration script
./runrinkeby.sh truffle migrate --dry-run -f <migration step number> --network rinkeby --migrations_directory=./rinkeby_migrations
- Test results (not working)
NB: Ideally this way we could test the result of migration via truffle console and UI. It doesn't work currently: Truffle migrate hangs, we couldn't unlock rinkeby account and historic queries seem to hang.
yarn ganache-cli --fork http://localhost:8544 --port 8546 --db ./chain yarn truffle migrate -f <migration step number> --network rinkebyFork --migrations_directory=./rinkeby_migrations
-
Migration
# yarn clean && yarn compile yarn truffle migrate -f <migration step number> --network rinkeby --migrations_directory=./rinkeby_migrations
Notes:
-
You need to set
last_completed_migration
in truffle's Migrations contract in your migration script:await Migrations.at("<Migrations contract address,").setLastCompletedMigration("")
NB: In theory
truffle migrate
would query last_completed_migration from deployed contract but you likely cleared truffe json files from where truffle reads deployment address of Migrations contract. Therefore it a) can't update the Migration contract and that's why you need to specify the migration step with -f -
You can specify any arbitrary
<migration step number>
if you need to rerun a failed migration. -
yarn clean
is to ensure abiniser only extracts info about real deployments from truffle artifacts (e.g. output from previous dry runs in contracts/build folder would pollute abiniser/deployments files) -
truffle migrate
tested with Truffle v4.1.7 and Geth 1.8.6-stable.
-
-
Update resources artificats:
yarn abiniser
Cross check changes manually in
./abiniser
folder before commit -
Tag it in gitgit
git tag -a vx.x.x -m "Deployed to rinkeby, last migration step xxx" git push --tags
Tag format in vx.x.x semver format TBD: shall we tag with last migration step no.? Eg. Rinkeby_12, Main_33
-
push + merge to staging & master
TODO: Revise with new abiniser output + tackling new exchange, lock, loanManager versions...
- update augmint-contracts subprop
cp -r augmint-contracts/abiniser/* src/abiniser
- Update contract abi references (if changed) in UI
- Test new contracts locally/on staging with augmint-web
TODO: revise this
- release new contract and abiniser info to augmint-ratesfeeder
- feeding old rates contract and set rates to 0 on old contract (this will stop new loans on old contract)
truffle migrate --network mainnet --migrations_directory=./mainnet_migrations/ -f <migration step> --dry-run
Use .env
to set:
DEPLOYER_ACCOUNT_MNENOMIC
INFURA_API_KEY
NB:
Migrations.sol
is deployed but manually updated by deployer account (deployer.deploy()
in migrations scripts is withindeployer.then()
, so truffle is not updating migrations automatically).
Don't rely onlast_completed_migration
because it might be out of sync.- Couldn't make Ledger or Trezor wallet to work with
truffle migrate
yet. But deployer account doesn't require HW wallet level security because deployer account doesn't have any special permissions on the system once it removed itself from the signers after initial deploy.