dx-ether-rs 0.0.1

Connect ether browser extension provider
Documentation
1
2
3
4
5
6
7
8
9
pub trait EtherGetTransactionReceiptPort: Send + Sync {
    type Output;
    type Error;

    fn eth_get_transaction_receipt(
        &self,
        transaction_hash: &str,
    ) -> impl Future<Output = Result<Self::Output, Self::Error>>;
}