-
Notifications
You must be signed in to change notification settings - Fork 0
/
airdrop.js
195 lines (155 loc) · 6.11 KB
/
airdrop.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
//***** WARNING *****//
// This code is pure garbage, and you will be sending potentially lots of cash with it.
// Use at your own risk and start with small verifying txs.
//TODO: Make this all better and incorporate clevis
const Web3 = require('web3');
const { BN, fromWei, toWei } = Web3.utils;
require('dotenv').config();
const ethereumjsutil = require("ethereumjs-util")
const fs = require("fs")
const CONFIG = {
justChecking: true, //True if you only want to check balances of all accounts
dryRun: false, //Tells you what it would do without actually sending any txs
testRun: false, //Sends small dust amounts instead of the real airdrop amount
provider: 'https://dai.poa.network',//"http://0.0.0.0:8545",//
erc20ContractAddr: "0x983281a2B8076D4B51Df0971F654B6De9aD1Ae61",//fs.readFileSync("../sandbox/contracts/StableCoin/StableCoin.address").toString(), //Contract addr for the ERC20 token
erc20Abi: require('./contracts/Burner.abi'),
sendingPk: process.env.SENDING_PK,
sendingAccount: "0x"+ethereumjsutil.privateToAddress(process.env.SENDING_PK).toString('hex'),
erc20SendGas: 75034,
xDaiSendGas: 21000,
gasPrice: toWei('5', 'gwei'),
}
const web3 = new Web3(new Web3.providers.HttpProvider(CONFIG.provider));
let ERC20 = new web3.eth.Contract(CONFIG.erc20Abi, CONFIG.erc20ContractAddr);
const AMOUNT_OF_ERC20_TO_SEND = CONFIG.testRun ? toWei('1', 'wei') : toWei('5', 'ether')
const AMOUNT_OF_NATIVE_TOKEN_TO_SEND = CONFIG.testRun ? toWei('1', 'wei') : toWei('0.25', 'ether')
//Batch related settings
const TXS_PER_BATCH = 6
const SLEEP_TIME = 10000
function main() {
let accounts = []
let accountsJson = JSON.parse(fs.readFileSync("./accounts.json").toString())
for(let a in accountsJson){
accounts[a] = accountsJson[a].address
}
checkBalances(accounts)
if(!CONFIG.justChecking) airDrop(accounts)
}
main()
async function airDrop(accounts) {
if(CONFIG.sendingPk === undefined && CONFIG.dryRun === false) {
console.log("Cannot airdrop without a PK. Please supply PK in env.SENDING_PK")
process.exit(1)
}
if(CONFIG.testRun === true) {
console.log("WARNING: You are in testRun=true mode. Only dust will be sent to accounts")
}
let hasFunds = await senderHasFunds(accounts.length)
if(!hasFunds) {
console.log("Sender did not have sufficient funds. Exiting")
process.exit(1)
}
console.log(`Airdropping ${accounts.length} accounts`)
web3.eth.getTransactionCount(CONFIG.sendingAccount).then(async function(nonce) {
console.log('Nonce: ', nonce);
let batch = []
for(let i = 0; i < accounts.length; i++) {
console.log('AMOUNT_OF_ERC20_TO_SEND: ', AMOUNT_OF_ERC20_TO_SEND);
console.log('AMOUNT_OF_NATIVE_TOKEN_TO_SEND: ', AMOUNT_OF_NATIVE_TOKEN_TO_SEND);
let tx = sendErc20(accounts[i], nonce++)
batch = await addToBatch(batch, tx)
tx = sendXDai(accounts[i], nonce++)
batch = await addToBatch(batch, tx)
}
await clearBatch(batch)
})
}
async function addToBatch(batch, promise) {
batch.push(promise)
if(batch.length === TXS_PER_BATCH) {
await clearBatch(batch)
batch = []
}
return batch
}
async function clearBatch(batch) {
console.log("About to wait for batch: ", batch);
await Promise.all(batch);
console.log("Batch finished")
console.log("Sleeping")
await sleep(SLEEP_TIME)
}
function expectedGasCosts() {
return new BN((CONFIG.xDaiSendGas + CONFIG.erc20SendGas) * CONFIG.gasPrice);
}
async function senderHasFunds(numAccounts) {
let requiredNative = (new BN(AMOUNT_OF_NATIVE_TOKEN_TO_SEND).add(expectedGasCosts())) * numAccounts;
let requiredToken = new BN(AMOUNT_OF_ERC20_TO_SEND) * numAccounts;
console.log('requiredNative: ', requiredNative);
console.log('requiredToken: ', requiredToken);
let erc20Balance = await checkErc20Balance(CONFIG.sendingAccount);
let balance = await web3.eth.getBalance(CONFIG.sendingAccount)
console.log('erc20Balance: ', erc20Balance);
console.log('nativeBalance: ', balance);
let neededNative = balance-requiredNative;
if(neededNative<0){
console.log("!! Native Token Needed:",neededNative/10**18*-1,"(send to "+CONFIG.sendingAccount+")")
}
let neededERC20 = erc20Balance-requiredToken;
if(neededERC20<0){
console.log("!! ERC20 Token Needed:",neededERC20/10**18*-1,"(send to "+CONFIG.sendingAccount+")")
}
return (balance >= requiredNative && erc20Balance >= requiredToken);
}
async function checkBalances(accounts) {
console.log(`Checking balances of ${accounts.length} accounts`)
for(let i = 0; i < accounts.length; i++) {
let erc20Balance = await checkErc20Balance(accounts[i]);
let balance = await web3.eth.getBalance(accounts[i])
//Enable this line if you only want to show those who don't have the correct amount air dropped on them.
// if(fromWei(erc20Balance, 'ether') !== '10' || fromWei(balance, 'ether') !== '0.01') {
if(true) {
console.log(`${accounts[i]}:`)
console.log(` erc20Balance: ${fromWei(erc20Balance, 'ether')}`)
console.log(` nativeBalance: ${fromWei(balance, 'ether')}`)
}
}
}
function checkErc20Balance(account) {
return ERC20.methods.balanceOf(account).call();
}
async function sendXDai(to, nonce) {
let tx = {
to: to,
value: AMOUNT_OF_NATIVE_TOKEN_TO_SEND,
gas: CONFIG.xDaiSendGas,
gasPrice: CONFIG.gasPrice,
nonce: nonce
}
if(CONFIG.dryRun === false) {
let signed = await web3.eth.accounts.signTransaction(tx, CONFIG.sendingPk)
return web3.eth.sendSignedTransaction(signed.rawTransaction)
} else {
console.log("Dry run enabled. Would have sent tx: ", tx)
}
}
async function sendErc20(to, nonce) {
let data = ERC20.methods.transfer(to, AMOUNT_OF_ERC20_TO_SEND).encodeABI()
let tx = {
to: CONFIG.erc20ContractAddr,
gas: CONFIG.erc20SendGas,
gasPrice: CONFIG.gasPrice,
data: data,
nonce: nonce
}
if(CONFIG.dryRun === false) {
let signed = await web3.eth.accounts.signTransaction(tx, CONFIG.sendingPk)
return web3.eth.sendSignedTransaction(signed.rawTransaction)
} else {
console.log("Dry run enabled. Would have sent tx: ", tx)
}
}
function sleep(millis) {
return new Promise(resolve => setTimeout(resolve, millis));
}