Skip to content

Commit

Permalink
feat: deploy CCIP-compatible LDY on Base, Arbitrum and Mainnet
Browse files Browse the repository at this point in the history
  • Loading branch information
LilaRest committed May 7, 2024
1 parent 3efbca2 commit f913ab5
Show file tree
Hide file tree
Showing 11 changed files with 2,583 additions and 53 deletions.
4 changes: 2 additions & 2 deletions hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,11 @@ const safes = {
},
ethereum: {
address: "0x30Fa557608017afB6E8e4ABe8027787C00473FF0",
url: "https://safe-transaction.ethereum.safe.global",
url: "https://safe-transaction-mainnet.safe.global",
},
base: {
address: "0x2E816EA2A7Db3DB4C74298cae0d455f0F800E92A",
url: "https://safe-transaction.base.safe.global",
url: "https://safe-transaction-base.safe.global",
},
hardhat: {
address: "0x0",
Expand Down
6 changes: 3 additions & 3 deletions hardhat/deploy/01-LDY.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ import { parseUnits } from "viem";
module.exports = (async ({ getNamedAccounts, deployments }) => {
const { deployer } = await getNamedAccounts();

await deployments.deploy("TSTTOKEN", {
await deployments.deploy("LDY", {
from: deployer,
contract: "TSTTOKEN",
contract: "LDY",
log: true,
waitConfirmations: 2,
args: ["Test Token", "TSTTOKEN", 18, parseUnits(String(75_000_000), 18)],
args: ["Ledgity Token", "LDY", 18, parseUnits(String(75_000_000), 18)],
deterministicDeployment: false,
});
}) as DeployFunction;

Large diffs are not rendered by default.

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions hardhat/deployments/base/.chainId
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
8453
Loading

0 comments on commit f913ab5

Please sign in to comment.