Skip to content
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

Rename repository #842

Merged
merged 1 commit into from Oct 11, 2022
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
@@ -1,4 +1,4 @@
# snaps-skunkworks
# snaps-monorepo

Monorepo for experimental snaps dependencies.

Expand Down Expand Up @@ -40,7 +40,7 @@ Run `yarn test` and `yarn lint` in the project root directory, or in a workspace

### Publishing

1. Run [Create Release Pull Request workflow](https://github.com/MetaMask/snaps-skunkworks/actions/workflows/create-release-pr.yml)
1. Run [Create Release Pull Request workflow](https://github.com/MetaMask/snaps-monorepo/actions/workflows/create-release-pr.yml)
2. Checkout the created branch.
3. Update CHANGELOG.md in each package, moving changes to their categories and make them more descriptive.
4. Run `yarn install` in root to update `yarn.lock`.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -4,7 +4,7 @@
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/MetaMask/snaps-skunkworks.git"
"url": "https://github.com/MetaMask/snaps-monorepo.git"
},
"workspaces": [
"packages/*"
Expand Down
194 changes: 97 additions & 97 deletions packages/cli/CHANGELOG.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion packages/cli/README.md
Expand Up @@ -90,7 +90,7 @@ Here's an example manifest:
}
```

Refer to [the Snaps publishing specification](https://github.com/MetaMask/specifications/blob/main/snaps/publishing.md) and the [manifest JSON schema](https://github.com/MetaMask/snaps-skunkworks/blob/main/packages/controllers/src/snaps/json-schemas/snap-manifest.schema.json) for details.
Refer to [the Snaps publishing specification](https://github.com/MetaMask/specifications/blob/main/snaps/publishing.md) and the [manifest JSON schema](https://github.com/MetaMask/snaps-monorepo/blob/main/packages/controllers/src/snaps/json-schemas/snap-manifest.schema.json) for details.

> **ATTN:** If your Snap is not compatible with the publishing specification, your Snap may not work properly or install at all.

Expand Down
2 changes: 1 addition & 1 deletion packages/cli/package.json
Expand Up @@ -4,7 +4,7 @@
"description": "A CLI for developing MetaMask Snaps.",
"repository": {
"type": "git",
"url": "https://github.com/MetaMask/snaps-skunkworks.git"
"url": "https://github.com/MetaMask/snaps-monorepo.git"
},
"license": "ISC",
"bin": {
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/src/utils/misc.ts
Expand Up @@ -156,7 +156,7 @@ export async function writeError(
// unless the watcher is active, exit
if (!global.snaps.isWatching) {
// TODO(ritave): Remove process exit and change into collapse of functions
// https://github.com/MetaMask/snaps-skunkworks/issues/81
// https://github.com/MetaMask/snaps-monorepo/issues/81
process.exit(1);
}
}
Expand Down
348 changes: 174 additions & 174 deletions packages/controllers/CHANGELOG.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion packages/controllers/package.json
Expand Up @@ -4,7 +4,7 @@
"description": "Controllers for MetaMask Snaps.",
"repository": {
"type": "git",
"url": "https://github.com/MetaMask/snaps-skunkworks.git"
"url": "https://github.com/MetaMask/snaps-monorepo.git"
},
"main": "dist/index.js",
"browser": {
Expand Down
126 changes: 63 additions & 63 deletions packages/examples/CHANGELOG.md
Expand Up @@ -16,15 +16,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [0.21.0]
### Added
- Run eval and fix manifest in bundler plugins ([#731](https://github.com/MetaMask/snaps-skunkworks/pull/731))
- Run eval and fix manifest in bundler plugins ([#731](https://github.com/MetaMask/snaps-monorepo/pull/731))

## [0.20.0]
### Changed
- No changes this release.

## [0.19.1]
### Added
- Generate source maps from modified code ([#615](https://github.com/MetaMask/snaps-skunkworks/pull/615))
- Generate source maps from modified code ([#615](https://github.com/MetaMask/snaps-monorepo/pull/615))

## [0.19.0]
### Changed
Expand All @@ -36,27 +36,27 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [0.18.0]
### Changed
- Reduce TypeScript compilation target to ES2017 ([#628](https://github.com/MetaMask/snaps-skunkworks/pull/628))
- Reduce TypeScript compilation target to ES2017 ([#628](https://github.com/MetaMask/snaps-monorepo/pull/628))

## [0.17.0]
### Changed
- **BREAKING:** Bump minimum Node version to 16 ([#601](https://github.com/MetaMask/snaps-skunkworks/pull/601))
- **BREAKING:** Bump minimum Node version to 16 ([#601](https://github.com/MetaMask/snaps-monorepo/pull/601))

## [0.16.0]
### Added
- Add Browserify Snap example ([#478](https://github.com/MetaMask/snaps-skunkworks/pull/478))
- Add CLI as dependency to examples ([#528](https://github.com/MetaMask/snaps-skunkworks/pull/528))
- Add Browserify Snap example ([#478](https://github.com/MetaMask/snaps-monorepo/pull/478))
- Add CLI as dependency to examples ([#528](https://github.com/MetaMask/snaps-monorepo/pull/528))

### Changed
- **BREAKING:** Update examples to use CommonJS exported `onRpcRequest` and named parameters ([#481](https://github.com/MetaMask/snaps-skunkworks/pull/481), [#533](https://github.com/MetaMask/snaps-skunkworks/pull/533), [#538](https://github.com/MetaMask/snaps-skunkworks/pull/538), [#541](https://github.com/MetaMask/snaps-skunkworks/pull/541))
- Update TypeScript example to use `OnRpcRequestHandler` ([#531](https://github.com/MetaMask/snaps-skunkworks/pull/531), [#533](https://github.com/MetaMask/snaps-skunkworks/pull/533), [#538](https://github.com/MetaMask/snaps-skunkworks/pull/538))
- Update TypeScript example to use multiple files ([#527](https://github.com/MetaMask/snaps-skunkworks/pull/527))
- **BREAKING:** Update examples to use CommonJS exported `onRpcRequest` and named parameters ([#481](https://github.com/MetaMask/snaps-monorepo/pull/481), [#533](https://github.com/MetaMask/snaps-monorepo/pull/533), [#538](https://github.com/MetaMask/snaps-monorepo/pull/538), [#541](https://github.com/MetaMask/snaps-monorepo/pull/541))
- Update TypeScript example to use `OnRpcRequestHandler` ([#531](https://github.com/MetaMask/snaps-monorepo/pull/531), [#533](https://github.com/MetaMask/snaps-monorepo/pull/533), [#538](https://github.com/MetaMask/snaps-monorepo/pull/538))
- Update TypeScript example to use multiple files ([#527](https://github.com/MetaMask/snaps-monorepo/pull/527))

## [0.15.0]
### Added
- Add Rollup Snap example ([#472](https://github.com/MetaMask/snaps-skunkworks/pull/472))
- Add Webpack Snap example ([#462](https://github.com/MetaMask/snaps-skunkworks/pull/462))
- Add TypeScript Snap example ([#443](https://github.com/MetaMask/snaps-skunkworks/pull/443))
- Add Rollup Snap example ([#472](https://github.com/MetaMask/snaps-monorepo/pull/472))
- Add Webpack Snap example ([#462](https://github.com/MetaMask/snaps-monorepo/pull/462))
- Add TypeScript Snap example ([#443](https://github.com/MetaMask/snaps-monorepo/pull/443))

## [0.14.0]
### Changed
Expand All @@ -76,14 +76,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [0.11.0]
### Added
- Add WebAssembly example snap ([#242](https://github.com/MetaMask/snaps-skunkworks/pull/242), [#381](https://github.com/MetaMask/snaps-skunkworks/pull/381), [#371](https://github.com/MetaMask/snaps-skunkworks/pull/371))
- Add WebAssembly example snap ([#242](https://github.com/MetaMask/snaps-monorepo/pull/242), [#381](https://github.com/MetaMask/snaps-monorepo/pull/381), [#371](https://github.com/MetaMask/snaps-monorepo/pull/371))

### Changed
- Upgraded TypeScript version to minimum 4.4 ([#360](https://github.com/MetaMask/snaps-skunkworks/pull/360))
- Upgraded TypeScript version to minimum 4.4 ([#360](https://github.com/MetaMask/snaps-monorepo/pull/360))

## [0.10.7]
### Changed
- **BREAKING:** Bump minimum Node version from 12 to 14 ([#331](https://github.com/MetaMask/snaps-skunkworks/pull/331))
- **BREAKING:** Bump minimum Node version from 12 to 14 ([#331](https://github.com/MetaMask/snaps-monorepo/pull/331))

## [0.10.6]
### Changed
Expand All @@ -95,14 +95,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [0.10.3]
### Added
- Add notification example snap ([#248](https://github.com/MetaMask/snaps-skunkworks/pull/248))
- Add notification example snap ([#248](https://github.com/MetaMask/snaps-monorepo/pull/248))

## [0.10.0]
### Changed
- **BREAKING:** Update config files per `@metamask/snaps-cli@0.10.0` ([#251](https://github.com/MetaMask/snaps-skunkworks/pull/251))
- **BREAKING:** Update config files per `@metamask/snaps-cli@0.10.0` ([#251](https://github.com/MetaMask/snaps-monorepo/pull/251))

### Fixed
- Ensure that all examples work with the current Snaps implementation ([#219](https://github.com/MetaMask/snaps-skunkworks/pull/219))
- Ensure that all examples work with the current Snaps implementation ([#219](https://github.com/MetaMask/snaps-monorepo/pull/219))

## [0.9.0]
### Changed
Expand All @@ -126,17 +126,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [0.6.1]
### Fixed
- `bls-signer` example Snap `snap_confirm` call ([#168](https://github.com/MetaMask/snaps-skunkworks/pull/168))
- `bls-signer` example Snap `snap_confirm` call ([#168](https://github.com/MetaMask/snaps-monorepo/pull/168))
- The `bls-signer` Snap was passing invalid parameters to the method.

## [0.6.0]
### Changed
- **BREAKING:** Support the new Snaps publishing specification ([#140](https://github.com/MetaMask/snaps-skunkworks/pull/140))
- **BREAKING:** Support the new Snaps publishing specification ([#140](https://github.com/MetaMask/snaps-monorepo/pull/140))
- This introduces several breaking changes to how Snaps are developed, hosted, and represented at runtime. See [the specification](https://github.com/MetaMask/specifications/blob/d4a5bf5d6990bb5b02a98bd3f95a24ffb28c701c/snaps/publishing.md) and the referenced pull request for details.
- **BREAKING:** Update all example Snaps per new publishing specification ([#157](https://github.com/MetaMask/snaps-skunkworks/pull/157))
- **BREAKING:** Update all example Snaps per new publishing specification ([#157](https://github.com/MetaMask/snaps-monorepo/pull/157))

### Removed
- **BREAKING:** "hello-snaps` example ([#157](https://github.com/MetaMask/snaps-skunkworks/pull/157))
- **BREAKING:** "hello-snaps` example ([#157](https://github.com/MetaMask/snaps-monorepo/pull/157))

## [0.5.0]
### Changed
Expand All @@ -152,16 +152,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [0.3.0]
### Changed
- **BREAKING:** Enforce consistent naming for Snaps-related functionality ([#119](https://github.com/MetaMask/snaps-skunkworks/pull/119))
- **BREAKING:** Enforce consistent naming for Snaps-related functionality ([#119](https://github.com/MetaMask/snaps-monorepo/pull/119))

## [0.2.2]
### Fixed
- Package script issues ([#97](https://github.com/MetaMask/snaps-skunkworks/pull/97), [#98](https://github.com/MetaMask/snaps-skunkworks/pull/98))
- Package script issues ([#97](https://github.com/MetaMask/snaps-monorepo/pull/97), [#98](https://github.com/MetaMask/snaps-monorepo/pull/98))


## [0.2.0]
### Changed
- Update publish scripts ([#92](https://github.com/MetaMask/snaps-skunkworks/pull/92))
- Update publish scripts ([#92](https://github.com/MetaMask/snaps-monorepo/pull/92))

## [0.1.1]
### Added
Expand All @@ -172,44 +172,44 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [0.1.0]
### Changed
- Initial release ([#72](https://github.com/MetaMask/snaps-skunkworks/pull/72))
- Initial release ([#72](https://github.com/MetaMask/snaps-monorepo/pull/72))
- This package was previously a subset of [`snaps-cli`](https://github.com/MetaMask/snaps-cli/tree/main/examples), which has been renamed to [`@metamask/snaps-cli`](https://npmjs.com/package/@metamask/snaps-cli).
- Some examples have been deleted because they were outdated.

[Unreleased]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.22.1...HEAD
[0.22.1]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.22.0...v0.22.1
[0.22.0]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.21.0...v0.22.0
[0.21.0]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.20.0...v0.21.0
[0.20.0]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.19.1...v0.20.0
[0.19.1]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.19.0...v0.19.1
[0.19.0]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.18.1...v0.19.0
[0.18.1]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.18.0...v0.18.1
[0.18.0]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.17.0...v0.18.0
[0.17.0]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.16.0...v0.17.0
[0.16.0]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.15.0...v0.16.0
[0.15.0]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.14.0...v0.15.0
[0.14.0]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.13.0...v0.14.0
[0.13.0]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.12.0...v0.13.0
[0.12.0]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.11.1...v0.12.0
[0.11.1]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.11.0...v0.11.1
[0.11.0]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.10.7...v0.11.0
[0.10.7]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.10.6...v0.10.7
[0.10.6]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.10.5...v0.10.6
[0.10.5]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.10.3...v0.10.5
[0.10.3]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.10.0...v0.10.3
[0.10.0]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.9.0...v0.10.0
[0.9.0]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.8.0...v0.9.0
[0.8.0]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.7.0...v0.8.0
[0.7.0]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.6.3...v0.7.0
[0.6.3]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.6.2...v0.6.3
[0.6.2]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.6.1...v0.6.2
[0.6.1]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.6.0...v0.6.1
[0.6.0]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.5.0...v0.6.0
[0.5.0]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.4.0...v0.5.0
[0.4.0]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.3.1...v0.4.0
[0.3.1]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.3.0...v0.3.1
[0.3.0]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.2.2...v0.3.0
[0.2.2]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.2.0...v0.2.2
[0.2.0]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.1.1...v0.2.0
[0.1.1]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.1.0...v0.1.1
[0.1.0]: https://github.com/MetaMask/snaps-skunkworks/releases/tag/v0.1.0
[Unreleased]: https://github.com/MetaMask/snaps-monorepo/compare/v0.22.1...HEAD
[0.22.1]: https://github.com/MetaMask/snaps-monorepo/compare/v0.22.0...v0.22.1
[0.22.0]: https://github.com/MetaMask/snaps-monorepo/compare/v0.21.0...v0.22.0
[0.21.0]: https://github.com/MetaMask/snaps-monorepo/compare/v0.20.0...v0.21.0
[0.20.0]: https://github.com/MetaMask/snaps-monorepo/compare/v0.19.1...v0.20.0
[0.19.1]: https://github.com/MetaMask/snaps-monorepo/compare/v0.19.0...v0.19.1
[0.19.0]: https://github.com/MetaMask/snaps-monorepo/compare/v0.18.1...v0.19.0
[0.18.1]: https://github.com/MetaMask/snaps-monorepo/compare/v0.18.0...v0.18.1
[0.18.0]: https://github.com/MetaMask/snaps-monorepo/compare/v0.17.0...v0.18.0
[0.17.0]: https://github.com/MetaMask/snaps-monorepo/compare/v0.16.0...v0.17.0
[0.16.0]: https://github.com/MetaMask/snaps-monorepo/compare/v0.15.0...v0.16.0
[0.15.0]: https://github.com/MetaMask/snaps-monorepo/compare/v0.14.0...v0.15.0
[0.14.0]: https://github.com/MetaMask/snaps-monorepo/compare/v0.13.0...v0.14.0
[0.13.0]: https://github.com/MetaMask/snaps-monorepo/compare/v0.12.0...v0.13.0
[0.12.0]: https://github.com/MetaMask/snaps-monorepo/compare/v0.11.1...v0.12.0
[0.11.1]: https://github.com/MetaMask/snaps-monorepo/compare/v0.11.0...v0.11.1
[0.11.0]: https://github.com/MetaMask/snaps-monorepo/compare/v0.10.7...v0.11.0
[0.10.7]: https://github.com/MetaMask/snaps-monorepo/compare/v0.10.6...v0.10.7
[0.10.6]: https://github.com/MetaMask/snaps-monorepo/compare/v0.10.5...v0.10.6
[0.10.5]: https://github.com/MetaMask/snaps-monorepo/compare/v0.10.3...v0.10.5
[0.10.3]: https://github.com/MetaMask/snaps-monorepo/compare/v0.10.0...v0.10.3
[0.10.0]: https://github.com/MetaMask/snaps-monorepo/compare/v0.9.0...v0.10.0
[0.9.0]: https://github.com/MetaMask/snaps-monorepo/compare/v0.8.0...v0.9.0
[0.8.0]: https://github.com/MetaMask/snaps-monorepo/compare/v0.7.0...v0.8.0
[0.7.0]: https://github.com/MetaMask/snaps-monorepo/compare/v0.6.3...v0.7.0
[0.6.3]: https://github.com/MetaMask/snaps-monorepo/compare/v0.6.2...v0.6.3
[0.6.2]: https://github.com/MetaMask/snaps-monorepo/compare/v0.6.1...v0.6.2
[0.6.1]: https://github.com/MetaMask/snaps-monorepo/compare/v0.6.0...v0.6.1
[0.6.0]: https://github.com/MetaMask/snaps-monorepo/compare/v0.5.0...v0.6.0
[0.5.0]: https://github.com/MetaMask/snaps-monorepo/compare/v0.4.0...v0.5.0
[0.4.0]: https://github.com/MetaMask/snaps-monorepo/compare/v0.3.1...v0.4.0
[0.3.1]: https://github.com/MetaMask/snaps-monorepo/compare/v0.3.0...v0.3.1
[0.3.0]: https://github.com/MetaMask/snaps-monorepo/compare/v0.2.2...v0.3.0
[0.2.2]: https://github.com/MetaMask/snaps-monorepo/compare/v0.2.0...v0.2.2
[0.2.0]: https://github.com/MetaMask/snaps-monorepo/compare/v0.1.1...v0.2.0
[0.1.1]: https://github.com/MetaMask/snaps-monorepo/compare/v0.1.0...v0.1.1
[0.1.0]: https://github.com/MetaMask/snaps-monorepo/releases/tag/v0.1.0
2 changes: 1 addition & 1 deletion packages/examples/examples/bls-signer/package.json
Expand Up @@ -5,7 +5,7 @@
"description": "An example Snap that signs messages using BLS.",
"repository": {
"type": "git",
"url": "https://github.com/MetaMask/snaps-skunkworks.git"
"url": "https://github.com/MetaMask/snaps-monorepo.git"
},
"license": "ISC",
"main": "src/index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/examples/examples/bls-signer/snap.manifest.json
Expand Up @@ -4,7 +4,7 @@
"proposedName": "bls-signer",
"repository": {
"type": "git",
"url": "https://github.com/MetaMask/snaps-skunkworks.git"
"url": "https://github.com/MetaMask/snaps-monorepo.git"
},
"source": {
"shasum": "qNYd+o17O8kEwz40rxgBftRiyss2sYS7ir++rlLBQXo=",
Expand Down
2 changes: 1 addition & 1 deletion packages/examples/examples/browserify/package.json
Expand Up @@ -5,7 +5,7 @@
"description": "An example Snap built using TypeScript and Browserify",
"repository": {
"type": "git",
"url": "https://github.com/MetaMask/snaps-skunkworks.git"
"url": "https://github.com/MetaMask/snaps-monorepo.git"
},
"license": "ISC",
"main": "src/index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/examples/examples/browserify/snap.manifest.json
Expand Up @@ -4,7 +4,7 @@
"proposedName": "browserify-snap",
"repository": {
"type": "git",
"url": "https://github.com/MetaMask/snaps-skunkworks.git"
"url": "https://github.com/MetaMask/snaps-monorepo.git"
},
"source": {
"shasum": "C25lIsH+SbFGCJM9i1lGLdPYq7YsUX0UHr/tZFMfsHI=",
Expand Down
2 changes: 1 addition & 1 deletion packages/examples/examples/ethers-js/package.json
Expand Up @@ -5,7 +5,7 @@
"description": "An example Snap that that uses ethers.js.",
"repository": {
"type": "git",
"url": "https://github.com/MetaMask/snaps-skunkworks.git"
"url": "https://github.com/MetaMask/snaps-monorepo.git"
},
"license": "ISC",
"main": "src/index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/examples/examples/ethers-js/snap.manifest.json
Expand Up @@ -4,7 +4,7 @@
"proposedName": "ethers-js-snap",
"repository": {
"type": "git",
"url": "https://github.com/MetaMask/snaps-skunkworks.git"
"url": "https://github.com/MetaMask/snaps-monorepo.git"
},
"source": {
"shasum": "tZZq/cE7FBqjMguHM+WWaoUFTTqCE2qwV70VeOJSX4g=",
Expand Down
2 changes: 1 addition & 1 deletion packages/examples/examples/ipfs/package.json
Expand Up @@ -5,7 +5,7 @@
"description": "An example Snap that performs IPFS operations.",
"repository": {
"type": "git",
"url": "https://github.com/MetaMask/snaps-skunkworks.git"
"url": "https://github.com/MetaMask/snaps-monorepo.git"
},
"license": "ISC",
"main": "src/index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/examples/examples/ipfs/snap.manifest.json
Expand Up @@ -4,7 +4,7 @@
"proposedName": "ipfs-snap",
"repository": {
"type": "git",
"url": "https://github.com/MetaMask/snaps-skunkworks.git"
"url": "https://github.com/MetaMask/snaps-monorepo.git"
},
"source": {
"shasum": "ZcetnugqubraghMtlmyOiPDlUut7RiwTLmQbUwUypls=",
Expand Down
2 changes: 1 addition & 1 deletion packages/examples/examples/rollup/package.json
Expand Up @@ -5,7 +5,7 @@
"description": "An example Snap built using TypeScript and Rollup",
"repository": {
"type": "git",
"url": "https://github.com/MetaMask/snaps-skunkworks.git"
"url": "https://github.com/MetaMask/snaps-monorepo.git"
},
"license": "ISC",
"main": "src/index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/examples/examples/rollup/snap.manifest.json
Expand Up @@ -4,7 +4,7 @@
"proposedName": "rollup-snap",
"repository": {
"type": "git",
"url": "https://github.com/MetaMask/snaps-skunkworks.git"
"url": "https://github.com/MetaMask/snaps-monorepo.git"
},
"source": {
"shasum": "KBCbe8PgRkiublGQuK8NPeUex737E8Px3fSrSdnYuIg=",
Expand Down