-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added ability to save address for contract (#69)
* Added ability to save address for contract * Updated version * Updated packages * Updated ora version * Wrote tests. Cleaned up a project * Updated CHANGELOG.md
- Loading branch information
Showing
11 changed files
with
409 additions
and
547 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
import { expect } from "chai"; | ||
import { ethers } from "ethers"; | ||
|
||
import { useEnvironment } from "../../helpers"; | ||
|
||
import { | ||
ConstructorWithArguments, | ||
ConstructorWithArguments__factory, | ||
} from "../../fixture-projects/hardhat-project-typechain-ethers/typechain-types"; | ||
|
||
import { Deployer } from "../../../src/deployer/Deployer"; | ||
import { Migrator } from "../../../src/migrator/Migrator"; | ||
|
||
import { ethersProvider } from "../../../src/tools/network/EthersProvider"; | ||
import { TransactionStorage } from "../../../src/tools/storage/MigrateStorage"; | ||
|
||
describe("deployer", () => { | ||
let deployer: Deployer; | ||
|
||
describe("default interaction with contracts", () => { | ||
useEnvironment("typechain-ethers"); | ||
|
||
let contract: ConstructorWithArguments; | ||
|
||
beforeEach("setup", async function () { | ||
await Migrator.buildMigrateTaskDeps(this.hre); | ||
|
||
deployer = new Deployer(this.hre); | ||
|
||
const ContractFactory = new ConstructorWithArguments__factory(await ethersProvider!.getSigner()); | ||
contract = await ContractFactory.deploy(2); | ||
|
||
TransactionStorage.clear(); | ||
}); | ||
|
||
it("should save and recover contract by name", async function () { | ||
const contractName = "ConstructorWithArguments"; | ||
|
||
await deployer.save(contractName, await contract.getAddress()); | ||
|
||
const contractInstance = await deployer.deployed(ConstructorWithArguments__factory, contractName); | ||
|
||
expect(await contractInstance.getAddress()).to.equal(await contract.getAddress()); | ||
}); | ||
|
||
it("should save and recover contract by instance", async function () { | ||
await deployer.save(ConstructorWithArguments__factory, await contract.getAddress()); | ||
|
||
const contractInstance = await deployer.deployed(ConstructorWithArguments__factory); | ||
|
||
expect(await contractInstance.getAddress()).to.equal(await contract.getAddress()); | ||
}); | ||
|
||
it("should throw error if contract is not deployed", async function () { | ||
await expect(deployer.save(ConstructorWithArguments__factory, ethers.ZeroAddress)).to.be.rejectedWith( | ||
"Deployer.save(): Contract with address '0x0000000000000000000000000000000000000000' is not deployed", | ||
); | ||
}); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters