Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
d47cee4
Merge main (#589)
SegueII Oct 18, 2024
bfc77f7
Contract deploy update (#591)
Kukoomomo Oct 18, 2024
bd3efbb
Merge pull request #596 from morph-l2/main
FletcherMan Oct 20, 2024
e61d475
Merge pull request #597 from morph-l2/main
chengwenxi Oct 21, 2024
24b616b
Merge pull request #600 from morph-l2/main
FletcherMan Oct 21, 2024
404fa03
Merge pull request #607 from morph-l2/main
chengwenxi Oct 25, 2024
465b9cc
Update bindings (#623)
chengwenxi Nov 1, 2024
abcff34
Add fee sum storage (#619)
WorldDogs Nov 1, 2024
4e7c972
fix(tx-submitter): Fixed transaction fee calculation issue
WorldDogs Nov 5, 2024
a5749a7
Merge pull request #618 from morph-l2/review
WorldDogs Nov 7, 2024
debb3bc
Add usdc migration and flatten contracts (#633) (#634)
Kukoomomo Nov 12, 2024
278ac64
Add usdc master minter flatten file (#637)
Kukoomomo Nov 13, 2024
9c95aee
Add usdc master minter flatten file (#639)
Kukoomomo Nov 13, 2024
375d1f0
Add initialize2 for rollup to set state root (#641)
Kukoomomo Nov 20, 2024
5d63835
mainnet upgrade rollup (#644)
songyaoshun Nov 20, 2024
113c1d2
update bindings
Kukoomomo Nov 20, 2024
1ba31e9
Merge remote-tracking branch 'origin/release/0.4.x' into review
Kukoomomo Nov 20, 2024
e608d89
Rollup upgrade (#645)
Kukoomomo Nov 26, 2024
2856958
update for holesky build rule
MarvelFisher Dec 3, 2024
d335729
Pick `removeSkipMap` feature related code and update bindings (#659)
FletcherMan Dec 4, 2024
c04b331
remove skip map (#664)
anylots Dec 6, 2024
a7da1cf
Pick oracle changes for skipMap feature (#673)
FletcherMan Dec 10, 2024
9545853
Fix oracle getBatches (#676) (#685)
curryxbo Dec 23, 2024
f3c569d
Fixes and improments for submitter (#672)
WorldDogs Dec 23, 2024
58224dc
Merge branch 'review' of github.com:morph-l2/morph into review
Kukoomomo Dec 23, 2024
1a80a68
Remove drop messages function (#681)
Kukoomomo Dec 18, 2024
ca399cb
Update message queue gas limit config (#683)
Kukoomomo Dec 20, 2024
a4630eb
Fee vault fix (#674)
Kukoomomo Dec 23, 2024
7e788c9
feat(tx-submitter): add tip fee bump functionality (#682)
WorldDogs Dec 23, 2024
e12d564
Merge branch 'release/0.4.x' into review
WorldDogs Dec 23, 2024
87a70f1
Fix submitter testcase (#687)
WorldDogs Dec 23, 2024
03a738c
update go-ethereum dependency
FletcherMan Dec 25, 2024
d06acc3
update revm & programVkey (#686)
anylots Dec 25, 2024
af4158b
Merge pull request #658 from morph-l2/review
FletcherMan Dec 31, 2024
ebc5a40
Lido Gateway Audit Fix (#709)
Kukoomomo Feb 16, 2025
72ceffc
fix(tx-submitter): prevent panic by returning error (#713)
WorldDogs Jan 20, 2025
01eacdf
fix(tx-submitter): update gas fee cap when replacing tip with min tip…
WorldDogs Jan 23, 2025
904c3f2
small improvements for submitter (#727)
WorldDogs Mar 3, 2025
6c9a973
Add ChainID to DynamicFeeTx constructor (#728)
WorldDogs Mar 4, 2025
26fe5ba
Merge pull request #729 from morph-l2/fix_op_submitter
WorldDogs Mar 11, 2025
0fadff3
Optimize batch for reducing rollup cost (#743)
FletcherMan Apr 15, 2025
a1e7783
upgrade dependency (#749)
FletcherMan Apr 15, 2025
9ee2c20
Get all blobs corresponding to this timestamp when filter failed (#74…
curryxbo Apr 25, 2025
53c4ecf
Merge remote-tracking branch 'origin/release/0.4.x' into sync_release
Sep 30, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions Dockerfile.l2-node
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Build Stage
FROM ghcr.io/morph-l2/go-ubuntu-builder:go-1.22-ubuntu as builder

# Set working directory and copy necessary files
COPY . /morph
WORKDIR /morph/node

# Run build command
RUN make build

# Final Stage
FROM ghcr.io/morph-l2/go-ubuntu-builder:go-1.22-ubuntu

# Update and install dependencies, then clean up unnecessary files
RUN apt-get -qq update \
&& apt-get -qq install -y --no-install-recommends ca-certificates \
&& rm -rf /var/lib/apt/lists/*

# Copy the built binaries from the builder image to the final image
COPY --from=builder /morph/node/build/bin/tendermint /usr/local/bin/
COPY --from=builder /morph/node/build/bin/morphnode /usr/local/bin/

# Set the default command
CMD ["morphnode", "--home", "/data"]
2 changes: 1 addition & 1 deletion contracts/tasks/mainnet_upgrade.ts
Original file line number Diff line number Diff line change
Expand Up @@ -110,4 +110,4 @@ task("deploy-st-token")
)
await proxy.deployed()
console.log(`proxy deployed at ${proxy.address}`)
})
})
4 changes: 2 additions & 2 deletions ops/tools/multisend/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ var (
chainId *big.Int
fundPrivKey = crypto.ToECDSAUnsafe(hexutil.MustDecode("0xac0974bec39a17e36ba4a6b4d238ff944bacb478cbed5efcae784d7bf4f2ff80"))
urls = []string{"http://localhost:8945", "http://localhost:8545", "http://localhost:8645", "http://localhost:8745", "http://localhost:8845"}
senderNum = 50
senderNum = 10
duration = 120 * time.Minute
)

Expand Down Expand Up @@ -67,7 +67,7 @@ func main() {
}(sender, i)
}
count++
time.Sleep(300 * time.Millisecond)
time.Sleep(800 * time.Millisecond)
fmt.Println()
}
}
Expand Down
Loading