Skip to content

Commit

Permalink
Merge pull request #26 from FuelLabs/k1-r1-proxy-audit
Browse files Browse the repository at this point in the history
  • Loading branch information
K1-R1 authored Nov 2, 2024
2 parents a3eb2a6 + 9fa3952 commit 727f07a
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 6 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ Description of the upcoming release here.
- [#17](https://github.com/FuelLabs/sway-standard-implementations/pull/17) Update Owned Proxy to support `forc`'s deploy proxy feature.
- [#19](https://github.com/FuelLabs/sway-standard-implementations/pull/19) Adds CI checks for `forc` compiler warnings.
- [#20](https://github.com/FuelLabs/sway-standard-implementations/pull/20) Update Owned Proxy usage docs.
- [#26](https://github.com/FuelLabs/sway-standard-implementations/pull/26) Adds Owned Proxy's audit report.

### Changed

Expand Down
4 changes: 4 additions & 0 deletions src14/owned_proxy/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,7 @@ The recommended way to utilize the [Owned Proxy Contract](./contract/src/main.sw
## Manual utility scripts

This project does provide some [simple Rust scripts](./scripts/README.md) as examples for basic deployment and interaction functionality. However; this is NOT the recommended way of utilizing the [Owned Proxy Contract](./contract/src/main.sw).

## Audits

The [Owned Proxy Contract](./contract/) has been audited. See the audit reports [here](./audit_reports/).
Binary file not shown.
4 changes: 2 additions & 2 deletions src14/owned_proxy/contract/fuel-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[toolchain]
channel = "testnet-2024-09-06"
channel = "mainnet"

[components]
forc = "0.63.5"
fuel-core = "0.35.0"
fuel-core = "0.40.0"
2 changes: 1 addition & 1 deletion src14/owned_proxy/scripts/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ license = "Apache-2.0"

[dependencies]
clap = { version = "4.5.17", features = ["env", "derive"] }
fuels = { version = "0.66.4" }
fuels = { version = "0.66.9" }
tokio = { version = "1.39.3", features = ["rt", "macros"] }

[lib]
Expand Down
2 changes: 1 addition & 1 deletion tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0"

[dependencies]
fuels = { version = "0.66.4" }
fuels = { version = "0.66.9" }
tokio = { version = "1.39.3", features = ["rt", "macros"] }

[[test]]
Expand Down
4 changes: 2 additions & 2 deletions tests/fuel-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[toolchain]
channel = "testnet-2024-09-06"
channel = "mainnet"

[components]
forc = "0.63.5"
fuel-core = "0.35.0"
fuel-core = "0.40.0"

0 comments on commit 727f07a

Please sign in to comment.