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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@weblock-wallet/sdk

v0.1.43

Published

WeBlock Wallet SDK for Web3 wallet integration

Downloads

93

Readme

초기화

import WeBlockSDK from '@weblock-wallet/sdk'
const sdk = new WeBlockSDK({
  environment: 'dev', // 'local' | 'dev' | 'stage' | 'prod'
  apiKey: 'YOUR_API_KEY',
  orgHost: 'YOUR_ORG_HOST',
})

기능명세

1. 사용자(sdk.user)

로그인

const response = await sdk.user.signIn('google.com')
// response: SignInResponse
// {
// status: 'NEW_USER' | 'WALLET_READY' | 'NEEDS_PASSWORD'
// email: string
// photoURL: string | null
// wallet?: WalletInfo // WALLET_READY 상태일 때만
// }

지갑 생성

const response = await sdk.user.createWallet('password')
// response: { wallet: WalletInfo }

지갑 복구

const response = await sdk.user.recoverWallet('password')
// response: { wallet: WalletInfo }

로그아웃

await sdk.user.signOut()

2. 지갑(sdk.wallet)

지갑 정보 조회

const info = await sdk.wallet.getInfo()
// WalletInfo {
// address: string
// network: {
// current: NetworkInfo
// available: NetworkInfo[]
// }
// assets: {
// native: {
// symbol: string
// balance: string
// decimals: number
// usdValue?: string
// }
// tokens: TokenInfo[]
// nfts: NFTCollection[]
// }
// recentTransactions: Transaction[]
// }

네트워크 변경

const response = await sdk.wallet.switchNetwork('ethereum-mainnet')
// response: {
// network: NetworkInfo
// assets: WalletInfo['assets']
// }

이벤트 구독

// 지갑 정보 업데이트
const unsubscribe = sdk.wallet.onWalletUpdate((wallet: WalletInfo) => {
  console.log('지갑 업데이트:', wallet)
})
// 트랜잭션 업데이트
const unsubscribeTx = sdk.wallet.onTransactionUpdate((tx: Transaction) => {
  console.log('새로운 트랜잭션:', tx)
})

3. 자산(sdk.asset)

토큰 전송

const response = await sdk.asset.transfer({
  networkId: 'ethereum-mainnet',
  tokenAddress: '0x...', // NATIVE인 경우 필요 없음
  to: '0x...',
  amount: '1.0',
  type: 'NATIVE' | 'ERC20' | 'NFT' | 'SECURITY',
})
// response: { transaction: Transaction }

토큰 추가

await sdk.asset.addToken({
type: 'ERC20' | 'SECURITY',
networkId: 'ethereum-mainnet',
address: '0x...',
symbol?: 'TOKEN',
decimals?: 18,
name?: 'Token Name'
})

NFT 컬렉션 추가

await sdk.asset.addNFTCollection({
networkId: 'ethereum-mainnet',
address: '0x...',
name?: 'NFT Collection'
})

시큐리티 토큰 전송 가능 여부 확인

const result = await sdk.asset.checkSecurityTokenCompliance({
  networkId: 'ethereum-mainnet',
  tokenAddress: '0x...',
  from: '0x...',
  to: '0x...',
  amount: '1.0',
})
// result: {
// canTransfer: boolean
// reasons?: string[]
// }