For the complete documentation index, see llms.txt. This page is also available as Markdown.

Mutations

Account Details

type AccountDetails {
  """ Public key hash of account """
  pkh: String!
  """ Balance of account """
  balance: String!
}

Block Description

type Block {
  """ Chain hash"""
  chainId: String!
  """ Block hash """
  hash: String!
  """ Protocol hash """
  protocol: String!
}

Transfer Transaction Confirmation

type TransferConfirmation {
  """ Flag indicating operation is completed """
  completed: Boolean!
  """ Total number of current confirmations """
  currentConfirmation: UInt32!
  """ Total expected confirmation """
  expectedConfirmation: UInt32!
  """ Block for confirmation"""
  block: Block!
}

Origination Response

Transaction Operation

Signed Message Result

Origination Confirmation Response

Call Contract Confirmation Response

Batch Contract Calls

Batch Contract Calls

Connect Temple Wallet

Wallet Contract Call Method

Wallet Originate

Call Contract Method

Call Contract and Wait for Confirmation

Transfer Tez

Transfer Tez and Wait for Confirmation

Sign Message

Originate Contract

Originate Contract and Wait for Confirmation

Last updated