| Contract | Mainnet Address (40102) | Testnet Address (40356) |
|---|---|---|
| Dogecoin | 0xbA2aE424d960c26247Dd6c32edC70B295c744C43 | 0x9A359f736674913e405Eb64C2048c6293DC97CbF |
| Lock Logic | 0x1d7e4Df7Ad00e3dbBF444515232E22e5C6D173e8 | 0x2d3B6b33E1cF574AB0d007A8154c8f97aa528795 |
| Lock | 0xaAC2155CceA674b0f5b0AAA81D5Ac85C510e9e98 | 0x4461ccD816E9952Ebd0BaF0661ac4E28de0d5095 |
| Adapter | 0x0000000000000000000000000000000000000000 | 0xa1952fFa805b9F2b711b61f005C6e56054cCA016 |
| Contract | Mainnet Address | Testnet Address |
|---|---|---|
| OFT | 0x00 | 0xa0449799bb779CE75FF37d8fd9A486603F24B804 |
| Contract | Testnet Address |
|---|---|
| Dogecoin | 0x9A359f736674913e405Eb64C2048c6293DC97CbF |
| Lock | 0x86F7f959F67C02FDE7A4c6B09CE1b7FBFA321d64 |
| OFT | 0xF3AdC4889982B2EC208B2BC5A5785Ee43069B56B |
We recommend using pnpm as a package manager (but you can of course use a package manager of your choice):
pnpm installThis project supports both hardhat and forge compilation. By default, the compile command will execute both:
pnpm compileIf you prefer one over the other, you can use the tooling-specific commands:
pnpm compile:forge
pnpm compile:hardhatOr adjust the package.json to for example remove forge build:
- "compile": "$npm_execpath run compile:forge && $npm_execpath run compile:hardhat",
- "compile:forge": "forge build",
- "compile:hardhat": "hardhat compile",
+ "compile": "hardhat compile"Similarly to the contract compilation, we support both hardhat and forge tests. By default, the test command will execute both:
pnpm testIf you prefer one over the other, you can use the tooling-specific commands:
pnpm test:forge
pnpm test:hardhatOr adjust the package.json to for example remove hardhat tests:
- "test": "$npm_execpath test:forge && $npm_execpath test:hardhat",
- "test:forge": "forge test",
- "test:hardhat": "$npm_execpath hardhat test"
+ "test": "forge test"Set up deployer wallet/account:
- Rename
.env.example->.env - Choose your preferred means of setting up your deployer wallet/account:
MNEMONIC="test test test test test test test test test test test junk"
or...
PRIVATE_KEY="0xabc...def"
- Fund this address with the corresponding chain's native tokens you want to deploy to.
To deploy your contracts to your desired blockchains, run the following command in your project's folder:
npx hardhat run deploy/DEPLOY_SCRIPT.tsTo deploy Layer Zero contracts, run the following command:
npx hardhat lz:deployMore information about available CLI arguments can be found using the --help flag:
npx hardhat lz:deploy --help