mirror of
https://github.com/Instadapp/dsa-polygon-migration.git
synced 2024-07-29 22:27:58 +00:00
16 lines
277 B
Solidity
16 lines
277 B
Solidity
|
pragma solidity >=0.7.0;
|
||
|
pragma experimental ABIEncoderV2;
|
||
|
|
||
|
contract Events {
|
||
|
event LogDeposit(
|
||
|
address owner,
|
||
|
address[] tokens,
|
||
|
uint[] amts
|
||
|
);
|
||
|
|
||
|
event LogWithdraw(
|
||
|
address owner,
|
||
|
address[] tokens,
|
||
|
uint[] amts
|
||
|
);
|
||
|
}
|