Skip to content

Commit

Permalink
chore: updated forc version to 0.66.5 (#3468)
Browse files Browse the repository at this point in the history
* chore: bumped forc

* chore: changeset

* chore: fix library visibility

---------

Co-authored-by: Sérgio Torres <[email protected]>
  • Loading branch information
petertonysmith94 and Torres-ssf authored Dec 12, 2024
1 parent 3a067c6 commit 5ec254d
Show file tree
Hide file tree
Showing 8 changed files with 18 additions and 12 deletions.
6 changes: 6 additions & 0 deletions .changeset/proud-spoons-allow.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
"@fuel-ts/versions": patch
"@internal/forc": patch
---

chore: updated forc version to `0.66.5`
2 changes: 1 addition & 1 deletion internal/forc/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.66.4
0.66.5
Original file line number Diff line number Diff line change
Expand Up @@ -160,17 +160,17 @@ const abi = {
{
"name": "SHOULD_RETURN",
"concreteTypeId": "b760f44fa5965c2474a3b471467a22c43185152129295af588b022ae50b50903",
"offset": 2776
"offset": 2816
},
{
"name": "AN_OPTION",
"concreteTypeId": "2da102c46c7263beeed95818cd7bee801716ba8303dddafdcd0f6c9efda4a0f1",
"offset": 2752
"offset": 2792
},
{
"name": "A_GENERIC_STRUCT",
"concreteTypeId": "71df88006611ffff852cf617defb70f77adaf507305088cedd41d276c783aab0",
"offset": 2768
"offset": 2808
}
]
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,12 +73,12 @@ const abi = {
{
"name": "FEE",
"concreteTypeId": "c89951a24c6ca28c13fd1cfdc646b2b656d69e61a92b91023be7eb58eb914b6b",
"offset": 920
"offset": 936
},
{
"name": "ADDRESS",
"concreteTypeId": "7c5ee1cecf5f8eacd1284feb5f0bf2bdea533a51e2f0c9aabe9236d335989f3b",
"offset": 888
"offset": 904
}
]
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ const abi = {
{
"name": "SHOULD_RETURN",
"concreteTypeId": "b760f44fa5965c2474a3b471467a22c43185152129295af588b022ae50b50903",
"offset": 760
"offset": 768
}
]
};
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
contract;

mod data_structures;
mod equality;
mod utils;
pub mod data_structures;
pub mod equality;
pub mod utils;

use data_structures::*;
use equality::*;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ impl MyContract for Contract {
}

fn compute_predicate_address(bytecode: Vec<u8>) -> Address {
return Address::from(0x68fec7a57e48f4ec6467d7e09c27272bd8ca72b312ea553a470b98731475ccf3);
return Address::from(0x190c849d8d5fdc0ad9e87cdfa02dde8b4414cacb34ae277a49ec057e67b04c01);
}
}
2 changes: 1 addition & 1 deletion packages/versions/src/lib/getBuiltinVersions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import type { Versions } from './types';

export function getBuiltinVersions(): Versions {
return {
FORC: '0.66.4',
FORC: '0.66.5',
FUEL_CORE: '0.40.1',
FUELS: '0.97.1',
};
Expand Down

0 comments on commit 5ec254d

Please sign in to comment.