transferSOL
Transfer SOL to wallet address.
_13const recipientAddress = "C64RkD2jnvrFF8mi9FUBwfhNHuuiPuRMzCLRSWcyJKUG"_13const amount = 200000 // Amount * Decimals_13_13const transactionResult = await mirrorworld.transferSOL({_13 recipientAddress,_13 amount,_13})_13_13// Returns `ITransferSPLTokenResponse`_13export interface ITransferSPLTokenResponse {_13 status: string;_13 txSignature: string;_13}
Edit this page on GitHub