-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Owned Proxy - update to support forc deploy proxy feature (#17)
* Use current nightly forc * chore: update contract to forc 0.63.1 * chore: update scripts * chore: updated tests and removed copied test * docs: updated badges and replace version message with badge * chore: changelog * chore: update CI rust ver * feat: update to latest deps, pin owner slot * docs: updated forc version * chore: updated forc ver in tests * Resolve failed to run custom build command for fuel-core-upgradable-executor v0.33.0 error * Use master branch of Sway-Libs * Update to Sway-Libs v0.24.0 * Udpate Forc.lock * chore: updated script dependencies * chore: updated test dependencies * chore: fix clippy lint * chore: fix spelling * chore: use default node and chain config * chore: use latest nightly chain * fix ci * chore: update CI rust version * chore: updated owned proxy forc version * chore: updated owned_proxy scripts fuel-rs version * chore: updated test harness forc and fuels-rs versions --------- Co-authored-by: Sophie <[email protected]> Co-authored-by: bitzoic <[email protected]>
- Loading branch information
1 parent
6c41355
commit 9b10f24
Showing
27 changed files
with
434 additions
and
478 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,30 @@ | ||
[[package]] | ||
name = "core" | ||
source = "path+from-root-E19CE48B3E858B72" | ||
source = "path+from-root-4BB20845430AF9CF" | ||
|
||
[[package]] | ||
name = "src14_owned_proxy" | ||
source = "member" | ||
dependencies = [ | ||
"standards git+https://github.com/FuelLabs/sway-standards?tag=v0.5.1#e2d5ac40a1d11a9e38e0a662d35141076515319f", | ||
"standards", | ||
"std", | ||
"sway_libs", | ||
] | ||
|
||
[[package]] | ||
name = "standards" | ||
source = "git+https://github.com/FuelLabs/sway-standards?tag=v0.5.0#348f7175df4c012b23c86cdb18aab79025ca1f18" | ||
dependencies = ["std"] | ||
|
||
[[package]] | ||
name = "standards" | ||
source = "git+https://github.com/FuelLabs/sway-standards?tag=v0.5.1#e2d5ac40a1d11a9e38e0a662d35141076515319f" | ||
source = "git+https://github.com/FuelLabs/sway-standards?tag=v0.6.0#65e09f95ea8b9476b171a66c8a47108f352fa32c" | ||
dependencies = ["std"] | ||
|
||
[[package]] | ||
name = "std" | ||
source = "git+https://github.com/fuellabs/sway?tag=v0.60.0#2f0392ee35a1e4dd80bd8034962d5b4083dfb8b6" | ||
source = "git+https://github.com/fuellabs/sway?tag=v0.63.5#31a1d6f98395f571cd3674b492d9bf4773c55f65" | ||
dependencies = ["core"] | ||
|
||
[[package]] | ||
name = "sway_libs" | ||
source = "git+https://github.com/FuelLabs/sway-libs?tag=v0.23.0#9987d8ae11b1d82d42524794829c216b607916c5" | ||
source = "git+https://github.com/FuelLabs/sway-libs?tag=v0.24.0#e19f96f85ae12426d20adc176b70aa38fd9a2a5b" | ||
dependencies = [ | ||
"standards git+https://github.com/FuelLabs/sway-standards?tag=v0.5.0#348f7175df4c012b23c86cdb18aab79025ca1f18", | ||
"standards", | ||
"std", | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[toolchain] | ||
channel = "testnet" | ||
channel = "testnet-2024-09-06" | ||
|
||
[components] | ||
fuel-core = "0.27.0" | ||
forc = "0.60.0" | ||
forc = "0.63.5" | ||
fuel-core = "0.35.0" |
Oops, something went wrong.