I want to create a contract where users can deposit balances into the contract. And when the user deposit, contract owner can withdraw that balances from contract meaning transfer that balance to owner's wallet. Is it possible? I just started learning Solidity so can you guys please help me?
I haven't try much yet. This is my Solidity code.
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
contract WithdrawalContract {
mapping(address => uint256) public balances;
function deposit(uint256 amount) public payable {
balances[msg.sender] += amount;
}
}
I want only the contract owner to withdraw that balance. How can I do that? Is it possible?