Are you an LLM? Read llms.txt for a summary of the docs, or llms-full.txt for the full context.
Skip to content

Tx

A signed transaction ready for Info.broadcast_tx_sync.

Definition

class Tx(TypedDict):
    sender: Addr
    gas_limit: int
    msgs: list[Message]
    data: Metadata
    credential: Credential

Fields

senderAddr. The signing account address.

gas_limitint. Gas budget (typically simulate.gas_used + DEFAULT_GAS_OVERHEAD).

msgslist[Message].

dataMetadata.

credentialCredential. The wrapped signature envelope ({"standard": {key_hash, signature}} for secp256k1).

See also