This repository has been archived by the owner on Nov 10, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: add transeptor bundler submodule * feat: add script to start local bundler * feat: add git submodule command * chore: update local bundler default port * feat: can now copy addresses in modal * feat: migrate snap @metamask/keyring-api deps from 0.1.3 to 1.0.0 * feat: add async and sync keyring request to dapp account hooks * feat: rename snap to smarthub * chore: fix lint
- Loading branch information
1 parent
908c275
commit 5778561
Showing
39 changed files
with
3,339 additions
and
1,480 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[submodule "packages/transeptor"] | ||
path = packages/transeptor | ||
url = https://github.com/transeptorlabs/transeptor-bundler.git |
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 +1 @@ | ||
v16 | ||
v19 |
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 +1,3 @@ | ||
SNAP_ORIGIN=prod:http://localhost:8080 | ||
SNAP_ORIGIN=local:http://localhost:8080 | ||
MNEMONIC=test test test test test test test test test test test junk | ||
BENEFICIARY=0xd21934eD8eAf27a67f0A70042Af50A1D6d195E81 |
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,17 @@ | ||
# Simple local development makefile. | ||
|
||
bundler: | ||
chmod +x ./start-bundler.sh | ||
./start-bundler.sh | ||
|
||
start: | ||
@echo "Start snap and site." | ||
yarn start | ||
|
||
snap: | ||
@echo "Start snap and site." | ||
yarn start-snap | ||
|
||
site: | ||
@echo "Start site and site." | ||
yarn start-site |
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,24 +1,25 @@ | ||
{ | ||
"name": "erc-4337-relayer-monorepo", | ||
"name": "root", | ||
"version": "1.0.0", | ||
"private": true, | ||
"description": "A MetaMask snap the wraps ERC-4337 eth namespace methods.", | ||
"homepage": "https://github.com/transeptorlabs/erc-4337-snap#readme", | ||
"description": "", | ||
"homepage": "https://github.com/transeptorlabs/smarthub-snap#readme", | ||
"bugs": { | ||
"url": "https://github.com/transeptorlabs/erc-4337-snap/issues" | ||
"url": "https://github.com/transeptorlabs/smarthub-snap/issues" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/transeptorlabs/erc-4337-snap.git" | ||
"url": "git+https://github.com/transeptorlabs/smarthub-snap.git" | ||
}, | ||
"license": "(MIT-0 OR Apache-2.0)", | ||
"license": "MIT", | ||
"author": { | ||
"name": "Transeptor Labs", | ||
"email": "[email protected]", | ||
"url": "https://transeptorlabs.io" | ||
}, | ||
"workspaces": [ | ||
"packages/*" | ||
"packages/snap", | ||
"packages/site" | ||
], | ||
"scripts": { | ||
"build": "yarn workspaces foreach --parallel --topological --verbose run build", | ||
|
@@ -27,6 +28,8 @@ | |
"lint:fix": "yarn lint:eslint --fix && yarn lint:misc --write", | ||
"lint:misc": "prettier '**/*.json' '**/*.md' '!**/CHANGELOG.md' '**/*.yml' --ignore-path .gitignore", | ||
"start": "yarn workspaces foreach --parallel --interlaced --verbose run start", | ||
"start-site": "yarn workspace @transeptor-labs/smarthub-site run start", | ||
"start-snap": "yarn workspace @transeptor-labs/smarthub-snap run start", | ||
"test": "yarn workspaces foreach --parallel --topological --verbose run test" | ||
}, | ||
"devDependencies": { | ||
|
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 +1 @@ | ||
SNAP_ORIGIN= | ||
SNAP_ORIGIN=npm:@transeptor-labs/smarthub-snap |
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
Oops, something went wrong.