Skip to content

Commit

Permalink
feat: update client to include rlp_encoded_tx field within EthereumTr…
Browse files Browse the repository at this point in the history
…ansaction
  • Loading branch information
drohit-cb committed Nov 26, 2024
1 parent 99935c5 commit 99e5298
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

### Fixed
- Fixed a bug where the asset ID was not being set correctly for Gwei and Wei
- Added `rlp_encoded_tx` field to `EthereumTransaction` interface

## [0.10.0] - 2024-10-31

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 99e5298

Please sign in to comment.