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
1098c07d
Unverified
Commit
1098c07d
authored
Jul 09, 2023
by
OptimismBot
Committed by
GitHub
Jul 09, 2023
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #6238 from ethereum-optimism/ctb/delete-dead-script
contracts-bedrock: delete dead script
parents
d80c145e
8f41638e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
67 deletions
+0
-67
generate-artifacts.ts
packages/contracts-bedrock/scripts/generate-artifacts.ts
+0
-67
No files found.
packages/contracts-bedrock/scripts/generate-artifacts.ts
deleted
100644 → 0
View file @
d80c145e
import
path
from
'
path
'
import
fs
from
'
fs
'
import
glob
from
'
glob
'
/**
* Script for automatically generating a file which has a series of `require` statements for
* importing JSON contract artifacts. We do this to preserve browser compatibility.
*/
const
main
=
async
()
=>
{
const
contractArtifactsFolder
=
path
.
resolve
(
__dirname
,
`../artifacts/contracts`
)
const
artifactPaths
=
glob
.
sync
(
`
${
contractArtifactsFolder
}
/**/*[!.t].sol/**.json`
)
.
filter
((
match
)
=>
{
// Filter out the debug outputs.
return
!
match
.
endsWith
(
'
.dbg.json
'
)
})
const
content
=
`
/* eslint-disable @typescript-eslint/no-var-requires, no-empty */
/*
THIS FILE IS AUTOMATICALLY GENERATED.
DO NOT EDIT.
*/
${
artifactPaths
.
map
((
artifactPath
)
=>
{
// eslint-disable-next-line @typescript-eslint/no-var-requires
const
artifact
=
require
(
artifactPath
)
// handles the case - '\u' (\utils folder) is considered as an unicode encoded char
const
pattern
=
/
\\
/g
const
relPath
=
path
.
relative
(
__dirname
,
artifactPath
)
.
replace
(
pattern
,
'
/
'
)
return
`
let
${
artifact
.
contractName
}
try {
${
artifact
.
contractName
}
= require('
${
relPath
}
')
} catch {}
`
})
.
join
(
'
\n
'
)}
export const getContractArtifact = (name: string): any => {
return {
${
artifactPaths
.
map
((
artifactPath
)
=>
{
// eslint-disable-next-line @typescript-eslint/no-var-requires
const
artifact
=
require
(
artifactPath
)
return
`
${
artifact
.
contractName
}
`
})
.
join
(
'
,
\n
'
)}
}[name]
}
`
fs
.
writeFileSync
(
path
.
resolve
(
__dirname
,
`../src/contract-artifacts.ts`
),
content
)
}
main
()
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