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
4e996386
Commit
4e996386
authored
Mar 24, 2022
by
Andrey Petrov
Committed by
norswap
May 06, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update shell shebang to be more portable.
parent
83f6e52f
Changes
11
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
23 additions
and
11 deletions
+23
-11
build_unicorn.sh
build_unicorn.sh
+1
-1
challenge_fault.sh
demo/challenge_fault.sh
+1
-1
challenge_simple.sh
demo/challenge_simple.sh
+1
-1
forked_node.sh
demo/forked_node.sh
+1
-1
build.sh
mipigo/build.sh
+3
-1
startup.sh
mipigo/startup/startup.sh
+3
-1
testbuild.sh
mipigo/test/testbuild.sh
+3
-1
minigeth.sh
mipsevm/minigeth.sh
+3
-1
run_block.sh
run_block.sh
+3
-1
sync_minigeth.sh
sync_minigeth.sh
+1
-1
test_block_transitions.sh
test_block_transitions.sh
+3
-1
No files found.
build_unicorn.sh
View file @
4e996386
#!/
bin/
bash
#!/
usr/bin/env
bash
if
[[
!
-d
unicorn2
]]
;
then
git clone https://github.com/geohot/unicorn.git
-b
dev unicorn2
#git clone https://github.com/unicorn-engine/unicorn.git -b dev unicorn2
...
...
demo/challenge_fault.sh
View file @
4e996386
#!/
bin/
bash
#!/
usr/bin/env
bash
# --- DOC ----------------------------------------------------------------------
...
...
demo/challenge_simple.sh
View file @
4e996386
#!/
bin/
bash
#!/
usr/bin/env
bash
# --- DOC ----------------------------------------------------------------------
...
...
demo/forked_node.sh
View file @
4e996386
#!/
bin/
bash
#!/
usr/bin/env
bash
# This runs a hardhat node forked from mainnet at the specified block.
# You need to run this in a separate terminal (or in the background)
...
...
mipigo/build.sh
View file @
4e996386
#!/bin/bash -e
#!/usr/bin/env bash
set
-e
cd
../minigeth
export
GOOS
=
linux
export
GOARCH
=
mips
...
...
mipigo/startup/startup.sh
View file @
4e996386
#!/bin/bash -e
#!/usr/bin/env bash
set
-e
../../mipsevm/maketests.py startup.s startup.bin
mipigo/test/testbuild.sh
View file @
4e996386
#!/bin/bash -e
#!/usr/bin/env bash
set
-e
export
GOOS
=
linux
export
GOARCH
=
mips
export
GOMIPS
=
softfloat
...
...
mipsevm/minigeth.sh
View file @
4e996386
#!/bin/bash -e
#!/usr/bin/env bash
set
-e
(
cd
../
&&
npx hardhat compile
)
(
cd
../mipigo
&&
./build.sh
)
go build
...
...
run_block.sh
View file @
4e996386
#!/bin/bash -e
#!/usr/bin/env bash
set
-e
(
cd
minigeth/
&&
go build
)
mkdir
-p
/tmp/cannon
...
...
sync_minigeth.sh
View file @
4e996386
#!/
bin/
bash
#!/
usr/bin/env
bash
FILES
=
$(
grep
-v
"#"
files_minigeth
)
MINIGETH
=
$PWD
/minigeth
git clone https://github.com/ethereum/go-ethereum.git
...
...
test_block_transitions.sh
View file @
4e996386
#!/bin/bash -e
#!/usr/bin/env bash
set
-e
(
cd
minigeth/
&&
go build
)
mkdir
-p
/tmp/cannon
...
...
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