Skip to content

Commit

Permalink
tilt: support latest docker desktop
Browse files Browse the repository at this point in the history
  • Loading branch information
evan-gray committed Nov 27, 2024
1 parent 5e07882 commit 02cdf9e
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion clients/js/src/consts/networks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -556,7 +556,7 @@ const Testnet = {

const Devnet = {
Solana: {
rpc: "http://localhost:8899",
rpc: "http://127.0.0.1:8899",
key: "J2D4pwDred8P9ioyPEZVLPht885AeYpifsFGUyuzVmiKQosAvmZP4EegaKFrSprBC5vVP1xTvu61vYDWsxBNsYx",
},
Terra: {
Expand Down
2 changes: 1 addition & 1 deletion ethereum/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# syntax=docker.io/docker/dockerfile:1.3@sha256:42399d4635eddd7a9b8a24be879d2f9a930d0ed040a61324cfdf59ef1357b3b2
FROM const-gen AS const-export
FROM ghcr.io/foundry-rs/foundry:nightly-55bf41564f605cae3ca4c95ac5d468b1f14447f9@sha256:8c15d322da81a6deaf827222e173f3f81c653136a3518d5eeb41250a0f2e17ea as foundry
FROM --platform=linux/amd64 ghcr.io/foundry-rs/foundry:nightly-55bf41564f605cae3ca4c95ac5d468b1f14447f9@sha256:8c15d322da81a6deaf827222e173f3f81c653136a3518d5eeb41250a0f2e17ea as foundry
FROM node:19.6.1-slim@sha256:a1ba21bf0c92931d02a8416f0a54daad66cb36a85d2b73af9d73b044f5f57cfc

# npm wants to clone random Git repositories - lovely.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@
"description": "Ganache is supposed to be 1337, but the on-chain block.chainid returns 1",
"evmNetworkId": 1,
"chainId": 2,
"rpc": "http://localhost:8545",
"rpc": "http://127.0.0.1:8545",
"wormholeAddress": "0xC89Ce4735882C9F0f0FE26686c53074E09B0D550"
},
{
"evmNetworkId": 1397,
"chainId": 4,
"rpc": "http://localhost:8545",
"rpc": "http://127.0.0.1:8545",
"wormholeAddress": "0xC89Ce4735882C9F0f0FE26686c53074E09B0D550"
}
]
Expand Down
2 changes: 1 addition & 1 deletion testing/Dockerfile.sdk.test
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ghcr.io/foundry-rs/foundry:nightly-ea2eff95b5c17edd3ffbdfc6daab5ce5cc80afc0@sha256:2a774f86765258a0d176366fc46f92bc14f5040faae7a3c3ba59b1c24c5fa7cb as foundry
FROM --platform=linux/amd64 ghcr.io/foundry-rs/foundry:nightly-ea2eff95b5c17edd3ffbdfc6daab5ce5cc80afc0@sha256:2a774f86765258a0d176366fc46f92bc14f5040faae7a3c3ba59b1c24c5fa7cb as foundry
FROM node:19.6.1-slim@sha256:a1ba21bf0c92931d02a8416f0a54daad66cb36a85d2b73af9d73b044f5f57cfc

RUN apt-get update && apt-get -y install \
Expand Down

0 comments on commit 02cdf9e

Please sign in to comment.