-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Added a test website for testing the snap
- Made adjustments to the core mm snap functions to allow for a dynamically passed in snap id - Improved the UI of the snap popups
- Loading branch information
1 parent
d4e4bfa
commit 5b327c1
Showing
71 changed files
with
8,518 additions
and
275 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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,4 +1,3 @@ | ||
export * from './config'; | ||
export * from './cosmjs'; | ||
export * from './snapWallet'; | ||
export * from './types'; | ||
|
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,44 @@ | ||
module.exports = { | ||
root: true, | ||
parserOptions: { | ||
sourceType: 'module', | ||
}, | ||
|
||
extends: ['@metamask/eslint-config'], | ||
|
||
overrides: [ | ||
{ | ||
files: ['**/*.js'], | ||
extends: ['@metamask/eslint-config-nodejs'], | ||
}, | ||
|
||
{ | ||
files: ['**/*.{ts,tsx}'], | ||
extends: ['@metamask/eslint-config-typescript'], | ||
rules: { | ||
'@typescript-eslint/consistent-type-definitions': ['error', 'type'], | ||
}, | ||
}, | ||
|
||
{ | ||
files: ['**/*.test.ts', '**/*.test.js'], | ||
extends: ['@metamask/eslint-config-jest'], | ||
rules: { | ||
'@typescript-eslint/no-shadow': [ | ||
'error', | ||
{ allow: ['describe', 'expect', 'it'] }, | ||
], | ||
}, | ||
}, | ||
], | ||
|
||
ignorePatterns: [ | ||
'!.prettierrc.js', | ||
'**/!.eslintrc.js', | ||
'**/dist*/', | ||
'**/*__GENERATED__*', | ||
'**/build', | ||
'**/public', | ||
'**/.cache', | ||
], | ||
}; |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.