UNPKG
@renec-foundation/mpl-token-metadata
Version:
latest (0.1.3)
0.1.3
0.1.2
0.1.1
0.1.0
MPL Token Metadata JavaScript API.
metaplex.com
renec-chain/mpl-token-metadata
@renec-foundation/mpl-token-metadata
/
dist
/
test
/
actions
/
create-mint-account.d.ts
9 lines
(8 loc)
•
309 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
import
{
Connection
,
Keypair
,
PublicKey
,
Transaction
}
from
'@solana/web3.js'
;
export
declare
class
CreateMint
extends
Transaction
{
private
constructor
(
);
static
createMintAccount
(
connection
:
Connection
,
payer
:
PublicKey
):
Promise
<{
mint
:
Keypair
;
createMintTx
:
CreateMint
; }>; }