1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| package cc.mrbird.febs.dapp.chain;
|
| public interface ContractEventService {
|
| /**
| * 充值
| * @param e
| */
| void compile(EthUsdtContract.TransferEventResponse e);
|
| /**
| * 1-买入贡献值
| * 2-买入节点
| * @param e
| */
| void sdmUSDT(EthUsdtContract.TransferEventResponse e);
|
| /**
| * 用户存储PEOPLE
| * @param e
| */
| void receivePeopleEvent(EthUsdtContract.ReceivePeopleEventResponse e);
| }
|
|