-
Notifications
You must be signed in to change notification settings - Fork 221
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
do not require package to deep import into relay-kit
- Loading branch information
1 parent
d969335
commit 4c96ee9
Showing
4 changed files
with
11 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
export * as fixtures from './fixtures' | ||
export * from './helpers' | ||
|
||
export { | ||
ENTRYPOINT_ABI, | ||
ENTRYPOINT_ADDRESS_V06, | ||
RPC_4337_CALLS | ||
} from '../src/packs/safe-4337/constants' | ||
export { mockGetEip4337BundlerProvider } from './mockGetEip4337BundlerProvider' |
4 changes: 4 additions & 0 deletions
4
packages/relay-kit/test-utils/mockGetEip4337BundlerProvider.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
import sinon from 'sinon' | ||
import * as utils from '../src/packs/safe-4337/utils' | ||
|
||
export const mockGetEip4337BundlerProvider = () => sinon.stub(utils, 'getEip4337BundlerProvider') |