1234567891011121314151617181920212223242526 |
- import "../libraries/system_instruction.sol";
- import '../libraries/minimum_balance.sol';
- @program_id("F1ipperKF9EfD821ZbbYjS319LXYiBmjhzkkf5a26rC")
- contract rent {
- @payer(payer) // The "payer" pays for the data account creation
- constructor() {}
- @mutableSigner(payer)
- @mutableSigner(newAccount)
- function createSystemAccount(uint64 space) external {
- // The minimum lamports required for the amount of space allocated to the account
- uint64 lamports = minimum_balance(space);
- SystemInstruction.create_account(
- tx.accounts.payer.key, // lamports sent from this account (payer)
- tx.accounts.newAccount.key, // lamports sent to this account (account to be created)
- lamports, // lamport amount (minimum lamports required)
- space, // space required for the account
- SystemInstruction.systemAddress // program owner (system program)
- );
- }
- }
|