org.polkadot.direct.IApi Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of polkadot-java Show documentation
Show all versions of polkadot-java Show documentation
Java Polkadot API, this is a clone of https://github.com/polkadot-java/api
The newest version!
package org.polkadot.direct;
import org.polkadot.api.Types;
import org.polkadot.types.rpc.RuntimeVersion;
import org.polkadot.types.type.Hash;
public interface IApi {
Hash getGenesisHash();
RuntimeVersion getRuntimeVersion();
Types.Derive derive();
Types.QueryableStorage query();
Types.DecoratedRpc rpc();
Types.SubmittableExtrinsics tx();
Types.Signer getSigner();
}