Create parameters without tokenStandard
Create instruction
const createIx = await createFungible({
mint,
authority,
payer,
name: 'My Token',
uri: 'https://example.com/token.json',
sellerFeeBasisPoints: 100,
});
// Later, mint tokens separately
const mintIx = await getMintV1InstructionAsync({
mint: mint.address,
amount: 1000000,
tokenStandard: TokenStandard.Fungible,
// ...
});
Creates a Fungible token (without minting)
Use this for fungible tokens where you'll mint the supply later.