Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## [1.0.3] - 2025-02-19

### Added Changes

- Added `getTransactionHash` to get transaction hash with an userOp hash.
- Added `transactionHash` to `send()` in `EtherspotTransactionKitContextProvider`.
- Version update of `etherspot-modular`.

## [1.0.2] - 2025-02-19

### Added Changes
Expand Down
4 changes: 4 additions & 0 deletions __mocks__/@etherspot/modular-sdk.js
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,10 @@ export class ModularSdk {
return userOpHash;
}

async getUserOpReceipt(userOpHash) {
return `0xreceipt_${userOpHash}`;
}

async generateModuleDeInitData() {
const deInitData = '0000000000000000000000000000000000000001';
return deInitData;
Expand Down
Loading