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
use crate::crypto::address::Address;
use crate::crypto::bip32::DerivedSecretKey;
use crate::crypto::bip44::ChildNumber;
use crate::crypto::SecretKey;
use crate::signer::{RosettaAccount, RosettaPublicKey, Signer};
use crate::types::{
    AccountBalanceRequest, AccountCoinsRequest, AccountFaucetRequest, AccountIdentifier, Amount,
    BlockIdentifier, BlockTransaction, Coin, ConstructionMetadataRequest,
    ConstructionSubmitRequest, PublicKey, SearchTransactionsRequest, SearchTransactionsResponse,
    TransactionIdentifier,
};
use crate::{BlockchainConfig, Client, TransactionBuilder};
use anyhow::{Context as _, Result};
use futures::{Future, Stream};
use rosetta_core::types::{
    Block, BlockRequest, BlockTransactionRequest, BlockTransactionResponse, CallRequest,
    CallResponse, PartialBlockIdentifier,
};
use serde_json::{json, Value};
use std::pin::Pin;
use std::task::{Context, Poll};
use surf::utils::async_trait;

pub enum GenericTransactionBuilder {
    Ethereum(rosetta_tx_ethereum::EthereumTransactionBuilder),
    Polkadot(rosetta_tx_polkadot::PolkadotTransactionBuilder),
}

impl GenericTransactionBuilder {
    pub fn new(config: &BlockchainConfig) -> Result<Self> {
        Ok(match config.blockchain {
            "ethereum" => Self::Ethereum(Default::default()),
            "polkadot" => Self::Polkadot(Default::default()),
            _ => anyhow::bail!("unsupported blockchain"),
        })
    }

    pub fn transfer(&self, address: &Address, amount: u128) -> Result<serde_json::Value> {
        Ok(match self {
            Self::Ethereum(tx) => serde_json::to_value(tx.transfer(address, amount)?)?,
            Self::Polkadot(tx) => serde_json::to_value(tx.transfer(address, amount)?)?,
        })
    }

    pub fn method_call(
        &self,
        contract: &str,
        method: &str,
        params: &[String],
    ) -> Result<serde_json::Value> {
        Ok(match self {
            Self::Ethereum(tx) => serde_json::to_value(tx.method_call(contract, method, params)?)?,
            Self::Polkadot(tx) => serde_json::to_value(tx.method_call(contract, method, params)?)?,
        })
    }

    pub fn deploy_contract(&self, contract_binary: Vec<u8>) -> Result<serde_json::Value> {
        Ok(match self {
            Self::Ethereum(tx) => serde_json::to_value(tx.deploy_contract(contract_binary)?)?,
            Self::Polkadot(tx) => serde_json::to_value(tx.deploy_contract(contract_binary)?)?,
        })
    }

    pub fn create_and_sign(
        &self,
        config: &BlockchainConfig,
        metadata_params: serde_json::Value,
        metadata: serde_json::Value,
        secret_key: &SecretKey,
    ) -> Vec<u8> {
        match self {
            Self::Ethereum(tx) => {
                let metadata_params = serde_json::from_value(metadata_params).unwrap();
                let metadata = serde_json::from_value(metadata).unwrap();
                tx.create_and_sign(config, &metadata_params, &metadata, secret_key)
            }
            Self::Polkadot(tx) => {
                let metadata_params = serde_json::from_value(metadata_params).unwrap();
                let metadata = serde_json::from_value(metadata).unwrap();
                tx.create_and_sign(config, &metadata_params, &metadata, secret_key)
            }
        }
    }
}

/// The wallet provides the main entry point to this crate.
pub struct Wallet {
    config: BlockchainConfig,
    client: Client,
    account: AccountIdentifier,
    secret_key: DerivedSecretKey,
    public_key: PublicKey,
    tx: GenericTransactionBuilder,
}

