Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
LuizAsFight authored Sep 5, 2024
1 parent b117402 commit f386ff8
Show file tree
Hide file tree
Showing 15 changed files with 206 additions and 189 deletions.
8 changes: 8 additions & 0 deletions .changeset/unlucky-keys-grab.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
"@fuels/playwright-utils": patch
"@fuel-wallet/connections": patch
"@fuel-wallet/types": patch
"fuels-wallet": patch
---

Update to `[email protected]` and `[email protected]`
5 changes: 3 additions & 2 deletions docker/fuel-core/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,10 @@
# https://github.com/FuelLabs/chain-configuration/tree/master/upgradelog/ignition-devnet
# and apply the latest state_transition_function and consensus_parameter
# when upgrading fuel-core

# We should be supporting always the same fuel-core version as the fuels (ts-sdk)
# https://github.com/FuelLabs/fuels-ts/blob/master/internal/fuel-core/VERSION
FROM ghcr.io/fuellabs/fuel-core:v0.34.0
FROM ghcr.io/fuellabs/fuel-core:v0.35.0

# dependencies
ENV DEBIAN_FRONTEND=noninteractive
Expand All @@ -26,7 +27,7 @@ RUN cp -R /chain-configuration/local/* ./
# Copy the testnet consensus parameters and state transition bytecode
RUN cp /chain-configuration/upgradelog/ignition-devnet/consensus_parameters/6.json \
./latest_consensus_parameters.json
RUN cp /chain-configuration/upgradelog/ignition-devnet/state_transition_function/8.wasm \
RUN cp /chain-configuration/upgradelog/ignition-devnet/state_transition_function/9.wasm \
./state_transition_bytecode.wasm

# update local state_config with custom genesis coins config
Expand Down
2 changes: 1 addition & 1 deletion examples/cra-dapp/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"@fuels/connectors": "0.25.0",
"@fuels/react": "0.25.0",
"@tanstack/react-query": "5.28.4",
"fuels": "pr-3068",
"fuels": "0.94.4",
"react": "18.3.1",
"react-dom": "18.3.1"
},
Expand Down
2 changes: 1 addition & 1 deletion fuel-toolchain.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
channel = "testnet"

[components]
fuel-core = "0.34.0"
fuel-core = "0.35.0"
forc = "0.63.3"
2 changes: 1 addition & 1 deletion packages/app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
"events": "3.3.0",
"fake-indexeddb": "4.0.2",
"framer-motion": "10.16.4",
"fuels": "pr-3068",
"fuels": "0.94.4",
"json-edit-react": "1.13.3",
"json-rpc-2.0": "1.7.0",
"lodash.debounce": "4.0.8",
Expand Down
4 changes: 2 additions & 2 deletions packages/connections/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,14 @@
},
"peerDependencies": {
"@fuels/connectors": ">=0.5.0",
"fuels": ">=0.94.3"
"fuels": ">=0.94.4"
},
"devDependencies": {
"@fuel-wallet/types": "workspace:*",
"@fuels/connectors": "0.5.0",
"@types/uuid": "^9.0.5",
"blob-polyfill": "^7.0.20220408",
"fuels": "pr-3068",
"fuels": "0.94.4",
"jest-environment-jsdom": "29.6.2",
"tsup": "^7.2.0",
"undici": "^6.4.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"acorn-walk": "^8.2.0",
"dotenv": "^16.3.1",
"framer-motion": "^10.16.4",
"fuels": "pr-3068",
"fuels": "0.94.4",
"globby": "^13.2.2",
"gray-matter": "^4.0.3",
"hast-util-heading-rank": "^3.0.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/e2e-contract-tests/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"@fuels/connectors": "0.25.0",
"@fuels/react": "0.25.0",
"@tanstack/react-query": "5.28.4",
"fuels": "pr-3068",
"fuels": "0.94.4",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-error-boundary": "^4.0.11",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
/* eslint-disable @typescript-eslint/consistent-type-imports */

/*
Fuels version: 0.94.3
Fuels version: 0.94.4
Forc version: 0.63.3
Fuel-Core version: 0.34.0
Fuel-Core version: 0.35.0
*/

import { Contract, Interface } from "fuels";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
/* eslint-disable @typescript-eslint/consistent-type-imports */

/*
Fuels version: 0.94.3
Fuels version: 0.94.4
Forc version: 0.63.3
Fuel-Core version: 0.34.0
Fuel-Core version: 0.35.0
*/

import { ContractFactory, decompressBytecode } from "fuels";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
/* eslint-disable @typescript-eslint/consistent-type-imports */

/*
Fuels version: 0.94.3
Fuels version: 0.94.4
Forc version: 0.63.3
Fuel-Core version: 0.34.0
Fuel-Core version: 0.35.0
*/

/**
Expand Down
4 changes: 2 additions & 2 deletions packages/e2e-contract-tests/src/contracts/contracts/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
/* eslint-disable @typescript-eslint/consistent-type-imports */

/*
Fuels version: 0.94.3
Fuels version: 0.94.4
Forc version: 0.63.3
Fuel-Core version: 0.34.0
Fuel-Core version: 0.35.0
*/

export { CustomAsset } from './CustomAsset';
Expand Down
4 changes: 2 additions & 2 deletions packages/playwright-utils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,15 @@
"adm-zip": "^0.5.10"
},
"devDependencies": {
"fuels": "pr-3068",
"fuels": "0.94.4",
"@fuels/ts-config": "^0.23.0",
"@fuels/tsup-config": "^0.23.0",
"@playwright/test": "^1.39.0",
"@types/adm-zip": "^0.5.3",
"tsup": "^7.2.0"
},
"peerDependencies": {
"fuels": ">=0.94.0",
"fuels": ">=0.94.4",
"@playwright/test": "^1.39.0"
}
}
4 changes: 2 additions & 2 deletions packages/types/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@
},
"peerDependencies": {
"@fuels/connectors": ">=0.25.0",
"fuels": ">=0.94.3"
"fuels": ">=0.94.4"
},
"devDependencies": {
"@fuels/connectors": "0.25.0",
"fuels": "pr-3068",
"fuels": "0.94.4",
"tsup": "^7.2.0"
}
}
Loading

0 comments on commit f386ff8

Please sign in to comment.