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

tech.coinbub.daemon.niko.ScriptPublicKey Maven / Gradle / Ivy

package tech.coinbub.daemon.niko;

import com.fasterxml.jackson.annotation.JsonInclude;
import java.util.List;

@JsonInclude(JsonInclude.Include.NON_NULL)
public class ScriptPublicKey {
    public String asm;
    public String hex;
    public long reqSigs;
    public Type type;
    public List addresses;
    
    public enum Type {
        pubkey,
        pubkeyhash,
        nonstandard
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy