-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathRNZcashModule.kt
More file actions
483 lines (448 loc) · 17.9 KB
/
RNZcashModule.kt
File metadata and controls
483 lines (448 loc) · 17.9 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
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
package app.edge.rnzcash
import cash.z.ecc.android.sdk.SdkSynchronizer
import cash.z.ecc.android.sdk.Synchronizer
import cash.z.ecc.android.sdk.WalletInitMode
import cash.z.ecc.android.sdk.exception.LightWalletException
import cash.z.ecc.android.sdk.ext.*
import cash.z.ecc.android.sdk.internal.*
import cash.z.ecc.android.sdk.model.*
import cash.z.ecc.android.sdk.tool.DerivationTool
import cash.z.ecc.android.sdk.type.*
import co.electriccoin.lightwallet.client.LightWalletClient
import co.electriccoin.lightwallet.client.model.LightWalletEndpoint
import co.electriccoin.lightwallet.client.model.Response
import co.electriccoin.lightwallet.client.new
import com.facebook.react.bridge.*
import com.facebook.react.modules.core.DeviceEventManagerModule.RCTDeviceEventEmitter
import kotlinx.coroutines.CoroutineScope
import kotlinx.coroutines.Dispatchers
import kotlinx.coroutines.async
import kotlinx.coroutines.flow.*
import kotlinx.coroutines.launch
import java.util.Base64
class RNZcashModule(
private val reactContext: ReactApplicationContext,
) : ReactContextBaseJavaModule(reactContext) {
/**
* Scope for anything that out-lives the synchronizer, meaning anything that can be used before
* the synchronizer starts or after it stops. Everything else falls within the scope of the
* synchronizer and should use `synchronizer.coroutineScope` whenever a scope is needed.
*/
private var moduleScope: CoroutineScope = CoroutineScope(Dispatchers.IO)
private var synchronizerMap = mutableMapOf<String, SdkSynchronizer>()
private val networks = mapOf("mainnet" to ZcashNetwork.Mainnet, "testnet" to ZcashNetwork.Testnet)
override fun getName() = "RNZcash"
@ReactMethod
fun initialize(
seed: String,
birthdayHeight: Int,
alias: String,
networkName: String = "mainnet",
defaultHost: String = "mainnet.lightwalletd.com",
defaultPort: Int = 9067,
newWallet: Boolean,
promise: Promise,
) {
moduleScope.launch {
promise.wrap {
val network = networks.getOrDefault(networkName, ZcashNetwork.Mainnet)
val endpoint = LightWalletEndpoint(defaultHost, defaultPort, true)
val seedPhrase = SeedPhrase.new(seed)
val initMode = if (newWallet) WalletInitMode.NewWallet else WalletInitMode.ExistingWallet
if (!synchronizerMap.containsKey(alias)) {
synchronizerMap[alias] =
Synchronizer.new(
reactApplicationContext,
network,
alias,
endpoint,
seedPhrase.toByteArray(),
BlockHeight.new(birthdayHeight.toLong()),
initMode,
) as SdkSynchronizer
}
val wallet = getWallet(alias)
val scope = wallet.coroutineScope
combine(wallet.progress, wallet.networkHeight) { progress, networkHeight ->
return@combine mapOf("progress" to progress, "networkHeight" to networkHeight)
}.collectWith(scope) { map ->
val progress = map["progress"] as PercentDecimal
var networkBlockHeight = map["networkHeight"] as BlockHeight?
if (networkBlockHeight == null) networkBlockHeight = BlockHeight.new(birthdayHeight.toLong())
sendEvent("UpdateEvent") { args ->
args.putString("alias", alias)
args.putInt(
"scanProgress",
progress.toPercentage(),
)
args.putInt("networkBlockHeight", networkBlockHeight.value.toInt())
}
}
wallet.status.collectWith(scope) { status ->
sendEvent("StatusEvent") { args ->
args.putString("alias", alias)
args.putString("name", status.toString())
}
}
wallet.transactions.collectWith(scope) { txList ->
scope.launch {
val nativeArray = Arguments.createArray()
txList
.filter { tx -> tx.transactionState != TransactionState.Expired }
.map { tx ->
launch {
val parsedTx = parseTx(wallet, tx)
nativeArray.pushMap(parsedTx)
}
}.forEach { it.join() }
sendEvent("TransactionEvent") { args ->
args.putString("alias", alias)
args.putArray(
"transactions",
nativeArray,
)
}
}
}
combine(
wallet.transparentBalance,
wallet.saplingBalances,
wallet.orchardBalances,
) { transparentBalance: Zatoshi?, saplingBalances: WalletBalance?, orchardBalances: WalletBalance? ->
return@combine Balances(
transparentBalance = transparentBalance,
saplingBalances = saplingBalances,
orchardBalances = orchardBalances,
)
}.collectWith(scope) { map ->
val transparentBalance = map.transparentBalance
val saplingBalances = map.saplingBalances
val orchardBalances = map.orchardBalances
val transparentAvailableZatoshi = transparentBalance ?: Zatoshi(0L)
val transparentTotalZatoshi = transparentBalance ?: Zatoshi(0L)
val saplingAvailableZatoshi = saplingBalances?.available ?: Zatoshi(0L)
val saplingTotalZatoshi = saplingBalances?.total ?: Zatoshi(0L)
val orchardAvailableZatoshi = orchardBalances?.available ?: Zatoshi(0L)
val orchardTotalZatoshi = orchardBalances?.total ?: Zatoshi(0L)
sendEvent("BalanceEvent") { args ->
args.putString("alias", alias)
args.putString("transparentAvailableZatoshi", transparentAvailableZatoshi.value.toString())
args.putString("transparentTotalZatoshi", transparentTotalZatoshi.value.toString())
args.putString("saplingAvailableZatoshi", saplingAvailableZatoshi.value.toString())
args.putString("saplingTotalZatoshi", saplingTotalZatoshi.value.toString())
args.putString("orchardAvailableZatoshi", orchardAvailableZatoshi.value.toString())
args.putString("orchardTotalZatoshi", orchardTotalZatoshi.value.toString())
}
}
fun handleError(
level: String,
error: Throwable?,
) {
sendEvent("ErrorEvent") { args ->
args.putString("alias", alias)
args.putString("level", level)
args.putString("message", error?.message ?: "Unknown error")
}
}
// Error listeners
wallet.onCriticalErrorHandler = { error ->
handleError("critical", error)
false
}
wallet.onProcessorErrorHandler = { error ->
handleError("error", error)
true
}
wallet.onSetupErrorHandler = { error ->
handleError("error", error)
false
}
wallet.onSubmissionErrorHandler = { error ->
handleError("error", error)
false
}
wallet.onChainErrorHandler = { errorHeight, rewindHeight ->
val message = "Chain error detected at height: $errorHeight. Rewinding to: $rewindHeight"
handleError("error", Throwable(message))
}
return@wrap null
}
}
}
@ReactMethod
fun stop(
alias: String,
promise: Promise,
) {
promise.wrap {
val wallet = getWallet(alias)
wallet.close()
synchronizerMap.remove(alias)
return@wrap null
}
}
private suspend fun parseTx(
wallet: SdkSynchronizer,
tx: TransactionOverview,
): WritableMap {
val map = Arguments.createMap()
val job =
wallet.coroutineScope.launch {
map.putString("value", tx.netValue.value.toString())
if (tx.feePaid != null) {
map.putString("fee", tx.feePaid!!.value.toString())
}
map.putInt("minedHeight", tx.minedHeight?.value?.toInt() ?: 0)
map.putInt("blockTimeInSeconds", tx.blockTimeEpochSeconds?.toInt() ?: 0)
map.putString("rawTransactionId", tx.txIdString())
if (tx.raw != null) {
map.putString("raw", tx.raw!!.byteArray.toHex())
}
if (tx.isSentTransaction) {
try {
val recipient = wallet.getRecipients(tx).first()
if (recipient is TransactionRecipient.Address) {
map.putString("toAddress", recipient.addressValue)
}
} catch (t: Throwable) {
// Error is OK. SDK limitation means we cannot find recipient for shielding transactions
}
}
if (tx.memoCount > 0) {
val memos = wallet.getMemos(tx).take(tx.memoCount).toList()
map.putArray("memos", Arguments.fromList(memos))
} else {
map.putArray("memos", Arguments.createArray())
}
}
job.join()
return map
}
@ReactMethod
fun rescan(
alias: String,
promise: Promise,
) {
val wallet = getWallet(alias)
wallet.coroutineScope.launch {
promise.wrap {
wallet.rewindToNearestHeight(wallet.latestBirthdayHeight)
return@wrap null
}
}
}
@ReactMethod
fun deriveViewingKey(
seed: String,
network: String = "mainnet",
promise: Promise,
) {
moduleScope.launch {
promise.wrap {
val seedPhrase = SeedPhrase.new(seed)
val keys =
DerivationTool.getInstance().deriveUnifiedFullViewingKeys(
seedPhrase.toByteArray(),
networks.getOrDefault(network, ZcashNetwork.Mainnet),
DerivationTool.DEFAULT_NUMBER_OF_ACCOUNTS,
)[0]
return@wrap keys.encoding
}
}
}
//
// Properties
//
@ReactMethod
fun getLatestNetworkHeight(
alias: String,
promise: Promise,
) = promise.wrap {
val wallet = getWallet(alias)
return@wrap wallet.latestHeight
}
@ReactMethod
fun getBirthdayHeight(
host: String,
port: Int,
promise: Promise,
) {
moduleScope.launch {
promise.wrap {
val endpoint = LightWalletEndpoint(host, port, true)
val lightwalletService = LightWalletClient.new(reactApplicationContext, endpoint)
return@wrap when (val response = lightwalletService.getLatestBlockHeight()) {
is Response.Success -> {
response.result.value.toInt()
}
is Response.Failure -> {
throw LightWalletException.DownloadBlockException(
response.code,
response.description,
response.toThrowable(),
)
}
}
}
}
}
@ReactMethod
fun proposeTransfer(
alias: String,
zatoshi: String,
toAddress: String,
memo: String = "",
promise: Promise,
) {
val wallet = getWallet(alias)
wallet.coroutineScope.launch {
try {
val proposal =
wallet.proposeTransfer(
Account.DEFAULT,
toAddress,
Zatoshi(zatoshi.toLong()),
memo,
)
val map = Arguments.createMap()
map.putInt("transactionCount", proposal.transactionCount())
map.putString("totalFee", proposal.totalFeeRequired().value.toString())
map.putString("proposalBase64", Base64.getEncoder().encodeToString(proposal.toByteArray()))
promise.resolve(map)
} catch (t: Throwable) {
promise.reject("Err", t)
}
}
}
@kotlin.ExperimentalStdlibApi
@ReactMethod
fun createTransfer(
alias: String,
proposalBase64: String,
seed: String,
promise: Promise,
) {
val wallet = getWallet(alias)
wallet.coroutineScope.launch {
try {
val seedPhrase = SeedPhrase.new(seed)
val usk = DerivationTool.getInstance().deriveUnifiedSpendingKey(seedPhrase.toByteArray(), wallet.network, Account.DEFAULT)
val proposalByteArray = Base64.getDecoder().decode(proposalBase64)
val proposal = Proposal.fromByteArray(proposalByteArray)
val txs =
wallet.coroutineScope
.async {
wallet.createProposedTransactions(proposal, usk).take(proposal.transactionCount()).toList()
}.await()
val txid = txs[txs.lastIndex].txIdString() // The last transfer is the most relevant to the user
promise.resolve(txid)
} catch (t: Throwable) {
promise.reject("Err", t)
}
}
}
@ReactMethod
fun shieldFunds(
alias: String,
seed: String,
memo: String,
threshold: String,
promise: Promise,
) {
val wallet = getWallet(alias)
wallet.coroutineScope.launch {
try {
val seedPhrase = SeedPhrase.new(seed)
val usk = DerivationTool.getInstance().deriveUnifiedSpendingKey(seedPhrase.toByteArray(), wallet.network, Account.DEFAULT)
val internalId =
wallet.shieldFunds(
usk,
memo,
)
val tx = wallet.coroutineScope.async { wallet.transactions.first().first() }.await()
val parsedTx = parseTx(wallet, tx)
// Hack: Memos aren't ready to be queried right after broadcast
val memos = Arguments.createArray()
memos.pushString(memo)
parsedTx.putArray("memos", memos)
promise.resolve(parsedTx)
} catch (t: Throwable) {
promise.reject("Err", t)
}
}
}
//
// AddressTool
//
@ReactMethod
fun deriveUnifiedAddress(
alias: String,
promise: Promise,
) {
val wallet = getWallet(alias)
wallet.coroutineScope.launch {
promise.wrap {
val unifiedAddress = wallet.getUnifiedAddress(Account(0))
val saplingAddress = wallet.getSaplingAddress(Account(0))
val transparentAddress = wallet.getTransparentAddress(Account(0))
val map = Arguments.createMap()
map.putString("unifiedAddress", unifiedAddress)
map.putString("saplingAddress", saplingAddress)
map.putString("transparentAddress", transparentAddress)
return@wrap map
}
}
}
@ReactMethod
fun isValidAddress(
address: String,
network: String,
promise: Promise,
) {
moduleScope.launch {
promise.wrap {
var isValid = false
val wallets = synchronizerMap.asIterable()
for (wallet in wallets) {
if (wallet.value.network.networkName == network) {
isValid = wallet.value.isValidAddress(address)
break
}
}
return@wrap isValid
}
}
}
//
// Utilities
//
/**
* Retrieve wallet object from synchronizer map
*/
private fun getWallet(alias: String): SdkSynchronizer = synchronizerMap[alias] ?: throw Exception("Wallet not found")
/**
* Wrap the given block of logic in a promise, rejecting for any error.
*/
private inline fun <T> Promise.wrap(block: () -> T) {
try {
resolve(block())
} catch (t: Throwable) {
reject("Err", t)
}
}
private fun sendEvent(
eventName: String,
putArgs: (WritableMap) -> Unit,
) {
val args = Arguments.createMap()
putArgs(args)
reactApplicationContext
.getJSModule(RCTDeviceEventEmitter::class.java)
.emit(eventName, args)
}
data class Balances(
val transparentBalance: Zatoshi?,
val saplingBalances: WalletBalance?,
val orchardBalances: WalletBalance?,
)
}