Commit 5c3269d 1 parent 741510b commit 5c3269d Copy full SHA for 5c3269d
File tree 4 files changed +7
-15
lines changed
4 files changed +7
-15
lines changed Original file line number Diff line number Diff line change @@ -26,11 +26,4 @@ ENV PK_ETH_WALLET="${PK_ETH_WALLET}"
26
26
EXPOSE ${PORT}
27
27
28
28
# copy over script and run
29
- CMD ["pnpm" , "start" ]
30
-
31
-
32
- # L1_CHAIN_HTTP=http://localhost:8545 \
33
- # FUEL_GRAPHQL_ENDPOINT=http://localhost:4000/graphql \
34
- # DEPLOYMENTS_HTTP=http://localhost:8080 \
35
- # PK_ETH_WALLET=59c6995e998f97a5a0044966f0945389dc9e86dae88c7a8412f4603b6b78690d \
36
- # pnpm start
29
+ CMD ["pnpm" , "start" ]
Original file line number Diff line number Diff line change 1
1
# ====== Build Image ======
2
- FROM node:20 -alpine AS BUILD_IMAGE
2
+ FROM node:18 -alpine AS BUILD_IMAGE
3
3
4
4
# dependencies
5
5
RUN apk --no-cache add git
6
6
RUN npm i -g pnpm
7
7
8
-
9
8
# set workdir
10
9
WORKDIR /l1chain
11
10
@@ -18,7 +17,7 @@ ADD ./.fuelChainConsts.env /l1chain/portal-contracts/.fuelChainConsts.env
18
17
WORKDIR /l1chain/portal-contracts
19
18
20
19
# build the ethereum contracts and environment
21
- RUN pnpm install --force
20
+ RUN pnpm install
22
21
# replace the fuel chain consts values and change contract code
23
22
RUN pnpm ts-node scripts/replaceFuelChainConsts.ts
24
23
# run contract compile with the new consts
@@ -29,7 +28,7 @@ RUN pnpm compile
29
28
COPY ./hardhat/hardhat.config.ts .
30
29
31
30
# ====== Final Image ======
32
- FROM node:20 -alpine
31
+ FROM node:18 -alpine
33
32
34
33
ARG L1_IP=0.0.0.0
35
34
ARG L1_PORT=8545
Original file line number Diff line number Diff line change 1
1
VITE_ETH_CHAIN = sepolia
2
2
VITE_FUEL_CHAIN = fuelBeta5
3
- VITE_FUEL_VERSION = 0.20.7
3
+ VITE_FUEL_VERSION = 0.22.0
4
4
VITE_IS_PUBLIC_PREVIEW = true
5
5
VITE_WALLET_INSTALL = https://chrome.google.com/webstore/detail/fuel-wallet/dldjpboieedgcmpkchcjcbijingjcgok
6
6
VITE_WALLET_INSTALL_NEXT = https://next-wallet.fuel.network/docs/install/#install-from-source-code
Original file line number Diff line number Diff line change 1
- <!doctype html>
1
+ <!DOCTYPE html>
2
2
< html lang ="en ">
3
3
< head >
4
4
< meta charset ="UTF-8 " />
5
- < link rel ="icon " type ="image/svg+xml " href ="/favicon .svg " />
5
+ < link rel ="icon " type ="image/svg+xml " href ="/fuel-logo .svg " />
6
6
< meta name ="viewport " content ="width=device-width, initial-scale=1.0 " />
7
7
< title > Fuel Portal</ title >
8
8
</ head >
You can’t perform that action at this time.
0 commit comments