near-api-js: Missing functionality checklist & discussion
Nearlib expected to be used by DApps and DWallets and it functionality should cover:
- Blockchain structure:
- Block header by (
block.number
orblock.hash
) - Shard header by (
block
andshard.index
) orshard.hash
- Transaction header by (
shard
andtransaction.index
) ortransaction.hash
oraccount.nonce
oraddress.nonce
- Transaction header by (
shard
andtransaction.index
) ortransaction.hash
- Latest block number
- Main coin balance
- Merkle proofs of different structures
- Block header by (
- Account management:
- Transaction internal and external (hardware wallets) signing
- Custom message signing similar to EIP-712
- Smart contract interaction:
- Calling view methods of smart contract without on-chain tx
- Creating transactions by forming method call arguments
About this issue
- Original URL
- State: closed
- Created 5 years ago
- Comments: 17 (14 by maintainers)
@frol @k06a account balance can be queried through
query
rpc. Merkle root of tx results is included in the chunk header.