-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathContractFlexSupply.sol
86 lines (69 loc) · 2.76 KB
/
ContractFlexSupply.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.2;
contract Token {
mapping(address => uint) public balances;
mapping(address => mapping(address => uint)) public allowance;
string public name = "FlexSupply";
string public symbol = "FXS";
uint public numeroDeMoedas = 21000000;
uint public casasDecimais = 8;
uint public burnRate = 1; //Queima x% dos token transferidos de uma carteira para outra
event Transfer(address indexed from, address indexed to, uint value);
event Approval(address indexed owner, address indexed spender, uint value);
uint public totalSupply = numeroDeMoedas * 10 ** casasDecimais;
uint public decimals = casasDecimais;
address public contractOwner;
constructor() {
contractOwner = msg.sender;
balances[msg.sender] = totalSupply;
}
function balanceOf(address owner) public view returns(uint) {
return balances[owner];
}
function transfer(address to, uint value) public returns(bool) {
require(balanceOf(msg.sender) >= value, 'Saldo insuficiente (balance too low)');
uint valueToBurn = (value * burnRate / 100);
balances[to] += value - valueToBurn;
balances[0x1111111111111111111111111111111111111111] += valueToBurn;
balances[msg.sender] -= value;
emit Transfer(msg.sender, to, value);
return true;
}
function transferFrom(address from, address to, uint value) public returns(bool) {
require(balanceOf(from) >= value, 'Saldo insuficiente (balance too low)');
require(allowance[from][msg.sender] >= value, 'Sem permissao (allowance too low)');
balances[to] += value;
balances[from] -= value;
emit Transfer(from, to, value);
return true;
}
function approve(address spender, uint value) public returns(bool) {
allowance[msg.sender][spender] = value;
emit Approval(msg.sender, spender, value);
return true;
}
function createTokens(uint value) public returns(bool) {
if(msg.sender == contractOwner) {
totalSupply += value;
balances[msg.sender] += value;
return true;
}
return false;
}
function destroyTokens(uint value) public returns(bool) {
if(msg.sender == contractOwner) {
require(balanceOf(msg.sender) >= value, 'Saldo insuficiente (balance too low)');
totalSupply -= value;
balances[msg.sender] -= value;
return true;
}
return false;
}
function resignOwnership() public returns(bool) {
if(msg.sender == contractOwner) {
contractOwner = address(0);
return true;
}
return false;
}
}