Skip to content

Commit

Permalink
delete dalta
Browse files Browse the repository at this point in the history
  • Loading branch information
EugenWay committed Oct 21, 2024
1 parent e0ccb32 commit 7b7ad8a
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
3 changes: 1 addition & 2 deletions src/calculators/circulation-supply.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ import {
DECIMALS,
CB_COLD_WALLETS,
CB_REWARDS,
DELTA,
GEAR_FOUNDATION_V,
GEAR_TECH_V,
REWARD_DISTRIBUTION_MULTISIG,
Expand Down Expand Up @@ -90,7 +89,7 @@ export async function circulationSupply() {
getBalances(addresses),
]);

const total = pools.reduce((accumulator, current) => accumulator + current, 0) + vesting + DELTA;
const total = pools.reduce((accumulator, current) => accumulator + current, 0) + vesting;

return supply - total;
}
3 changes: 0 additions & 3 deletions src/consts.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,6 @@ export const CB_COLD_WALLETS = [

export const CB_REWARDS = 'kGgH6TyfMQmjVLoDxTXUEjnYoa63eBwLK9D8XM2PtZ8tr6KND';

// Undistributed community airdrop
export const DELTA = 41780000;

export const GEAR_FOUNDATION_V = 'kGiKi96jKfPzvvBCuPbBQeBNrUV5nNUVBxTeGJ5hgs3R3Di5e';
export const GEAR_TECH_V = 'kGhYV2BWXtbspqGFhzhkx7Pur2Y7TWtaU9yPa8atXpMt33ExK';
export const REWARD_DISTRIBUTION_MULTISIG = 'kGjbw9qJBN7PMHxFonwpMig3obvbPLqyf8fp4L7CRn8HjXXfk';
Expand Down

0 comments on commit 7b7ad8a

Please sign in to comment.