48 lines
1.2 KiB
Solidity
Raw Normal View History

2022-02-14 15:47:01 +01:00
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
contract Collateral {
IERC20 private immutable token;
2022-02-14 16:43:56 +01:00
Totals private totals;
2022-02-14 15:47:01 +01:00
mapping(address => uint256) private balances;
2022-02-14 16:19:47 +01:00
constructor(IERC20 _token) invariant {
2022-02-14 15:47:01 +01:00
token = _token;
}
function balanceOf(address account) public view returns (uint256) {
return balances[account];
}
2022-02-14 16:19:47 +01:00
function deposit(uint256 amount) public invariant {
2022-02-14 15:47:01 +01:00
token.transferFrom(msg.sender, address(this), amount);
2022-02-14 16:43:56 +01:00
totals.deposited += amount;
2022-02-14 15:47:01 +01:00
balances[msg.sender] += amount;
2022-02-14 16:43:56 +01:00
totals.balance += amount;
}
function withdraw() public invariant {
uint256 amount = balances[msg.sender];
balances[msg.sender] = 0;
totals.balance -= amount;
totals.withdrawn += amount;
assert(token.transfer(msg.sender, amount));
2022-02-14 16:19:47 +01:00
}
modifier invariant() {
2022-02-14 16:43:56 +01:00
Totals memory oldTotals = totals;
2022-02-14 16:19:47 +01:00
_;
2022-02-14 16:43:56 +01:00
assert(totals.deposited >= oldTotals.deposited);
assert(totals.withdrawn >= oldTotals.withdrawn);
assert(totals.deposited == totals.balance + totals.withdrawn);
}
struct Totals {
uint256 balance;
uint256 deposited;
uint256 withdrawn;
2022-02-14 15:47:01 +01:00
}
}