new FDTransactionResult()
- Version:
- 1.0
The FDTransactionResult model module.
Members
feePayer :String
Account address for fee delegation of transaction
Type:
- String
from :String
Klaytn account address sending a transaction
Type:
- String
gas :Number
Max. transaction fee (gas) for sending the transaction
Type:
- Number
gasPrice :String
Gas price for sending the transaction
Type:
- String
input :String
Data attached to and used for executing the outgoing transaction
Type:
- String
nonce :Number
No. of current user’s previous transactions
Type:
- Number
rlp :String
RLP serialization value of the transaction
Type:
- String
signatures :Array.<Signature>
Type:
- Array.<Signature>
status :String
Status of the transaction(“Submitted” or “Pending”)
Type:
- String
to :String
Klaytn account address to receive KLAY
Type:
- String
transactionHash :String
Transaction hash value
Type:
- String
typeInt :Number
Numeric value of transaction type
Type:
- Number
value :String
KLAY converted into PEB unit
Type:
- String
transactionId :String
Multisig transaction ID
Type:
- String
feeRatio :Number
Ratio to be paid by the Proxy fee payer for the entire transaction fee
Type:
- Number
accountKey :String
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