koinos / koinos-account-history

The account history microservice saves transaction history and provides an API to the Koinos cluster via RPC over AMQP.
MIT License
1 stars 0 forks source link

Account history #1

Closed sgerbino closed 1 year ago

sgerbino commented 2 years ago

As a blockchain user, I would like a way to query a specific accounts history.

A transaction is added to an account's history if the account is a payer, payee, called contract, event source, or event impacted account.

All RPC calls must support and enforce pagination and have simple semantics for returning the last N transactions of an account's history.

get_account_history_request {
   bytes address = 1;
   optional uint64 seq_num = 2;
   uint64 limit = 3;
   bool ascending = 4;
}
sgerbino commented 1 year ago

Resolved by initial repo creation.