codex-contracts-eth/contracts/Collateral.sol

56 lines
1.4 KiB
Solidity

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
contract Collateral {
IERC20 private immutable token;
Totals private totals;
mapping(address => uint256) private balances;
constructor(IERC20 _token) invariant {
token = _token;
}
function balanceOf(address account) public view returns (uint256) {
return balances[account];
}
function add(address account, uint256 amount) private {
balances[account] += amount;
totals.balance += amount;
}
function subtract(address account, uint256 amount) private {
balances[account] -= amount;
totals.balance -= amount;
}
function deposit(uint256 amount) public invariant {
token.transferFrom(msg.sender, address(this), amount);
totals.deposited += amount;
add(msg.sender, amount);
}
function withdraw() public invariant {
uint256 amount = balanceOf(msg.sender);
totals.withdrawn += amount;
subtract(msg.sender, amount);
assert(token.transfer(msg.sender, amount));
}
modifier invariant() {
Totals memory oldTotals = totals;
_;
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;
}
}