123456789101112131415161718192021222324 |
- package com.ichaoj.ams.script.model;
- import lombok.Data;
- import java.math.BigInteger;
- /**
- * airdrop wallet
- *
- * @author wren
- */
- @Data
- public class AirdropWallet {
- private String address;
- private String privateKey;
- /**
- * 公链原生币余额
- */
- private BigInteger nativeCoinBalance;
- }
|