org.brewchain.sdk.model.TransferInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cwvj Show documentation
Show all versions of cwvj Show documentation
Java sdk for Dapps interact with cwv blockchain node
package org.brewchain.sdk.model;
import lombok.Getter;
/**转账信息*/
@Getter
public class TransferInfo {
private String toAddr;//接收地址
private String amount;//转账主币数量
public TransferInfo(String toAddr, String amount) {
this.toAddr = toAddr;
this.amount = amount;
}
}