Skip to content

Commit

Permalink
Add COB mock token.
Browse files Browse the repository at this point in the history
  • Loading branch information
madjarevicn committed Mar 18, 2024
1 parent 502d48a commit 8e99277
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
3 changes: 2 additions & 1 deletion deployments/contract-addresses.json
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,8 @@
"Deepwaters": "0x60D57fE620DBCf7d8D96b8BcfBF504fD3135Ec42",
"GoGoPool Protocol": "0xeEF28e34eD3D0f64A01ecbfA3f7757014BE8548B",
"AEG-MOCK-TOKEN": "0x90Ee87F15aB3f5929513DB072Aec28a32222e2Cc",
"AetherGames": "0x6c7fd91b7B9Bcf2959C3b364a7F3e846F2Bb4e7d"
"AetherGames": "0x6c7fd91b7B9Bcf2959C3b364a7F3e846F2Bb4e7d",
"COB-MOCK-TOKEN": "0x7cc12D76488B88895178d4C6A3E1e39158201e02"
},
"local": {
"MOCK-XAVA": "0x959922bE3CAee4b8Cd9a407cc3ac1C251C2007B1",
Expand Down
10 changes: 5 additions & 5 deletions scripts/deployment/deploy_mock_token.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,17 @@ const hre = require("hardhat");
const { saveContractAddress } = require('../utils')

async function main() {
const tokenName = "Aether Games - Mock ERC20";
const symbol = "AEG";
const totalSupply = "9375000000000000000000000";
const tokenName = "COB - Mock ERC20";
const symbol = "COB";
const totalSupply = "2000000000000000000000000";
const decimals = 18;

const MCK1 = await hre.ethers.getContractFactory("XavaToken");
const token = await MCK1.deploy(tokenName, symbol, totalSupply, decimals);
await token.deployed();
console.log("AEG deployed to: ", token.address);
console.log("COB deployed to: ", token.address);

saveContractAddress(hre.network.name, "AEG-MOCK-TOKEN", token.address);
saveContractAddress(hre.network.name, "COB-MOCK-TOKEN", token.address);
}


Expand Down

0 comments on commit 8e99277

Please sign in to comment.