Skip to content

Commit 725afaf

Browse files
authored
Merge pull request #728 from OffchainLabs/new-rollup
New Rollup Protocol Implementation
2 parents 89ef2fd + c3e1b35 commit 725afaf

File tree

1,000 files changed

+167185
-230420
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,000 files changed

+167185
-230420
lines changed

.circleci/config.yml

Lines changed: 129 additions & 129 deletions
Large diffs are not rendered by default.

.circleci/images/backend-base/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM debian:buster-slim
1+
FROM debian:bullseye-slim
22

33
RUN export DEBIAN_FRONTEND=noninteractive && apt-get update && \
44
apt-get install -y curl git librocksdb-dev libgmp-dev sudo netcat-openbsd gcc g++ && \

.circleci/images/cpp-base/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
### cpp-base
44
### --------------------------------------------------------------------
55

6-
FROM debian:buster-slim
6+
FROM debian:bullseye-slim
77

88
RUN export DEBIAN_FRONTEND=noninteractive && apt-get update && \
99
apt-get install -y cmake curl git g++ libboost-dev libboost-filesystem-dev \

.circleci/images/geth-dev/Dockerfile

Lines changed: 0 additions & 3 deletions
This file was deleted.

.circleci/images/go-base/Dockerfile

Lines changed: 0 additions & 7 deletions
This file was deleted.
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
FROM debian:bullseye-slim
2+
3+
RUN export DEBIAN_FRONTEND=noninteractive && apt-get update && \
4+
apt-get install -y curl git librocksdb-dev libgmp-dev sudo netcat-openbsd nodejs npm gcc g++ && \
5+
rm -rf /var/lib/apt/lists/* && \
6+
curl https://dl.google.com/go/go1.13.3.linux-amd64.tar.gz --output go1.13.3.linux-amd64.tar.gz && \
7+
tar -xf go1.13.3.linux-amd64.tar.gz && \
8+
mv go /usr/local && \
9+
useradd -ms /bin/bash user
10+
USER user
11+
WORKDIR /home/user/
12+
ENV PATH="/usr/local/go/bin:/home/user/go/bin:/home/user/bin:/home/user/.local/bin:/home/user/.npm-global/bin:/home/user/.yarn/bin:${PATH}"
13+
RUN mkdir -p /home/user/.npm-global && \
14+
npm config set prefix "/home/user/.npm-global" && \
15+
npm install -g yarn && \
16+
export GOROOT=/usr/local/go && \
17+
mkdir bin && curl -s https://codecov.io/bash > ~/bin/codecovbash && \
18+
chmod +x /home/user/bin/codecovbash && \
19+
go get gotest.tools/gotestsum

.circleci/images/python-base/Dockerfile

Lines changed: 0 additions & 8 deletions
This file was deleted.

.circleci/images/yarn-base/Dockerfile

Lines changed: 0 additions & 14 deletions
This file was deleted.

.eslintignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
packages/arb-provider-ethers/src/lib/abi/*
1+
**/src/lib/abi/**
22
**/dist/main.js
33
**/node_modules/**

.eslintrc.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,8 @@ module.exports = {
3636
'@typescript-eslint/member-delimiter-style': ['off'],
3737
'@typescript-eslint/no-explicit-any': ['warn'],
3838
'@typescript-eslint/no-use-before-define': ['off'],
39+
'@typescript-eslint/no-non-null-assertion': ['off'],
40+
'@typescript-eslint/ban-ts-comment': ['warn'],
3941
},
4042
},
4143
],

0 commit comments

Comments
 (0)