UNPKG

@metaplex-foundation/umi-web3js-adapters

Version:

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

5 lines (4 loc) 262 B
import { Keypair } from '@metaplex-foundation/umi'; import { Keypair as Web3JsKeypair } from '@solana/web3.js'; export declare function fromWeb3JsKeypair(keypair: Web3JsKeypair): Keypair; export declare function toWeb3JsKeypair(keypair: Keypair): Web3JsKeypair;