4
4
DEVELOPER_PROJECTS_GRANTS_POOL ,
5
5
FOUNDATION_AND_ECOSYSTEM_DEVELOPMENT_POOL ,
6
6
INFLATION_OFFSETTING_POOL ,
7
- MARKETING_POOL ,
7
+ EDUCATION_BOOTCAMP_PR_EVENT_POOL ,
8
8
PROTOCOL_DEVELOPMENT_POOL ,
9
9
PROTOCOL_RESERVE_POOL ,
10
10
VALIDATOR_INCENTIVES_POOL ,
@@ -50,7 +50,7 @@ function getPoolAddresses(poolAddr) {
50
50
// Circulation Supply = Total Supply - (Vesting + Pools);
51
51
export async function circulationSupply ( ) {
52
52
const addresses = [
53
- ...getPoolAddresses ( MARKETING_POOL ) ,
53
+ ...getPoolAddresses ( EDUCATION_BOOTCAMP_PR_EVENT_POOL ) ,
54
54
...getPoolAddresses ( PROTOCOL_RESERVE_POOL ) ,
55
55
...getPoolAddresses ( FOUNDATION_AND_ECOSYSTEM_DEVELOPMENT_POOL ) ,
56
56
...getPoolAddresses ( PROTOCOL_DEVELOPMENT_POOL ) ,
@@ -61,6 +61,8 @@ export async function circulationSupply() {
61
61
] ;
62
62
63
63
const [ vesting , pools , supply ] = await Promise . all ( [ vestingTotal ( ) , getBalances ( addresses ) , totalSupply ( ) ] ) ;
64
+ console . log ( addresses ) ;
65
+ console . log ( pools ) ;
64
66
65
67
const total = pools . reduce ( ( accumulator , current ) => accumulator + current , 0 ) + vesting ;
66
68
0 commit comments