peternameyakj
2024-08-29 ca8e89d46a92b567aa9af2c32ea2951d1e60ca6c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
package org.example.ssmico.demos.web.service;
 
import org.example.ssmico.demos.web.vo.WithdrawDepositVo;
import org.example.ssmico.demos.web.dto.ResultDto;
import org.example.ssmico.demos.web.util.ResultObject;
 
import java.security.InvalidKeyException;
import java.security.NoSuchAlgorithmException;
import java.security.SignatureException;
import java.security.spec.InvalidKeySpecException;
import java.util.List;
 
public interface UserPayService {
    ResultDto getAddressList(String s) throws NoSuchAlgorithmException, InvalidKeySpecException, SignatureException, InvalidKeyException;
 
    ResultDto syncStatus(String s,String userId,String address);
 
    ResultObject getBindingState(String s,String address);
 
    ResultObject withdrawDeposit(WithdrawDepositVo vo);
 
    ResultObject getUserRechargeAddress(String f,String userId,String lang) throws Exception;
 
    List<String> getAddressUnusedList(String coin);
}