Skip to content

Commit 282a30d

Browse files
committed
feat: whitelisted PNK on Arbitrum
1 parent 73483ed commit 282a30d

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

contracts/deploy/00-escrow.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,13 +50,17 @@ const deploy: DeployFunction = async (hre: HardhatRuntimeEnvironment) => {
5050
const escrow = (await ethers.getContract("EscrowUniversal")) as EscrowUniversal;
5151
const WETH = await deployments.get("WETH");
5252
const DAI = await deployments.get("DAI");
53+
const PNK = await deployments.getOrNull("PNK");
5354
const USDC = await deployments.getOrNull("USDC");
5455
const USDCe = await deployments.getOrNull("USDCe"); // USDC.e (Bridged USDC)
5556
const caps = {
5657
[ethers.ZeroAddress]: ethers.parseUnits("0.3"),
5758
[WETH.address]: ethers.parseUnits("0.3"),
5859
[DAI.address]: ethers.parseUnits("1000"),
5960
};
61+
if (PNK) {
62+
caps[PNK.address] = ethers.parseUnits("100000"); // 100,000 PNK
63+
}
6064
if (USDC) {
6165
caps[USDC.address] = ethers.parseUnits("1000", 6);
6266
}

0 commit comments

Comments
 (0)