Skip to content

Commit

Permalink
fix: contracts deployed
Browse files Browse the repository at this point in the history
  • Loading branch information
veeso committed Dec 13, 2024
1 parent befac95 commit 45ad97e
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,8 @@ You can find the whitepaper on our website <https://www.ekoketoken.com/whitepape
## Ethereum Contracts

- **Deferred**: `TBD`
- **EKOKE**: `TBD`
- **EKOKE**: `0x92fBA9067844A419A1C394197aE406768555F71b`
- **EKOKE-presale**: `0x0AA24850527dAC93EFA962E9D8a8E08f8DC083DF`
- **Marketplace**: `TBD`
- **RewardPool**: `TBD`

Expand Down
2 changes: 1 addition & 1 deletion ethereum/app/src/js/web3/contracts/Ekoke.ts
Original file line number Diff line number Diff line change
Expand Up @@ -587,7 +587,7 @@ interface ContractAddress {
export const CONTRACT_ADDRESS: ContractAddress = {
[ChainId.Goerli]: '',
[ChainId.Kovan]: '',
[ChainId.Mainnet]: '',
[ChainId.Mainnet]: '0x92fBA9067844A419A1C394197aE406768555F71b',
[ChainId.Rinkeby]: '',
[ChainId.Ropsten]: '',
[ChainId.Sepolia]: '0x92fBA9067844A419A1C394197aE406768555F71b',
Expand Down
2 changes: 1 addition & 1 deletion ethereum/app/src/js/web3/contracts/EkokePresale.ts
Original file line number Diff line number Diff line change
Expand Up @@ -370,7 +370,7 @@ interface ContractAddress {
export const CONTRACT_ADDRESS: ContractAddress = {
[ChainId.Goerli]: '',
[ChainId.Kovan]: '',
[ChainId.Mainnet]: '',
[ChainId.Mainnet]: '0x0AA24850527dAC93EFA962E9D8a8E08f8DC083DF',
[ChainId.Rinkeby]: '',
[ChainId.Ropsten]: '',
[ChainId.Sepolia]: '0x10B6bDB762aE3bAB9C6A097455252171b7F80457',
Expand Down
4 changes: 2 additions & 2 deletions ethereum/hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ const CONTRACT_EKOKE = "ekoke";
const CONTRACT_EKOKE_PRESALE = "ekoke-presale";
const CONTRACT_MARKETPLACE = "marketplace";
const CONTRACT_REWARD_POOL = "reward-pool";
const CONTRAT_USD_ERC20 = "usdt";
const CONTRACT_USD_ERC20 = "usdt";

task("deploy", "Deploy contracts")
.addPositionalParam(
Expand Down Expand Up @@ -112,7 +112,7 @@ task("deploy", "Deploy contracts")
});
break;

case CONTRAT_USD_ERC20:
case CONTRACT_USD_ERC20:
await deployUsdErc20();
break;

Expand Down

0 comments on commit 45ad97e

Please sign in to comment.