-
Notifications
You must be signed in to change notification settings - Fork 6
[VEN-3338] SingleTokenConverter whitelisted assets #146
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: feat/VEN-3277
Are you sure you want to change the base?
Changes from all commits
c66c865
1b1b377
163224d
b7cbe7c
868c4dc
d3bcf37
18bd539
416d025
abc9727
21031d3
2ffeccd
0de6d15
58f7040
6cb6706
5f4630d
b573b42
091653f
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,21 @@ | ||
| import { DeployFunction } from "hardhat-deploy/types"; | ||
| import { HardhatRuntimeEnvironment } from "hardhat/types"; | ||
|
|
||
| const func: DeployFunction = async function (hre: HardhatRuntimeEnvironment) { | ||
| const { deployments, getNamedAccounts } = hre; | ||
| const { deploy } = deployments; | ||
| const { deployer } = await getNamedAccounts(); | ||
|
|
||
| await deploy("SingleTokenConverterImp", { | ||
| contract: "SingleTokenConverter", | ||
| from: deployer, | ||
| args: [], | ||
| log: true, | ||
| autoMine: true, | ||
| skipIfAlreadyDeployed: false, | ||
| }); | ||
| }; | ||
|
|
||
| func.tags = ["SingleTokenConverterImpl"]; | ||
|
|
||
| export default func; |
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Uh oh!
There was an error while loading. Please reload this page.