Skip to content

Commit

Permalink
Add networkFees to asEthereumInfoPayload cleaner
Browse files Browse the repository at this point in the history
  • Loading branch information
samholmes committed Jul 9, 2024
1 parent 37f3e63 commit dd1f574
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
## Unreleased

- added: Implemented common `updateInfoPayload` method for all plugins
- changed: (Ethereum) Include network fee info for core info payload

## 4.10.0 (2024-06-24)

Expand All @@ -14,7 +15,7 @@

- added: (Ethereum/Solana) Add BOBBY
- added: (zkSync) Add ZK
- changed: (Piratechain) Allow `derivePublicKey` to fail in case native code isn't present
- changed: (Piratechain) Allow `derivePublicKey` to fail in case native code isn't present
- removed: (Zcash/Piratechain) Remove `defaultBirthdayHeight`

## 4.8.0 (2024-06-10)
Expand Down
3 changes: 2 additions & 1 deletion src/ethereum/ethereumTypes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -541,6 +541,7 @@ export const asMaybeEvmOverrideGasLimitLocation = asMaybe(
//

export const asEthereumInfoPayload = asObject({
networkAdapterConfigs: asOptional(asArray(asNetworkAdaptorConfig))
networkAdapterConfigs: asOptional(asArray(asNetworkAdaptorConfig)),
networkFees: asOptional(asEthereumFees)
})
export type EthereumInfoPayload = ReturnType<typeof asEthereumInfoPayload>

0 comments on commit dd1f574

Please sign in to comment.