πSDK
In Matmo's SDK content, it is recommended to use the TypeScript SDK.
Matmo provides a fully supported TypeScript SDK with source code in the #matmos-core GitHub
repository.
Installing the TypeScript SDK
Using the TypeScript SDK
import { Provider, Network } from "matmo";
const provider = new Provider(Net.DEVNET) const account = await provider.getAccount("0x64");
const accountNFTs = await provider.
getAccountNFTs("0x64");
The main read methods deserializing on-chain data to TS objects are:
Get CollectionData
Get TokenData
Get Token of an Account
Most of the functionality of the TypeScript SDK can be found in the Rust and Python SDKs.
Last updated