@orangecheck/vote-core / UtxoLookup
Type Alias: UtxoLookup
type UtxoLookup = (addr: string, snapshot: number) =>
| Utxo[]
| Promise<Utxo[]>;
Defined in: types.ts:80
(addr, snapshot_height) -> list of UTXOs controlled by addr at that height.
Parameters
| Parameter | Type |
|---|---|
addr | string |
snapshot | number |