Skip to content

Commit

Permalink
Merge pull request #320 from coinbase/feat/add-rlp-encoded-tx
Browse files Browse the repository at this point in the history
feat: update client to include rlp_encoded_tx
  • Loading branch information
drohit-cb authored Nov 26, 2024
2 parents 99935c5 + 002d6be commit fb3bd35
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
### Fixed
- Fixed a bug where the asset ID was not being set correctly for Gwei and Wei

### Added
- Add `rlp_encoded_tx` field to `EthereumTransaction` interface

## [0.10.0] - 2024-10-31

### Added
Expand Down
6 changes: 6 additions & 0 deletions src/client/api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1357,6 +1357,12 @@ export interface EthereumTransaction {
* @memberof EthereumTransaction
*/
'mint'?: string;
/**
* RLP encoded transaction as a hex string (prefixed with 0x) for native compatibility with popular eth clients such as etherjs, viem etc.
* @type {string}
* @memberof EthereumTransaction
*/
'rlp_encoded_tx'?: string;
}
/**
*
Expand Down

0 comments on commit fb3bd35

Please sign in to comment.