Skip to content

Commit

Permalink
chore: upgrade [email protected] (#2999)
Browse files Browse the repository at this point in the history
  • Loading branch information
Torres-ssf committed Aug 27, 2024
1 parent 986a247 commit ccd94fc
Show file tree
Hide file tree
Showing 7 changed files with 23 additions and 5 deletions.
7 changes: 7 additions & 0 deletions .changeset/gorgeous-adults-divide.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
"@internal/fuel-core": patch
"@fuel-ts/versions": patch
"@fuel-ts/account": patch
---

chore: upgrade `[email protected]`
2 changes: 1 addition & 1 deletion internal/fuel-core/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.33.0
0.34.0
11 changes: 11 additions & 0 deletions packages/account/src/providers/fuel-core-schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,11 @@ input BalanceFilterInput {
owner: Address!
}

type Blob {
id: BlobId!
bytecode: HexString!
}

scalar BlobId

type Block {
Expand Down Expand Up @@ -942,6 +947,12 @@ type Query {
last: Int
before: String
): BalanceConnection!
blob(
"""
ID of the Blob
"""
id: BlobId!
): Blob
block(
"""
ID of the block
Expand Down
2 changes: 1 addition & 1 deletion packages/account/src/providers/provider.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ describe('Provider', () => {

const version = await provider.getVersion();

expect(version).toEqual('0.33.0');
expect(version).toEqual('0.34.0');
});

it('can call()', async () => {
Expand Down
2 changes: 1 addition & 1 deletion packages/versions/src/lib/getBuiltinVersions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import type { Versions } from './types';
export function getBuiltinVersions(): Versions {
return {
FORC: '0.63.1',
FUEL_CORE: '0.33.0',
FUEL_CORE: '0.34.0',
FUELS: '0.94.1',
};
}
2 changes: 1 addition & 1 deletion templates/nextjs/sway-programs/fuel-toolchain.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ channel = "testnet"

[components]
forc = "0.63.1"
fuel-core = "0.33.0"
fuel-core = "0.34.0"
2 changes: 1 addition & 1 deletion templates/vite/sway-programs/fuel-toolchain.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ channel = "testnet"

[components]
forc = "0.63.1"
fuel-core = "0.33.0"
fuel-core = "0.34.0"

0 comments on commit ccd94fc

Please sign in to comment.