ts-sdk-account

Generate and manage Aptos accounts with Ed25519 and Keyless signing schemes.

19|8|Updated Jan 23, 2026
One-click install
npx skills add https://github.com/aptos-labs/aptos-agent-skills --skill ts-sdk-account
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: ts-sdk-account
Source: https://github.com/aptos-labs/aptos-agent-skills/tree/main/skills/sdk/typescript/ts-sdk-account
Command: npx skills add https://github.com/aptos-labs/aptos-agent-skills --skill ts-sdk-account

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve?

This Skill simplifies the process of creating, managing, and using accounts (signers) within the Aptos TypeScript SDK, ensuring secure and correct transaction signing.

Core Features & Use Cases

  • Account Generation: Create new accounts securely for server-side operations.
  • Key Management: Load accounts from private keys or mnemonics with support for various signing schemes (Ed25519, Secp256k1, Keyless).
  • Serialization: Convert accounts to and from hexadecimal formats for persistence.
  • Signing & Verification: Sign messages and transactions, and verify signatures.
  • Use Case: Securely generate an account in your backend script to sign and submit a transaction to the Aptos blockchain.

Quick Start

Generate a new Aptos account using the ts-sdk-account skill.

Frequently Asked Questions about ts-sdk-account

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I generate a new Aptos account using the TypeScript SDK?

To generate a new Aptos account using the TypeScript SDK, you can use this Skill to securely create an Account object, which provides a signer for server-side operations and transaction submission.

Can I load an Aptos account from a private key or mnemonic in TypeScript?

Yes, you can load an Aptos account from a private key or mnemonic in TypeScript. This Skill guides loading existing accounts while supporting various signing schemes like Ed25519, Secp256k1, and Keyless.

What signing schemes does the Aptos TypeScript SDK support for transaction signing?

The Aptos TypeScript SDK supports Ed25519, Secp256k1, and Keyless signing schemes for transaction signing. This Skill helps you handle these different schemes for secure message authentication.

How do I serialize an Aptos account for persistence in a backend application?

To serialize an Aptos account for persistence, this Skill facilitates converting Account objects to and from hexadecimal formats, allowing you to securely store and reload signers in your backend.

What is the best way to sign and verify Aptos transactions in a dApp backend?

The best way to sign and verify Aptos transactions in a dApp backend is by using the SDK's Account object. This Skill guides you through secure transaction signing and message authentication processes.