-
Notifications
You must be signed in to change notification settings - Fork 175
/
TransferFee.sol
34 lines (25 loc) · 1.03 KB
/
TransferFee.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
// Copyright (C) 2020 d-xo
// SPDX-License-Identifier: AGPL-3.0-only
pragma solidity >=0.6.12;
import {ERC20} from "./ERC20.sol";
contract TransferFeeToken is ERC20 {
uint immutable fee;
// --- Init ---
constructor(uint _totalSupply, uint _fee) ERC20(_totalSupply) public {
fee = _fee;
}
// --- Token ---
function transferFrom(address src, address dst, uint wad) override public returns (bool) {
require(balanceOf[src] >= wad, "insufficient-balance");
if (src != msg.sender && allowance[src][msg.sender] != type(uint).max) {
require(allowance[src][msg.sender] >= wad, "insufficient-allowance");
allowance[src][msg.sender] = sub(allowance[src][msg.sender], wad);
}
balanceOf[src] = sub(balanceOf[src], wad);
balanceOf[dst] = add(balanceOf[dst], sub(wad, fee));
balanceOf[address(0)] = add(balanceOf[address(0)], fee);
emit Transfer(src, dst, sub(wad, fee));
emit Transfer(src, address(0), fee);
return true;
}
}