mirror of
https://github.com/zkitter/contracts.git
synced 2026-01-08 22:48:01 -05:00
* feat: add `arbitrum_goerli` network * Deploy `AutismRegsitrar` on `arbitrum_goerli` network * chore: `.gitignore`, new lines
8 lines
191 B
JavaScript
8 lines
191 B
JavaScript
const Migrations = artifacts.require("AutismRegistrar");
|
|
|
|
module.exports = function (deployer) {
|
|
deployer.deploy(Migrations, {
|
|
from: `${process.env.DEPLOYER_ADDRESS}`,
|
|
});
|
|
};
|