com.yanxisir.neb.bean.SendTransactionReq Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of neb-call Show documentation
Show all versions of neb-call Show documentation
A http toolkit for nebulas
package com.yanxisir.neb.bean;
import com.alibaba.fastjson.annotation.JSONField;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
import java.io.Serializable;
import java.math.BigInteger;
/**
* @author YanxiSir
* @since 2018/5/19
*/
@Data
@Builder
@NoArgsConstructor
@AllArgsConstructor
public class SendTransactionReq implements Serializable {
private String from;
private String to;
private BigInteger value;
private Integer nonce;
@JSONField(name = "gas_price")
private BigInteger gasPrice;
@JSONField(name = "gas_limit")
private BigInteger gasLimit;
private String type;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy