-
Notifications
You must be signed in to change notification settings - Fork 550
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* init * init * init * Fundraiser bump * TicTacToe bump * diagnosing compiler bug * bug fix * Oracle-bump * OTC-bump * Timelock-bump * update toolchain * wow it actually works * fmt * update rust version? * fix unnecessary hashes * escrow lint * update forc version in ci.yml * update sdk * fmt * contributing book * update versions in readme * update versions in dao readme * update tests * bump * update tests * fmt * readme versions * readme versions * readme versions * update tests * readme versions * merge mport * remove u8 conversion * bump tests * ujpdate tests * fmt * test 1 * update to latest * bump apps to latest toolchain * fmting * add line to toml * fmt 2 * update rust version * latest toolchain * fmt * forc build * Update toolchain * Refactor English Auction Contract for new Native Assets * Update tests for refactored English Auction * Run formatter * Update tests to fuels-rs 0.53.0 * Update Forc.lock * Update to Rust 1.73.0 * Fix Clippy errors * Change to rust v0.74.0 * update version * make clippy happy * Update README versions * Add patch for tests * Update Airdrop Contract * Update tests for fuels-rs v0.53.0 * Update README and SPECIFICATION * Update Forc.lock * Updates based on PR comments * Add comment on assembly code * Update registry contract * Update Registry contract tests * Change set_name_owner() to transfer_name_ownership() * Update README * Add comments * Fix inline docs type * Update to forc v0.48.1 * Update to forc v0.48.1 * Run formatteR * Update README * Update README * Update tests to fuels-rs 0.53.0 * Run rust formatter * it works!! * update to latest * Fix execution error * Fix failure to fetch fuel-core * Resolve PR comments * Update to nightly and format * Update to nightly, fuel-core v0.21.0, and run formatter * update to fuel-core 0.21.0 * Make clippy happy * Make clipply happy * Update README * Update README * Update NFT to forc v0.48.1 * Update token to forc v0.48.1 * Update to forc v0.48.1 * Update .templates * Update .template tests * Update aurora * Update CI * Update nightly date in CI * Update nightly date in CI * Update predicate to froc v0.48.1 * Update tests for fuels-rs v0.53.0 * Remove tx_params comment * Update fuels-rs version in README * Update to forc v0.49.1 * Update airdrop * Update english auction * Update counter script * Update DAO * Update escrow * Update fundraiser * Update tictactoe * Update multisig * update token * Update NFT * Update oracle * Update timelock * Update name registry * Update OTC swap predicate * Update all READMEs * Update template * Run formmater * Update native-asset tests * Update CI * revert book CI updates * Update DI * Update CI * Change ci to cd into contrubiting book * Fix CI * Have CI cd into manifest directories --------- Co-authored-by: bitzoic <bitzoic.eth@gmail.com> Co-authored-by: Cameron Carstens <54727135+bitzoic@users.noreply.github.com>
- Loading branch information
1 parent
24e7494
commit a7a5362
Showing
218 changed files
with
10,567 additions
and
9,077 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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,13 +1,13 @@ | ||
[[package]] | ||
name = 'core' | ||
source = 'path+from-root-FDF4A5DCC6ECD181' | ||
name = "core" | ||
source = "path+from-root-C3992B43B72ADB8C" | ||
|
||
[[package]] | ||
name = 'std' | ||
source = 'git+https://github.com/fuellabs/sway?tag=v0.37.0#607ac50176db8bef936f91bacf435d0ea37d041e' | ||
dependencies = ['core'] | ||
name = "std" | ||
source = "git+https://github.com/fuellabs/sway?tag=v0.49.1#2ac7030570f22510b0ac2a7b5ddf7baa20bdc0e1" | ||
dependencies = ["core"] | ||
|
||
[[package]] | ||
name = 'template-contract' | ||
source = 'member' | ||
dependencies = ['std'] | ||
name = "template-contract" | ||
source = "member" | ||
dependencies = ["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
2 changes: 1 addition & 1 deletion
2
.devops/.template/project/contracts/template-contract/src/data_structures.sw
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,3 +1,3 @@ | ||
library; | ||
|
||
mod example; | ||
pub mod example; |
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 = "latest-2023-04-12" | ||
channel = "nightly-2024-01-24" | ||
|
||
[components] | ||
forc = "0.37.0" | ||
fuel-core = "0.17.9" | ||
forc = "0.49.1" | ||
fuel-core = "0.22.0" |
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 = "2023-02-16" | ||
channel = "nightly-2024-01-24" | ||
|
||
[components] | ||
forc = "0.35.1" | ||
fuel-core = "0.17.2" | ||
forc = "0.49.1" | ||
fuel-core = "0.22.0" |
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,18 +1,18 @@ | ||
[[package]] | ||
name = 'bad_documentation' | ||
source = 'member' | ||
dependencies = ['std'] | ||
name = "bad_documentation" | ||
source = "member" | ||
dependencies = ["std"] | ||
|
||
[[package]] | ||
name = 'connect_four' | ||
source = 'member' | ||
dependencies = ['std'] | ||
name = "connect_four" | ||
source = "member" | ||
dependencies = ["std"] | ||
|
||
[[package]] | ||
name = 'core' | ||
source = 'path+from-root-EB296BD18C0E4CC4' | ||
name = "core" | ||
source = "path+from-root-C3992B43B72ADB8C" | ||
|
||
[[package]] | ||
name = 'std' | ||
source = 'git+https://github.com/fuellabs/sway?tag=v0.44.1#04a597093e7441898933dd412b8e4dc6ac860cd3' | ||
dependencies = ['core'] | ||
name = "std" | ||
source = "git+https://github.com/fuellabs/sway?tag=v0.49.1#2ac7030570f22510b0ac2a7b5ddf7baa20bdc0e1" | ||
dependencies = ["core"] |
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 = "latest-2023-08-16" | ||
channel = "nightly-2024-01-24" | ||
|
||
[components] | ||
forc = "0.44.1" | ||
fuel-core = "0.20.4" | ||
forc = "0.49.1" | ||
fuel-core = "0.22.0" |
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 |
---|---|---|
|
@@ -8,7 +8,7 @@ on: | |
- v* | ||
|
||
env: | ||
RUST_VERSION: 1.63.0 | ||
RUST_VERSION: 1.74.0 | ||
|
||
jobs: | ||
deploy: | ||
|
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
Oops, something went wrong.