|
|
|
@ -428,7 +428,17 @@ public class ConfluxServiceImpl implements ConfluxService {
|
|
|
|
|
String contract = contractConfig.getContract(); |
|
|
|
|
long start = 0L; |
|
|
|
|
Cfx cfx = Cfx.create(collectConfig.getNode(), 3, 1000); |
|
|
|
|
Account account = Account.create(cfx, AESUtil.decrypt(contractConfig.getPrivateKey())); |
|
|
|
|
Account account = null; |
|
|
|
|
NftAccount nftAccount=null; |
|
|
|
|
if (StringUtils.isNotEmpty(checkArgs.getUserId())){ |
|
|
|
|
nftAccount = nftAccountMapper.selectNftAccountByUserId(checkArgs.getUserId()); |
|
|
|
|
String nftPrivatekey = nftAccount.getPrivateKey(); |
|
|
|
|
String decrypt = AESUtil.Decrypt(nftPrivatekey, ConfluxArt.AESKEY); |
|
|
|
|
account= Account.create(cfx, decrypt); |
|
|
|
|
}else { |
|
|
|
|
account=Account.create(cfx, AESUtil.decrypt(contractConfig.getPrivateKey())); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
Account.Option opt = new Account.Option(); |
|
|
|
|
opt.withValue(BigInteger.ZERO); |
|
|
|
|
opt.withChainId(collectConfig.getChainId()); |
|
|
|
@ -444,10 +454,12 @@ public class ConfluxServiceImpl implements ConfluxService {
|
|
|
|
|
//剩余燃气值
|
|
|
|
|
BigInteger sponsoredBalanceForGas = sponsorWhitelistControl.getSponsoredBalanceForGas(address.getABIAddress()).divide(new BigInteger("1000000000")); |
|
|
|
|
log.info("[--------------------->mintNft][balance]{}[sponsoredBalanceForCollateral:]{}[sponsoredBalanceForGas:]{}", balance, sponsoredBalanceForCollateral, sponsoredBalanceForGas); |
|
|
|
|
if (balance.compareTo(new BigInteger("40000000000000000000")) < 0) { |
|
|
|
|
log.info("[--------------------->mintNft][balance not enough 50]{}", balance); |
|
|
|
|
//sms notice
|
|
|
|
|
return AjaxResult.error("账户余额不足!"); |
|
|
|
|
if (StringUtils.isEmpty(checkArgs.getUserId())) { |
|
|
|
|
if (balance.compareTo(new BigInteger("40000000000000000000")) < 0) { |
|
|
|
|
log.info("[--------------------->mintNft][balance not enough 50]{}", balance); |
|
|
|
|
//sms notice
|
|
|
|
|
return AjaxResult.error("账户余额不足!"); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
String owner = contractConfig.getOwner(); |
|
|
|
|
ConfluxExecutor confluxExecutor = new ConfluxExecutor(account, contract); |
|
|
|
@ -658,9 +670,8 @@ public class ConfluxServiceImpl implements ConfluxService {
|
|
|
|
|
case ConfluxExecutor.SAFETRANSFERFROM://单个转赠
|
|
|
|
|
return subgift(est, hash, checkArgs, confluxExecutor, cfx, owner, contract, sponsoredBalanceForGas, opt, nftLog, start); |
|
|
|
|
case ConfluxExecutor.PRIVATETOPUBLIC://私人转公共账户
|
|
|
|
|
String toUser=owner; |
|
|
|
|
String toOwner=checkArgs.getToUser(); |
|
|
|
|
checkArgs.setToUser(toUser); |
|
|
|
|
String toOwner=AESUtil.Decrypt(nftAccount.getNftAddress(),ConfluxArt.AESKEY); |
|
|
|
|
checkArgs.setToUser(owner); |
|
|
|
|
return subgift(est, hash, checkArgs, confluxExecutor, cfx, toOwner, contract, sponsoredBalanceForGas, opt, nftLog, start); |
|
|
|
|
case ConfluxExecutor.AIRDROPCASTING://铸造方式空投
|
|
|
|
|
tokenURIs = checkArgs.getStrUri(); |
|
|
|
|