Skip to content

Commit

Permalink
fix: step presale at 25k
Browse files Browse the repository at this point in the history
  • Loading branch information
veeso committed Dec 16, 2024
1 parent bae5dc2 commit 44ae85c
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/js/components/App/pages/Presale.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import EkokePresalePublicClient from '../../../web3/EkokePresalePublicClient';
import WaitForPresale from './Presale/WaitForPresale';

const BASE_PRICE = 1_000_000;
const STEP = 5_000_000_000_000;
const STEP = 20_000_000_000_000;
export const PRESALE_END_DATE = new Date('2025-03-31');
export const PRESALE_START_DATE = new Date('2025-01-15T12:00:00Z');

Expand Down
2 changes: 1 addition & 1 deletion src/js/components/App/pages/Presale/Info.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ const Info = () => {
<br />
The <strong>Base price</strong> will be set at{' '}
<strong>1 USDT = 1 EKOKE</strong>. The price will increase by 1 USDT
each <strong>{(5_000).toLocaleString('en-US')} EKOKE</strong> sold.
each <strong>{(20_000).toLocaleString('en-US')} EKOKE</strong> sold.
</Paragraph.Default>
<Heading.H2 className="text-center">Claim tokens</Heading.H2>
<Paragraph.Default>
Expand Down
2 changes: 1 addition & 1 deletion src/js/web3/contracts/EkokePresale.ts
Original file line number Diff line number Diff line change
Expand Up @@ -363,6 +363,6 @@ interface ContractAddress {
}

export const CONTRACT_ADDRESS: ContractAddress = {
[ChainId.Mainnet]: '0x0AA24850527dAC93EFA962E9D8a8E08f8DC083DF',
[ChainId.Mainnet]: '0xa5fF566D68E3521929F47447b975C4683618C35f',
[ChainId.Sepolia]: '0x10B6bDB762aE3bAB9C6A097455252171b7F80457',
};
2 changes: 1 addition & 1 deletion src/js/web3/tokens.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export const EKOKE_ADDRESS = '0x92fBA9067844A419A1C394197aE406768555F71b';
export const EKOKE_PRESALE_ADDRESS =
'0x0AA24850527dAC93EFA962E9D8a8E08f8DC083DF';
'0xa5fF566D68E3521929F47447b975C4683618C35f';

export const DEFERRED_ADDRESS = '0xA0939B965AE2683DA136cFF37FC856Ca46c66Cd6';

0 comments on commit 44ae85c

Please sign in to comment.