Socket
Book a DemoInstallSign in
Socket

@dynamic-labs/aptos

Package Overview
Dependencies
Maintainers
1
Versions
49
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@dynamic-labs/aptos

A React SDK for implementing wallet web3 authentication and authorization to your website.

latest
npmnpm
Version
4.54.0
Version published
Weekly downloads
744
443.07%
Maintainers
1
Weekly downloads
 
Created
Source

@dynamic-labs/aptos

An Aptos wallet connector package for the Dynamic SDK that enables seamless integration with Aptos network wallets.

Installation

npm install @dynamic-labs/aptos

🔌 Supported Wallets

Provider Interface

🌐 Supported Networks

📖 Usage

Basic Integration

import { DynamicContextProvider } from '@dynamic-labs/sdk-react-core';
import { AptosWalletConnectors } from '@dynamic-labs/aptos';

function App() {
  return (
    <DynamicContextProvider
      settings={{
        environmentId: 'your-environment-id',
        walletConnectors: [AptosWalletConnectors()],
      }}
    >
      {/* Your app content */}
    </DynamicContextProvider>
  );
}

Type Checking

Use the isAptosWallet type guard to safely work with Aptos wallets:

import { isAptosWallet } from '@dynamic-labs/aptos';

function handleWallet(wallet: Wallet) {
  if (isAptosWallet(wallet)) {
    // Do something
  }
}

🧪 Testing

Run Tests

npx nx test aptos

Build Package

npx nx build aptos

🤝 Contributing

We welcome contributions! Please see our contributing guidelines for details.

📄 License

This package is part of the Dynamic SDK and follows the same licensing terms. See LICENSE for details.

🆘 Support

Built with ❤️ by the Dynamic Labs team

FAQs

Package last updated on 16 Jan 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts