UNPKG

@metaplex-foundation/umi-web3js-adapters

Version:

A helper package to transform web3.js types to and from umi types

5 lines (4 loc) 284 B
import { PublicKey } from '@metaplex-foundation/umi'; import { PublicKey as Web3JsPublicKey } from '@solana/web3.js'; export declare function fromWeb3JsPublicKey(publicKey: Web3JsPublicKey): PublicKey; export declare function toWeb3JsPublicKey(publicKey: PublicKey): Web3JsPublicKey;