Skip to content

Files

Latest commit

 

History

History
 
 

ywallet

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

YWallet

YWallet stores it's data in an sqlite database.

Objects Stored

Account

name: TEXT NOT NULL
seed: TEXT
account_index: INTEGER NOT NULL
spending_key: TEXT
incoming_viewing_key: TEXT NOT NULL UNIQUE
address: TEXT NOT NULL,
diversifiers: ARRAY(INTEGER)

Transaction

account: Account NOT NULL
txid: BLOB NOT NULL
height: INTEGER NOT NULL
timestamp: INTEGER NOT NULL
value: INTEGER NOT NULL
address: TEXT
memo: TEXT
tx_index: INTEGER

With:

(height, tx_index, account) UNIQUE

Block

height: INTEGER NOT NULL
hash: BLOB NOT NULL
timestamp: INTEGER NOT NULL
sapling_tree: BLOB NOT NULL