All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.tbk.electrum.bitcoinj.model.BitcoinjUtxo Maven / Gradle / Ivy

The newest version!
package org.tbk.electrum.bitcoinj.model;

import org.bitcoinj.core.Coin;
import org.bitcoinj.core.Sha256Hash;

public interface BitcoinjUtxo {

    Sha256Hash getTxHash();

    int getTxPos();

    long getHeight();

    Coin getValue();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy