org.ergoplatform.appkit.BlockchainContextBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ergo-appkit_2.11 Show documentation
Show all versions of ergo-appkit_2.11 Show documentation
A Library for Polyglot Development of Ergo Applications
The newest version!
package org.ergoplatform.appkit;
/**
* An interface used to build new blockchain contexts.
*/
public interface BlockchainContextBuilder {
/**
* Number of headers available in this context.
* This constant is defined by Ergo protocol and cannot be changed.
*/
int NUM_LAST_HEADERS = 10;
/**
* Builds a new context using parameters collected by this builder.
*/
BlockchainContext build() throws ErgoClientException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy