-
Notifications
You must be signed in to change notification settings - Fork 2
/
wallet.js
243 lines (207 loc) · 7.4 KB
/
wallet.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
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
const { pbkdf2Sync } = require('crypto');
const { randomBytes, secretbox, sign, box } = require('tweetnacl');
const bip39 = require('bip39');
const bs58 = require('bs58');
const { Keypair, Connection, Transaction } = require('@solana/web3.js');
const { Token, TOKEN_PROGRAM_ID, ASSOCIATED_TOKEN_PROGRAM_ID, AccountLayout } = require('@solana/spl-token');
const { derivePath } = require('ed25519-hd-key');
const { readFileSync, writeFileSync } = require('fs')
class Wallet {
static fromPrivateKey (privateKey) {
return new Wallet({ privateKey })
}
static fromMnemonic (mnemonic, accountIndex) {
return new Wallet({ mnemonic, accountIndex })
}
static generateMnemonic () {
return new Wallet({ mnemonic: bip39.generateMnemonic(256) })
}
constructor (args) {
if (args.privateKey) {
this.keypair = Keypair.fromSecretKey(args.privateKey)
this.publicKey = this.keypair.publicKey
this.privateKey = this.keypair.secretKey
} else if (args.mnemonic) {
this.mnemonic = args.mnemonic
if (!bip39.validateMnemonic(this.mnemonic)) {
throw new Error('Invalid seed words');
}
this._seed = bip39.mnemonicToSeedSync(this.mnemonic)
this.setAccountIndex(args.accountIndex || 0)
}
}
setAccountIndex (index) {
this.accountIndex = index
this.keypair = getAccountFromSeed(this._seed, this.accountIndex)
this.publicKey = this.keypair.publicKey
this.privateKey = this.keypair.secretKey
}
nextAccount () {
this.setAccountIndex(this.accountIndex + 1)
return this.keypair
}
get seed () {
return Buffer.from(this._seed).toString('hex')
}
get address () {
return this.publicKey.toBase58()
}
get connection () {
if (this._connection == null) {
this._connection = new Connection('https://solana-mainnet.phantom.tech/');
}
return this._connection
}
getBalance = async function () {
return await this.connection.getBalance(this.publicKey)
}
getTokenAccounts = async function (force = false) {
if (this.tokenAccounts == null || force) {
this.tokenAccounts = await getTokenAccountsByOwner(this.connection, this.publicKey)
}
return this.tokenAccounts
}
getTokenAccount = async function (mintAddress, force=false) {
for (let a of await this.getTokenAccounts(force)) {
if (a.mint == mintAddress) {
return a
}
}
return null
}
signTransaction = async (transaction) => {
transaction.partialSign(this.keypair);
return transaction;
}
signMessage (message) {
return sign(Buffer.from(message), this.keypair.secretKey)
}
openSignedMessage (message) {
return Buffer.from(sign.open(message, this.keypair._keypair.publicKey))
}
createSignature (message) {
return sign.detached(Buffer.from(message), this.keypair.secretKey)
}
verifySignature (signature, message) {
return sign.detached.verify(Buffer.from(message), signature, this.keypair._keypair.publicKey)
};
save (path, password) {
let text = storeMnemonicAndSeed(this.mnemonic, password)
writeFileSync(path, text)
}
static load (path, password) {
return new Wallet(loadMnemonicAndSeed(readFileSync(path), password))
}
}
async function getTokenAccountsByOwner (conn, publicKey) {
let res = await conn.getParsedTokenAccountsByOwner(publicKey, { programId: TOKEN_PROGRAM_ID })
return res.value.reduce((r, acc) => {
let { account, pubkey } = acc
let { mint, tokenAmount } = account.data.parsed.info
if (r[mint]) {
console.log("Duplicate Account", mint, tokenAmount, pubkey.toBase58())
console.log(r[mint])
}
r[mint] = {
mint,
pubkey,
amount: tokenAmount
}
return r
}, {})
}
function getAccountFromSeed(seed, walletIndex) {
const path44Change = `m/44'/501'/${walletIndex}'/0'`;
const derivedSeed = derivePath(path44Change, seed).key;
return Keypair.fromSeed(derivedSeed);
}
function storeMnemonicAndSeed(mnemonic, password) {
let plaintext = JSON.stringify({ mnemonic });
if (password) {
const salt = randomBytes(16);
const kdf = 'pbkdf2';
const iterations = 100000;
const digest = 'sha256';
const key = deriveEncryptionKey(password, salt, iterations, digest);
const nonce = randomBytes(secretbox.nonceLength);
const encrypted = secretbox(Buffer.from(plaintext), nonce, key);
plaintext = JSON.stringify({
encrypted: bs58.encode(encrypted),
nonce: bs58.encode(nonce),
kdf,
salt: bs58.encode(salt),
iterations,
digest,
})
}
return plaintext
}
function loadMnemonicAndSeed(text, password) {
let {
encrypted: encodedEncrypted,
mnemonic,
nonce: encodedNonce,
salt: encodedSalt,
iterations,
digest,
} = JSON.parse(text);
if (password) {
const encrypted = bs58.decode(encodedEncrypted);
const nonce = bs58.decode(encodedNonce);
const salt = bs58.decode(encodedSalt);
const key = deriveEncryptionKey(password, salt, iterations, digest);
const plaintext = secretbox.open(encrypted, nonce, key);
if (!plaintext) {
throw new Error('Incorrect password');
}
const decodedPlaintext = Buffer.from(plaintext).toString();
mnemonic = JSON.parse(decodedPlaintext).mnemonic
}
return { mnemonic }
}
function deriveEncryptionKey(password, salt, iterations, digest) {
return pbkdf2Sync(password, salt, iterations, secretbox.keyLength, digest)
}
async function getTokenAccountsByOwner (conn, publicKey) {
let res = await conn.getParsedTokenAccountsByOwner(publicKey, { programId: TOKEN_PROGRAM_ID })
return res.value.map(e => {
let { account, pubkey } = e
let { mint, tokenAmount } = account.data.parsed.info
return {
mint: mint,
pubkey: pubkey,
amount: tokenAmount.uiAmount,
decimals: tokenAmount.decimals
}
})
}
async function migrateDuplicateTokenAccounts (wallet) {
let accounts = {}
for (let a of await wallet.getTokenAccounts()) {
if (accounts[a.mint] == null) {
accounts[a.mint] = []
}
accounts[a.mint].push(a)
}
let transaction = new Transaction({ payer: wallet.publicKey })
for (let m in accounts) {
if (accounts[m].length == 1) {
continue
}
for (let i = 0; i < accounts[m].length; i++) {
if (accounts[m][i].amount == 0) {
transaction.add(Token.createCloseAccountInstruction(TOKEN_PROGRAM_ID, accounts[m][i].pubkey, wallet.publicKey, wallet.publicKey,[wallet.keypair]))
}
}
if (transaction.instructions.length == accounts[m].length) {
transaction.instructions.pop()
}
}
if (transaction.instructions.length) {
return await wallet.connection.sendTransaction(transaction, [wallet.keypair])
} else {
return null
}
}
module.exports.Wallet = Wallet
module.exports.migrateDuplicateTokenAccounts = migrateDuplicateTokenAccounts