Skip to content

Commit

Permalink
Merge pull request #34 from cosmos/merge-main
Browse files Browse the repository at this point in the history
Merge main
  • Loading branch information
schnetzlerjoe authored May 29, 2024
2 parents 0fe0c60 + 4cc8885 commit 52d77eb
Show file tree
Hide file tree
Showing 8 changed files with 4,340 additions and 1,145 deletions.
23 changes: 20 additions & 3 deletions packages/snap/package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
{
"name": "@cosmsnap/snap",
"version": "0.1.20",
"version": "0.1.22",
"description": "The Cosmos extension for your Metamask wallet.",
"repository": {
"type": "git",
"url": "git+https://github.com/cosmos/snap.git"
"url": "git+https://github.com/cosmos/snap.git"
},
"license": "MIT",
"author": "Mystic Labs, Inc",
Expand All @@ -28,8 +29,13 @@
"start": "mm-snap watch",
"test": "npx ava tests/*",
"test:e2e": "jest"
"test:e2e": "jest"
},
"ava": {
"timeout": "60s",
"files": [
"**/*-test.js"
],
"timeout": "60s",
"files": [
"**/*-test.js"
Expand All @@ -42,6 +48,10 @@
]
},
"dependencies": {
"@agoric/cosmic-proto": "^0.3.0",
"@cosmjs/amino": "^0.31.1",
"@cosmjs/crypto": "^0.31.1",
"@cosmjs/encoding": "^0.31.1",
"@agoric/cosmic-proto": "^0.3.0",
"@cosmjs/amino": "^0.31.1",
"@cosmjs/crypto": "^0.31.1",
Expand All @@ -51,14 +61,17 @@
"@keplr-wallet/types": "^0.12.25",
"@metamask/key-tree": "^9.0.0",
"@metamask/snaps-sdk": "^3.1.1",
"@metamask/snaps-ui": "^3.1.0",
"buffer": "^6.0.3",
"cosmjs-types": "^0.8.0",
"lodash": "^4.17.21",
"lodash": "^4.17.21",
"osmojs": "^16.5.1",
"ses": "^0.18.4"
},
"devDependencies": {
"@babel/core": "^7.24.0",
"@babel/preset-env": "^7.24.0",
"@babel/preset-typescript": "^7.23.3",
"@babel/core": "^7.24.0",
"@babel/preset-env": "^7.24.0",
"@babel/preset-typescript": "^7.23.3",
Expand All @@ -72,11 +85,13 @@
"@metamask/snaps-cli": "^6.0.2",
"@metamask/snaps-jest": "^6.0.1",
"@types/jest": "^29.5.12",
"@types/lodash": "^4.17.4",
"@types/node-fetch": "^2.6.4",
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.33.0",
"ava": "^5.3.0",
"babel-jest": "^29.7.0",
"babel-jest": "^29.7.0",
"eslint": "^8.21.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.26.0",
Expand All @@ -85,14 +100,16 @@
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.7.0",
"jest": "^29.7.0",
"node-fetch": "2",
"prettier": "^2.2.1",
"prettier-plugin-packagejson": "^2.2.11",
"rimraf": "^3.0.2",
"through2": "^4.0.2",
"ts-jest": "^29.1.2",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.1",
"typescript": "^5.1.3"
"typescript": "^5.4.5"
},
"packageManager": "yarn@3.2.1",
"engines": {
Expand Down
2 changes: 1 addition & 1 deletion packages/snap/snap.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const config: SnapConfig = {
buffer: false,
},
environment: {
DENO_SERVERLESS_URL: process.env.DENO_SERVERLESS_URL,
DENO_SERVERLESS_URL: process.env.DENO_SERVERLESS_URL
},
};

Expand Down
20 changes: 17 additions & 3 deletions packages/snap/snap.manifest.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
{
"version": "0.1.20",
"version": "0.1.22",
"description": "Cosmos Extension that adds Cosmos support to Metamask.",
"proposedName": "Cosmos Extension",
"repository": {
"type": "git",
"url": "git+https://github.com/cosmos/snap.git"
"url": "git+https://github.com/cosmos/snap.git"
},
"source": {
"shasum": "Ka5d45bzE3iPt6FchypG0ffAWNOJjFaIxzNNl3RcpPA=",
"shasum": "iy7sFNnki+rvhkmOaWGfKE5ZiaEqOYkuE1AVb5dEiN0=",
"location": {
"npm": {
"filePath": "dist/bundle.js",
Expand Down Expand Up @@ -90,7 +91,20 @@
"snaps": false,
"dapps": true
},
"endowment:page-home": {}
"endowment:page-home": {},
"endowment:lifecycle-hooks": {},
"snap_notify": {},
"endowment:cronjob": {
"jobs": [
{
"expression": "*/30 * * * *",
"request": {
"method": "notification",
"params": {}
}
}
]
}
},
"manifestVersion": "0.1"
}
Loading

0 comments on commit 52d77eb

Please sign in to comment.