Skip to content

chore: update nightly docs #649

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/nightly/fuels-ts
Submodule fuels-ts updated 35 files
+4 −0 .changeset/brown-things-behave.md
+4 −0 .changeset/crazy-tools-run.md
+4 −0 .changeset/curvy-humans-drum.md
+4 −0 .changeset/silent-areas-sink.md
+1 −1 .env.example
+1 −1 .github/CODEOWNERS
+0 −6 .github/dependabot.yml
+1 −1 .github/workflows/publish-to-next.yaml
+19 −13 CONTRIBUTING.md
+1 −1 apps/create-fuels-counter-guide/package.json
+23 −0 apps/docs/.eslintrc.cjs
+1 −1 apps/docs/scripts/test-template.ts
+7 −0 apps/docs/scripts/wrap-snippets.ts
+2 −0 apps/docs/src/guide/cookbook/snippets/resubmitting-failed-transactions/wrong-resubmission.ts
+1 −1 apps/docs/src/guide/provider/snippets/functionality/get-message-proof-block-id.ts
+6 −0 internal/tsup/src/index.ts
+4 −4 package.json
+1 −0 packages/fuel-gauge/package.json
+20 −0 packages/fuel-gauge/scripts/latency-detection/constants.ts
+123 −84 packages/fuel-gauge/scripts/latency-detection/helpers.ts
+27 −0 packages/fuel-gauge/scripts/latency-detection/inter-contract-call.ts
+11 −22 packages/fuel-gauge/scripts/latency-detection/main.ts
+24 −16 packages/fuel-gauge/scripts/latency-detection/missing-4x-variable-output-call.ts
+0 −20 packages/fuel-gauge/scripts/latency-detection/missing-variable-output-call.ts
+101 −0 packages/fuel-gauge/scripts/latency-detection/predicate-signature-validation.ts
+0 −19 packages/fuel-gauge/scripts/latency-detection/script-call.ts
+0 −22 packages/fuel-gauge/scripts/latency-detection/script-with-predicate-call.ts
+18 −0 packages/fuel-gauge/scripts/latency-detection/simple-transfer.ts
+16 −12 packages/fuel-gauge/scripts/latency-detection/types.ts
+1 −1 packages/utils/package.json
+425 −764 pnpm-lock.yaml
+17 −0 snapshots/2025-03-25T22:38.json
+1 −1 templates/nextjs/package.json
+1 −1 templates/vite/package.json
+3 −3 vitest.shared.config.mts
2 changes: 1 addition & 1 deletion docs/nightly/fuels-wallet
Submodule fuels-wallet updated 136 files
2 changes: 1 addition & 1 deletion docs/nightly/sway-libs
Submodule sway-libs updated 97 files
+3 −3 .github/workflows/ci.yml
+3 −3 .github/workflows/gh-pages.yml
+135 −0 CHANGELOG.md
+1 −1 Cargo.toml
+6 −6 README.md
+1 −0 docs/book/spell-check-custom-words.txt
+1 −0 docs/book/src/SUMMARY.md
+142 −0 docs/book/src/bigint/index.md
+4 −8 docs/book/src/bytecode/index.md
+3 −3 docs/book/src/getting_started/index.md
+5 −1 docs/book/src/index.md
+127 −28 docs/book/src/merkle/index.md
+2 −2 examples/Cargo.toml
+17 −6 examples/Forc.lock
+3 −1 examples/Forc.toml
+1 −1 examples/admin/Forc.toml
+1 −1 examples/asset/base_docs/Forc.toml
+1 −1 examples/asset/basic_src20/Forc.toml
+1 −1 examples/asset/basic_src3/Forc.toml
+1 −1 examples/asset/basic_src7/Forc.toml
+1 −1 examples/asset/metadata_docs/Forc.toml
+1 −1 examples/asset/setting_src20_attributes/Forc.toml
+1 −1 examples/asset/setting_src7_attributes/Forc.toml
+1 −1 examples/asset/supply_docs/Forc.toml
+1 −1 examples/big_integers/Forc.toml
+132 −0 examples/big_integers/src/main.sw
+12 −30 examples/bytecode/src/main.sw
+2 −1 examples/harness.rs
+8 −0 examples/merkle_binary/Forc.toml
+2 −2 examples/merkle_binary/mod.rs
+9 −7 examples/merkle_binary/src/main.sw
+8 −0 examples/merkle_sparse/Forc.toml
+114 −0 examples/merkle_sparse/mod.rs
+71 −0 examples/merkle_sparse/src/main.sw
+1 −1 examples/ownership/Forc.toml
+2 −2 examples/signed_integers/src/main.sw
+1 −1 examples/upgradability/Forc.toml
+2 −7 libs/Forc.lock
+1 −1 libs/Forc.toml
+671 −0 libs/src/bigint.sw
+76 −157 libs/src/bytecode.sw
+1 −0 libs/src/lib.sw
+3 −3 libs/src/merkle.sw
+107 −88 libs/src/merkle/binary.sw
+50 −0 libs/src/merkle/common.sw
+863 −0 libs/src/merkle/sparse.sw
+0 −72 libs/src/merkle/utils.sw
+64 −50 libs/src/signed_integers/i128.sw
+64 −48 libs/src/signed_integers/i16.sw
+64 −48 libs/src/signed_integers/i256.sw
+64 −48 libs/src/signed_integers/i32.sw
+64 −48 libs/src/signed_integers/i64.sw
+61 −45 libs/src/signed_integers/i8.sw
+1 −1 tests/Cargo.toml
+17 −19 tests/Forc.lock
+1 −0 tests/Forc.toml
+1 −1 tests/src/admin/Forc.toml
+38 −0 tests/src/bigint/Forc.lock
+8 −0 tests/src/bigint/Forc.toml
+1,395 −0 tests/src/bigint/src/main.sw
+20 −43 tests/src/bytecode/test_contract/src/main.sw
+116 −7 tests/src/bytecode/tests/functions/compute_bytecode_root.rs
+0 −125 tests/src/bytecode/tests/functions/compute_bytecode_root_with_configurables.rs
+50 −3 tests/src/bytecode/tests/functions/compute_predicate_address.rs
+0 −61 tests/src/bytecode/tests/functions/compute_predicate_address_with_configurables.rs
+0 −4 tests/src/bytecode/tests/functions/mod.rs
+123 −5 tests/src/bytecode/tests/functions/verify_contract_bytecode.rs
+0 −134 tests/src/bytecode/tests/functions/verify_contract_bytecode_with_configurables.rs
+78 −3 tests/src/bytecode/tests/functions/verify_predicate_address.rs
+0 −88 tests/src/bytecode/tests/functions/verify_predicate_address_with_configurables.rs
+66 −97 tests/src/bytecode/tests/utils/mod.rs
+1,338 −10 tests/src/merkle_proof/src/main.sw
+5 −2 tests/src/merkle_proof/tests/functions/binary_leaf_digest.rs
+13 −13 tests/src/merkle_proof/tests/functions/binary_process_proof.rs
+3 −3 tests/src/merkle_proof/tests/functions/binary_verify_proof.rs
+7 −4 tests/src/merkle_proof/tests/functions/mod.rs
+34 −0 tests/src/merkle_proof/tests/functions/sparse_leaf_digest.rs
+308 −0 tests/src/merkle_proof/tests/functions/sparse_root.rs
+202 −0 tests/src/merkle_proof/tests/functions/sparse_verify.rs
+160 −7 tests/src/merkle_proof/tests/utils/mod.rs
+1 −1 tests/src/native_asset/Forc.toml
+1 −1 tests/src/ownership/Forc.toml
+1 −1 tests/src/reentrancy/reentrancy_proxy_abi/Forc.toml
+1 −1 tests/src/reentrancy/reentrancy_proxy_contract/Forc.toml
+32 −7 tests/src/signed_integers/signed_i128/src/main.sw
+3 −3 tests/src/signed_integers/signed_i128_wrapping_neg/src/main.sw
+33 −7 tests/src/signed_integers/signed_i16/src/main.sw
+3 −3 tests/src/signed_integers/signed_i16_wrapping_neg/src/main.sw
+32 −7 tests/src/signed_integers/signed_i256/src/main.sw
+3 −3 tests/src/signed_integers/signed_i256_wrapping_neg/src/main.sw
+32 −7 tests/src/signed_integers/signed_i32/src/main.sw
+3 −3 tests/src/signed_integers/signed_i32_wrapping_neg/src/main.sw
+32 −7 tests/src/signed_integers/signed_i64/src/main.sw
+3 −3 tests/src/signed_integers/signed_i64_wrapping_neg/src/main.sw
+33 −7 tests/src/signed_integers/signed_i8/src/main.sw
+3 −3 tests/src/signed_integers/signed_i8_wrapping_neg/src/main.sw
+1 −1 tests/src/upgradability/Forc.toml
Loading