Skip to content

Commit

Permalink
Merge branch 'master' into add/fuel-book
Browse files Browse the repository at this point in the history
  • Loading branch information
calldelegation authored Oct 7, 2024
2 parents c39a326 + c935f77 commit 2b89a77
Show file tree
Hide file tree
Showing 11 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion docs/builds/sway
Submodule sway updated 2454 files
2 changes: 1 addition & 1 deletion docs/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/fuels-ts
Submodule fuels-ts updated 187 files
2 changes: 1 addition & 1 deletion docs/fuels-wallet
Submodule fuels-wallet updated 28 files
+30 −0 packages/app/CHANGELOG.md
+2 −2 packages/app/package.json
+3 −1 packages/app/src/systems/Asset/components/AssetSelect/AssetSelect.tsx
+28 −4 packages/app/src/systems/CRX/background/services/PopUpService.ts
+33 −11 packages/app/src/systems/CRX/scripts/executeContentScript.ts
+7 −2 packages/app/src/systems/Core/utils/wallet.ts
+5 −0 packages/app/src/systems/DApp/hooks/useTransactionRequest.tsx
+13 −32 packages/app/src/systems/DApp/machines/transactionRequestMachine.tsx
+0 −18 packages/app/src/systems/DApp/pages/TransactionRequest/TransactionRequest.FormProvider.tsx
+8 −6 packages/app/src/systems/DApp/pages/TransactionRequest/TransactionRequest.tsx
+2 −2 packages/app/src/systems/Send/components/SendSelect/SendSelect.tsx
+6 −25 packages/app/src/systems/Send/hooks/useSend.tsx
+3 −3 packages/app/src/systems/Send/machines/sendMachine.ts
+0 −1 packages/app/src/systems/Transaction/components/TxContent/TxContent.stories.tsx
+26 −8 packages/app/src/systems/Transaction/components/TxContent/TxContent.tsx
+6 −6 packages/app/src/systems/Transaction/components/TxFeeOptions/TxFeeOptions.tsx
+76 −75 packages/app/src/systems/Transaction/services/transaction.tsx
+15 −1 packages/app/src/systems/Transaction/utils/gasLimit.ts
+8 −0 packages/connections/CHANGELOG.md
+1 −1 packages/connections/package.json
+18 −1 packages/connections/src/ContentProxyConnection.ts
+4 −0 packages/playwright-utils/CHANGELOG.md
+1 −1 packages/playwright-utils/package.json
+8 −0 packages/types/CHANGELOG.md
+1 −1 packages/types/package.json
+4 −0 packages/types/src/contentScript.ts
+1 −0 packages/types/src/index.ts
+66 −68 pnpm-lock.yaml
2 changes: 1 addition & 1 deletion docs/nightly/builds/sway
Submodule sway updated 2454 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
Submodule fuels-wallet updated 28 files
+30 −0 packages/app/CHANGELOG.md
+2 −2 packages/app/package.json
+3 −1 packages/app/src/systems/Asset/components/AssetSelect/AssetSelect.tsx
+28 −4 packages/app/src/systems/CRX/background/services/PopUpService.ts
+33 −11 packages/app/src/systems/CRX/scripts/executeContentScript.ts
+7 −2 packages/app/src/systems/Core/utils/wallet.ts
+5 −0 packages/app/src/systems/DApp/hooks/useTransactionRequest.tsx
+13 −32 packages/app/src/systems/DApp/machines/transactionRequestMachine.tsx
+0 −18 packages/app/src/systems/DApp/pages/TransactionRequest/TransactionRequest.FormProvider.tsx
+8 −6 packages/app/src/systems/DApp/pages/TransactionRequest/TransactionRequest.tsx
+2 −2 packages/app/src/systems/Send/components/SendSelect/SendSelect.tsx
+6 −25 packages/app/src/systems/Send/hooks/useSend.tsx
+3 −3 packages/app/src/systems/Send/machines/sendMachine.ts
+0 −1 packages/app/src/systems/Transaction/components/TxContent/TxContent.stories.tsx
+26 −8 packages/app/src/systems/Transaction/components/TxContent/TxContent.tsx
+6 −6 packages/app/src/systems/Transaction/components/TxFeeOptions/TxFeeOptions.tsx
+76 −75 packages/app/src/systems/Transaction/services/transaction.tsx
+15 −1 packages/app/src/systems/Transaction/utils/gasLimit.ts
+8 −0 packages/connections/CHANGELOG.md
+1 −1 packages/connections/package.json
+18 −1 packages/connections/src/ContentProxyConnection.ts
+4 −0 packages/playwright-utils/CHANGELOG.md
+1 −1 packages/playwright-utils/package.json
+8 −0 packages/types/CHANGELOG.md
+1 −1 packages/types/package.json
+4 −0 packages/types/src/contentScript.ts
+1 −0 packages/types/src/index.ts
+66 −68 pnpm-lock.yaml
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
+380 −70 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
2 changes: 1 addition & 1 deletion docs/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
+380 −70 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
8 changes: 4 additions & 4 deletions src/config/versions.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"default": {
"forc": "0.64.0",
"rust": "0.66.5",
"ts": "0.94.8",
"wallet": "0.33.1",
"forc": "0.65.2",
"rust": "0.66.7",
"ts": "0.94.9",
"wallet": "0.34.1",
"sway_libs": "0.24.0",
"sway_standards": "0.6.1"
}
Expand Down

0 comments on commit 2b89a77

Please sign in to comment.