πSubscription Checkout SDK
Moveflow Subscription SDK is a TypeScript SDK for interacting with Aptos smart contracts related to subscription management. It provides a set of functions to create, manage, and retrieve subscription
Getting Started
Install sdk
npm install --save @moveflow/sdk-aptos
or
yarn add @moveflow/sdk-aptosIntitialization
import { AptosAccount, Network } from "aptos";
const youMnemonic = "youMnemonic"
const alice = AptosAccount.fromDerivePath("m/44'/637'/0'/0'/0'", youMnemonic);
const { subscription } = new SDK(Network.TESTNET)
Write Operation
Query Subscription API
Github Link:
Last updated