@solana/spl-token#NATIVE_MINT TypeScript Examples
The following examples show how to use
@solana/spl-token#NATIVE_MINT.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: associatedToken.ts From jet-engine with GNU Affero General Public License v3.0 | 6 votes |
/** Add wrap SOL IX
* @param instructions
* @param provider
* @param owner
* @param mint
* @param amount
*/
static async withWrapIfNativeMint(
instructions: TransactionInstruction[],
provider: AnchorProvider,
owner: PublicKey,
mint: PublicKey,
amount: BN
): Promise<void> {
//only run if mint is wrapped sol mint
if (mint.equals(NATIVE_MINT)) {
//this will add instructions to create ata if ata does not exist, if exist, we will get the ata address
const ata = await this.withCreate(instructions, provider, owner, mint)
//IX to transfer sol to ATA
const transferIx = SystemProgram.transfer({
fromPubkey: owner,
lamports: bnToNumber(amount),
toPubkey: ata
})
const syncNativeIX = createSyncNativeInstruction(ata)
instructions.push(transferIx, syncNativeIX)
}
}
Example #2
Source File: associatedToken.ts From jet-engine with GNU Affero General Public License v3.0 | 6 votes |
/**
* add unWrap SOL IX
* @param {TransactionInstruction[]} instructions
* @param {Provider} provider
* @param {owner} owner
* @param {tokenAccount} tokenAccount
* @param {mint} mint
* @param {amount} amount
*/
static async withUnwrapIfNative(
instructions: TransactionInstruction[],
provider: AnchorProvider,
owner: PublicKey, //user pubkey
tokenAccount: PublicKey,
mint: PublicKey,
amount: BN
): Promise<void> {
if (mint.equals(NATIVE_MINT)) {
//create a new ata if ata doesn't not exist
const ata = await this.withCreate(instructions, provider, owner, mint)
//IX to transfer wSOL to ATA
const transferIx = createTransferInstruction(tokenAccount, ata, owner, BigInt(amount.toString()))
//add transfer IX
instructions.push(transferIx)
//add close account IX
await this.withClose(instructions, owner, mint, owner)
}
}
Example #3
Source File: MintId.ts From port-sdk with MIT License | 5 votes |
public static native(): MintId {
return MintId.of(NATIVE_MINT);
}
Example #4
Source File: MintId.ts From port-sdk with MIT License | 5 votes |
public isNative(): boolean {
return this.equals(NATIVE_MINT);
}