-
Notifications
You must be signed in to change notification settings - Fork 81
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
remove key remove logs continued cont. ganache GH actions workflow tweak
- Loading branch information
Showing
26 changed files
with
811 additions
and
170 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
E2E_PRIVATE_KEY_ONE= | ||
E2E_PRIVATE_KEY_TWO= | ||
E2E_BICO_PAYMASTER_KEY_MUMBAI= |
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 |
---|---|---|
@@ -0,0 +1,28 @@ | ||
name: E2e Test workflow | ||
on: [pull_request, workflow_dispatch] | ||
|
||
jobs: | ||
e2e_test: | ||
name: E2E tests | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
node-version: [18.x] | ||
|
||
steps: | ||
- name: Checkout | ||
uses: "actions/checkout@main" | ||
|
||
- name: Set Node.js | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
|
||
- name: Install dependencies | ||
run: yarn install --frozen-lockfile && yarn build | ||
- name: Run tests | ||
env: | ||
E2E_PRIVATE_KEY_ONE: ${{ secrets.E2E_PRIVATE_KEY_ONE }} | ||
E2E_PRIVATE_KEY_TWO: ${{ secrets.E2E_PRIVATE_KEY_TWO }} | ||
E2E_BICO_PAYMASTER_KEY_MUMBAI: ${{ secrets.E2E_BICO_PAYMASTER_KEY_MUMBAI }} | ||
run: yarn test:e2e |
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,5 +1,6 @@ | ||
name: Test workflow | ||
on: push | ||
on: [push, workflow_dispatch] | ||
|
||
jobs: | ||
lint: | ||
name: Lint sources | ||
|
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,6 @@ | ||
import config from "./jest.config"; | ||
const e2eConfig = { ...config }; | ||
e2eConfig.testMatch = ["**/*.e2e.spec.ts"]; | ||
e2eConfig.setupFilesAfterEnv = ["<rootDir>/setup-e2e-tests.ts"]; | ||
|
||
export default e2eConfig; |
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
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import { BiconomySmartAccountV2 } from "./BiconomySmartAccountV2"; | ||
import { BiconomySmartAccountV2Config } from "./utils/Types"; | ||
export { Bundler, IBundler } from "@biconomy/bundler"; | ||
export { BiconomyPaymaster as Paymaster, IPaymaster } from "@biconomy/paymaster"; | ||
|
||
export const createSmartWalletClient = BiconomySmartAccountV2.create; | ||
export type SmartWalletConfig = BiconomySmartAccountV2Config; |
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
88 changes: 0 additions & 88 deletions
88
packages/account/tests/SmartAccountV2-Abstract-Paymaster.local.spec.ts
This file was deleted.
Oops, something went wrong.
64 changes: 0 additions & 64 deletions
64
packages/account/tests/SmartAccountV2-Module-Abstraction.local.spec.ts
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.