Skip to content
This repository was archived by the owner on Jul 6, 2022. It is now read-only.

Commit 289e0a8

Browse files
committedJan 15, 2018
fixed airdrop alloc and added tests
1 parent 970b8a7 commit 289e0a8

File tree

6 files changed

+70
-106
lines changed

6 files changed

+70
-106
lines changed
 

‎contracts/PolyDistribution.sol

+10-11
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,11 @@ contract PolyDistribution is Ownable {
4141
uint256 amountClaimed; // Total tokens claimed
4242
}
4343
mapping (address => Allocation) public allocations;
44-
44+
45+
// List of admins
4546
mapping (address => bool) public airdropAdmins;
46-
47+
48+
// Keeps track of whether or not a 250 POLY airdrop has been made to a particular address
4749
mapping (address => bool) public airdrops;
4850

4951
modifier onlyOwnerOrAdmin() {
@@ -100,30 +102,27 @@ contract PolyDistribution is Ownable {
100102
AVAILABLE_TOTAL_SUPPLY = AVAILABLE_TOTAL_SUPPLY.sub(_totalAllocated);
101103
LogNewAllocation(_recipient, _supply, _totalAllocated, grandTotalAllocated());
102104
}
103-
105+
104106
/**
105107
* @dev Add an airdrop admin
106-
* @param _admin
107-
* @param _isAdmin
108108
*/
109109
function setAirdropAdmin(address _admin, bool _isAdmin) public onlyOwner {
110110
airdropAdmins[_admin] = _isAdmin;
111111
}
112-
112+
113113
/**
114114
* @dev perform a transfer of allocations
115-
* @param _reciepients
116-
* @param _allocated
115+
* @param _recipient is a list of recipients
117116
*/
118117
function airdropTokens(address[] _recipient) public onlyOwnerOrAdmin {
119-
require(_startTime >= now);
118+
require(now >= startTime);
120119
uint airdropped;
121120
for(uint8 i = 0; i< _recipient.length; i++)
122121
{
123122
if (!airdrops[_recipient[i]]) {
124123
airdrops[_recipient[i]] = true;
125-
require(POLY.transfer(_recipient[i], 250*(decimalsFactor));
126-
airdropped = airdropped.add(250*decimalsFactor);
124+
require(POLY.transfer(_recipient[i], 250 * decimalFactor));
125+
airdropped = airdropped.add(250 * decimalFactor);
127126
}
128127
}
129128
AVAILABLE_AIRDROP_SUPPLY = AVAILABLE_AIRDROP_SUPPLY.sub(airdropped);

‎package.json

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
"scripts": {
1010
"test": "scripts/test.sh",
1111
"compile": "truffle compile",
12+
"coverage": "./node_modules/.bin/solidity-coverage",
1213
"migrate-local": "truffle migrate --network=local --reset",
1314
"migrate-ropsten": "truffle migrate --network=ropsten --reset",
1415
"flatten": "sol-merger './contracts/*.sol' ./flat"

‎scripts/csv_allocation.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ async function setAllocation() {
4747
if(prevAllocation[3].toNumber() ==0){
4848
try{
4949
console.log("Attempting to allocate",distribData[i][0], "to account",distribData[i][1]);
50-
polyDistribution.setAllocation(distribData[i][1],new BigNumber(distribData[i][0] * (10 ** 18)),2,{from:accounts[0], gas:300000, gasPrice:5000000000});
50+
polyDistribution.setAllocation(distribData[i][1],new BigNumber(distribData[i][0] * (10 ** 18)),2,{from:accounts[0], gas:300000, gasPrice:20000000000});
5151
//let allocation = await polyDistribution.allocations(distribData[i][1],{from:accounts[0]});
5252
//console.log(r);
5353
//console.log("Allocated", allocation[3].toString(10), "tokens for account:",distribData[i][1]);

‎scripts/distrib.csv

+1-1
Original file line numberDiff line numberDiff line change
@@ -113,4 +113,4 @@
113113
5000,0x126910b84d1d270c1cf76aa1d3d9f3ab3932c7cd
114114
1150,0x9a9e6588AF6d1bC42572B0E3c3D2F827dabA64Ac
115115
4200,0x6d9ECe11860fDc4Ac3815eCF4077eae9973A7f2b
116-
987,0x6d9ECe11860fDc4Ac3815eCF4077eae9973A7f2c
116+
987,0xbf26b856d016421ce9187d3626b21ce6786af7f8

‎test/TestPolyDistribution.js

+50-93
Original file line numberDiff line numberDiff line change
@@ -59,13 +59,25 @@ contract('PolyDistribution', function(accounts) {
5959
let account_presale = accounts[1];
6060
let account_founder1 = accounts[2];
6161
let account_founder2 = accounts[3];
62-
let account_airdrop1 = accounts[4];
63-
let account_airdrop2 = accounts[5];
6462
let account_bonus1 = accounts[6];
6563
let account_advisor1 = accounts[7];
6664
let account_advisor2 = accounts[8];
6765
let account_reserve = accounts[9];
6866

67+
let account_admin1 = accounts[4];
68+
69+
let airdrop_massive = new Array();
70+
for (var i = 0; i< 50; i++){
71+
var acc = web3.eth.accounts.create();
72+
airdrop_massive[i] = acc.address;
73+
}
74+
75+
let airdrop_massive2 = new Array();
76+
for (var i = 0; i< 50; i++){
77+
var acc = web3.eth.accounts.create();
78+
airdrop_massive2[i] = acc.address;
79+
}
80+
6981
let allocationStruct = {
7082
AllocationSupply: 0, // Type of allocation
7183
endCliff: 0, // Tokens are locked until
@@ -122,10 +134,6 @@ contract('PolyDistribution', function(accounts) {
122134
oldPresaleSupply = await polyDistribution.AVAILABLE_FOUNDER_SUPPLY({from:account_owner});
123135
allocationTypeNum = 1;
124136
break;
125-
case "AIRDROP":
126-
oldPresaleSupply = await polyDistribution.AVAILABLE_AIRDROP_SUPPLY({from:account_owner});
127-
allocationTypeNum = 2;
128-
break;
129137
case "ADVISOR":
130138
oldPresaleSupply = await polyDistribution.AVAILABLE_ADVISOR_SUPPLY({from:account_owner});
131139
allocationTypeNum = 3;
@@ -169,9 +177,6 @@ contract('PolyDistribution', function(accounts) {
169177
case "FOUNDER":
170178
newPresaleSupply = await polyDistribution.AVAILABLE_FOUNDER_SUPPLY({from:account_owner});
171179
break;
172-
case "AIRDROP":
173-
newPresaleSupply = await polyDistribution.AVAILABLE_AIRDROP_SUPPLY({from:account_owner});
174-
break;
175180
case "ADVISOR":
176181
newPresaleSupply = await polyDistribution.AVAILABLE_ADVISOR_SUPPLY({from:account_owner});
177182
break;
@@ -265,30 +270,6 @@ contract('PolyDistribution', function(accounts) {
265270

266271
});
267272

268-
describe("AIRDROP 1 Allocation", async function () {
269-
270-
let tokensToAllocate = 50;
271-
doAllocationTests("AIRDROP",tokensToAllocate,account_airdrop1);
272-
273-
after(async() => {
274-
oldTotalSupply = new BigNumber(oldTotalSupply.minus(tokensToAllocate));
275-
grantTotalAllocationSum = new BigNumber(grantTotalAllocationSum.plus(tokensToAllocate));
276-
});
277-
278-
});
279-
280-
describe("AIRDROP 2 Allocation", async function () {
281-
282-
let tokensToAllocate = 75;
283-
doAllocationTests("AIRDROP",tokensToAllocate,account_airdrop2);
284-
285-
after(async() => {
286-
oldTotalSupply = new BigNumber(oldTotalSupply.minus(tokensToAllocate));
287-
grantTotalAllocationSum = new BigNumber(grantTotalAllocationSum.plus(tokensToAllocate));
288-
});
289-
290-
});
291-
292273
describe("ADVISOR 1 Allocation", async function () {
293274

294275
let tokensToAllocate = 3333;
@@ -485,100 +466,76 @@ contract('PolyDistribution', function(accounts) {
485466

486467
});
487468

488-
});
489-
490-
describe("Withdraw 6 months after allocations", async function () {
469+
it("should perform the AIRDROP for 50 accounts", async function () {
470+
await polyDistribution.airdropTokens(airdrop_massive,{from:accounts[0]});
491471

492-
before(async() => {
493-
//Time travel to startTime + 6 months;
494-
await timeTravel((3600 * 24 * 180))// Move forward in time so the crowdsale has started
495-
await mineBlock() // workaround for https://github.com/ethereumjs/testrpc/issues/336
496472
});
497473

498-
it("should withdraw AIRDROP tokens", async function () {
499-
let currentBlock = await web3.eth.getBlock("latest");
500-
501-
// Check token balance for account before calling transferTokens, then check afterwards.
502-
let tokenBalance = await polyToken.balanceOf(account_airdrop1,{from:accounts[0]});
503-
await polyDistribution.transferTokens(account_airdrop1,{from:accounts[0]});
504-
let new_tokenBalance = await polyToken.balanceOf(account_airdrop1,{from:accounts[0]});
474+
it("airdrop accounts should have 250 POLY each", async function () {
475+
for (var i = 0; i< airdrop_massive.length; i++){
476+
let tokenBalance = await polyToken.balanceOf(airdrop_massive[i],{from:accounts[0]});
477+
assert.equal(tokenBalance.toString(10), "250000000000000000000");
505478

506-
//PRESALE tokens are completely distributed once allocated as they have no vesting period nor cliff
507-
let allocation = await polyDistribution.allocations(account_airdrop1,{from:account_owner});
479+
}
480+
});
508481

509-
logWithdrawalData("AIRDROP",currentBlock.timestamp,account_airdrop1,contractStartTime,allocation,new_tokenBalance);
482+
it("should set another admin for airdrop", async function () {
483+
await polyDistribution.setAirdropAdmin(account_admin1,true,{from:accounts[0]});
510484

511-
let expectedTokenBalance = calculateExpectedTokens(allocation,currentBlock.timestamp,contractStartTime);
512-
assert.equal(expectedTokenBalance.toString(10),new_tokenBalance.toString(10));
513485
});
514486

515-
});
487+
it("should perform the AIRDROP for 50 accounts with an admin", async function () {
488+
await polyDistribution.airdropTokens(airdrop_massive2,{from:account_admin1});
489+
490+
});
516491

517-
describe("Withdraw 9 months after allocations", async function () {
492+
it("airdrop accounts should have 250 POLY each", async function () {
493+
for (var i = 0; i< airdrop_massive2.length; i++){
494+
let tokenBalance = await polyToken.balanceOf(airdrop_massive2[i],{from:accounts[0]});
495+
assert.equal(tokenBalance.toString(10), "250000000000000000000");
518496

519-
before(async() => {
520-
//Time travel to startTime + 9 months;
521-
await timeTravel((3600 * 24 * 90))// Move forward in time so the crowdsale has started
522-
await mineBlock() // workaround for https://github.com/ethereumjs/testrpc/issues/336
497+
}
523498
});
524499

525-
it("should fail to withdraw AIRDROP 1 tokens as they have already been fully distributed", async function () {
526500

527-
try {
528-
await polyDistribution.transferTokens(account_airdrop1,{from:accounts[0]});
529-
} catch (error) {
530-
let currentBlock = await web3.eth.getBlock("latest");
531501

532-
let new_tokenBalance = await polyToken.balanceOf(account_airdrop1,{from:accounts[0]});
533-
let allocation = await polyDistribution.allocations(account_airdrop1,{from:account_owner});
534-
logWithdrawalData("AIRDROP",currentBlock.timestamp,account_airdrop1,contractStartTime,allocation,new_tokenBalance);
502+
});
535503

536-
logError("✅ Failed to withdraw");
537-
return true;
538-
}
539-
throw new Error("I should never see this!")
504+
describe("Withdraw 8 months after allocations", async function () {
540505

506+
before(async() => {
507+
//Time travel to startTime + 8 months;
508+
await timeTravel((3600 * 24 * 240))// Move forward in time so the crowdsale has started
509+
await mineBlock() // workaround for https://github.com/ethereumjs/testrpc/issues/336
541510
});
542511

543-
// it("should withdraw AIRDROP tokens", async function () {
544-
// let currentBlock = await web3.eth.getBlock("latest");
545-
//
546-
// // Check token balance for account before calling transferTokens, then check afterwards.
547-
// let tokenBalance = await polyToken.balanceOf(account_airdrop1,{from:accounts[0]});
548-
// await polyDistribution.transferTokens(account_airdrop1,{from:accounts[0]});
549-
// let new_tokenBalance = await polyToken.balanceOf(account_airdrop1,{from:accounts[0]});
550-
//
551-
// //PRESALE tokens are completely distributed once allocated as they have no vesting period nor cliff
552-
// let allocation = await polyDistribution.allocations(account_airdrop1,{from:account_owner});
553-
//
554-
// logWithdrawalData("AIRDROP",currentBlock.timestamp,account_airdrop1,contractStartTime,allocation,new_tokenBalance);
555-
//
556-
// });
557-
558-
it("should withdraw AIRDROP tokens", async function () {
512+
it("should withdraw RESERVE tokens", async function () {
559513
let currentBlock = await web3.eth.getBlock("latest");
560514

561515
// Check token balance for account before calling transferTokens, then check afterwards.
562-
let tokenBalance = await polyToken.balanceOf(account_airdrop2,{from:accounts[0]});
563-
await polyDistribution.transferTokens(account_airdrop2,{from:accounts[0]});
564-
let new_tokenBalance = await polyToken.balanceOf(account_airdrop2,{from:accounts[0]});
516+
let tokenBalance = await polyToken.balanceOf(account_reserve,{from:accounts[0]});
517+
await polyDistribution.transferTokens(account_reserve,{from:accounts[0]});
518+
let new_tokenBalance = await polyToken.balanceOf(account_reserve,{from:accounts[0]});
565519

566520
//PRESALE tokens are completely distributed once allocated as they have no vesting period nor cliff
567-
let allocation = await polyDistribution.allocations(account_airdrop2,{from:account_owner});
521+
let allocation = await polyDistribution.allocations(account_reserve,{from:account_owner});
568522

569-
logWithdrawalData("AIRDROP",currentBlock.timestamp,account_airdrop2,contractStartTime,allocation,new_tokenBalance);
523+
logWithdrawalData("RESERVE",currentBlock.timestamp,account_reserve,contractStartTime,allocation,new_tokenBalance);
570524

571525
let expectedTokenBalance = calculateExpectedTokens(allocation,currentBlock.timestamp,contractStartTime);
572526
assert.equal(expectedTokenBalance.toString(10),new_tokenBalance.toString(10));
573527
});
574528

529+
575530
});
576531

532+
533+
577534
describe("Withdraw 15 months after allocations", async function () {
578535

579536
before(async() => {
580-
//Time travel to startTime + 9 months;
581-
await timeTravel((3600 * 24 * 180))// Move forward in time so the crowdsale has started
537+
//Time travel to startTime + 15 months;
538+
await timeTravel((3600 * 24 * 210))// Move forward in time so the crowdsale has started
582539
await mineBlock() // workaround for https://github.com/ethereumjs/testrpc/issues/336
583540
});
584541

‎truffle.js

+7
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,13 @@ module.exports = {
1616
gas: 3500000,
1717
gasPrice: 10000000000
1818
},
19+
ropsten: {
20+
host: 'localhost',
21+
port: 8545,
22+
network_id: '3', // Match any network id
23+
gas: 3500000,
24+
gasPrice: 50000000000
25+
},
1926
local: {
2027
host: 'localhost',
2128
port: 8545,

0 commit comments

Comments
 (0)
This repository has been archived.