new FDTransactionResult()
- Version:
- 1.0
The FDTransactionResult model module.
Members
feePayer :String
Account address for Fee Delegation
Type:
- String
from :String
Klaytn account address that sent the transaction
Type:
- String
gas :Number
Maximum gas fee to be used for sending the transaction
Type:
- Number
gasPrice :String
Gas fee used for sending the transaction
Type:
- String
input :String
Data that's sent along with the transaction to Klaytn
Type:
- String
nonce :Number
Number of total transactions from the sender of the current transaction
Type:
- Number
rlp :String
RLP serialization of the transaction
Type:
- String
signatures :Array.<Signature>
Type:
- Array.<Signature>
status :String
Status after the transaction has been sent ("Submitted" or "Pending")
Type:
- String
to :String
KLAY receiver's Klaytn account address
Type:
- String
transactionHash :String
Hash value of the transaction
Type:
- String
typeInt :Number
Integer that represents the transaction type
Type:
- Number
value :String
KLAY converted into PEB
Type:
- String
feeRatio :Number
Fee ratio between the sender's account and fee payer account
Type:
- Number
transactionId :String
Multisig transaction ID
Type:
- String
accountKey :String
Newly updated account key
Type:
- String
Methods
(static) constructFromObject(data, obj) → {FDTransactionResult}
Constructs a FDTransactionResult from a plain JavaScript object, optionally creating a new instance.
Copies all relevant properties from data to obj if supplied or a new instance if not.
Parameters:
| Name | Type | Description |
|---|---|---|
data |
Object | The plain JavaScript object bearing properties of interest. |
obj |
FDTransactionResult | Optional instance to populate. |
Returns:
The populated FDTransactionResult instance.
- Type
- FDTransactionResult