impl Wallet {
    /// Creates a new wallet from a config, signer and client.
    pub fn new(config: BlockchainConfig, signer: &Signer, client: Client) -> Result<Self> {
        let tx = GenericTransactionBuilder::new(&config)?;
        let secret_key = if config.bip44 {
            signer
                .bip44_account(config.algorithm, config.coin, 0)?
                .derive(ChildNumber::non_hardened_from_u32(0))?
        } else {
            signer.master_key(config.algorithm)?.clone()
        };
        let public_key = secret_key.public_key();
        let account = public_key.to_address(config.address_format).to_rosetta();
        let public_key = public_key.to_rosetta();
        Ok(Self {
            config,
            client,
            account,
            secret_key,
            public_key,
            tx,
        })
    }

    /// Returns the blockchain config.
    pub fn config(&self) -> &BlockchainConfig {
        &self.config
    }

    /// Returns the rosetta client.
    pub fn client(&self) -> &Client {
        &self.client
    }

    /// Returns the public key.
    pub fn public_key(&self) -> &PublicKey {
        &self.public_key
    }

    /// Returns the account identifier.
    pub fn account(&self) -> &AccountIdentifier {
        &self.account
    }

    /// Returns the current block identifier.
    pub async fn status(&self) -> Result<BlockIdentifier> {
        let status = self.client.network_status(self.config.network()).await?;
        Ok(status.current_block_identifier)
    }

    /// Returns the balance of the wallet.
    pub async fn balance(&self) -> Result<Amount> {
        let balance = self
            .client
            .account_balance(&AccountBalanceRequest {
                network_identifier: self.config.network(),
                account_identifier: self.account.clone(),
                block_identifier: None,
                currencies: Some(vec![self.config.currency()]),
            })
            .await?;
        Ok(balance.balances[0].clone())
    }

    /// Returns block data
    /// Takes PartialBlockIdentifier
    pub async fn block(&self, data: PartialBlockIdentifier) -> Result<Block> {
        let req = BlockRequest {
            network_identifier: self.config.network(),
            block_identifier: data,
        };
        let block = self.client.block(&req).await?;
        block.block.context("block not found")
    }

    /// Returns transactions included in a block
    /// Parameters:
    /// 1. block_identifier: BlockIdentifier containing block number and hash
    /// 2. tx_identifier: TransactionIdentifier containing hash of transaction
    pub async fn block_transaction(
        &self,
        block_identifer: BlockIdentifier,
        tx_identifier: TransactionIdentifier,
    ) -> Result<BlockTransactionResponse> {
        let req = BlockTransactionRequest {
            network_identifier: self.config.network(),
            block_identifier: block_identifer,
            transaction_identifier: tx_identifier,
        };
        let block = self.client.block_transaction(&req).await?;
        Ok(block)
    }

    /// Extension of rosetta-api does multiple things
    /// 1. fetching storage
    /// 2. calling extrinsic/contract
    pub async fn call(&self, method: String, params: &serde_json::Value) -> Result<CallResponse> {
        let req = CallRequest {
            network_identifier: self.config.network(),
            method,
            parameters: params.clone(),
        };
        let response = self.client.call(&req).await?;
        Ok(response)
    }

    /// Returns the coins of the wallet.
    pub async fn coins(&self) -> Result<Vec<Coin>> {
        let coins = self
            .client
            .account_coins(&AccountCoinsRequest {
                network_identifier: self.config.network(),
                account_identifier: self.account.clone(),
                include_mempool: false,
                currencies: Some(vec![self.config.currency()]),
            })
            .await?;
        Ok(coins.coins)
    }

    /// Returns the on chain metadata.
    /// Parameters:
    /// - metadata_params: the metadata parameters which we got from transaction builder.
    pub async fn metadata(&self, metadata_params: serde_json::Value) -> Result<serde_json::Value> {
        let req = ConstructionMetadataRequest {
            network_identifier: self.config.network(),
            options: Some(metadata_params),
            public_keys: vec![self.public_key.clone()],
        };
        let response = self.client.construction_metadata(&req).await?;
        Ok(response.metadata)
    }

