forked from trustwallet/wallet-core
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCoin.cpp
More file actions
329 lines (251 loc) · 8.98 KB
/
Coin.cpp
File metadata and controls
329 lines (251 loc) · 8.98 KB
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
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
// Copyright © 2017-2020 Trust Wallet.
//
// This file is part of Trust. The full Trust copyright notice, including
// terms governing use, modification, and redistribution, is contained in the
// file LICENSE at the root of the source code distribution tree.
#include "Coin.h"
#include "Aeternity/Address.h"
#include "Aion/Address.h"
#include "Algorand/Address.h"
#include "Binance/Address.h"
#include "Bitcoin/Address.h"
#include "Bitcoin/CashAddress.h"
#include "Bitcoin/SegwitAddress.h"
#include "Bravo/Address.h"
#include "Cardano/Address.h"
#include "Cosmos/Address.h"
#include "Decred/Address.h"
#include "EOS/Address.h"
#include "Ethereum/Address.h"
#include "FIO/Address.h"
#include "Groestlcoin/Address.h"
#include "Harmony/Address.h"
#include "Icon/Address.h"
#include "IoTeX/Address.h"
#include "Kusama/Address.h"
#include "NEAR/Address.h"
#include "NULS/Address.h"
#include "Nano/Address.h"
#include "Nebulas/Address.h"
#include "Nimiq/Address.h"
#include "Ontology/Address.h"
#include "Polkadot/Address.h"
#include "Ripple/Address.h"
#include "Ripple/XAddress.h"
#include "Solana/Address.h"
#include "Stellar/Address.h"
#include "TON/Address.h"
#include "Tezos/Address.h"
#include "Tron/Address.h"
#include "Wanchain/Address.h"
#include "Waves/Address.h"
#include "Zcash/TAddress.h"
#include "Zilliqa/Address.h"
#include <TrustWalletCore/TWHRP.h>
#pragma clang diagnostic push
#pragma clang diagnostic fatal "-Wswitch"
using namespace TW;
bool TW::validateAddress(TWCoinType coin, const std::string& string) {
auto p2pkh = TW::p2pkhPrefix(coin);
auto p2sh = TW::p2shPrefix(coin);
auto hrp = stringForHRP(TW::hrp(coin));
switch (coin) {
case TWCoinTypeAeternity:
return Aeternity::Address::isValid(string);
case TWCoinTypeAion:
return Aion::Address::isValid(string);
case TWCoinTypeBinance:
return Binance::Address::isValid(string);
case TWCoinTypeCosmos:
case TWCoinTypeKava:
case TWCoinTypeTerra:
return Cosmos::Address::isValid(string, hrp);
case TWCoinTypeBitcoin:
case TWCoinTypeDigiByte:
case TWCoinTypeLitecoin:
case TWCoinTypeMonacoin:
case TWCoinTypeQtum:
case TWCoinTypeViacoin:
return Bitcoin::SegwitAddress::isValid(string, hrp) ||
Bitcoin::Address::isValid(string, {{p2pkh}, {p2sh}});
case TWCoinTypeBitcoinCash:
return Bitcoin::CashAddress::isValid(string) ||
Bitcoin::Address::isValid(string, {{p2pkh}, {p2sh}});
case TWCoinTypeBravoCoin:
return Bravo::Address::isValid(string);
case TWCoinTypeDash:
case TWCoinTypeDogecoin:
case TWCoinTypeRavencoin:
case TWCoinTypeZcoin:
return Bitcoin::Address::isValid(string, {{p2pkh}, {p2sh}});
case TWCoinTypeDecred:
return Decred::Address::isValid(string);
case TWCoinTypeGroestlcoin:
return Bitcoin::SegwitAddress::isValid(string, hrp) ||
Groestlcoin::Address::isValid(string, {p2pkh, p2sh});
case TWCoinTypeCallisto:
case TWCoinTypeEthereum:
case TWCoinTypeEthereumClassic:
case TWCoinTypeGoChain:
case TWCoinTypePOANetwork:
case TWCoinTypeThunderToken:
case TWCoinTypeTomoChain:
case TWCoinTypeVeChain:
case TWCoinTypeTheta:
return Ethereum::Address::isValid(string);
case TWCoinTypeEOS:
return EOS::Address::isValid(string);
case TWCoinTypeFIO:
return FIO::Address::isValid(string);
case TWCoinTypeWanchain:
return Wanchain::Address::isValid(string);
case TWCoinTypeICON:
return Icon::Address::isValid(string);
case TWCoinTypeIoTeX:
return IoTeX::Address::isValid(string);
case TWCoinTypeOntology:
return Ontology::Address::isValid(string);
case TWCoinTypeNimiq:
return Nimiq::Address::isValid(string);
case TWCoinTypeXRP:
return Ripple::Address::isValid(string) || Ripple::XAddress::isValid(string);
case TWCoinTypeStellar:
case TWCoinTypeKin:
return Stellar::Address::isValid(string);
case TWCoinTypeTezos:
return Tezos::Address::isValid(string);
case TWCoinTypeTron:
return Tron::Address::isValid(string);
case TWCoinTypeZelcash:
case TWCoinTypeZcash:
return Zcash::TAddress::isValid(string);
case TWCoinTypeZilliqa:
return Zilliqa::Address::isValid(string);
case TWCoinTypeNano:
return Nano::Address::isValid(string);
case TWCoinTypeNEAR:
return NEAR::Address::isValid(string);
case TWCoinTypeNULS:
return NULS::Address::isValid(string);
case TWCoinTypeWaves:
return Waves::Address::isValid(string);
case TWCoinTypeNebulas:
return Nebulas::Address::isValid(string);
case TWCoinTypeHarmony:
return Harmony::Address::isValid(string);
case TWCoinTypeSolana:
return Solana::Address::isValid(string);
case TWCoinTypeTON:
return TON::Address::isValid(string);
case TWCoinTypeAlgorand:
return Algorand::Address::isValid(string);
case TWCoinTypeKusama:
return Kusama::Address::isValid(string);
case TWCoinTypePolkadot:
return Polkadot::Address::isValid(string);
case TWCoinTypeCardano:
return Cardano::Address::isValid(string);
}
}
std::string TW::deriveAddress(TWCoinType coin, const PrivateKey& privateKey) {
auto keyType = TW::publicKeyType(coin);
return TW::deriveAddress(coin, privateKey.getPublicKey(keyType));
}
std::string TW::deriveAddress(TWCoinType coin, const PublicKey& publicKey) {
auto p2pkh = TW::p2pkhPrefix(coin);
auto hrp = stringForHRP(TW::hrp(coin));
switch (coin) {
case TWCoinTypeAeternity:
return Aeternity::Address(publicKey).string();
case TWCoinTypeBinance:
return Binance::Address(publicKey).string();
case TWCoinTypeBitcoin:
case TWCoinTypeDigiByte:
case TWCoinTypeGroestlcoin:
case TWCoinTypeLitecoin:
case TWCoinTypeViacoin:
return Bitcoin::SegwitAddress(publicKey, 0, hrp).string();
case TWCoinTypeBitcoinCash:
return Bitcoin::CashAddress(publicKey).string();
case TWCoinTypeBravoCoin:
return Bravo::Address(publicKey).string();
case TWCoinTypeCosmos:
case TWCoinTypeKava:
case TWCoinTypeTerra:
return Cosmos::Address(hrp, publicKey).string();
case TWCoinTypeDash:
case TWCoinTypeDogecoin:
case TWCoinTypeMonacoin:
case TWCoinTypeQtum:
case TWCoinTypeRavencoin:
case TWCoinTypeZcoin:
return Bitcoin::Address(publicKey, p2pkh).string();
case TWCoinTypeDecred:
return Decred::Address(publicKey).string();
case TWCoinTypeCallisto:
case TWCoinTypeEthereum:
case TWCoinTypeEthereumClassic:
case TWCoinTypeGoChain:
case TWCoinTypePOANetwork:
case TWCoinTypeThunderToken:
case TWCoinTypeTomoChain:
case TWCoinTypeVeChain:
case TWCoinTypeTheta:
return Ethereum::Address(publicKey).string();
case TWCoinTypeEOS:
return EOS::Address(publicKey).string();
case TWCoinTypeFIO:
return FIO::Address(publicKey).string();
case TWCoinTypeWanchain:
return Wanchain::Address(publicKey).string();
case TWCoinTypeICON:
return Icon::Address(publicKey, TWIconAddressTypeAddress).string();
case TWCoinTypeIoTeX:
return IoTeX::Address(publicKey).string();
case TWCoinTypeOntology:
return Ontology::Address(publicKey).string();
case TWCoinTypeNimiq:
return Nimiq::Address(publicKey).string();
case TWCoinTypeAion:
return Aion::Address(publicKey).string();
case TWCoinTypeXRP:
return Ripple::Address(publicKey).string();
case TWCoinTypeTezos:
return Tezos::Address(publicKey).string();
case TWCoinTypeTron:
return Tron::Address(publicKey).string();
case TWCoinTypeZelcash:
case TWCoinTypeZcash:
return Zcash::TAddress(publicKey, p2pkh).string();
case TWCoinTypeZilliqa:
return Zilliqa::Address(publicKey).string();
case TWCoinTypeStellar:
case TWCoinTypeKin:
return Stellar::Address(publicKey).string();
case TWCoinTypeNano:
return Nano::Address(publicKey).string();
case TWCoinTypeNULS:
return NULS::Address(publicKey).string();
case TWCoinTypeNEAR:
return NEAR::Address(publicKey).string();
case TWCoinTypeWaves:
return Waves::Address(publicKey).string();
case TWCoinTypeNebulas:
return Nebulas::Address(publicKey).string();
case TWCoinTypeHarmony:
return Harmony::Address(publicKey).string();
case TWCoinTypeSolana:
return Solana::Address(publicKey).string();
case TWCoinTypeTON:
return TON::Address(publicKey).string();
case TWCoinTypeAlgorand:
return Algorand::Address(publicKey).string();
case TWCoinTypeKusama:
return Kusama::Address(publicKey).string();
case TWCoinTypePolkadot:
return Polkadot::Address(publicKey).string();
case TWCoinTypeCardano:
return Cardano::Address(publicKey).string();
}
}
#pragma clang diagnostic pop