LoginSignup
2
0

More than 1 year has passed since last update.

【Solana, TypeScript】base58エンコードされたstring型アドレスをweb3.Publickey型に変換

Last updated at Posted at 2022-03-21

動作確認環境

  • M1 Mac (macOS Monterey 12.3)
  • @solana/web3.js : 1.36.0

コード

import * as web3 from '@solana/web3.js';

const address = '3ME9Uv8NaWG5cwPnTtoSxzy9haaFAxKcVjpCLRUiDyod'; // string
const pubkey = new web3.PublicKey(address); // web3.PublicKey
2
0
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
0