Queries

Get Public Key

  getPublicKey(
    connection: Connection
  ): String!

Get Public Key Hash

  getPublicKeyHash(
    connection: Connection
  ): String!

Get Reveal Transaction Estimate

  getRevealEstimate(
    connection: Connection
    params: RevealParams!
  ): EstimateResult!

Get Transfer Transaction Estimates

  getTransferEstimate(
    connection: Connection
    params: SendParams!
  ): EstimateResult!

Get Originate Transaction Estimate

  getOriginateEstimate(
    connection: Connection
    params: OriginateParams!
  ): EstimateResult! 

Check Address Availability

  checkAddress(
    connection: Connection
    address: String!
  ): Boolean!

Get Account Balance

  getBalance(
    connection: Connection
    address: String!
  ): String!

Get Contract Storage

  getContractStorage(
    address: String!
    key: String!
    field: String
    connection: Connection
  ): String!

Execute Tzip16View

  executeTzip16View(
    address: String!
    viewName: String!
    args: String!
    connection: Connection
  ): String!

Get Wallet Account Public Key Hash

  getWalletPKH(
    connection: Connection
  ): String!

Get Operation Status

  getOperationStatus(
    hash: String!
    network: GetOperationStatusSupportedNetworks!
  ): OperationStatus!

Encode Michelson Express to Bytes

  encodeMichelsonExpressionToBytes(
    expression: String!
    value: String!
  ): String!

Call Contract View

  callContractView(
    address: String!
    view: String!
    args: String
    connection: Connection
  ): String!

Get Transfer Parameters

  getContractCallTransferParams(
    address: String!
    method: String!
    args: String
    params: SendParams
    connection: Connection
  ): TransferParams!

Last updated