Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
N
nebula
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
exchain
nebula
Commits
7ec04381
Unverified
Commit
7ec04381
authored
Sep 08, 2023
by
OptimismBot
Committed by
GitHub
Sep 08, 2023
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #7149 from ethereum-optimism/wyatt/ufm/metamask-init
Init MetaMask Test Service
parents
f0e09240
90450a72
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
91 additions
and
1 deletion
+91
-1
pnpm-lock.yaml
pnpm-lock.yaml
+7
-1
pnpm-workspace.yaml
pnpm-workspace.yaml
+1
-0
Dockerfile
ufm-test-services/metamask/Dockerfile
+10
-0
LICENSE
ufm-test-services/metamask/LICENSE
+21
-0
package.json
ufm-test-services/metamask/package.json
+20
-0
start.sh
ufm-test-services/metamask/start.sh
+1
-0
tsconfig.json
ufm-test-services/metamask/tsconfig.json
+31
-0
No files found.
pnpm-lock.yaml
View file @
7ec04381
...
@@ -575,6 +575,12 @@ importers:
...
@@ -575,6 +575,12 @@ importers:
specifier
:
^3.22.0
specifier
:
^3.22.0
version
:
3.22.0
version
:
3.22.0
ufm-test-services/metamask
:
devDependencies
:
typescript
:
specifier
:
^5.1.6
version
:
5.1.6
packages
:
packages
:
/@aashutoshrathi/word-wrap@1.2.6
:
/@aashutoshrathi/word-wrap@1.2.6
:
...
@@ -15375,7 +15381,7 @@ packages:
...
@@ -15375,7 +15381,7 @@ packages:
joycon
:
3.1.1
joycon
:
3.1.1
postcss-load-config
:
4.0.1
postcss-load-config
:
4.0.1
resolve-from
:
5.0.0
resolve-from
:
5.0.0
rollup
:
3.2
6.3
rollup
:
3.2
8.0
source-map
:
0.8.0-beta.0
source-map
:
0.8.0-beta.0
sucrase
:
3.34.0
sucrase
:
3.34.0
tree-kill
:
1.2.2
tree-kill
:
1.2.2
...
...
pnpm-workspace.yaml
View file @
7ec04381
...
@@ -2,3 +2,4 @@ packages:
...
@@ -2,3 +2,4 @@ packages:
-
'
packages/*'
-
'
packages/*'
-
'
endpoint-monitor'
-
'
endpoint-monitor'
-
'
op-exporter'
-
'
op-exporter'
-
'
ufm-test-services/metamask'
ufm-test-services/metamask/Dockerfile
0 → 100644
View file @
7ec04381
FROM
node:18
WORKDIR
/app
COPY
./ ./
RUN
npm i
-g
pnpm
RUN
pnpm
install
CMD
/bin/sh /app/start.sh
ufm-test-services/metamask/LICENSE
0 → 100644
View file @
7ec04381
MIT License
Copyright (c) 2023 Optimism
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
ufm-test-services/metamask/package.json
0 → 100644
View file @
7ec04381
{
"name"
:
"@eth-optimism/ufm-test-service-metamask"
,
"version"
:
"0.1.0"
,
"description"
:
"A User facing monitoring Test Service for MetaMask"
,
"license"
:
"MIT"
,
"repository"
:
{
"type"
:
"git"
,
"url"
:
"https://github.com/ethereum-optimism/optimism.git"
,
"directory"
:
"ufm-test-services/metamask"
},
"homepage"
:
"https://optimism.io"
,
"type"
:
"module"
,
"scripts"
:
{
"lint"
:
"prettier --check ."
,
"lint:fix"
:
"prettier --write ."
},
"devDependencies"
:
{
"typescript"
:
"^5.1.6"
}
}
ufm-test-services/metamask/start.sh
0 → 100755
View file @
7ec04381
#!/bin/bash
\ No newline at end of file
ufm-test-services/metamask/tsconfig.json
0 → 100644
View file @
7ec04381
{
"extends"
:
"../../tsconfig.json"
,
"compilerOptions"
:
{
"outDir"
:
"./dist"
,
"baseUrl"
:
"./src"
,
"noEmit"
:
true
,
"target"
:
"ESNext"
,
"lib"
:
[
"esnext"
],
"module"
:
"esnext"
,
"moduleResolution"
:
"Node"
,
"isolatedModules"
:
true
,
"allowUnreachableCode"
:
false
,
"skipLibCheck"
:
false
,
"allowUnusedLabels"
:
false
,
"alwaysStrict"
:
true
,
"exactOptionalPropertyTypes"
:
true
,
"noFallthroughCasesInSwitch"
:
true
,
"noImplicitAny"
:
true
,
"noImplicitReturns"
:
true
,
"noImplicitOverride"
:
true
,
"noImplicitThis"
:
true
,
"forceConsistentCasingInFileNames"
:
true
,
"verbatimModuleSyntax"
:
true
,
"noPropertyAccessFromIndexSignature"
:
true
,
"noUncheckedIndexedAccess"
:
true
,
"noUnusedLocals"
:
true
,
"noUnusedParameters"
:
true
,
"strict"
:
true
},
"include"
:
[
"./src"
]
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment