@metaplex-foundation/mpl-token-metadata-kit - v0.0.1
    Preparing search index...

    Function createFungibleAsset

    • Creates a FungibleAsset token (without minting)

      Use this for fungible assets where you'll mint the supply later.

      Parameters

      Returns Promise<
          Instruction<
              string,
              readonly (AccountMeta<string> | AccountLookupMeta<string, string>)[],
          >,
      >

      Create instruction

      const createIx = await createFungibleAsset({
      mint,
      authority,
      payer,
      name: 'My Asset',
      uri: 'https://example.com/asset.json',
      sellerFeeBasisPoints: 200,
      });