Skip to content

Commit

Permalink
chore: update nightly docs
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Oct 7, 2024
1 parent 8a0e207 commit ffed7f7
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/nightly/builds/sway
Submodule sway updated 1638 files
2 changes: 1 addition & 1 deletion docs/nightly/fuels-rs
Submodule fuels-rs updated 40 files
+50 −13 .github/workflows/ci.yml
+22 −22 Cargo.toml
+1 −0 docs/src/SUMMARY.md
+2 −2 docs/src/connecting/short-lived.md
+42 −0 docs/src/preuploading-code.md
+4 −0 e2e/Forc.toml
+18 −0 e2e/sway/contracts/huge_contract/src/main.sw
+19 −1 e2e/sway/contracts/proxy/src/main.sw
+5 −0 e2e/sway/predicates/predicate_blobs/Forc.toml
+9 −0 e2e/sway/predicates/predicate_blobs/src/main.sw
+5 −1 e2e/sway/predicates/predicate_configurables/src/main.sw
+7 −0 e2e/sway/scripts/empty/Forc.toml
+3 −0 e2e/sway/scripts/empty/src/main.sw
+5 −0 e2e/sway/scripts/script_blobs/Forc.toml
+36 −0 e2e/sway/scripts/script_blobs/src/main.sw
+5 −0 e2e/sway/scripts/script_proxy/Forc.toml
+24 −0 e2e/sway/scripts/script_proxy/src/main.sw
+3 −0 e2e/tests/configurables.rs
+78 −0 e2e/tests/contracts.rs
+44 −0 e2e/tests/logs.rs
+170 −18 e2e/tests/predicates.rs
+1 −0 e2e/tests/providers.rs
+217 −2 e2e/tests/scripts.rs
+7 −3 examples/contracts/src/lib.rs
+2 −1 examples/cookbook/src/lib.rs
+1 −1 packages/fuels-accounts/src/account.rs
+18 −20 packages/fuels-accounts/src/provider.rs
+10 −2 packages/fuels-accounts/src/provider/retryable_client.rs
+1 −1 packages/fuels-accounts/src/provider/supported_fuel_core_version.rs
+2 −2 packages/fuels-code-gen/src/program_bindings/abigen.rs
+41 −7 packages/fuels-code-gen/src/program_bindings/abigen/bindings/script.rs
+96 −0 packages/fuels-core/src/lib.rs
+2 −2 packages/fuels-core/src/types/transaction_builders.rs
+33 −33 packages/fuels-core/src/types/wrappers/transaction.rs
+1 −1 packages/fuels-core/src/utils/constants.rs
+1 −0 packages/fuels-programs/src/calls/call_handler.rs
+499 −0 packages/fuels-programs/src/executable.rs
+1 −0 packages/fuels-programs/src/lib.rs
+4 −0 packages/fuels-test-helpers/src/lib.rs
+2 −1 packages/fuels-test-helpers/src/service.rs
2 changes: 1 addition & 1 deletion docs/nightly/fuels-ts
Submodule fuels-ts updated 187 files
2 changes: 1 addition & 1 deletion docs/nightly/fuels-wallet
2 changes: 1 addition & 1 deletion docs/nightly/sway
Submodule sway updated 40 files
+31 −30 .github/CODEOWNERS
+1 −1 .github/workflows/ci.yml
+54 −18 .github/workflows/scripts/verify_tag.sh
+94 −87 Cargo.lock
+33 −32 Cargo.toml
+99 −29 docs/book/src/blockchain-development/native_assets.md
+22 −1 docs/book/src/forc/plugins/forc_client/index.md
+1 −0 forc-plugins/forc-client/Cargo.toml
+400 −72 forc-plugins/forc-client/src/op/deploy.rs
+1 −1 forc-plugins/forc-client/src/op/mod.rs
+0 −0 forc-plugins/forc-client/test/data/deployed_predicate/.gitignore
+13 −0 forc-plugins/forc-client/test/data/deployed_predicate/Forc.lock
+1 −2 forc-plugins/forc-client/test/data/deployed_predicate/Forc.toml
+128 −0 forc-plugins/forc-client/test/data/deployed_predicate/deployed_predicate-abi.json
+53 −0 forc-plugins/forc-client/test/data/deployed_predicate/src/main.sw
+2 −0 forc-plugins/forc-client/test/data/deployed_script/.gitignore
+8 −0 forc-plugins/forc-client/test/data/deployed_script/Forc.toml
+312 −0 forc-plugins/forc-client/test/data/deployed_script/deployed_script-abi.json
+312 −0 forc-plugins/forc-client/test/data/deployed_script/deployed_script-loader-abi.json
+ forc-plugins/forc-client/test/data/deployed_script/deployed_script.bin
+72 −0 forc-plugins/forc-client/test/data/deployed_script/src/main.sw
+21 −0 forc-plugins/forc-client/test/data/standalone_contract/src/main.sw
+36 −0 forc-plugins/forc-client/test/data/standalone_contract/standalone_contract-abi.json
+0 −11 forc-plugins/forc-client/test/data/standalone_contract_b/src/main.sw
+565 −24 forc-plugins/forc-client/tests/deploy.rs
+1 −1 forc-plugins/forc-tx/Cargo.toml
+1 −1 forc-util/Cargo.toml
+92 −31 forc-util/src/lib.rs
+21 −0 sway-lsp/src/capabilities/code_actions/diagnostic/auto_import.rs
+2 −2 sway-lsp/tests/integration/lsp.rs
+16 −9 test/src/e2e_vm_tests/harness.rs
+12 −9 test/src/e2e_vm_tests/test_programs/should_fail/array_wrong_elements_types/stdout.snap
+4 −0 test/src/e2e_vm_tests/test_programs/should_fail/insufficient_type_info/test.toml
+13 −0 test/src/e2e_vm_tests/test_programs/should_fail/missing_hash_trait/Forc.lock
+9 −0 test/src/e2e_vm_tests/test_programs/should_fail/missing_hash_trait/Forc.toml
+22 −0 test/src/e2e_vm_tests/test_programs/should_fail/missing_hash_trait/src/main.sw
+5 −0 test/src/e2e_vm_tests/test_programs/should_fail/missing_hash_trait/test.toml
+4 −1 test/src/e2e_vm_tests/test_programs/should_fail/type_check_analyze_errors/stdout.snap
+177 −144 test/src/sdk-harness/Cargo.lock
+4 −4 test/src/sdk-harness/Cargo.toml

0 comments on commit ffed7f7

Please sign in to comment.