All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
com.klaytn.caver.tx.model.SmartContractExecutionTransaction Maven / Gradle / Ivy
/*
* Copyright 2019 The caver-java Authors
*
* Licensed under the Apache License, Version 2.0 (the “License”);
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an “AS IS” BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.klaytn.caver.tx.model;
import com.klaytn.caver.tx.type.TxType;
import com.klaytn.caver.tx.type.TxTypeFeeDelegatedSmartContractExecution;
import com.klaytn.caver.tx.type.TxTypeFeeDelegatedSmartContractExecutionWithRatio;
import com.klaytn.caver.tx.type.TxTypeSmartContractExecution;
import java.math.BigInteger;
/**
* @deprecated Please use {@link com.klaytn.caver.transaction.type.SmartContractExecution} instead.
*/
@Deprecated
public class SmartContractExecutionTransaction extends TransactionTransformer {
private String recipient;
private BigInteger amount;
private byte[] payload;
private BigInteger feeRatio;
private SmartContractExecutionTransaction(String from, String recipient, BigInteger amount,
byte[] payload, BigInteger gasLimit) {
super(from, gasLimit);
this.recipient = recipient;
this.amount = amount;
this.payload = payload;
}
private SmartContractExecutionTransaction(String from, String recipient, BigInteger amount,
byte[] payload, BigInteger gasPrice, BigInteger gasLimit) {
super(from, gasPrice, gasLimit);
this.recipient = recipient;
this.amount = amount;
this.payload = payload;
}
public static SmartContractExecutionTransaction create(String from, String recipient, BigInteger amount,
byte[] payload, BigInteger gasLimit) {
return new SmartContractExecutionTransaction(from, recipient, amount, payload, gasLimit);
}
public static SmartContractExecutionTransaction create(String from, String recipient, BigInteger amount,
byte[] payload, BigInteger gasPrice, BigInteger gasLimit) {
return new SmartContractExecutionTransaction(from, recipient, amount, payload, gasPrice, gasLimit);
}
public SmartContractExecutionTransaction feeRatio(BigInteger feeRatio) {
this.feeRatio = feeRatio;
return this;
}
@Override
public TxType build() {
if (this.feeDelegate) {
return buildFeeDelegated();
}
return TxTypeSmartContractExecution.createTransaction(getNonce(), getGasPrice(), getGasLimit(),
this.recipient, this.amount, getFrom(), this.payload);
}
@Override
public TxType buildFeeDelegated() {
if (this.feeRatio != null) {
return TxTypeFeeDelegatedSmartContractExecutionWithRatio.createTransaction(getNonce(), getGasPrice(), getGasLimit(),
this.recipient, this.amount, getFrom(), this.payload, this.feeRatio);
}
return TxTypeFeeDelegatedSmartContractExecution.createTransaction(getNonce(), getGasPrice(), getGasLimit(),
this.recipient, this.amount, getFrom(), this.payload);
}
}