Creates a FungibleAsset token (without minting)
Use this for fungible assets where you'll mint the supply later.
Create parameters without tokenStandard
Create instruction
const createIx = await createFungibleAsset({ mint, authority, payer, name: 'My Asset', uri: 'https://example.com/asset.json', sellerFeeBasisPoints: 200,}); Copy
const createIx = await createFungibleAsset({ mint, authority, payer, name: 'My Asset', uri: 'https://example.com/asset.json', sellerFeeBasisPoints: 200,});
Creates a FungibleAsset token (without minting)
Use this for fungible assets where you'll mint the supply later.