-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSimpleVaultContract.sol
More file actions
39 lines (27 loc) · 976 Bytes
/
SimpleVaultContract.sol
File metadata and controls
39 lines (27 loc) · 976 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.26;
contract SimpleVaultContract{
receive() external payable { }
fallback() external payable { }
enum Role {Member, Admin}
address public owner;
mapping(address => uint256) public balance;
mapping(address => Role) public roles;
constructor(){
owner = msg.sender;
}
function Deposit() public payable{
require(msg.value > 0, "Invalid Amount");
balance[msg.sender] += msg.value;
}
function setRole(address user, Role _role) public {
roles[user] = _role;
}
function Withdraw(uint256 amount) public payable{
require(msg.value < 0, "Invalid Amount");
require(roles[msg.sender] == Role.Admin, "Not An Admin");
balance[msg.sender] -= msg.value;
(bool success, ) = payable(msg.sender).call{value: amount}("");
require(success, "Transaction failed");
}
}