fix
Helius
2022-03-10 63bcbbce0ec239b161ff8a53985e7caac9a69b8a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.xcong.excoin.modules.blackchain.model;
 
import lombok.Data;
 
@Data
public class XrpTx {
    private String transactionType;
    private Integer flags;
    private Integer sequence;
    private Integer destinationTag; // 对应的用户标签
    private Integer amount; // 金额 除以1000000 一百万
    private Integer fee;  // 手续费
    private String account; // 转账人
    private String destination; // 收款人(收款人是系统账户 说明是转入)
    
 
 
}