Skip to content

Commit

Permalink
add multicall
Browse files Browse the repository at this point in the history
  • Loading branch information
Theodus committed Aug 1, 2023
1 parent 452979c commit c708eeb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Collateralization.sol
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@
pragma solidity ^0.8.13;

import "openzeppelin-contracts/contracts/token/ERC20/extensions/ERC20Burnable.sol";
import "openzeppelin-contracts/contracts/utils/Multicall.sol";

/// This contract manages slashable, potentially time-locked token deposits.
contract Collateralization {
contract Collateralization is Multicall {
event Deposit(
uint128 indexed id, address indexed depositor, address indexed arbiter, uint256 amount, uint64 unlock
);
Expand Down

0 comments on commit c708eeb

Please sign in to comment.