Creates a new uninitialized Solana account.
const transactionBuilder = await metaplex .system() .builders() .createAccount({ space: 100 }); // 100 bytes
Note that accessing this transaction builder is asynchronous because we may need to contact the cluster to get the rent-exemption for the provided space.
Generated using TypeDoc
Creates a new uninitialized Solana account.
Note that accessing this transaction builder is asynchronous because we may need to contact the cluster to get the rent-exemption for the provided space.