-
Notifications
You must be signed in to change notification settings - Fork 43
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: migrate EVM Connector #17
Closed
Closed
Changes from all commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
dfb174f
Migrate evm-connector/signature-verification
K1-R1 8e3b279
Migrate evm-connector
K1-R1 bffe81c
Export evm-connector
K1-R1 0a892ef
Include pnpm-lock.yaml update
K1-R1 2ed27de
Added changeset and removed md files from .lintstagedrc
K1-R1 56b18b3
Switched to fuels-forc for build command
K1-R1 c2aca95
remove prettier dep
K1-R1 afa79dd
Extend Window with ethereum field
K1-R1 ab6ad86
Conditional fuelProvider assignment from config parameter
K1-R1 e2e400b
Moved fuels dep to devDep, removed Webpack deps
K1-R1 b0bd89f
Updated fuels to 0.78
K1-R1 7688f4b
Merge branch main into K1-R1/migrate-metamask
K1-R1 86c823a
Merge branch 'main' into K1-R1/migrate-metamask
K1-R1 da1b674
Merge branch 'main' of github.com:FuelLabs/fuel-connectors into K1-R1…
K1-R1 26bf64c
Refactored deps
K1-R1 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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,6 @@ | ||
--- | ||
"@fuel-connectors/evm-connector": minor | ||
"@fuels/connectors": minor | ||
--- | ||
|
||
Migrate the EVM Connector package as evm-connector |
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,47 @@ | ||
{ | ||
"name": "@fuel-connectors/evm-connector", | ||
"version": "0.1.1", | ||
"type": "module", | ||
"files": ["dist"], | ||
"main": "./dist/wallet-connector-evm.umd.cjs", | ||
"module": "./dist/wallet-connector-evm.js", | ||
"exports": { | ||
".": { | ||
"import": "./dist/wallet-connector-evm.js", | ||
"require": "./dist/wallet-connector-evm.umd.cjs" | ||
} | ||
}, | ||
"types": "./dist/index.d.ts", | ||
"scripts": { | ||
"build:forc": "pnpm fuels-forc build --release --path ./signature-verification", | ||
"build:resources": "pnpm run build:forc && tsup --dts-only ./src/utils/generatePredicateResources.ts", | ||
"build": "pnpm run build:resources && tsup --dts-only", | ||
"build:watch": "pnpm run build:resources && tsup --watch --dts-only", | ||
"ts:check": "tsc --noEmit", | ||
"test": "vitest" | ||
}, | ||
"peerDependencies": { | ||
"fuels": ">=0.77.0" | ||
}, | ||
"dependencies": { | ||
"@ethereumjs/util": "^9.0.1", | ||
"@ethersproject/bytes": "^5.7.0", | ||
"memoizee": "^0.4.15" | ||
}, | ||
"devDependencies": { | ||
"@types/memoizee": "^0.4.11", | ||
"@fuel-ts/account": "^0.78.0", | ||
"@fuel-ts/fuel-core": "^0.78.0", | ||
"@fuel-ts/forc": "0.74.0", | ||
"fuels": "^0.78.0", | ||
"jsdom": "24.0.0", | ||
"ts-loader": "^9.5.1", | ||
"ts-node": "^10.9.2", | ||
"tsx": "^4.7.0", | ||
"typescript": "5.4.3", | ||
"vite": "^5.0.10", | ||
"vite-plugin-dts": "^3.6.4", | ||
"vitest": "^1.4.0", | ||
"tsup": "8.0.2" | ||
} | ||
} |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Linked to the above comment about the vite.config.ts file: #17 (comment)