@@ -31,6 +31,8 @@ Some types are defined as _raw_, usually in the form `Raw[TYPE-NAME]`. These typ
31
31
- [ RawCryptoOrgTransaction] ( #rawcryptoorgtransaction )
32
32
- [ EthereumTransaction] ( #ethereumtransaction )
33
33
- [ RawEthereumTransaction] ( #rawethereumtransaction )
34
+ - [ HederaTransaction] ( #hederatransaction )
35
+ - [ RawHederaTransaction] ( #rawhederatransaction )
34
36
- [ PolkadotTransaction] ( #polkadottransaction )
35
37
- [ RawPolkadotTransaction] ( #rawpolkadottransaction )
36
38
- [ RippleTransaction] ( #rippletransaction )
@@ -78,13 +80,13 @@ Some types are defined as _raw_, usually in the form `Raw[TYPE-NAME]`. These typ
78
80
Description of an unsigned transaction. This type is used to build transactions and then sign them with a Ledger device and finally broadcast them to the network upon user validation.
79
81
80
82
[ ` EthereumTransaction ` ] ( /spec/core/types.md#ethereumtransaction ) \| [ ` BitcoinTransaction ` ] ( /spec/core/types.md#bitcointransaction ) \| [ ` AlgorandTransaction ` ] ( /spec/core/types.md#algorandtransaction ) \|
81
- [ ` AptosTransaction ` ] ( /spec/core/types.md#aptostransaction ) \| [ ` CryptoOrgTransaction ` ] ( /spec/core/types.md#cryptoorgtransaction ) \| [ ` RippleTransaction ` ] ( /spec/core/types.md#rippletransaction ) \| [ ` CosmosTransaction ` ] ( /spec/core/types.md#cosmostransaction ) \| [ ` TezosTransaction ` ] ( /spec/core/types.md#tezostransaction ) \| [ ` PolkadotTransaction ` ] ( /spec/core/types.md#polkadottransaction ) \| [ ` StellarTransaction ` ] ( /spec/core/types.md#stellartransaction ) \| [ ` TronTransaction ` ] ( /spec/core/types.md#trontransaction )
83
+ [ ` AptosTransaction ` ] ( /spec/core/types.md#aptostransaction ) \| [ ` CryptoOrgTransaction ` ] ( /spec/core/types.md#cryptoorgtransaction ) \| [ ` RippleTransaction ` ] ( /spec/core/types.md#rippletransaction ) \| [ ` CosmosTransaction ` ] ( /spec/core/types.md#cosmostransaction ) \| [ ` TezosTransaction ` ] ( /spec/core/types.md#tezostransaction ) \| [ ` PolkadotTransaction ` ] ( /spec/core/types.md#polkadottransaction ) \| [ ` StellarTransaction ` ] ( /spec/core/types.md#stellartransaction ) \| [ ` TronTransaction ` ] ( /spec/core/types.md#trontransaction ) \| [ ` HederaTransaction ` ] ( /spec/core/types.md#hederatransaction )
82
84
83
85
### RawTransaction
84
86
85
87
The raw representation of the generic [ Transaction] ( /spec/core/types.md#transaction ) type.
86
88
87
- [ ` RawEthereumTransaction ` ] ( /spec/core/types.md#rawethereumtransaction ) \| [ ` RawBitcoinTransaction ` ] ( /spec/core/types.md#rawbitcointransaction ) \| [ ` RawAlgorandTransaction ` ] ( /spec/core/types.md#rawalgorandtransaction ) \| [ ` RawAptosTransaction ` ] ( /spec/core/types.md#rawaptostransaction ) \| [ ` RawCryptoOrgTransaction ` ] ( /spec/core/types.md#rawcryptoorgtransaction ) \| [ ` RawRippleTransaction ` ] ( /spec/core/types.md#rawrippletransaction ) \| [ ` RawCosmosTransaction ` ] ( /spec/core/types.md#rawcosmostransaction ) \| [ ` RawTezosTransaction ` ] ( /spec/core/types.md#rawtezostransaction ) \| [ ` RawPolkadotTransaction ` ] ( /spec/core/types.md#rawpolkadottransaction ) \| [ ` RawStellarTransaction ` ] ( /spec/core/types.md#rawstellartransaction ) \| [ ` RawTronTransaction ` ] ( /spec/core/types.md#rawtrontransaction )
89
+ [ ` RawEthereumTransaction ` ] ( /spec/core/types.md#rawethereumtransaction ) \| [ ` RawBitcoinTransaction ` ] ( /spec/core/types.md#rawbitcointransaction ) \| [ ` RawAlgorandTransaction ` ] ( /spec/core/types.md#rawalgorandtransaction ) \| [ ` RawAptosTransaction ` ] ( /spec/core/types.md#rawaptostransaction ) \| [ ` RawCryptoOrgTransaction ` ] ( /spec/core/types.md#rawcryptoorgtransaction ) \| [ ` RawRippleTransaction ` ] ( /spec/core/types.md#rawrippletransaction ) \| [ ` RawCosmosTransaction ` ] ( /spec/core/types.md#rawcosmostransaction ) \| [ ` RawTezosTransaction ` ] ( /spec/core/types.md#rawtezostransaction ) \| [ ` RawPolkadotTransaction ` ] ( /spec/core/types.md#rawpolkadottransaction ) \| [ ` RawStellarTransaction ` ] ( /spec/core/types.md#rawstellartransaction ) \| [ ` RawTronTransaction ` ] ( /spec/core/types.md#rawtrontransaction ) \| [ ` RawHederaTransaction ` ] ( /spec/core/types.md#rawhederatransaction )
88
90
89
91
### TransactionCommon
90
92
@@ -236,6 +238,24 @@ The raw representation of the common transaction fields found in [TransactionCom
236
238
| ` nonce? ` | ` number ` | |
237
239
| ` recipient ` | ` string ` | The address of the transaction's recipient |
238
240
241
+ ### HederaTransaction
242
+
243
+ | Name | Type | Description |
244
+ | ----------- | ------------------------------------------ | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
245
+ | ` amount ` | ` BigNumber ` | The amount of token to send in the transaction, denoted in the smallest cryptocurrency's magnitude For example in BTC, a tx with an 'amount' field of 1 will correspond to a tx corresponding to 0.00000001 BTC |
246
+ | ` family ` | [ ` HEDERA ` ] ( /spec/core/types.md#families ) | |
247
+ | ` memo? ` | ` string ` | |
248
+ | ` recipient ` | ` string ` | The address of the transaction's recipient |
249
+
250
+ ### RawHederaTransaction
251
+
252
+ | Name | Type | Description |
253
+ | ----------- | ------------------------------------------ | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
254
+ | ` amount ` | ` string ` | The amount of token to send in the transaction, denoted in the smallest cryptocurrency's magnitude For example in BTC, a tx with an 'amount' field of 1 will correspond to a tx corresponding to 0.00000001 BTC |
255
+ | ` family ` | [ ` HEDERA ` ] ( /spec/core/types.md#families ) | |
256
+ | ` memo? ` | ` string ` | |
257
+ | ` recipient ` | ` string ` | The address of the transaction's recipient
258
+
239
259
### PolkadotTransaction
240
260
241
261
| Name | Type | Description |
@@ -376,6 +396,7 @@ Supported coin families
376
396
| COSMOS | ` cosmos ` |
377
397
| CRYPTO_ORG | ` crypto_org ` |
378
398
| ETHEREUM | ` ethereum ` |
399
+ | HEDERA | ` hedera ` |
379
400
| POLKADOT | ` polkadot ` |
380
401
| RIPPLE | ` ripple ` |
381
402
| STELLAR | ` stellar ` |
0 commit comments