Skip to main content

Documentation Index

Fetch the complete documentation index at: https://sequence-0fb8d9e6-unreal-quickstart-with-marketplace.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

const transactions = [
  {
    to: '0x468E8e29F6cfb0F6b7ff10ec6A1AB516ec849c04',
    value: '1000000000000000000'
  }
]

// This sends the transaction to the transactions API, and returns immediately once the transactions API responds.
const response = await account.sendTransaction(transactions)

// This waits for the transaction to be confirmed on-chain.
const receipt = await response.wait()

console.log(JSON.stringify(receipt, undefined, 2))