📄️ Instance
Starknet.js Architecture
📄️ Create an account
Since there are no Externally Owned Accounts (EOA) in Starknet, all Accounts in Starknet are contracts.
📄️ Estimate fees
By default, all non-free Starknet commands (declare, deploy, invoke) work without any cost limits.
📄️ Signature
You can use Starknet.js to sign a message outside of the network, using the standard methods of hash and sign of Starknet. In this way, in some cases, you can avoid paying fees to store data in-chain; you transfer the signed message off-chain, and the recipient can verify (without fee) on-chain the validity of the message.
📄️ Execute calls using Paymaster
Overview
📄️ WalletAccount
Use wallets to sign transactions in your DAPP.
📄️ Outside Execution
Introduction