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
Intitialization
To get started, you'll need to initialize the SDK . The following code snippet demonstrates how to do this:
Write Operation
Create Subscription
This method allows users to create a subscription contract with various parameters, while performing validation checks on the input data. It ensures that the provided data is valid and that the user's balance is sufficient to create the subscription.
CreatePayload is the input data for creating the subscription. Include fields:
recipient (string): The recipient's address for the subscription.
deposit (number): The deposit amount for the subscription.
coinType (string): The token address of the token for the subscription, the default is aptos.
startTime (number): The start time of the subscription.
stopTime (number): The stop time of the subscription.
interval (number): The interval for the subscription.
fixedRate (string): The fixed rate for the subscription.
Deposit Funds from sender
This method allows the sender to deposit funds to a specific subscription, performing validation checks on the subscription ID and deposit amount. It also checks if the sender's balance is sufficient for the deposit.
Example usage:
DepositFromSenderInput is the input data for depositing funds. Include fields:
subscriptionId (number): The ID of the subscription to deposit to.
amount (number): The amount to deposit to the subscription.
Withdraw Funds from subscription
This method initiates a withdrawal from the recipient's side of the subscription. It validates the subscription ID and withdrawal amount, ensuring they are valid and positive.
Example usage:
WithdrawPayload is the input data for withdrawing funds. Include fields:
subscriptionId (number): The ID of the subscription to withdraw tokens from.
amount (number): The amount of tokens to withdraw.
Cancel a Subscription
This method allows the sender or recipient to cancel a subscription. Before canceling a subscription, the recipient must have completed all withdrawals. After canceling the subscription, any remaining funds will be refunded to the sender.
Example usage:
subscriptionId(number): subscriptionId is the only input field. The ID of the subscription to cancel.
Query Subscription API
Query subscription API
List subscriptions of the specific sender
The API list subscriptions created by a specific sender. const senderSubscriptionData = await subscription.getSubscriptionsBySender(_sender); const subscriptions = senderSubscriptionData.subscriptionLists; The input parameters for list subscriptions created by a specific sender include:
sender: the address of sender.
List subscription of the specific recipient
The API list subscriptions received by a specific recipient. The query API supports paginate. const recipientSubscriptionData = await subscription.getSubscriptionsByRecipient("0xRecipientAddress");
The input parameters for list subscriptions received by a specific recipient include:
recipient: address of recipient.
Github Link:
Last updated