-
Notifications
You must be signed in to change notification settings - Fork 36
/
7comm-aula04.sol
64 lines (57 loc) · 1.87 KB
/
7comm-aula04.sol
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
// SPDX-License-Identifier: MIT
pragma solidity 0.8.20;
contract CadastroClientes {
mapping(address => Conta) public clientes;
uint public totalDeContas;
struct Conta {
string nomeCliente;
address enderecoCliente;
uint saldo;
bool status;
}
modifier somenteContaAberta(address _enderecoCliente) {
require(clientes[_enderecoCliente].status, "conta nao existente ou fechada");
_;
}
function abreConta(
string memory _nomeCliente,
address _enderecoCliente,
uint _depositoInicial)
external returns(bool) {
require(_depositoInicial>0, "Sem dinheiro, sem conta");
require(_enderecoCliente != address(0), "endereco invalido");
require(!clientes[_enderecoCliente].status, "conta existente e aberta");
Conta memory novaConta = Conta(_nomeCliente, _enderecoCliente, _depositoInicial, true);
clientes[_enderecoCliente] = novaConta;
totalDeContas++;
return true;
}
function setSaldo(address _enderecoCliente, uint novoValor_)
external
somenteContaAberta(_enderecoCliente)
returns(bool) {
require(novoValor_ > 0, "valor invalido");
clientes[_enderecoCliente].saldo = novoValor_;
return true;
}
function retirarClienteAzarado(address _enderecoCliente)
external
somenteContaAberta(_enderecoCliente)
returns(bool) {
if (clientes[_enderecoCliente].saldo != 13) {
revert("ufa... esse passou!");
}
//fecho a conta
clientes[_enderecoCliente].status = false;
totalDeContas--;
return true;
}
function getDadosConta(address _enderecoCliente)
external
view
somenteContaAberta(_enderecoCliente)
returns(Conta memory conta) {
conta = clientes[_enderecoCliente];
return conta;
}
}