npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@abcwalletio/aptos

v1.0.0

Published

ABC WaaS Aptos adapter — MPC-based AIP-62 Wallet Standard compatible wallet (ed25519)

Readme

@abcwalletio/aptos

ABC WaaS SDK의 Aptos 체인 어댑터입니다. AIP-62 Wallet Standard를 구현하므로 @aptos-labs/wallet-adapter-react가 어댑터를 자동 감지합니다.

Installation

pnpm add @abcwalletio/aptos @abcwalletio/core @aptos-labs/ts-sdk @aptos-labs/wallet-standard

Peer Dependencies

  • @abcwalletio/core
  • @aptos-labs/ts-sdk >=1.0.0
  • @aptos-labs/wallet-standard >=1.0.0
  • @wallet-standard/base / @wallet-standard/wallet >=1.0.0

Quick Start

import { createWaasSDK, LocalStorageAdapter } from '@abcwalletio/core';
import { AbcAptosAdapter } from '@abcwalletio/aptos';

const sdk = await createWaasSDK({
  storage: new LocalStorageAdapter(),
  auth: { v2: { clientId: '...', clientSecret: '...' } },
});

// Aptos는 ed25519 키 사용
await sdk.mpc.generateKeyShare('ed25519', 'password');

const adapter = new AbcAptosAdapter({
  sdk,
  requestPassword: async () => prompt('MPC 비밀번호?') ?? '',
});

// AIP-62 Wallet Standard로 전역 등록
// wallet-adapter-react의 AptosWalletAdapterProvider가 자동 감지합니다.
adapter.register();

// 또는 React 사용 시 plugins prop으로 전달:
// <AptosWalletAdapterProvider plugins={[adapter]}>

API

new AbcAptosAdapter(config)

interface AbcAptosAdapterConfig {
  sdk: WaasSDK;
  requestPassword: () => Promise<string>;
  keyId?: string;  // 생략 시 sdk.mpc.getDefaultKeyId('ed25519') 자동 조회
  network?: NetworkInfo;  // 기본값: MAINNET
}

편의 메서드 (wallet-adapter 없이 직접 사용)

| 메서드 | 설명 | |--------|------| | register() | AIP-62 표준으로 글로벌 등록 | | getAddress() | Aptos 계정 주소 반환 | | getPublicKey() | Ed25519PublicKey 반환 | | signRawMessage(msg) | Uint8Array → Ed25519Signature | | signRawTransaction(signingMsg) | BCS 서명 메시지 → AccountAuthenticatorEd25519 |

AIP-62 Feature 구현

features 속성으로 다음 namespace를 제공합니다:

  • AptosConnectNamespace
  • AptosDisconnectNamespace
  • AptosGetAccountNamespace
  • AptosGetNetworkNamespace
  • AptosSignMessageNamespace
  • AptosSignTransactionNamespace
  • AptosOnAccountChangeNamespace / AptosOnNetworkChangeNamespace (no-op)

License

MIT — Copyright (c) 2026 Ahnlab Blockchain Company