org.tbk.electrum.bitcoinj.model.BitcoinjUtxo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tbk-electrum-daemon-client-bitcoinj Show documentation
Show all versions of tbk-electrum-daemon-client-bitcoinj Show documentation
electrum daemon jsonrpc client bitcoinj extension package
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