    /// Submits a transaction and returns the transaction identifier.
    /// Parameters:
    /// - transaction: the transaction bytes to submit
    pub async fn submit(&self, transaction: &[u8]) -> Result<TransactionIdentifier> {
        let req = ConstructionSubmitRequest {
            network_identifier: self.config.network(),
            signed_transaction: hex::encode(transaction),
        };
        let submit = self.client.construction_submit(&req).await?;
        Ok(submit.transaction_identifier)
    }

    /// Creates, signs and submits a transaction.
    pub async fn construct(&self, metadata_params: Value) -> Result<TransactionIdentifier> {
        let metadata = self.metadata(metadata_params.clone()).await?;
        let transaction = self.tx.create_and_sign(
            &self.config,
            metadata_params,
            metadata,
            self.secret_key.secret_key(),
        );
        self.submit(&transaction).await
    }

    /// Makes a transfer.
    /// Parameters:
    /// - account: the account to transfer to
    /// - amount: the amount to transfer
    pub async fn transfer(
        &self,
        account: &AccountIdentifier,
        amount: u128,
    ) -> Result<TransactionIdentifier> {
        let address = Address::new(self.config.address_format, account.address.clone());
        let metadata_params = self.tx.transfer(&address, amount)?;
        self.construct(metadata_params).await
    }

    /// Uses the faucet on dev chains to seed the account with funds.
    /// Parameters:
    /// - faucet_parameter: the amount to seed the account with
    pub async fn faucet(&self, faucet_parameter: u128) -> Result<TransactionIdentifier> {
        let req = AccountFaucetRequest {
            network_identifier: self.config.network(),
            account_identifier: self.account.clone(),
            faucet_parameter,
        };
        let resp = self.client.account_faucet(&req).await?;
        Ok(resp.transaction_identifier)
    }

    /// Returns the transaction matching the transaction identifier.
    /// Parameters:
    /// - tx: the transaction identifier to search for.
    pub async fn transaction(&self, tx: TransactionIdentifier) -> Result<BlockTransaction> {
        let req = SearchTransactionsRequest {
            network_identifier: self.config().network(),
            operator: None,
            max_block: None,
            offset: None,
            limit: None,
            transaction_identifier: Some(tx),
            account_identifier: None,
            coin_identifier: None,
            currency: None,
            status: None,
            r#type: None,
            address: None,
            success: None,
        };
        let resp = self.client.search_transactions(&req).await?;
        anyhow::ensure!(resp.transactions.len() == 1);
        Ok(resp.transactions[0].clone())
    }

    /// Returns a stream of transactions associated with the account.
    pub fn transactions(&self, limit: u16) -> TransactionStream {
        let req = SearchTransactionsRequest {
            network_identifier: self.config().network(),
            operator: None,
            max_block: None,
            offset: None,
            limit: Some(limit as i64),
            transaction_identifier: None,
            account_identifier: Some(self.account.clone()),
            coin_identifier: None,
            currency: None,
            status: None,
            r#type: None,
            address: None,
            success: None,
        };
        TransactionStream::new(self.client.clone(), req)
    }
}

/// Extension trait for the wallet. for ethereum chain
#[async_trait]
pub trait EthereumExt {
    /// deploys contract to chain
    async fn eth_deploy_contract(&self, bytecode: Vec<u8>) -> Result<TransactionIdentifier>;
    /// calls a contract view call function
    async fn eth_view_call(
        &self,
        contract_address: &str,
        method_signature: &str,
    ) -> Result<CallResponse>;
    /// calls contract send call function
    async fn eth_send_call(
        &self,
        contract_address: &str,
        method_signature: &str,
        params: &[String],
    ) -> Result<TransactionIdentifier>;
    /// gets storage from ethereum contract
    async fn eth_storage(&self, contract_address: &str, storage_slot: &str)
        -> Result<CallResponse>;
    /// gets storage proof from ethereum contract
    async fn eth_storage_proof(
        &self,
        contract_address: &str,
        storage_slot: &str,
    ) -> Result<CallResponse>;
    /// gets transaction receipt of specific hash
    async fn eth_transaction_receipt(&self, tx_hash: &str) -> Result<CallResponse>;
}

#[async_trait]
impl EthereumExt for Wallet {
    async fn eth_deploy_contract(&self, bytecode: Vec<u8>) -> Result<TransactionIdentifier> {
        let metadata_params = self.tx.deploy_contract(bytecode)?;
        self.construct(metadata_params).await
    }

    async fn eth_send_call(
        &self,
        contract_address: &str,
        method_signature: &str,
        params: &[String],
    ) -> Result<TransactionIdentifier> {
        let metadata_params = self
            .tx
            .method_call(contract_address, method_signature, params)?;
        self.construct(metadata_params).await
    }

    async fn eth_view_call(
        &self,
        contract_address: &str,
        method_signature: &str,
    ) -> Result<CallResponse> {
        let method = format!("{}-{}-call", contract_address, method_signature);
        self.call(method, &json!({})).await
    }

    async fn eth_storage(
        &self,
        contract_address: &str,
        storage_slot: &str,
    ) -> Result<CallResponse> {
        let method = format!("{}-{}-storage", contract_address, storage_slot);
        self.call(method, &json!({})).await
    }

    async fn eth_storage_proof(
        &self,
        contract_address: &str,
        storage_slot: &str,
    ) -> Result<CallResponse> {
        let method = format!("{}-{}-storage_proof", contract_address, storage_slot);
        self.call(method, &json!({})).await
    }

    async fn eth_transaction_receipt(&self, tx_hash: &str) -> Result<CallResponse> {
        let call_method = format!("{}--transaction_receipt", tx_hash);
        self.call(call_method, &json!({})).await
    }
}

/// A paged transaction stream.
pub struct TransactionStream {
    client: Client,
    request: SearchTransactionsRequest,
    future: Option<Pin<Box<dyn Future<Output = Result<SearchTransactionsResponse>> + 'static>>>,
    finished: bool,
    total_count: Option<i64>,
}

impl TransactionStream {
    fn new(client: Client, mut request: SearchTransactionsRequest) -> Self {
        request.offset = Some(0);
        Self {
            client,
            request,
            future: None,
            finished: false,
            total_count: None,
        }
    }

    /// Returns the total number of transactions.
    pub fn total_count(&self) -> Option<i64> {
        self.total_count
    }
}

impl Stream for TransactionStream {
    type Item = Result<Vec<BlockTransaction>>;

    fn poll_next(mut self: Pin<&mut Self>, cx: &mut Context) -> Poll<Option<Self::Item>> {
        loop {
            if self.finished {
                return Poll::Ready(None);
            } else if let Some(future) = self.future.as_mut() {
                futures::pin_mut!(future);
                match future.poll(cx) {
                    Poll::Pending => return Poll::Pending,
                    Poll::Ready(Ok(response)) => {
                        self.future.take();
                        self.request.offset = response.next_offset;
                        self.total_count = Some(response.total_count);
                        if response.transactions.len() < self.request.limit.unwrap() as _ {
                            self.finished = true;
                        }
                        if response.transactions.is_empty() {
                            continue;
                        }
                        return Poll::Ready(Some(Ok(response.transactions)));
                    }
                    Poll::Ready(Err(error)) => {
                        self.future.take();
                        return Poll::Ready(Some(Err(error)));
                    }
                };
            } else {
                let client = self.client.clone();
                let request = self.request.clone();
                self.future = Some(Box::pin(async move {
                    client.search_transactions(&request).await
                }));
            }
        }
    }
}