TerraClient

arrayToJson

Helper function to convert Uint8Array to JSON.

function arrayToJson(array: Uint8Array) {
  const jsonString = Buffer.from(array).toString("utf8");

  const parsedData = JSON.parse(jsonString);
  return parsedData;
}

Class

A client to interact with the cosmos hub chain.

export default class TerraClient
  extends BaseChainClient
  implements ChainClient
{
  private directSigner?: OfflineDirectSigner;
  public signingClient?: LCDClient;
  ...
  }
Name
Type
Description

directSigner

The signer to sign the messages.

signingClient

An object repesenting a connection to a terrad node running the Lite Client Daemon (LCD) server, a REST server providing access to a node.

Methods

connect

Connects to the given chain. Assigns all clients used within the chain client, if a signer is provided a signing client is assigned.

Name
Type
Description

endpoint

string

The endpoint of the chain to connect to.

signer

Optional signer used to sign the messages.

disconnect

Disconnects the assigned clients.

sign

Signs a given message with the connected signer

Name
Type
Description

messages

EncodeObject[]

The messages to sign.

fee

Fee to attach. Defaults to auto if not specified.

memo

string

Optional memo to attach. Defaults to an empty string.

Fee

broadcast

Broadcasts a given transaction to the connected client.

Name
Type
Description

tx

The transaction to broadcast.

CreateTx

Creates a tx from the given message.

Name
Type
Description

messages

EncodeObject[]

The messages to create a tx from.

fee

Fee to attach. Defaults to auto if not specified.

memo

string

Optional memo to attach. Defaults to an empty string.

signAndBroadcast

Signs a given message before broadcasting it to the connected chain.

Name
Type
Description

messages

The messages to sign and broadcast.

fee

The fee to pay for signing and broadcasting the message. Defaults to auto if not specified.

memo

string or undefined

An optional memo to attach to the transaction.

EncodeObject

simulateMulti

Simulates all given messages and returns a gas fee estimate.

Name
Type
Description

messages

The messages to simulate.

fee

Fee or underfined

The fee attached to the message.

memo

string or undefined

Optional memo to attach to the transaction.

simulate

Simulates the given message and returns a gas fee estimate.

Name
Type
Description

message

The message to simulate.

fee

Fee or undefined

Fee attached to the message.

memo

string or undefined

Optional memo to attach to the transaction.

execute

Executes a message on the specified contract.

Name
Type
Description

contractAddress

string

The contract address to execute on.

msg

The execute message.

fee

The fee amount to pay for to execut. Defaults to auto if not specified.

memo

string

Optional memo to attach to the transaction.

funds

Optional funds to attach along with the message.

Msg

simulateExecute

Simulates an execute message and returns a gas fee estimate.

Name
Type
Description

address

string

The contract address you are executing on.

msg

The execute message to simulate.

funds

The funds attached along with the message.

fee

Fee or undefined

Fee amount for executing the message.

memo

string or undefined

Optional memo to add to the transaction.

upload

Uploads given contract code (Uint8Array) to the chain.

Name
Type
Description

code

Uint8Array

The wasm binary code to upload to the connected client.

fee

Fee or undefined

Fee to pay for uploading.

memo

string or undefined

Optional memo to add to the transaction.

simulateUpload

Simulate an upload message and returns a gas fee estimate.

Name
Type
Description

code

Uint8Array

The wasm binary code to simulate uploading.

_fee

Fee to pay for uploading.

memo

string or undefined

Optional memo to add to the transaction.

instantiate

Instantiates a contract with the given code id using the provided instantiate message.

Name
Type
Description

codeId

number

The code Id of the contract to instantiate.

msg

The instantiation message.

label

string

A label for the instantiation. Can be any string such as " instantiating a CW721" or "my_label" ect...

fee

Fee to pay for instantiation. Defaults to auto.

options

The options of an .instantiate() call. All properties are optional.

simulateInstantiate

Simulates an instantiation message and returns a gas fee estimate.

Name
Type
Description

codeId

number

The code Id of the contract to instantiate.

msg

The instantiation message.

label

string

A label for the instantiation. Can be any string such as " instantiating a CW721" or "my_label" ect...

fee

Fee to pay for instantiation. Defaults to auto if not specified.

options

The options of an .instantiate() call. All properties are optional.

migrate

Migrates a contract to a given code id.

Name
Type
Description

contractAddress

string

The address of the contract that you want to migrate.

codeId

number

The code Id to migrate to.

msg

The migrate message.

fee

The fee to pay for the migration. Defaults to auto if not specfied.

memo

string or undefined

Optional memo to attach to the transaction.

simulateMigrate

Simulates a migrate message for a given contract address, code id and migrate message and returns a gas estimate.

Name
Type
Description

contractAddress

string

The contract address that you want to migrate.

codeId

number

The code Id to migrate to.

msg

Msg

The migrate message.

fee

Fee to pay to send the funds. Defaults to auto if not specifed.

memo

string

Optional memo to attach to the transaction.

sendTokens

Sends tokens from the signing address to the provided receiving address.

Name
Type
Description

receivingAddress

string

The address to receive the tokens.

amount

Coin []

The funds to send.

fee

Fee to pay to send the funds. Defaults to auto if not specified.

memo

string

Optional memo to attach to the transaction.

Last updated