1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| package cc.mrbird.febs.dapp.service.impl;
|
| import cc.mrbird.febs.dapp.chain.ContractEventService;
| import cc.mrbird.febs.dapp.chain.EthUsdtContract;
| import org.springframework.stereotype.Service;
|
| @Service
| public class BscCoinContractEvent implements ContractEventService {
|
|
| @Override
| public void compile(EthUsdtContract.TransferEventResponse e) {
|
| }
| }
|
|