Manta-Network / manta-rs

Rust Crates for the Manta Network Ecosystem

Home Page:https://github.com/Manta-Network

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Viewing Key Protocol

bhgomes opened this issue · comments

To use the viewing key we want an API like the following:

fn find_transactions(ledger, viewing_key) -> Vec<Transaction>;

enum Transaction {
    Deposit(Asset),
    Withdraw(Asset),
}