transaction to be invoked
a confirmation of invoking a function on the starknet contract
Gets the smart contract address on the goerli testnet.
starknet smart contract addresses
Calls a function on the StarkNet contract.
transaction to be invoked
the result of the function on the smart contract.
Gets the block information from a block ID.
the block object { block_id, previous_block_id, state_root, status, timestamp, transaction_receipts, transactions }
Gets the code of the deployed contract.
Bytecode and ABI of compiled contract
Gets the contract's storage variable at a specific key.
from getStorageVarAddress('
the value of the storage variable
Gets the status of a transaction.
the transaction status object { block_id, tx_status: NOT_RECEIVED | RECEIVED | PENDING | REJECTED | ACCEPTED_ONCHAIN }
Gets the transaction information from a tx id.
the transacton object { transaction_id, status, transaction, block_id?, block_number?, transaction_index?, transaction_failure_reason? }
Deploys a given compiled contract (json) to starknet
a json object containing the compiled contract
a confirmation of sending a transaction on the starknet contract
Invokes a function on starknet
target contract address for invoke
target entrypoint selector for
(optional, default []) calldata
(optional) signature to send along
response from addTransaction
Generated using TypeDoc
Invoke a function on the starknet contract
Reference