├── .all-contributorsrc ├── .gitattributes ├── .github ├── CODEOWNERS ├── dependabot.yml └── workflows │ ├── deploy.yml │ ├── project.yml │ ├── test.yml │ └── update.yml ├── .gitignore ├── .gitmodules ├── CLAUDE.md ├── CONTRIBUTING.md ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── scripts ├── common ├── gen_output.sh └── gen_output │ ├── cast.sh │ ├── chisel.sh │ ├── forge.sh │ ├── help.rs │ ├── help.sh │ └── vm.sh └── vocs ├── README.md ├── bun.lockb ├── check-links.ts ├── docs ├── pages │ ├── anvil │ │ ├── overview.md │ │ ├── reference.md │ │ └── reference │ │ │ ├── anvil.mdx │ │ │ └── completions.mdx │ ├── benches.mdx │ ├── benchmarks.mdx │ ├── cast │ │ ├── overview.md │ │ └── reference │ │ │ ├── 4byte-calldata.mdx │ │ │ ├── 4byte-event.mdx │ │ │ ├── 4byte.mdx │ │ │ ├── abi-encode-event.mdx │ │ │ ├── abi-encode.mdx │ │ │ ├── access-list.mdx │ │ │ ├── address-zero.mdx │ │ │ ├── admin.mdx │ │ │ ├── age.mdx │ │ │ ├── artifact.mdx │ │ │ ├── b2e-payload.mdx │ │ │ ├── balance.mdx │ │ │ ├── base-fee.mdx │ │ │ ├── bind.mdx │ │ │ ├── block-number.mdx │ │ │ ├── block.mdx │ │ │ ├── call.mdx │ │ │ ├── call │ │ │ └── --create.mdx │ │ │ ├── calldata.mdx │ │ │ ├── cast.mdx │ │ │ ├── chain-id.mdx │ │ │ ├── chain.mdx │ │ │ ├── client.mdx │ │ │ ├── code.mdx │ │ │ ├── codehash.mdx │ │ │ ├── codesize.mdx │ │ │ ├── completions.mdx │ │ │ ├── compute-address.mdx │ │ │ ├── concat-hex.mdx │ │ │ ├── constructor-args.mdx │ │ │ ├── create2.mdx │ │ │ ├── creation-code.mdx │ │ │ ├── da-estimate.mdx │ │ │ ├── decode-abi.mdx │ │ │ ├── decode-calldata.mdx │ │ │ ├── decode-error.mdx │ │ │ ├── decode-event.mdx │ │ │ ├── decode-string.mdx │ │ │ ├── decode-transaction.mdx │ │ │ ├── disassemble.mdx │ │ │ ├── erc20-token.mdx │ │ │ ├── erc20-token │ │ │ ├── allowance.mdx │ │ │ ├── approve.mdx │ │ │ ├── balance.mdx │ │ │ ├── burn.mdx │ │ │ ├── decimals.mdx │ │ │ ├── mint.mdx │ │ │ ├── name.mdx │ │ │ ├── symbol.mdx │ │ │ ├── total-supply.mdx │ │ │ └── transfer.mdx │ │ │ ├── estimate.mdx │ │ │ ├── estimate │ │ │ └── --create.mdx │ │ │ ├── find-block.mdx │ │ │ ├── format-bytes32-string.mdx │ │ │ ├── format-units.mdx │ │ │ ├── from-bin.mdx │ │ │ ├── from-fixed-point.mdx │ │ │ ├── from-rlp.mdx │ │ │ ├── from-utf8.mdx │ │ │ ├── from-wei.mdx │ │ │ ├── gas-price.mdx │ │ │ ├── hash-message.mdx │ │ │ ├── hash-zero.mdx │ │ │ ├── implementation.mdx │ │ │ ├── index-cmd.mdx │ │ │ ├── index-erc7201.mdx │ │ │ ├── index.mdx │ │ │ ├── interface.mdx │ │ │ ├── keccak.mdx │ │ │ ├── logs.mdx │ │ │ ├── lookup-address.mdx │ │ │ ├── max-int.mdx │ │ │ ├── max-uint.mdx │ │ │ ├── min-int.mdx │ │ │ ├── mktx.mdx │ │ │ ├── mktx │ │ │ └── --create.mdx │ │ │ ├── namehash.mdx │ │ │ ├── nonce.mdx │ │ │ ├── pad.mdx │ │ │ ├── parse-bytes32-address.mdx │ │ │ ├── parse-bytes32-string.mdx │ │ │ ├── parse-units.mdx │ │ │ ├── pretty-calldata.mdx │ │ │ ├── proof.mdx │ │ │ ├── publish.mdx │ │ │ ├── receipt.mdx │ │ │ ├── recover-authority.mdx │ │ │ ├── resolve-name.mdx │ │ │ ├── rpc.mdx │ │ │ ├── run.mdx │ │ │ ├── selectors.mdx │ │ │ ├── send.mdx │ │ │ ├── send │ │ │ └── --create.mdx │ │ │ ├── shl.mdx │ │ │ ├── shr.mdx │ │ │ ├── sig-event.mdx │ │ │ ├── sig.mdx │ │ │ ├── source.mdx │ │ │ ├── storage-root.mdx │ │ │ ├── storage.mdx │ │ │ ├── to-ascii.mdx │ │ │ ├── to-base.mdx │ │ │ ├── to-bytes32.mdx │ │ │ ├── to-check-sum-address.mdx │ │ │ ├── to-dec.mdx │ │ │ ├── to-fixed-point.mdx │ │ │ ├── to-hex.mdx │ │ │ ├── to-hexdata.mdx │ │ │ ├── to-int256.mdx │ │ │ ├── to-rlp.mdx │ │ │ ├── to-uint256.mdx │ │ │ ├── to-unit.mdx │ │ │ ├── to-utf8.mdx │ │ │ ├── to-wei.mdx │ │ │ ├── tx-pool.mdx │ │ │ ├── tx-pool │ │ │ ├── content-from.mdx │ │ │ ├── content.mdx │ │ │ ├── inspect.mdx │ │ │ └── status.mdx │ │ │ ├── tx.mdx │ │ │ ├── upload-signature.mdx │ │ │ ├── wallet.mdx │ │ │ └── wallet │ │ │ ├── address.mdx │ │ │ ├── change-password.mdx │ │ │ ├── decrypt-keystore.mdx │ │ │ ├── import.mdx │ │ │ ├── list.mdx │ │ │ ├── new-mnemonic.mdx │ │ │ ├── new.mdx │ │ │ ├── private-key.mdx │ │ │ ├── public-key.mdx │ │ │ ├── remove.mdx │ │ │ ├── sign-auth.mdx │ │ │ ├── sign.mdx │ │ │ ├── vanity.mdx │ │ │ └── verify.mdx │ ├── chisel │ │ ├── overview.md │ │ ├── reference.md │ │ └── reference │ │ │ ├── chisel.mdx │ │ │ ├── clear-cache.mdx │ │ │ ├── eval.mdx │ │ │ ├── list.mdx │ │ │ ├── load.mdx │ │ │ └── view.mdx │ ├── config │ │ ├── continuous-integration.md │ │ ├── dynamic-test-linking.md │ │ ├── hardhat.md │ │ ├── overview.md │ │ ├── reference │ │ │ ├── README.mdx │ │ │ ├── default-config.mdx │ │ │ ├── doc-generator.mdx │ │ │ ├── etherscan.mdx │ │ │ ├── formatter.mdx │ │ │ ├── inline-test-config.mdx │ │ │ ├── linter.mdx │ │ │ ├── overview.mdx │ │ │ ├── project.mdx │ │ │ ├── solidity-compiler.mdx │ │ │ └── testing.mdx │ │ ├── shell-autocompletion.md │ │ ├── static-analyzers.md │ │ ├── vscode.md │ │ └── vyper.md │ ├── forge │ │ ├── advanced-testing │ │ │ ├── differential-ffi-testing.md │ │ │ ├── fuzz-testing.md │ │ │ ├── invariant-testing.md │ │ │ ├── overview.md │ │ │ └── table-testing.md │ │ ├── debugger.md │ │ ├── deploying.md │ │ ├── gas-tracking │ │ │ ├── gas-function-snapshots.md │ │ │ ├── gas-reports.md │ │ │ ├── gas-section-snapshots.mdx │ │ │ └── overview.md │ │ ├── linting.md │ │ ├── overview.md │ │ ├── reference │ │ │ ├── bind-json.mdx │ │ │ ├── bind.mdx │ │ │ ├── build.mdx │ │ │ ├── cache.mdx │ │ │ ├── cache │ │ │ │ ├── clean.mdx │ │ │ │ └── ls.mdx │ │ │ ├── clean.mdx │ │ │ ├── clone.mdx │ │ │ ├── compiler.mdx │ │ │ ├── compiler │ │ │ │ └── resolve.mdx │ │ │ ├── completions.mdx │ │ │ ├── config.mdx │ │ │ ├── coverage.mdx │ │ │ ├── create.mdx │ │ │ ├── doc.mdx │ │ │ ├── eip712.mdx │ │ │ ├── flatten.mdx │ │ │ ├── fmt.mdx │ │ │ ├── forge.mdx │ │ │ ├── geiger.mdx │ │ │ ├── generate.mdx │ │ │ ├── generate │ │ │ │ └── test.mdx │ │ │ ├── init.mdx │ │ │ ├── inspect.mdx │ │ │ ├── install.mdx │ │ │ ├── lint.mdx │ │ │ ├── remappings.mdx │ │ │ ├── remove.mdx │ │ │ ├── script.mdx │ │ │ ├── selectors.mdx │ │ │ ├── selectors │ │ │ │ ├── cache.mdx │ │ │ │ ├── collision.mdx │ │ │ │ ├── find.mdx │ │ │ │ ├── list.mdx │ │ │ │ └── upload.mdx │ │ │ ├── snapshot.mdx │ │ │ ├── soldeer.mdx │ │ │ ├── soldeer │ │ │ │ ├── clean.mdx │ │ │ │ ├── init.mdx │ │ │ │ ├── install.mdx │ │ │ │ ├── login.mdx │ │ │ │ ├── push.mdx │ │ │ │ ├── uninstall.mdx │ │ │ │ ├── update.mdx │ │ │ │ └── version.mdx │ │ │ ├── test.mdx │ │ │ ├── tree.mdx │ │ │ ├── update.mdx │ │ │ ├── verify-bytecode.mdx │ │ │ ├── verify-check.mdx │ │ │ └── verify-contract.mdx │ │ └── tests │ │ │ ├── cheatcodes.md │ │ │ ├── forge-std.md │ │ │ ├── fork-testing.md │ │ │ ├── overview.md │ │ │ ├── replay-testing.md │ │ │ ├── traces.md │ │ │ └── writing-tests.md │ ├── guides │ │ ├── best-practices │ │ │ ├── commenting.md │ │ │ ├── key-management.md │ │ │ ├── security.md │ │ │ ├── writing-contracts.md │ │ │ ├── writing-scripts.md │ │ │ └── writing-tests.md │ │ ├── deterministic-deployments-using-create2.md │ │ ├── eip712.md │ │ ├── forking-mainnet-with-cast-anvil.md │ │ ├── foundry-in-docker.md │ │ ├── project-setup │ │ │ ├── clone-a-verified-contract.mdx │ │ │ ├── creating-a-new-project.md │ │ │ ├── dependencies.md │ │ │ ├── project-layout.md │ │ │ └── soldeer.md │ │ ├── scripting-with-config.md │ │ ├── scripting-with-solidity.md │ │ └── video-tutorials.mdx │ ├── index.mdx │ ├── introduction │ │ ├── getting-started.mdx │ │ ├── installation.md │ │ ├── overview.md │ │ └── prompting.mdx │ ├── misc │ │ ├── README.md │ │ ├── faq.md │ │ ├── struct-encoding.md │ │ └── v1.0-migration.md │ ├── reference │ │ ├── README.md │ │ ├── cheatcodes │ │ │ ├── accesses.mdx │ │ │ ├── active-fork.mdx │ │ │ ├── addr.mdx │ │ │ ├── allow-cheatcodes.mdx │ │ │ ├── assertions.mdx │ │ │ ├── assume-no-revert.mdx │ │ │ ├── assume.mdx │ │ │ ├── breakpoint.mdx │ │ │ ├── broadcast.mdx │ │ │ ├── chain-id.mdx │ │ │ ├── clear-mocked-calls.mdx │ │ │ ├── coinbase.mdx │ │ │ ├── copy-storage.mdx │ │ │ ├── create-fork.mdx │ │ │ ├── create-select-fork.mdx │ │ │ ├── create-wallet.mdx │ │ │ ├── deal.mdx │ │ │ ├── derive-key.mdx │ │ │ ├── difficulty.mdx │ │ │ ├── env-address.mdx │ │ │ ├── env-bool.mdx │ │ │ ├── env-bytes.mdx │ │ │ ├── env-bytes32.mdx │ │ │ ├── env-int.mdx │ │ │ ├── env-or.mdx │ │ │ ├── env-string.mdx │ │ │ ├── env-uint.mdx │ │ │ ├── environment.mdx │ │ │ ├── etch.mdx │ │ │ ├── expect-call.mdx │ │ │ ├── expect-emit.mdx │ │ │ ├── expect-revert.mdx │ │ │ ├── external.mdx │ │ │ ├── fee.mdx │ │ │ ├── ffi.mdx │ │ │ ├── forking.mdx │ │ │ ├── fs.mdx │ │ │ ├── fuzzer.mdx │ │ │ ├── gas-snapshots.mdx │ │ │ ├── get-block-number.mdx │ │ │ ├── get-block-timestamp.mdx │ │ │ ├── get-code.mdx │ │ │ ├── get-deployed-code.mdx │ │ │ ├── get-label.mdx │ │ │ ├── get-nonce.mdx │ │ │ ├── get-recorded-logs.mdx │ │ │ ├── is-context.mdx │ │ │ ├── is-persistent.mdx │ │ │ ├── key-exists-json.mdx │ │ │ ├── key-exists-toml.mdx │ │ │ ├── key-exists.mdx │ │ │ ├── label.mdx │ │ │ ├── load.mdx │ │ │ ├── make-persistent.mdx │ │ │ ├── mock-call-revert.mdx │ │ │ ├── mock-call.mdx │ │ │ ├── mock-calls.mdx │ │ │ ├── mock-function.mdx │ │ │ ├── overview.mdx │ │ │ ├── parse-address.mdx │ │ │ ├── parse-bool.mdx │ │ │ ├── parse-bytes.mdx │ │ │ ├── parse-bytes32.mdx │ │ │ ├── parse-int.mdx │ │ │ ├── parse-json-keys.mdx │ │ │ ├── parse-json.mdx │ │ │ ├── parse-toml-keys.mdx │ │ │ ├── parse-toml.mdx │ │ │ ├── parse-uint.mdx │ │ │ ├── pause-gas-metering.mdx │ │ │ ├── prank.mdx │ │ │ ├── prevrandao.mdx │ │ │ ├── project-root.mdx │ │ │ ├── prompt.mdx │ │ │ ├── read-callers.mdx │ │ │ ├── record-logs.mdx │ │ │ ├── record.mdx │ │ │ ├── remember-key.mdx │ │ │ ├── reset-gas-metering.mdx │ │ │ ├── resume-gas-metering.mdx │ │ │ ├── revoke-persistent.mdx │ │ │ ├── roll-fork.mdx │ │ │ ├── roll.mdx │ │ │ ├── rpc.mdx │ │ │ ├── select-fork.mdx │ │ │ ├── serialize-json.mdx │ │ │ ├── set-arbitrary-storage.mdx │ │ │ ├── set-env.mdx │ │ │ ├── set-nonce.mdx │ │ │ ├── sign-delegation.mdx │ │ │ ├── sign.mdx │ │ │ ├── signing.mdx │ │ │ ├── skip.mdx │ │ │ ├── sleep.mdx │ │ │ ├── start-broadcast.mdx │ │ │ ├── start-prank.mdx │ │ │ ├── start-state-diff-recording.mdx │ │ │ ├── state-snapshots.mdx │ │ │ ├── stop-and-return-state-diff.mdx │ │ │ ├── stop-broadcast.mdx │ │ │ ├── stop-prank.mdx │ │ │ ├── store.mdx │ │ │ ├── to-string.mdx │ │ │ ├── transact.mdx │ │ │ ├── tx-gas-price.mdx │ │ │ ├── unix-time.mdx │ │ │ ├── utilities.mdx │ │ │ ├── warp.mdx │ │ │ ├── write-json.mdx │ │ │ └── write-toml.mdx │ │ ├── common │ │ │ ├── base-options.mdx │ │ │ ├── cast-estimate-create-option.mdx │ │ │ ├── display-options.mdx │ │ │ ├── etherscan-options.mdx │ │ │ ├── multi-wallet-options-hardware.mdx │ │ │ ├── multi-wallet-options-keystore.mdx │ │ │ ├── multi-wallet-options-raw.mdx │ │ │ ├── multi-wallet-options-remote.mdx │ │ │ ├── multi-wallet-options.mdx │ │ │ ├── retry-options.mdx │ │ │ ├── rpc-options.mdx │ │ │ ├── rpc-url-option.mdx │ │ │ ├── transaction-options.mdx │ │ │ ├── tx-value-option.mdx │ │ │ ├── verifier-options.mdx │ │ │ ├── wallet-options-hardware.mdx │ │ │ ├── wallet-options-keystore.mdx │ │ │ ├── wallet-options-raw.mdx │ │ │ ├── wallet-options-remote.mdx │ │ │ └── wallet-options.mdx │ │ ├── ds-test.md │ │ └── forge-std │ │ │ ├── abs.mdx │ │ │ ├── arithmeticError.mdx │ │ │ ├── assertApproxEqAbs.mdx │ │ │ ├── assertApproxEqAbsDecimal.mdx │ │ │ ├── assertApproxEqRel.mdx │ │ │ ├── assertApproxEqRelDecimal.mdx │ │ │ ├── assertEq.mdx │ │ │ ├── assertEqDecimal.mdx │ │ │ ├── assertFalse.mdx │ │ │ ├── assertGe.mdx │ │ │ ├── assertGeDecimal.mdx │ │ │ ├── assertGt.mdx │ │ │ ├── assertGtDecimal.mdx │ │ │ ├── assertLe.mdx │ │ │ ├── assertLeDecimal.mdx │ │ │ ├── assertLt.mdx │ │ │ ├── assertLtDecimal.mdx │ │ │ ├── assertNotEq.mdx │ │ │ ├── assertNotEqDecimal.mdx │ │ │ ├── assertTrue.mdx │ │ │ ├── assertionError.mdx │ │ │ ├── assume-no-precompiles.mdx │ │ │ ├── assume-payable.mdx │ │ │ ├── bound.mdx │ │ │ ├── change-prank.mdx │ │ │ ├── checked_write.mdx │ │ │ ├── compute-create-address.mdx │ │ │ ├── config.mdx │ │ │ ├── console-log.mdx │ │ │ ├── deal.mdx │ │ │ ├── delta.mdx │ │ │ ├── deployCode.mdx │ │ │ ├── deployCodeTo.mdx │ │ │ ├── depth.mdx │ │ │ ├── derive-remember-key.mdx │ │ │ ├── divisionError.mdx │ │ │ ├── enable_packed_slots.mdx │ │ │ ├── encodeStorageError.mdx │ │ │ ├── enumConversionError.mdx │ │ │ ├── fail.mdx │ │ │ ├── find.mdx │ │ │ ├── hoax.mdx │ │ │ ├── indexOOBError.mdx │ │ │ ├── make-addr-and-key.mdx │ │ │ ├── make-addr.mdx │ │ │ ├── memOverflowError.mdx │ │ │ ├── noGasMetering.mdx │ │ │ ├── overview.mdx │ │ │ ├── percentDelta.mdx │ │ │ ├── popError.mdx │ │ │ ├── read.mdx │ │ │ ├── rewind.mdx │ │ │ ├── script-utils.mdx │ │ │ ├── sig.mdx │ │ │ ├── skip.mdx │ │ │ ├── startHoax.mdx │ │ │ ├── std-assertions.mdx │ │ │ ├── std-cheats.mdx │ │ │ ├── std-config.mdx │ │ │ ├── std-errors.mdx │ │ │ ├── std-logs.mdx │ │ │ ├── std-math.mdx │ │ │ ├── std-storage.mdx │ │ │ ├── target.mdx │ │ │ ├── with_key.mdx │ │ │ └── zeroVarError.mdx │ ├── releases.mdx │ └── releases │ │ ├── nightly.mdx │ │ └── stable.mdx ├── public │ ├── _redirects │ ├── anvil.png │ ├── breakpoint.png │ ├── cropped-ripped-jesus.png │ ├── debugger.png │ ├── foundry-banner.png │ ├── foundry-logo.png │ ├── fuzzer.png │ ├── nft-tutorial │ │ ├── gas-report-oz-nft.png │ │ ├── gas-report-solmate-nft.png │ │ └── nft-tutorial-project-structure.png │ ├── og-image.png │ └── solidity-scripting │ │ ├── compile-successful.png │ │ ├── contract-verified.png │ │ └── set-up-commands.png ├── snippets │ ├── clone_contract │ │ ├── clone-meta │ │ └── forge-clone │ ├── output │ │ ├── cast │ │ │ ├── cast-4byte-calldata │ │ │ └── cast-call │ │ ├── cheatcodes │ │ │ ├── forge-test-cheatcodes-expectrevert │ │ │ └── forge-test-simple │ │ ├── chisel │ │ │ └── help │ │ ├── forge_tree │ │ │ ├── forge-tree │ │ │ └── forge-tree-no-dedupe │ │ ├── fuzz_testing │ │ │ ├── forge-test-fail-fuzz │ │ │ ├── forge-test-no-fuzz │ │ │ └── forge-test-success-fuzz │ │ ├── hello_foundry │ │ │ ├── forge-build │ │ │ ├── forge-init │ │ │ ├── forge-install │ │ │ ├── forge-remappings │ │ │ ├── forge-test │ │ │ ├── tree │ │ │ └── tree-with-files │ │ ├── test_filters │ │ │ ├── forge-test-match-contract-and-test │ │ │ └── forge-test-match-path │ │ └── vm │ │ │ └── Vm.sol │ └── projects │ │ ├── README.md │ │ ├── cheatcodes │ │ ├── foundry.toml │ │ ├── lib │ │ │ └── forge-std │ │ │ │ ├── .gitattributes │ │ │ │ ├── .github │ │ │ │ └── workflows │ │ │ │ │ ├── ci.yml │ │ │ │ │ └── sync.yml │ │ │ │ ├── .gitignore │ │ │ │ ├── .gitmodules │ │ │ │ ├── LICENSE-APACHE │ │ │ │ ├── LICENSE-MIT │ │ │ │ ├── README.md │ │ │ │ ├── foundry.toml │ │ │ │ ├── lib │ │ │ │ └── ds-test │ │ │ │ │ ├── .github │ │ │ │ │ └── workflows │ │ │ │ │ │ └── build.yml │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── default.nix │ │ │ │ │ ├── demo │ │ │ │ │ └── demo.sol │ │ │ │ │ ├── package.json │ │ │ │ │ └── src │ │ │ │ │ ├── test.sol │ │ │ │ │ └── test.t.sol │ │ │ │ ├── package.json │ │ │ │ ├── scripts │ │ │ │ └── vm.py │ │ │ │ ├── src │ │ │ │ ├── Base.sol │ │ │ │ ├── Script.sol │ │ │ │ ├── StdAssertions.sol │ │ │ │ ├── StdChains.sol │ │ │ │ ├── StdCheats.sol │ │ │ │ ├── StdError.sol │ │ │ │ ├── StdInvariant.sol │ │ │ │ ├── StdJson.sol │ │ │ │ ├── StdMath.sol │ │ │ │ ├── StdStorage.sol │ │ │ │ ├── StdStyle.sol │ │ │ │ ├── StdUtils.sol │ │ │ │ ├── Test.sol │ │ │ │ ├── Vm.sol │ │ │ │ ├── console.sol │ │ │ │ ├── console2.sol │ │ │ │ ├── interfaces │ │ │ │ │ ├── IERC1155.sol │ │ │ │ │ ├── IERC165.sol │ │ │ │ │ ├── IERC20.sol │ │ │ │ │ ├── IERC4626.sol │ │ │ │ │ ├── IERC721.sol │ │ │ │ │ └── IMulticall3.sol │ │ │ │ ├── mocks │ │ │ │ │ ├── MockERC20.sol │ │ │ │ │ └── MockERC721.sol │ │ │ │ └── safeconsole.sol │ │ │ │ └── test │ │ │ │ ├── StdAssertions.t.sol │ │ │ │ ├── StdChains.t.sol │ │ │ │ ├── StdCheats.t.sol │ │ │ │ ├── StdError.t.sol │ │ │ │ ├── StdMath.t.sol │ │ │ │ ├── StdStorage.t.sol │ │ │ │ ├── StdStyle.t.sol │ │ │ │ ├── StdUtils.t.sol │ │ │ │ ├── Vm.t.sol │ │ │ │ ├── compilation │ │ │ │ ├── CompilationScript.sol │ │ │ │ ├── CompilationScriptBase.sol │ │ │ │ ├── CompilationTest.sol │ │ │ │ └── CompilationTestBase.sol │ │ │ │ ├── fixtures │ │ │ │ └── broadcast.log.json │ │ │ │ └── mocks │ │ │ │ ├── MockERC20.t.sol │ │ │ │ └── MockERC721.t.sol │ │ ├── out │ │ │ ├── Base.sol │ │ │ │ ├── CommonBase.json │ │ │ │ ├── ScriptBase.json │ │ │ │ └── TestBase.json │ │ │ ├── IERC165.sol │ │ │ │ └── IERC165.json │ │ │ ├── IERC20.sol │ │ │ │ └── IERC20.json │ │ │ ├── IERC721.sol │ │ │ │ ├── IERC721.json │ │ │ │ ├── IERC721Enumerable.json │ │ │ │ ├── IERC721Metadata.json │ │ │ │ └── IERC721TokenReceiver.json │ │ │ ├── IMulticall3.sol │ │ │ │ └── IMulticall3.json │ │ │ ├── MockERC20.sol │ │ │ │ └── MockERC20.json │ │ │ ├── MockERC721.sol │ │ │ │ ├── IERC721TokenReceiver.json │ │ │ │ └── MockERC721.json │ │ │ ├── OwnerUpOnly.t.sol │ │ │ │ ├── OwnerUpOnly.json │ │ │ │ └── OwnerUpOnlyTest.json │ │ │ ├── StdAssertions.sol │ │ │ │ └── StdAssertions.json │ │ │ ├── StdChains.sol │ │ │ │ └── StdChains.json │ │ │ ├── StdCheats.sol │ │ │ │ ├── StdCheats.json │ │ │ │ └── StdCheatsSafe.json │ │ │ ├── StdError.sol │ │ │ │ └── stdError.json │ │ │ ├── StdInvariant.sol │ │ │ │ └── StdInvariant.json │ │ │ ├── StdJson.sol │ │ │ │ └── stdJson.json │ │ │ ├── StdMath.sol │ │ │ │ └── stdMath.json │ │ │ ├── StdStorage.sol │ │ │ │ ├── stdStorage.json │ │ │ │ └── stdStorageSafe.json │ │ │ ├── StdStyle.sol │ │ │ │ └── StdStyle.json │ │ │ ├── StdUtils.sol │ │ │ │ └── StdUtils.json │ │ │ ├── Test.sol │ │ │ │ └── Test.json │ │ │ ├── Vm.sol │ │ │ │ ├── Vm.json │ │ │ │ └── VmSafe.json │ │ │ ├── build-info │ │ │ │ └── b68059c8bca906b2.json │ │ │ ├── console.sol │ │ │ │ └── console.json │ │ │ ├── console2.sol │ │ │ │ └── console2.json │ │ │ ├── safeconsole.sol │ │ │ │ └── safeconsole.json │ │ │ └── test.sol │ │ │ │ └── DSTest.json │ │ └── test │ │ │ ├── BlastMock.t.sol │ │ │ ├── EmitContract.t.sol │ │ │ └── OwnerUpOnly.t.sol │ │ ├── fuzz_testing │ │ ├── foundry.toml │ │ ├── lib │ │ │ └── forge-std │ │ │ │ ├── .gitattributes │ │ │ │ ├── .github │ │ │ │ └── workflows │ │ │ │ │ ├── ci.yml │ │ │ │ │ └── sync.yml │ │ │ │ ├── .gitignore │ │ │ │ ├── .gitmodules │ │ │ │ ├── LICENSE-APACHE │ │ │ │ ├── LICENSE-MIT │ │ │ │ ├── README.md │ │ │ │ ├── foundry.toml │ │ │ │ ├── lib │ │ │ │ └── ds-test │ │ │ │ │ ├── .github │ │ │ │ │ └── workflows │ │ │ │ │ │ └── build.yml │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── default.nix │ │ │ │ │ ├── demo │ │ │ │ │ └── demo.sol │ │ │ │ │ ├── package.json │ │ │ │ │ └── src │ │ │ │ │ ├── test.sol │ │ │ │ │ └── test.t.sol │ │ │ │ ├── package.json │ │ │ │ ├── scripts │ │ │ │ └── vm.py │ │ │ │ ├── src │ │ │ │ ├── Base.sol │ │ │ │ ├── Script.sol │ │ │ │ ├── StdAssertions.sol │ │ │ │ ├── StdChains.sol │ │ │ │ ├── StdCheats.sol │ │ │ │ ├── StdError.sol │ │ │ │ ├── StdInvariant.sol │ │ │ │ ├── StdJson.sol │ │ │ │ ├── StdMath.sol │ │ │ │ ├── StdStorage.sol │ │ │ │ ├── StdStyle.sol │ │ │ │ ├── StdUtils.sol │ │ │ │ ├── Test.sol │ │ │ │ ├── Vm.sol │ │ │ │ ├── console.sol │ │ │ │ ├── console2.sol │ │ │ │ ├── interfaces │ │ │ │ │ ├── IERC1155.sol │ │ │ │ │ ├── IERC165.sol │ │ │ │ │ ├── IERC20.sol │ │ │ │ │ ├── IERC4626.sol │ │ │ │ │ ├── IERC721.sol │ │ │ │ │ └── IMulticall3.sol │ │ │ │ ├── mocks │ │ │ │ │ ├── MockERC20.sol │ │ │ │ │ └── MockERC721.sol │ │ │ │ └── safeconsole.sol │ │ │ │ └── test │ │ │ │ ├── StdAssertions.t.sol │ │ │ │ ├── StdChains.t.sol │ │ │ │ ├── StdCheats.t.sol │ │ │ │ ├── StdError.t.sol │ │ │ │ ├── StdMath.t.sol │ │ │ │ ├── StdStorage.t.sol │ │ │ │ ├── StdStyle.t.sol │ │ │ │ ├── StdUtils.t.sol │ │ │ │ ├── Vm.t.sol │ │ │ │ ├── compilation │ │ │ │ ├── CompilationScript.sol │ │ │ │ ├── CompilationScriptBase.sol │ │ │ │ ├── CompilationTest.sol │ │ │ │ └── CompilationTestBase.sol │ │ │ │ ├── fixtures │ │ │ │ └── broadcast.log.json │ │ │ │ └── mocks │ │ │ │ ├── MockERC20.t.sol │ │ │ │ └── MockERC721.t.sol │ │ ├── out │ │ │ ├── Base.sol │ │ │ │ ├── CommonBase.json │ │ │ │ ├── ScriptBase.json │ │ │ │ └── TestBase.json │ │ │ ├── IERC165.sol │ │ │ │ └── IERC165.json │ │ │ ├── IERC20.sol │ │ │ │ └── IERC20.json │ │ │ ├── IERC721.sol │ │ │ │ ├── IERC721.json │ │ │ │ ├── IERC721Enumerable.json │ │ │ │ ├── IERC721Metadata.json │ │ │ │ └── IERC721TokenReceiver.json │ │ │ ├── IMulticall3.sol │ │ │ │ └── IMulticall3.json │ │ │ ├── MockERC20.sol │ │ │ │ └── MockERC20.json │ │ │ ├── MockERC721.sol │ │ │ │ ├── IERC721TokenReceiver.json │ │ │ │ └── MockERC721.json │ │ │ ├── Safe.t.sol │ │ │ │ ├── Safe.json │ │ │ │ └── SafeTest.json │ │ │ ├── StdAssertions.sol │ │ │ │ └── StdAssertions.json │ │ │ ├── StdChains.sol │ │ │ │ └── StdChains.json │ │ │ ├── StdCheats.sol │ │ │ │ ├── StdCheats.json │ │ │ │ └── StdCheatsSafe.json │ │ │ ├── StdError.sol │ │ │ │ └── stdError.json │ │ │ ├── StdInvariant.sol │ │ │ │ └── StdInvariant.json │ │ │ ├── StdJson.sol │ │ │ │ └── stdJson.json │ │ │ ├── StdMath.sol │ │ │ │ └── stdMath.json │ │ │ ├── StdStorage.sol │ │ │ │ ├── stdStorage.json │ │ │ │ └── stdStorageSafe.json │ │ │ ├── StdStyle.sol │ │ │ │ └── StdStyle.json │ │ │ ├── StdUtils.sol │ │ │ │ └── StdUtils.json │ │ │ ├── Test.sol │ │ │ │ └── Test.json │ │ │ ├── Vm.sol │ │ │ │ ├── Vm.json │ │ │ │ └── VmSafe.json │ │ │ ├── build-info │ │ │ │ ├── c5fe51cecea78bc1.json │ │ │ │ └── f184a4417f807484.json │ │ │ ├── console.sol │ │ │ │ └── console.json │ │ │ ├── console2.sol │ │ │ │ └── console2.json │ │ │ ├── safeconsole.sol │ │ │ │ └── safeconsole.json │ │ │ └── test.sol │ │ │ │ └── DSTest.json │ │ └── test │ │ │ ├── Safe.t.sol │ │ │ ├── Safe.t.sol.1 │ │ │ ├── Safe.t.sol.2 │ │ │ └── Safe.t.sol.3 │ │ ├── test_filters │ │ ├── foundry.toml │ │ ├── lib │ │ │ └── forge-std │ │ │ │ ├── .gitattributes │ │ │ │ ├── .github │ │ │ │ └── workflows │ │ │ │ │ ├── ci.yml │ │ │ │ │ └── sync.yml │ │ │ │ ├── .gitignore │ │ │ │ ├── .gitmodules │ │ │ │ ├── LICENSE-APACHE │ │ │ │ ├── LICENSE-MIT │ │ │ │ ├── README.md │ │ │ │ ├── foundry.toml │ │ │ │ ├── lib │ │ │ │ └── ds-test │ │ │ │ │ ├── .github │ │ │ │ │ └── workflows │ │ │ │ │ │ └── build.yml │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── default.nix │ │ │ │ │ ├── demo │ │ │ │ │ └── demo.sol │ │ │ │ │ ├── package.json │ │ │ │ │ └── src │ │ │ │ │ ├── test.sol │ │ │ │ │ └── test.t.sol │ │ │ │ ├── package.json │ │ │ │ ├── scripts │ │ │ │ └── vm.py │ │ │ │ ├── src │ │ │ │ ├── Base.sol │ │ │ │ ├── Script.sol │ │ │ │ ├── StdAssertions.sol │ │ │ │ ├── StdChains.sol │ │ │ │ ├── StdCheats.sol │ │ │ │ ├── StdError.sol │ │ │ │ ├── StdInvariant.sol │ │ │ │ ├── StdJson.sol │ │ │ │ ├── StdMath.sol │ │ │ │ ├── StdStorage.sol │ │ │ │ ├── StdStyle.sol │ │ │ │ ├── StdUtils.sol │ │ │ │ ├── Test.sol │ │ │ │ ├── Vm.sol │ │ │ │ ├── console.sol │ │ │ │ ├── console2.sol │ │ │ │ ├── interfaces │ │ │ │ │ ├── IERC1155.sol │ │ │ │ │ ├── IERC165.sol │ │ │ │ │ ├── IERC20.sol │ │ │ │ │ ├── IERC4626.sol │ │ │ │ │ ├── IERC721.sol │ │ │ │ │ └── IMulticall3.sol │ │ │ │ ├── mocks │ │ │ │ │ ├── MockERC20.sol │ │ │ │ │ └── MockERC721.sol │ │ │ │ └── safeconsole.sol │ │ │ │ └── test │ │ │ │ ├── StdAssertions.t.sol │ │ │ │ ├── StdChains.t.sol │ │ │ │ ├── StdCheats.t.sol │ │ │ │ ├── StdError.t.sol │ │ │ │ ├── StdMath.t.sol │ │ │ │ ├── StdStorage.t.sol │ │ │ │ ├── StdStyle.t.sol │ │ │ │ ├── StdUtils.t.sol │ │ │ │ ├── Vm.t.sol │ │ │ │ ├── compilation │ │ │ │ ├── CompilationScript.sol │ │ │ │ ├── CompilationScriptBase.sol │ │ │ │ ├── CompilationTest.sol │ │ │ │ └── CompilationTestBase.sol │ │ │ │ ├── fixtures │ │ │ │ └── broadcast.log.json │ │ │ │ └── mocks │ │ │ │ ├── MockERC20.t.sol │ │ │ │ └── MockERC721.t.sol │ │ ├── out │ │ │ ├── Base.sol │ │ │ │ ├── CommonBase.json │ │ │ │ ├── ScriptBase.json │ │ │ │ └── TestBase.json │ │ │ ├── ComplicatedContract.t.sol │ │ │ │ └── ComplicatedContractTest.json │ │ │ ├── ContractB.t.sol │ │ │ │ └── ContractBTest.json │ │ │ ├── IERC165.sol │ │ │ │ └── IERC165.json │ │ │ ├── IERC20.sol │ │ │ │ └── IERC20.json │ │ │ ├── IERC721.sol │ │ │ │ ├── IERC721.json │ │ │ │ ├── IERC721Enumerable.json │ │ │ │ ├── IERC721Metadata.json │ │ │ │ └── IERC721TokenReceiver.json │ │ │ ├── IMulticall3.sol │ │ │ │ └── IMulticall3.json │ │ │ ├── MockERC20.sol │ │ │ │ └── MockERC20.json │ │ │ ├── MockERC721.sol │ │ │ │ ├── IERC721TokenReceiver.json │ │ │ │ └── MockERC721.json │ │ │ ├── StdAssertions.sol │ │ │ │ └── StdAssertions.json │ │ │ ├── StdChains.sol │ │ │ │ └── StdChains.json │ │ │ ├── StdCheats.sol │ │ │ │ ├── StdCheats.json │ │ │ │ └── StdCheatsSafe.json │ │ │ ├── StdError.sol │ │ │ │ └── stdError.json │ │ │ ├── StdInvariant.sol │ │ │ │ └── StdInvariant.json │ │ │ ├── StdJson.sol │ │ │ │ └── stdJson.json │ │ │ ├── StdMath.sol │ │ │ │ └── stdMath.json │ │ │ ├── StdStorage.sol │ │ │ │ ├── stdStorage.json │ │ │ │ └── stdStorageSafe.json │ │ │ ├── StdStyle.sol │ │ │ │ └── StdStyle.json │ │ │ ├── StdUtils.sol │ │ │ │ └── StdUtils.json │ │ │ ├── Test.sol │ │ │ │ └── Test.json │ │ │ ├── Vm.sol │ │ │ │ ├── Vm.json │ │ │ │ └── VmSafe.json │ │ │ ├── build-info │ │ │ │ ├── 27cfdbda15bf6f54.json │ │ │ │ └── 45280faa5e0e4d95.json │ │ │ ├── console.sol │ │ │ │ └── console.json │ │ │ ├── console2.sol │ │ │ │ └── console2.json │ │ │ ├── safeconsole.sol │ │ │ │ └── safeconsole.json │ │ │ └── test.sol │ │ │ │ └── DSTest.json │ │ └── test │ │ │ ├── ComplicatedContract.t.sol │ │ │ └── ContractB.t.sol │ │ └── writing_tests │ │ ├── foundry.toml │ │ └── test │ │ ├── Basic.t.sol │ │ └── Basic2.t.sol └── styles.css ├── package.json ├── scripts ├── fetch-benchmarks.ts └── fetch-releases.ts ├── sidebar ├── anvil-cli-reference.ts ├── cast-cli-reference.ts ├── chisel-cli-reference.ts ├── cmd-reference.ts ├── forge-cli-reference.ts ├── forge-overview.ts └── sidebar.ts ├── tsconfig.json └── vocs.config.ts /.all-contributorsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/.all-contributorsrc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.github/workflows/project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/.github/workflows/project.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.github/workflows/update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/.github/workflows/update.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/.gitmodules -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/README.md -------------------------------------------------------------------------------- /scripts/common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/scripts/common -------------------------------------------------------------------------------- /scripts/gen_output.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/scripts/gen_output.sh -------------------------------------------------------------------------------- /scripts/gen_output/cast.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/scripts/gen_output/cast.sh -------------------------------------------------------------------------------- /scripts/gen_output/chisel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/scripts/gen_output/chisel.sh -------------------------------------------------------------------------------- /scripts/gen_output/forge.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/scripts/gen_output/forge.sh -------------------------------------------------------------------------------- /scripts/gen_output/help.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/scripts/gen_output/help.rs -------------------------------------------------------------------------------- /scripts/gen_output/help.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/scripts/gen_output/help.sh -------------------------------------------------------------------------------- /scripts/gen_output/vm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/scripts/gen_output/vm.sh -------------------------------------------------------------------------------- /vocs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/README.md -------------------------------------------------------------------------------- /vocs/bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/bun.lockb -------------------------------------------------------------------------------- /vocs/check-links.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/check-links.ts -------------------------------------------------------------------------------- /vocs/docs/pages/anvil/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/anvil/overview.md -------------------------------------------------------------------------------- /vocs/docs/pages/anvil/reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/anvil/reference.md -------------------------------------------------------------------------------- /vocs/docs/pages/anvil/reference/anvil.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/anvil/reference/anvil.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/anvil/reference/completions.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/anvil/reference/completions.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/benches.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/benches.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/benchmarks.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/benchmarks.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/overview.md -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/4byte-calldata.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/4byte-calldata.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/4byte-event.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/4byte-event.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/4byte.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/4byte.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/abi-encode-event.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/abi-encode-event.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/abi-encode.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/abi-encode.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/access-list.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/access-list.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/address-zero.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/address-zero.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/admin.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/admin.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/age.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/age.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/artifact.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/artifact.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/b2e-payload.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/b2e-payload.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/balance.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/balance.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/base-fee.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/base-fee.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/bind.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/bind.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/block-number.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/block-number.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/block.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/block.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/call.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/call.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/call/--create.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/call/--create.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/calldata.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/calldata.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/cast.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/cast.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/chain-id.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/chain-id.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/chain.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/chain.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/client.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/client.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/code.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/code.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/codehash.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/codehash.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/codesize.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/codesize.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/completions.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/completions.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/compute-address.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/compute-address.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/concat-hex.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/concat-hex.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/constructor-args.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/constructor-args.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/create2.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/create2.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/creation-code.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/creation-code.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/da-estimate.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/da-estimate.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/decode-abi.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/decode-abi.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/decode-calldata.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/decode-calldata.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/decode-error.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/decode-error.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/decode-event.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/decode-event.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/decode-string.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/decode-string.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/decode-transaction.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/decode-transaction.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/disassemble.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/disassemble.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/erc20-token.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/erc20-token.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/erc20-token/allowance.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/erc20-token/allowance.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/erc20-token/approve.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/erc20-token/approve.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/erc20-token/balance.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/erc20-token/balance.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/erc20-token/burn.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/erc20-token/burn.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/erc20-token/decimals.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/erc20-token/decimals.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/erc20-token/mint.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/erc20-token/mint.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/erc20-token/name.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/erc20-token/name.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/erc20-token/symbol.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/erc20-token/symbol.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/erc20-token/total-supply.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/erc20-token/total-supply.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/erc20-token/transfer.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/erc20-token/transfer.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/estimate.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/estimate.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/estimate/--create.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/estimate/--create.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/find-block.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/find-block.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/format-bytes32-string.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/format-bytes32-string.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/format-units.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/format-units.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/from-bin.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/from-bin.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/from-fixed-point.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/from-fixed-point.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/from-rlp.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/from-rlp.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/from-utf8.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/from-utf8.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/from-wei.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/from-wei.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/gas-price.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/gas-price.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/hash-message.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/hash-message.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/hash-zero.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/hash-zero.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/implementation.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/implementation.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/index-cmd.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/index-cmd.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/index-erc7201.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/index-erc7201.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/index.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/interface.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/interface.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/keccak.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/keccak.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/logs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/logs.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/lookup-address.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/lookup-address.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/max-int.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/max-int.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/max-uint.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/max-uint.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/min-int.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/min-int.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/mktx.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/mktx.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/mktx/--create.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/mktx/--create.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/namehash.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/namehash.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/nonce.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/nonce.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/pad.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/pad.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/parse-bytes32-address.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/parse-bytes32-address.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/parse-bytes32-string.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/parse-bytes32-string.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/parse-units.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/parse-units.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/pretty-calldata.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/pretty-calldata.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/proof.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/proof.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/publish.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/publish.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/receipt.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/receipt.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/recover-authority.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/recover-authority.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/resolve-name.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/resolve-name.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/rpc.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/rpc.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/run.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/run.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/selectors.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/selectors.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/send.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/send.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/send/--create.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/send/--create.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/shl.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/shl.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/shr.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/shr.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/sig-event.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/sig-event.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/sig.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/sig.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/source.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/source.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/storage-root.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/storage-root.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/storage.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/storage.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/to-ascii.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/to-ascii.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/to-base.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/to-base.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/to-bytes32.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/to-bytes32.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/to-check-sum-address.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/to-check-sum-address.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/to-dec.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/to-dec.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/to-fixed-point.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/to-fixed-point.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/to-hex.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/to-hex.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/to-hexdata.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/to-hexdata.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/to-int256.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/to-int256.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/to-rlp.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/to-rlp.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/to-uint256.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/to-uint256.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/to-unit.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/to-unit.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/to-utf8.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/to-utf8.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/to-wei.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/to-wei.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/tx-pool.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/tx-pool.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/tx-pool/content-from.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/tx-pool/content-from.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/tx-pool/content.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/tx-pool/content.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/tx-pool/inspect.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/tx-pool/inspect.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/tx-pool/status.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/tx-pool/status.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/tx.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/tx.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/upload-signature.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/upload-signature.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/wallet.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/wallet.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/wallet/address.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/wallet/address.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/wallet/change-password.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/wallet/change-password.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/wallet/decrypt-keystore.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/wallet/decrypt-keystore.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/wallet/import.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/wallet/import.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/wallet/list.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/wallet/list.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/wallet/new-mnemonic.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/wallet/new-mnemonic.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/wallet/new.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/wallet/new.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/wallet/private-key.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/wallet/private-key.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/wallet/public-key.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/wallet/public-key.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/wallet/remove.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/wallet/remove.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/wallet/sign-auth.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/wallet/sign-auth.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/wallet/sign.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/wallet/sign.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/wallet/vanity.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/wallet/vanity.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/cast/reference/wallet/verify.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/cast/reference/wallet/verify.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/chisel/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/chisel/overview.md -------------------------------------------------------------------------------- /vocs/docs/pages/chisel/reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/chisel/reference.md -------------------------------------------------------------------------------- /vocs/docs/pages/chisel/reference/chisel.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/chisel/reference/chisel.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/chisel/reference/clear-cache.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/chisel/reference/clear-cache.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/chisel/reference/eval.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/chisel/reference/eval.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/chisel/reference/list.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/chisel/reference/list.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/chisel/reference/load.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/chisel/reference/load.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/chisel/reference/view.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/chisel/reference/view.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/config/continuous-integration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/config/continuous-integration.md -------------------------------------------------------------------------------- /vocs/docs/pages/config/dynamic-test-linking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/config/dynamic-test-linking.md -------------------------------------------------------------------------------- /vocs/docs/pages/config/hardhat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/config/hardhat.md -------------------------------------------------------------------------------- /vocs/docs/pages/config/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/config/overview.md -------------------------------------------------------------------------------- /vocs/docs/pages/config/reference/README.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/config/reference/README.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/config/reference/default-config.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/config/reference/default-config.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/config/reference/doc-generator.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/config/reference/doc-generator.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/config/reference/etherscan.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/config/reference/etherscan.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/config/reference/formatter.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/config/reference/formatter.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/config/reference/inline-test-config.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/config/reference/inline-test-config.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/config/reference/linter.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/config/reference/linter.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/config/reference/overview.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/config/reference/overview.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/config/reference/project.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/config/reference/project.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/config/reference/solidity-compiler.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/config/reference/solidity-compiler.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/config/reference/testing.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/config/reference/testing.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/config/shell-autocompletion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/config/shell-autocompletion.md -------------------------------------------------------------------------------- /vocs/docs/pages/config/static-analyzers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/config/static-analyzers.md -------------------------------------------------------------------------------- /vocs/docs/pages/config/vscode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/config/vscode.md -------------------------------------------------------------------------------- /vocs/docs/pages/config/vyper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/config/vyper.md -------------------------------------------------------------------------------- /vocs/docs/pages/forge/advanced-testing/differential-ffi-testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/forge/advanced-testing/differential-ffi-testing.md -------------------------------------------------------------------------------- /vocs/docs/pages/forge/advanced-testing/fuzz-testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/forge/advanced-testing/fuzz-testing.md -------------------------------------------------------------------------------- /vocs/docs/pages/forge/advanced-testing/invariant-testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/forge/advanced-testing/invariant-testing.md -------------------------------------------------------------------------------- /vocs/docs/pages/forge/advanced-testing/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/forge/advanced-testing/overview.md -------------------------------------------------------------------------------- /vocs/docs/pages/forge/advanced-testing/table-testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/forge/advanced-testing/table-testing.md -------------------------------------------------------------------------------- /vocs/docs/pages/forge/debugger.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/forge/debugger.md -------------------------------------------------------------------------------- /vocs/docs/pages/forge/deploying.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/forge/deploying.md -------------------------------------------------------------------------------- /vocs/docs/pages/forge/gas-tracking/gas-function-snapshots.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/forge/gas-tracking/gas-function-snapshots.md -------------------------------------------------------------------------------- /vocs/docs/pages/forge/gas-tracking/gas-reports.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/forge/gas-tracking/gas-reports.md -------------------------------------------------------------------------------- /vocs/docs/pages/forge/gas-tracking/gas-section-snapshots.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/forge/gas-tracking/gas-section-snapshots.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/forge/gas-tracking/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/forge/gas-tracking/overview.md -------------------------------------------------------------------------------- /vocs/docs/pages/forge/linting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/forge/linting.md -------------------------------------------------------------------------------- /vocs/docs/pages/forge/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/forge/overview.md -------------------------------------------------------------------------------- /vocs/docs/pages/forge/reference/bind-json.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/forge/reference/bind-json.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/forge/reference/bind.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/forge/reference/bind.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/forge/reference/build.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/forge/reference/build.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/forge/reference/cache.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/forge/reference/cache.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/forge/reference/cache/clean.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/forge/reference/cache/clean.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/forge/reference/cache/ls.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/forge/reference/cache/ls.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/forge/reference/clean.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/forge/reference/clean.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/forge/reference/clone.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/forge/reference/clone.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/forge/reference/compiler.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/forge/reference/compiler.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/forge/reference/compiler/resolve.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/forge/reference/compiler/resolve.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/forge/reference/completions.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/forge/reference/completions.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/forge/reference/config.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/forge/reference/config.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/forge/reference/coverage.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/forge/reference/coverage.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/forge/reference/create.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/forge/reference/create.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/forge/reference/doc.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/forge/reference/doc.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/forge/reference/eip712.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/forge/reference/eip712.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/forge/reference/flatten.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/forge/reference/flatten.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/forge/reference/fmt.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/forge/reference/fmt.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/forge/reference/forge.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/forge/reference/forge.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/forge/reference/geiger.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/forge/reference/geiger.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/forge/reference/generate.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/forge/reference/generate.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/forge/reference/generate/test.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/forge/reference/generate/test.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/forge/reference/init.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/forge/reference/init.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/forge/reference/inspect.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/forge/reference/inspect.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/forge/reference/install.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/forge/reference/install.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/forge/reference/lint.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/forge/reference/lint.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/forge/reference/remappings.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/forge/reference/remappings.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/forge/reference/remove.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/forge/reference/remove.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/forge/reference/script.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/forge/reference/script.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/forge/reference/selectors.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/forge/reference/selectors.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/forge/reference/selectors/cache.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/forge/reference/selectors/cache.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/forge/reference/selectors/collision.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/forge/reference/selectors/collision.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/forge/reference/selectors/find.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/forge/reference/selectors/find.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/forge/reference/selectors/list.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/forge/reference/selectors/list.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/forge/reference/selectors/upload.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/forge/reference/selectors/upload.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/forge/reference/snapshot.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/forge/reference/snapshot.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/forge/reference/soldeer.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/forge/reference/soldeer.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/forge/reference/soldeer/clean.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/forge/reference/soldeer/clean.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/forge/reference/soldeer/init.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/forge/reference/soldeer/init.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/forge/reference/soldeer/install.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/forge/reference/soldeer/install.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/forge/reference/soldeer/login.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/forge/reference/soldeer/login.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/forge/reference/soldeer/push.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/forge/reference/soldeer/push.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/forge/reference/soldeer/uninstall.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/forge/reference/soldeer/uninstall.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/forge/reference/soldeer/update.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/forge/reference/soldeer/update.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/forge/reference/soldeer/version.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/forge/reference/soldeer/version.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/forge/reference/test.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/forge/reference/test.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/forge/reference/tree.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/forge/reference/tree.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/forge/reference/update.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/forge/reference/update.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/forge/reference/verify-bytecode.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/forge/reference/verify-bytecode.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/forge/reference/verify-check.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/forge/reference/verify-check.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/forge/reference/verify-contract.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/forge/reference/verify-contract.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/forge/tests/cheatcodes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/forge/tests/cheatcodes.md -------------------------------------------------------------------------------- /vocs/docs/pages/forge/tests/forge-std.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/forge/tests/forge-std.md -------------------------------------------------------------------------------- /vocs/docs/pages/forge/tests/fork-testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/forge/tests/fork-testing.md -------------------------------------------------------------------------------- /vocs/docs/pages/forge/tests/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/forge/tests/overview.md -------------------------------------------------------------------------------- /vocs/docs/pages/forge/tests/replay-testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/forge/tests/replay-testing.md -------------------------------------------------------------------------------- /vocs/docs/pages/forge/tests/traces.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/forge/tests/traces.md -------------------------------------------------------------------------------- /vocs/docs/pages/forge/tests/writing-tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/forge/tests/writing-tests.md -------------------------------------------------------------------------------- /vocs/docs/pages/guides/best-practices/commenting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/guides/best-practices/commenting.md -------------------------------------------------------------------------------- /vocs/docs/pages/guides/best-practices/key-management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/guides/best-practices/key-management.md -------------------------------------------------------------------------------- /vocs/docs/pages/guides/best-practices/security.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/guides/best-practices/security.md -------------------------------------------------------------------------------- /vocs/docs/pages/guides/best-practices/writing-contracts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/guides/best-practices/writing-contracts.md -------------------------------------------------------------------------------- /vocs/docs/pages/guides/best-practices/writing-scripts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/guides/best-practices/writing-scripts.md -------------------------------------------------------------------------------- /vocs/docs/pages/guides/best-practices/writing-tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/guides/best-practices/writing-tests.md -------------------------------------------------------------------------------- /vocs/docs/pages/guides/deterministic-deployments-using-create2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/guides/deterministic-deployments-using-create2.md -------------------------------------------------------------------------------- /vocs/docs/pages/guides/eip712.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/guides/eip712.md -------------------------------------------------------------------------------- /vocs/docs/pages/guides/forking-mainnet-with-cast-anvil.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/guides/forking-mainnet-with-cast-anvil.md -------------------------------------------------------------------------------- /vocs/docs/pages/guides/foundry-in-docker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/guides/foundry-in-docker.md -------------------------------------------------------------------------------- /vocs/docs/pages/guides/project-setup/clone-a-verified-contract.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/guides/project-setup/clone-a-verified-contract.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/guides/project-setup/creating-a-new-project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/guides/project-setup/creating-a-new-project.md -------------------------------------------------------------------------------- /vocs/docs/pages/guides/project-setup/dependencies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/guides/project-setup/dependencies.md -------------------------------------------------------------------------------- /vocs/docs/pages/guides/project-setup/project-layout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/guides/project-setup/project-layout.md -------------------------------------------------------------------------------- /vocs/docs/pages/guides/project-setup/soldeer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/guides/project-setup/soldeer.md -------------------------------------------------------------------------------- /vocs/docs/pages/guides/scripting-with-config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/guides/scripting-with-config.md -------------------------------------------------------------------------------- /vocs/docs/pages/guides/scripting-with-solidity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/guides/scripting-with-solidity.md -------------------------------------------------------------------------------- /vocs/docs/pages/guides/video-tutorials.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/guides/video-tutorials.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/index.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/introduction/getting-started.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/introduction/getting-started.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/introduction/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/introduction/installation.md -------------------------------------------------------------------------------- /vocs/docs/pages/introduction/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/introduction/overview.md -------------------------------------------------------------------------------- /vocs/docs/pages/introduction/prompting.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/introduction/prompting.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/misc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/misc/README.md -------------------------------------------------------------------------------- /vocs/docs/pages/misc/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/misc/faq.md -------------------------------------------------------------------------------- /vocs/docs/pages/misc/struct-encoding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/misc/struct-encoding.md -------------------------------------------------------------------------------- /vocs/docs/pages/misc/v1.0-migration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/misc/v1.0-migration.md -------------------------------------------------------------------------------- /vocs/docs/pages/reference/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/README.md -------------------------------------------------------------------------------- /vocs/docs/pages/reference/cheatcodes/accesses.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/cheatcodes/accesses.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/cheatcodes/active-fork.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/cheatcodes/active-fork.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/cheatcodes/addr.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/cheatcodes/addr.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/cheatcodes/allow-cheatcodes.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/cheatcodes/allow-cheatcodes.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/cheatcodes/assertions.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/cheatcodes/assertions.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/cheatcodes/assume-no-revert.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/cheatcodes/assume-no-revert.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/cheatcodes/assume.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/cheatcodes/assume.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/cheatcodes/breakpoint.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/cheatcodes/breakpoint.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/cheatcodes/broadcast.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/cheatcodes/broadcast.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/cheatcodes/chain-id.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/cheatcodes/chain-id.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/cheatcodes/clear-mocked-calls.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/cheatcodes/clear-mocked-calls.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/cheatcodes/coinbase.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/cheatcodes/coinbase.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/cheatcodes/copy-storage.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/cheatcodes/copy-storage.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/cheatcodes/create-fork.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/cheatcodes/create-fork.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/cheatcodes/create-select-fork.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/cheatcodes/create-select-fork.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/cheatcodes/create-wallet.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/cheatcodes/create-wallet.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/cheatcodes/deal.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/cheatcodes/deal.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/cheatcodes/derive-key.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/cheatcodes/derive-key.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/cheatcodes/difficulty.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/cheatcodes/difficulty.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/cheatcodes/env-address.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/cheatcodes/env-address.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/cheatcodes/env-bool.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/cheatcodes/env-bool.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/cheatcodes/env-bytes.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/cheatcodes/env-bytes.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/cheatcodes/env-bytes32.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/cheatcodes/env-bytes32.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/cheatcodes/env-int.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/cheatcodes/env-int.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/cheatcodes/env-or.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/cheatcodes/env-or.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/cheatcodes/env-string.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/cheatcodes/env-string.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/cheatcodes/env-uint.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/cheatcodes/env-uint.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/cheatcodes/environment.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/cheatcodes/environment.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/cheatcodes/etch.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/cheatcodes/etch.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/cheatcodes/expect-call.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/cheatcodes/expect-call.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/cheatcodes/expect-emit.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/cheatcodes/expect-emit.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/cheatcodes/expect-revert.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/cheatcodes/expect-revert.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/cheatcodes/external.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/cheatcodes/external.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/cheatcodes/fee.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/cheatcodes/fee.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/cheatcodes/ffi.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/cheatcodes/ffi.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/cheatcodes/forking.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/cheatcodes/forking.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/cheatcodes/fs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/cheatcodes/fs.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/cheatcodes/fuzzer.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/cheatcodes/fuzzer.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/cheatcodes/gas-snapshots.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/cheatcodes/gas-snapshots.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/cheatcodes/get-block-number.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/cheatcodes/get-block-number.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/cheatcodes/get-block-timestamp.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/cheatcodes/get-block-timestamp.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/cheatcodes/get-code.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/cheatcodes/get-code.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/cheatcodes/get-deployed-code.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/cheatcodes/get-deployed-code.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/cheatcodes/get-label.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/cheatcodes/get-label.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/cheatcodes/get-nonce.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/cheatcodes/get-nonce.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/cheatcodes/get-recorded-logs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/cheatcodes/get-recorded-logs.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/cheatcodes/is-context.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/cheatcodes/is-context.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/cheatcodes/is-persistent.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/cheatcodes/is-persistent.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/cheatcodes/key-exists-json.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/cheatcodes/key-exists-json.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/cheatcodes/key-exists-toml.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/cheatcodes/key-exists-toml.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/cheatcodes/key-exists.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/cheatcodes/key-exists.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/cheatcodes/label.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/cheatcodes/label.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/cheatcodes/load.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/cheatcodes/load.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/cheatcodes/make-persistent.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/cheatcodes/make-persistent.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/cheatcodes/mock-call-revert.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/cheatcodes/mock-call-revert.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/cheatcodes/mock-call.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/cheatcodes/mock-call.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/cheatcodes/mock-calls.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/cheatcodes/mock-calls.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/cheatcodes/mock-function.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/cheatcodes/mock-function.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/cheatcodes/overview.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/cheatcodes/overview.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/cheatcodes/parse-address.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/cheatcodes/parse-address.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/cheatcodes/parse-bool.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/cheatcodes/parse-bool.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/cheatcodes/parse-bytes.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/cheatcodes/parse-bytes.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/cheatcodes/parse-bytes32.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/cheatcodes/parse-bytes32.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/cheatcodes/parse-int.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/cheatcodes/parse-int.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/cheatcodes/parse-json-keys.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/cheatcodes/parse-json-keys.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/cheatcodes/parse-json.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/cheatcodes/parse-json.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/cheatcodes/parse-toml-keys.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/cheatcodes/parse-toml-keys.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/cheatcodes/parse-toml.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/cheatcodes/parse-toml.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/cheatcodes/parse-uint.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/cheatcodes/parse-uint.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/cheatcodes/pause-gas-metering.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/cheatcodes/pause-gas-metering.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/cheatcodes/prank.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/cheatcodes/prank.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/cheatcodes/prevrandao.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/cheatcodes/prevrandao.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/cheatcodes/project-root.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/cheatcodes/project-root.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/cheatcodes/prompt.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/cheatcodes/prompt.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/cheatcodes/read-callers.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/cheatcodes/read-callers.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/cheatcodes/record-logs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/cheatcodes/record-logs.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/cheatcodes/record.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/cheatcodes/record.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/cheatcodes/remember-key.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/cheatcodes/remember-key.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/cheatcodes/reset-gas-metering.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/cheatcodes/reset-gas-metering.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/cheatcodes/resume-gas-metering.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/cheatcodes/resume-gas-metering.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/cheatcodes/revoke-persistent.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/cheatcodes/revoke-persistent.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/cheatcodes/roll-fork.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/cheatcodes/roll-fork.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/cheatcodes/roll.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/cheatcodes/roll.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/cheatcodes/rpc.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/cheatcodes/rpc.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/cheatcodes/select-fork.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/cheatcodes/select-fork.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/cheatcodes/serialize-json.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/cheatcodes/serialize-json.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/cheatcodes/set-arbitrary-storage.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/cheatcodes/set-arbitrary-storage.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/cheatcodes/set-env.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/cheatcodes/set-env.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/cheatcodes/set-nonce.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/cheatcodes/set-nonce.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/cheatcodes/sign-delegation.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/cheatcodes/sign-delegation.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/cheatcodes/sign.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/cheatcodes/sign.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/cheatcodes/signing.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/cheatcodes/signing.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/cheatcodes/skip.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/cheatcodes/skip.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/cheatcodes/sleep.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/cheatcodes/sleep.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/cheatcodes/start-broadcast.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/cheatcodes/start-broadcast.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/cheatcodes/start-prank.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/cheatcodes/start-prank.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/cheatcodes/start-state-diff-recording.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/cheatcodes/start-state-diff-recording.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/cheatcodes/state-snapshots.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/cheatcodes/state-snapshots.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/cheatcodes/stop-and-return-state-diff.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/cheatcodes/stop-and-return-state-diff.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/cheatcodes/stop-broadcast.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/cheatcodes/stop-broadcast.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/cheatcodes/stop-prank.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/cheatcodes/stop-prank.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/cheatcodes/store.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/cheatcodes/store.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/cheatcodes/to-string.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/cheatcodes/to-string.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/cheatcodes/transact.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/cheatcodes/transact.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/cheatcodes/tx-gas-price.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/cheatcodes/tx-gas-price.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/cheatcodes/unix-time.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/cheatcodes/unix-time.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/cheatcodes/utilities.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/cheatcodes/utilities.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/cheatcodes/warp.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/cheatcodes/warp.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/cheatcodes/write-json.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/cheatcodes/write-json.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/cheatcodes/write-toml.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/cheatcodes/write-toml.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/common/base-options.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/common/base-options.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/common/cast-estimate-create-option.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/common/cast-estimate-create-option.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/common/display-options.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/common/display-options.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/common/etherscan-options.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/common/etherscan-options.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/common/multi-wallet-options-hardware.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/common/multi-wallet-options-hardware.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/common/multi-wallet-options-keystore.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/common/multi-wallet-options-keystore.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/common/multi-wallet-options-raw.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/common/multi-wallet-options-raw.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/common/multi-wallet-options-remote.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/common/multi-wallet-options-remote.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/common/multi-wallet-options.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/common/multi-wallet-options.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/common/retry-options.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/common/retry-options.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/common/rpc-options.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/common/rpc-options.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/common/rpc-url-option.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/common/rpc-url-option.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/common/transaction-options.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/common/transaction-options.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/common/tx-value-option.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/common/tx-value-option.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/common/verifier-options.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/common/verifier-options.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/common/wallet-options-hardware.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/common/wallet-options-hardware.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/common/wallet-options-keystore.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/common/wallet-options-keystore.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/common/wallet-options-raw.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/common/wallet-options-raw.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/common/wallet-options-remote.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/common/wallet-options-remote.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/common/wallet-options.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/common/wallet-options.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/ds-test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/ds-test.md -------------------------------------------------------------------------------- /vocs/docs/pages/reference/forge-std/abs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/forge-std/abs.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/forge-std/arithmeticError.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/forge-std/arithmeticError.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/forge-std/assertApproxEqAbs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/forge-std/assertApproxEqAbs.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/forge-std/assertApproxEqAbsDecimal.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/forge-std/assertApproxEqAbsDecimal.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/forge-std/assertApproxEqRel.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/forge-std/assertApproxEqRel.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/forge-std/assertApproxEqRelDecimal.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/forge-std/assertApproxEqRelDecimal.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/forge-std/assertEq.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/forge-std/assertEq.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/forge-std/assertEqDecimal.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/forge-std/assertEqDecimal.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/forge-std/assertFalse.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/forge-std/assertFalse.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/forge-std/assertGe.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/forge-std/assertGe.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/forge-std/assertGeDecimal.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/forge-std/assertGeDecimal.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/forge-std/assertGt.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/forge-std/assertGt.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/forge-std/assertGtDecimal.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/forge-std/assertGtDecimal.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/forge-std/assertLe.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/forge-std/assertLe.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/forge-std/assertLeDecimal.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/forge-std/assertLeDecimal.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/forge-std/assertLt.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/forge-std/assertLt.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/forge-std/assertLtDecimal.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/forge-std/assertLtDecimal.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/forge-std/assertNotEq.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/forge-std/assertNotEq.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/forge-std/assertNotEqDecimal.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/forge-std/assertNotEqDecimal.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/forge-std/assertTrue.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/forge-std/assertTrue.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/forge-std/assertionError.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/forge-std/assertionError.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/forge-std/assume-no-precompiles.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/forge-std/assume-no-precompiles.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/forge-std/assume-payable.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/forge-std/assume-payable.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/forge-std/bound.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/forge-std/bound.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/forge-std/change-prank.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/forge-std/change-prank.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/forge-std/checked_write.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/forge-std/checked_write.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/forge-std/compute-create-address.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/forge-std/compute-create-address.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/forge-std/config.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/forge-std/config.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/forge-std/console-log.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/forge-std/console-log.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/forge-std/deal.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/forge-std/deal.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/forge-std/delta.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/forge-std/delta.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/forge-std/deployCode.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/forge-std/deployCode.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/forge-std/deployCodeTo.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/forge-std/deployCodeTo.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/forge-std/depth.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/forge-std/depth.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/forge-std/derive-remember-key.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/forge-std/derive-remember-key.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/forge-std/divisionError.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/forge-std/divisionError.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/forge-std/enable_packed_slots.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/forge-std/enable_packed_slots.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/forge-std/encodeStorageError.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/forge-std/encodeStorageError.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/forge-std/enumConversionError.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/forge-std/enumConversionError.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/forge-std/fail.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/forge-std/fail.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/forge-std/find.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/forge-std/find.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/forge-std/hoax.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/forge-std/hoax.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/forge-std/indexOOBError.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/forge-std/indexOOBError.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/forge-std/make-addr-and-key.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/forge-std/make-addr-and-key.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/forge-std/make-addr.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/forge-std/make-addr.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/forge-std/memOverflowError.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/forge-std/memOverflowError.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/forge-std/noGasMetering.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/forge-std/noGasMetering.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/forge-std/overview.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/forge-std/overview.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/forge-std/percentDelta.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/forge-std/percentDelta.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/forge-std/popError.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/forge-std/popError.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/forge-std/read.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/forge-std/read.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/forge-std/rewind.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/forge-std/rewind.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/forge-std/script-utils.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/forge-std/script-utils.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/forge-std/sig.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/forge-std/sig.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/forge-std/skip.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/forge-std/skip.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/forge-std/startHoax.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/forge-std/startHoax.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/forge-std/std-assertions.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/forge-std/std-assertions.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/forge-std/std-cheats.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/forge-std/std-cheats.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/forge-std/std-config.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/forge-std/std-config.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/forge-std/std-errors.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/forge-std/std-errors.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/forge-std/std-logs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/forge-std/std-logs.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/forge-std/std-math.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/forge-std/std-math.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/forge-std/std-storage.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/forge-std/std-storage.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/forge-std/target.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/forge-std/target.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/forge-std/with_key.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/forge-std/with_key.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/reference/forge-std/zeroVarError.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/reference/forge-std/zeroVarError.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/releases.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/releases.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/releases/nightly.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/releases/nightly.mdx -------------------------------------------------------------------------------- /vocs/docs/pages/releases/stable.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/pages/releases/stable.mdx -------------------------------------------------------------------------------- /vocs/docs/public/_redirects: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/public/_redirects -------------------------------------------------------------------------------- /vocs/docs/public/anvil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/public/anvil.png -------------------------------------------------------------------------------- /vocs/docs/public/breakpoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/public/breakpoint.png -------------------------------------------------------------------------------- /vocs/docs/public/cropped-ripped-jesus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/public/cropped-ripped-jesus.png -------------------------------------------------------------------------------- /vocs/docs/public/debugger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/public/debugger.png -------------------------------------------------------------------------------- /vocs/docs/public/foundry-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/public/foundry-banner.png -------------------------------------------------------------------------------- /vocs/docs/public/foundry-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/public/foundry-logo.png -------------------------------------------------------------------------------- /vocs/docs/public/fuzzer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/public/fuzzer.png -------------------------------------------------------------------------------- /vocs/docs/public/nft-tutorial/gas-report-oz-nft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/public/nft-tutorial/gas-report-oz-nft.png -------------------------------------------------------------------------------- /vocs/docs/public/nft-tutorial/gas-report-solmate-nft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/public/nft-tutorial/gas-report-solmate-nft.png -------------------------------------------------------------------------------- /vocs/docs/public/nft-tutorial/nft-tutorial-project-structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/public/nft-tutorial/nft-tutorial-project-structure.png -------------------------------------------------------------------------------- /vocs/docs/public/og-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/public/og-image.png -------------------------------------------------------------------------------- /vocs/docs/public/solidity-scripting/compile-successful.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/public/solidity-scripting/compile-successful.png -------------------------------------------------------------------------------- /vocs/docs/public/solidity-scripting/contract-verified.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/public/solidity-scripting/contract-verified.png -------------------------------------------------------------------------------- /vocs/docs/public/solidity-scripting/set-up-commands.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/public/solidity-scripting/set-up-commands.png -------------------------------------------------------------------------------- /vocs/docs/snippets/clone_contract/clone-meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/clone_contract/clone-meta -------------------------------------------------------------------------------- /vocs/docs/snippets/clone_contract/forge-clone: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/clone_contract/forge-clone -------------------------------------------------------------------------------- /vocs/docs/snippets/output/cast/cast-4byte-calldata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/output/cast/cast-4byte-calldata -------------------------------------------------------------------------------- /vocs/docs/snippets/output/cast/cast-call: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/output/cast/cast-call -------------------------------------------------------------------------------- /vocs/docs/snippets/output/cheatcodes/forge-test-cheatcodes-expectrevert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/output/cheatcodes/forge-test-cheatcodes-expectrevert -------------------------------------------------------------------------------- /vocs/docs/snippets/output/cheatcodes/forge-test-simple: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/output/cheatcodes/forge-test-simple -------------------------------------------------------------------------------- /vocs/docs/snippets/output/chisel/help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/output/chisel/help -------------------------------------------------------------------------------- /vocs/docs/snippets/output/forge_tree/forge-tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/output/forge_tree/forge-tree -------------------------------------------------------------------------------- /vocs/docs/snippets/output/forge_tree/forge-tree-no-dedupe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/output/forge_tree/forge-tree-no-dedupe -------------------------------------------------------------------------------- /vocs/docs/snippets/output/fuzz_testing/forge-test-fail-fuzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/output/fuzz_testing/forge-test-fail-fuzz -------------------------------------------------------------------------------- /vocs/docs/snippets/output/fuzz_testing/forge-test-no-fuzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/output/fuzz_testing/forge-test-no-fuzz -------------------------------------------------------------------------------- /vocs/docs/snippets/output/fuzz_testing/forge-test-success-fuzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/output/fuzz_testing/forge-test-success-fuzz -------------------------------------------------------------------------------- /vocs/docs/snippets/output/hello_foundry/forge-build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/output/hello_foundry/forge-build -------------------------------------------------------------------------------- /vocs/docs/snippets/output/hello_foundry/forge-init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/output/hello_foundry/forge-init -------------------------------------------------------------------------------- /vocs/docs/snippets/output/hello_foundry/forge-install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/output/hello_foundry/forge-install -------------------------------------------------------------------------------- /vocs/docs/snippets/output/hello_foundry/forge-remappings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/output/hello_foundry/forge-remappings -------------------------------------------------------------------------------- /vocs/docs/snippets/output/hello_foundry/forge-test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/output/hello_foundry/forge-test -------------------------------------------------------------------------------- /vocs/docs/snippets/output/hello_foundry/tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/output/hello_foundry/tree -------------------------------------------------------------------------------- /vocs/docs/snippets/output/hello_foundry/tree-with-files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/output/hello_foundry/tree-with-files -------------------------------------------------------------------------------- /vocs/docs/snippets/output/test_filters/forge-test-match-contract-and-test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/output/test_filters/forge-test-match-contract-and-test -------------------------------------------------------------------------------- /vocs/docs/snippets/output/test_filters/forge-test-match-path: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/output/test_filters/forge-test-match-path -------------------------------------------------------------------------------- /vocs/docs/snippets/output/vm/Vm.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/output/vm/Vm.sol -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/README.md -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/cheatcodes/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/cheatcodes/foundry.toml -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/cheatcodes/lib/forge-std/.gitattributes: -------------------------------------------------------------------------------- 1 | src/Vm.sol linguist-generated 2 | -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/cheatcodes/lib/forge-std/.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/cheatcodes/lib/forge-std/.github/workflows/ci.yml -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/cheatcodes/lib/forge-std/.gitignore: -------------------------------------------------------------------------------- 1 | cache/ 2 | out/ 3 | .vscode 4 | .idea 5 | -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/cheatcodes/lib/forge-std/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/cheatcodes/lib/forge-std/.gitmodules -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/cheatcodes/lib/forge-std/LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/cheatcodes/lib/forge-std/LICENSE-APACHE -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/cheatcodes/lib/forge-std/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/cheatcodes/lib/forge-std/LICENSE-MIT -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/cheatcodes/lib/forge-std/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/cheatcodes/lib/forge-std/README.md -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/cheatcodes/lib/forge-std/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/cheatcodes/lib/forge-std/foundry.toml -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/cheatcodes/lib/forge-std/lib/ds-test/.gitignore: -------------------------------------------------------------------------------- 1 | /.dapple 2 | /build 3 | /out 4 | /cache/ 5 | -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/cheatcodes/lib/forge-std/lib/ds-test/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/cheatcodes/lib/forge-std/lib/ds-test/LICENSE -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/cheatcodes/lib/forge-std/lib/ds-test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/cheatcodes/lib/forge-std/lib/ds-test/Makefile -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/cheatcodes/lib/forge-std/lib/ds-test/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/cheatcodes/lib/forge-std/lib/ds-test/default.nix -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/cheatcodes/lib/forge-std/lib/ds-test/demo/demo.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/cheatcodes/lib/forge-std/lib/ds-test/demo/demo.sol -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/cheatcodes/lib/forge-std/lib/ds-test/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/cheatcodes/lib/forge-std/lib/ds-test/package.json -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/cheatcodes/lib/forge-std/lib/ds-test/src/test.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/cheatcodes/lib/forge-std/lib/ds-test/src/test.sol -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/cheatcodes/lib/forge-std/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/cheatcodes/lib/forge-std/package.json -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/cheatcodes/lib/forge-std/scripts/vm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/cheatcodes/lib/forge-std/scripts/vm.py -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/cheatcodes/lib/forge-std/src/Base.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/cheatcodes/lib/forge-std/src/Base.sol -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/cheatcodes/lib/forge-std/src/Script.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/cheatcodes/lib/forge-std/src/Script.sol -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/cheatcodes/lib/forge-std/src/StdAssertions.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/cheatcodes/lib/forge-std/src/StdAssertions.sol -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/cheatcodes/lib/forge-std/src/StdChains.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/cheatcodes/lib/forge-std/src/StdChains.sol -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/cheatcodes/lib/forge-std/src/StdCheats.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/cheatcodes/lib/forge-std/src/StdCheats.sol -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/cheatcodes/lib/forge-std/src/StdError.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/cheatcodes/lib/forge-std/src/StdError.sol -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/cheatcodes/lib/forge-std/src/StdInvariant.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/cheatcodes/lib/forge-std/src/StdInvariant.sol -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/cheatcodes/lib/forge-std/src/StdJson.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/cheatcodes/lib/forge-std/src/StdJson.sol -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/cheatcodes/lib/forge-std/src/StdMath.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/cheatcodes/lib/forge-std/src/StdMath.sol -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/cheatcodes/lib/forge-std/src/StdStorage.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/cheatcodes/lib/forge-std/src/StdStorage.sol -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/cheatcodes/lib/forge-std/src/StdStyle.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/cheatcodes/lib/forge-std/src/StdStyle.sol -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/cheatcodes/lib/forge-std/src/StdUtils.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/cheatcodes/lib/forge-std/src/StdUtils.sol -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/cheatcodes/lib/forge-std/src/Test.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/cheatcodes/lib/forge-std/src/Test.sol -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/cheatcodes/lib/forge-std/src/Vm.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/cheatcodes/lib/forge-std/src/Vm.sol -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/cheatcodes/lib/forge-std/src/console.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/cheatcodes/lib/forge-std/src/console.sol -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/cheatcodes/lib/forge-std/src/console2.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/cheatcodes/lib/forge-std/src/console2.sol -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/cheatcodes/lib/forge-std/src/interfaces/IERC20.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/cheatcodes/lib/forge-std/src/interfaces/IERC20.sol -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/cheatcodes/lib/forge-std/src/mocks/MockERC20.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/cheatcodes/lib/forge-std/src/mocks/MockERC20.sol -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/cheatcodes/lib/forge-std/src/mocks/MockERC721.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/cheatcodes/lib/forge-std/src/mocks/MockERC721.sol -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/cheatcodes/lib/forge-std/src/safeconsole.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/cheatcodes/lib/forge-std/src/safeconsole.sol -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/cheatcodes/lib/forge-std/test/StdAssertions.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/cheatcodes/lib/forge-std/test/StdAssertions.t.sol -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/cheatcodes/lib/forge-std/test/StdChains.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/cheatcodes/lib/forge-std/test/StdChains.t.sol -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/cheatcodes/lib/forge-std/test/StdCheats.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/cheatcodes/lib/forge-std/test/StdCheats.t.sol -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/cheatcodes/lib/forge-std/test/StdError.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/cheatcodes/lib/forge-std/test/StdError.t.sol -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/cheatcodes/lib/forge-std/test/StdMath.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/cheatcodes/lib/forge-std/test/StdMath.t.sol -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/cheatcodes/lib/forge-std/test/StdStorage.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/cheatcodes/lib/forge-std/test/StdStorage.t.sol -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/cheatcodes/lib/forge-std/test/StdStyle.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/cheatcodes/lib/forge-std/test/StdStyle.t.sol -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/cheatcodes/lib/forge-std/test/StdUtils.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/cheatcodes/lib/forge-std/test/StdUtils.t.sol -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/cheatcodes/lib/forge-std/test/Vm.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/cheatcodes/lib/forge-std/test/Vm.t.sol -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/cheatcodes/out/Base.sol/CommonBase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/cheatcodes/out/Base.sol/CommonBase.json -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/cheatcodes/out/Base.sol/ScriptBase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/cheatcodes/out/Base.sol/ScriptBase.json -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/cheatcodes/out/Base.sol/TestBase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/cheatcodes/out/Base.sol/TestBase.json -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/cheatcodes/out/IERC165.sol/IERC165.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/cheatcodes/out/IERC165.sol/IERC165.json -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/cheatcodes/out/IERC20.sol/IERC20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/cheatcodes/out/IERC20.sol/IERC20.json -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/cheatcodes/out/IERC721.sol/IERC721.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/cheatcodes/out/IERC721.sol/IERC721.json -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/cheatcodes/out/IERC721.sol/IERC721Enumerable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/cheatcodes/out/IERC721.sol/IERC721Enumerable.json -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/cheatcodes/out/IERC721.sol/IERC721Metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/cheatcodes/out/IERC721.sol/IERC721Metadata.json -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/cheatcodes/out/IMulticall3.sol/IMulticall3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/cheatcodes/out/IMulticall3.sol/IMulticall3.json -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/cheatcodes/out/MockERC20.sol/MockERC20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/cheatcodes/out/MockERC20.sol/MockERC20.json -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/cheatcodes/out/MockERC721.sol/MockERC721.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/cheatcodes/out/MockERC721.sol/MockERC721.json -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/cheatcodes/out/OwnerUpOnly.t.sol/OwnerUpOnly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/cheatcodes/out/OwnerUpOnly.t.sol/OwnerUpOnly.json -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/cheatcodes/out/StdChains.sol/StdChains.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/cheatcodes/out/StdChains.sol/StdChains.json -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/cheatcodes/out/StdCheats.sol/StdCheats.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/cheatcodes/out/StdCheats.sol/StdCheats.json -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/cheatcodes/out/StdCheats.sol/StdCheatsSafe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/cheatcodes/out/StdCheats.sol/StdCheatsSafe.json -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/cheatcodes/out/StdError.sol/stdError.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/cheatcodes/out/StdError.sol/stdError.json -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/cheatcodes/out/StdInvariant.sol/StdInvariant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/cheatcodes/out/StdInvariant.sol/StdInvariant.json -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/cheatcodes/out/StdJson.sol/stdJson.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/cheatcodes/out/StdJson.sol/stdJson.json -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/cheatcodes/out/StdMath.sol/stdMath.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/cheatcodes/out/StdMath.sol/stdMath.json -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/cheatcodes/out/StdStorage.sol/stdStorage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/cheatcodes/out/StdStorage.sol/stdStorage.json -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/cheatcodes/out/StdStorage.sol/stdStorageSafe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/cheatcodes/out/StdStorage.sol/stdStorageSafe.json -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/cheatcodes/out/StdStyle.sol/StdStyle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/cheatcodes/out/StdStyle.sol/StdStyle.json -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/cheatcodes/out/StdUtils.sol/StdUtils.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/cheatcodes/out/StdUtils.sol/StdUtils.json -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/cheatcodes/out/Test.sol/Test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/cheatcodes/out/Test.sol/Test.json -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/cheatcodes/out/Vm.sol/Vm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/cheatcodes/out/Vm.sol/Vm.json -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/cheatcodes/out/Vm.sol/VmSafe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/cheatcodes/out/Vm.sol/VmSafe.json -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/cheatcodes/out/build-info/b68059c8bca906b2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/cheatcodes/out/build-info/b68059c8bca906b2.json -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/cheatcodes/out/console.sol/console.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/cheatcodes/out/console.sol/console.json -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/cheatcodes/out/console2.sol/console2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/cheatcodes/out/console2.sol/console2.json -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/cheatcodes/out/safeconsole.sol/safeconsole.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/cheatcodes/out/safeconsole.sol/safeconsole.json -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/cheatcodes/out/test.sol/DSTest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/cheatcodes/out/test.sol/DSTest.json -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/cheatcodes/test/BlastMock.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/cheatcodes/test/BlastMock.t.sol -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/cheatcodes/test/EmitContract.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/cheatcodes/test/EmitContract.t.sol -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/cheatcodes/test/OwnerUpOnly.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/cheatcodes/test/OwnerUpOnly.t.sol -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/fuzz_testing/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/fuzz_testing/foundry.toml -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/fuzz_testing/lib/forge-std/.gitattributes: -------------------------------------------------------------------------------- 1 | src/Vm.sol linguist-generated 2 | -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/fuzz_testing/lib/forge-std/.gitignore: -------------------------------------------------------------------------------- 1 | cache/ 2 | out/ 3 | .vscode 4 | .idea 5 | -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/fuzz_testing/lib/forge-std/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/fuzz_testing/lib/forge-std/.gitmodules -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/fuzz_testing/lib/forge-std/LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/fuzz_testing/lib/forge-std/LICENSE-APACHE -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/fuzz_testing/lib/forge-std/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/fuzz_testing/lib/forge-std/LICENSE-MIT -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/fuzz_testing/lib/forge-std/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/fuzz_testing/lib/forge-std/README.md -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/fuzz_testing/lib/forge-std/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/fuzz_testing/lib/forge-std/foundry.toml -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/fuzz_testing/lib/forge-std/lib/ds-test/.gitignore: -------------------------------------------------------------------------------- 1 | /.dapple 2 | /build 3 | /out 4 | /cache/ 5 | -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/fuzz_testing/lib/forge-std/lib/ds-test/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/fuzz_testing/lib/forge-std/lib/ds-test/LICENSE -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/fuzz_testing/lib/forge-std/lib/ds-test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/fuzz_testing/lib/forge-std/lib/ds-test/Makefile -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/fuzz_testing/lib/forge-std/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/fuzz_testing/lib/forge-std/package.json -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/fuzz_testing/lib/forge-std/scripts/vm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/fuzz_testing/lib/forge-std/scripts/vm.py -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/fuzz_testing/lib/forge-std/src/Base.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/fuzz_testing/lib/forge-std/src/Base.sol -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/fuzz_testing/lib/forge-std/src/Script.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/fuzz_testing/lib/forge-std/src/Script.sol -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/fuzz_testing/lib/forge-std/src/StdAssertions.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/fuzz_testing/lib/forge-std/src/StdAssertions.sol -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/fuzz_testing/lib/forge-std/src/StdChains.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/fuzz_testing/lib/forge-std/src/StdChains.sol -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/fuzz_testing/lib/forge-std/src/StdCheats.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/fuzz_testing/lib/forge-std/src/StdCheats.sol -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/fuzz_testing/lib/forge-std/src/StdError.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/fuzz_testing/lib/forge-std/src/StdError.sol -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/fuzz_testing/lib/forge-std/src/StdInvariant.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/fuzz_testing/lib/forge-std/src/StdInvariant.sol -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/fuzz_testing/lib/forge-std/src/StdJson.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/fuzz_testing/lib/forge-std/src/StdJson.sol -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/fuzz_testing/lib/forge-std/src/StdMath.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/fuzz_testing/lib/forge-std/src/StdMath.sol -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/fuzz_testing/lib/forge-std/src/StdStorage.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/fuzz_testing/lib/forge-std/src/StdStorage.sol -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/fuzz_testing/lib/forge-std/src/StdStyle.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/fuzz_testing/lib/forge-std/src/StdStyle.sol -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/fuzz_testing/lib/forge-std/src/StdUtils.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/fuzz_testing/lib/forge-std/src/StdUtils.sol -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/fuzz_testing/lib/forge-std/src/Test.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/fuzz_testing/lib/forge-std/src/Test.sol -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/fuzz_testing/lib/forge-std/src/Vm.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/fuzz_testing/lib/forge-std/src/Vm.sol -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/fuzz_testing/lib/forge-std/src/console.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/fuzz_testing/lib/forge-std/src/console.sol -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/fuzz_testing/lib/forge-std/src/console2.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/fuzz_testing/lib/forge-std/src/console2.sol -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/fuzz_testing/lib/forge-std/src/safeconsole.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/fuzz_testing/lib/forge-std/src/safeconsole.sol -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/fuzz_testing/lib/forge-std/test/StdChains.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/fuzz_testing/lib/forge-std/test/StdChains.t.sol -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/fuzz_testing/lib/forge-std/test/StdCheats.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/fuzz_testing/lib/forge-std/test/StdCheats.t.sol -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/fuzz_testing/lib/forge-std/test/StdError.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/fuzz_testing/lib/forge-std/test/StdError.t.sol -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/fuzz_testing/lib/forge-std/test/StdMath.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/fuzz_testing/lib/forge-std/test/StdMath.t.sol -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/fuzz_testing/lib/forge-std/test/StdStorage.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/fuzz_testing/lib/forge-std/test/StdStorage.t.sol -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/fuzz_testing/lib/forge-std/test/StdStyle.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/fuzz_testing/lib/forge-std/test/StdStyle.t.sol -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/fuzz_testing/lib/forge-std/test/StdUtils.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/fuzz_testing/lib/forge-std/test/StdUtils.t.sol -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/fuzz_testing/lib/forge-std/test/Vm.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/fuzz_testing/lib/forge-std/test/Vm.t.sol -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/fuzz_testing/out/Base.sol/CommonBase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/fuzz_testing/out/Base.sol/CommonBase.json -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/fuzz_testing/out/Base.sol/ScriptBase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/fuzz_testing/out/Base.sol/ScriptBase.json -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/fuzz_testing/out/Base.sol/TestBase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/fuzz_testing/out/Base.sol/TestBase.json -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/fuzz_testing/out/IERC165.sol/IERC165.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/fuzz_testing/out/IERC165.sol/IERC165.json -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/fuzz_testing/out/IERC20.sol/IERC20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/fuzz_testing/out/IERC20.sol/IERC20.json -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/fuzz_testing/out/IERC721.sol/IERC721.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/fuzz_testing/out/IERC721.sol/IERC721.json -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/fuzz_testing/out/MockERC20.sol/MockERC20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/fuzz_testing/out/MockERC20.sol/MockERC20.json -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/fuzz_testing/out/MockERC721.sol/MockERC721.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/fuzz_testing/out/MockERC721.sol/MockERC721.json -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/fuzz_testing/out/Safe.t.sol/Safe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/fuzz_testing/out/Safe.t.sol/Safe.json -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/fuzz_testing/out/Safe.t.sol/SafeTest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/fuzz_testing/out/Safe.t.sol/SafeTest.json -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/fuzz_testing/out/StdChains.sol/StdChains.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/fuzz_testing/out/StdChains.sol/StdChains.json -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/fuzz_testing/out/StdCheats.sol/StdCheats.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/fuzz_testing/out/StdCheats.sol/StdCheats.json -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/fuzz_testing/out/StdError.sol/stdError.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/fuzz_testing/out/StdError.sol/stdError.json -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/fuzz_testing/out/StdJson.sol/stdJson.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/fuzz_testing/out/StdJson.sol/stdJson.json -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/fuzz_testing/out/StdMath.sol/stdMath.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/fuzz_testing/out/StdMath.sol/stdMath.json -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/fuzz_testing/out/StdStorage.sol/stdStorage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/fuzz_testing/out/StdStorage.sol/stdStorage.json -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/fuzz_testing/out/StdStyle.sol/StdStyle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/fuzz_testing/out/StdStyle.sol/StdStyle.json -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/fuzz_testing/out/StdUtils.sol/StdUtils.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/fuzz_testing/out/StdUtils.sol/StdUtils.json -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/fuzz_testing/out/Test.sol/Test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/fuzz_testing/out/Test.sol/Test.json -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/fuzz_testing/out/Vm.sol/Vm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/fuzz_testing/out/Vm.sol/Vm.json -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/fuzz_testing/out/Vm.sol/VmSafe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/fuzz_testing/out/Vm.sol/VmSafe.json -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/fuzz_testing/out/console.sol/console.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/fuzz_testing/out/console.sol/console.json -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/fuzz_testing/out/console2.sol/console2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/fuzz_testing/out/console2.sol/console2.json -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/fuzz_testing/out/test.sol/DSTest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/fuzz_testing/out/test.sol/DSTest.json -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/fuzz_testing/test/Safe.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/fuzz_testing/test/Safe.t.sol -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/fuzz_testing/test/Safe.t.sol.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/fuzz_testing/test/Safe.t.sol.1 -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/fuzz_testing/test/Safe.t.sol.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/fuzz_testing/test/Safe.t.sol.2 -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/fuzz_testing/test/Safe.t.sol.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/fuzz_testing/test/Safe.t.sol.3 -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/test_filters/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/test_filters/foundry.toml -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/test_filters/lib/forge-std/.gitattributes: -------------------------------------------------------------------------------- 1 | src/Vm.sol linguist-generated 2 | -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/test_filters/lib/forge-std/.gitignore: -------------------------------------------------------------------------------- 1 | cache/ 2 | out/ 3 | .vscode 4 | .idea 5 | -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/test_filters/lib/forge-std/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/test_filters/lib/forge-std/.gitmodules -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/test_filters/lib/forge-std/LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/test_filters/lib/forge-std/LICENSE-APACHE -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/test_filters/lib/forge-std/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/test_filters/lib/forge-std/LICENSE-MIT -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/test_filters/lib/forge-std/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/test_filters/lib/forge-std/README.md -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/test_filters/lib/forge-std/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/test_filters/lib/forge-std/foundry.toml -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/test_filters/lib/forge-std/lib/ds-test/.gitignore: -------------------------------------------------------------------------------- 1 | /.dapple 2 | /build 3 | /out 4 | /cache/ 5 | -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/test_filters/lib/forge-std/lib/ds-test/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/test_filters/lib/forge-std/lib/ds-test/LICENSE -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/test_filters/lib/forge-std/lib/ds-test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/test_filters/lib/forge-std/lib/ds-test/Makefile -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/test_filters/lib/forge-std/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/test_filters/lib/forge-std/package.json -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/test_filters/lib/forge-std/scripts/vm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/test_filters/lib/forge-std/scripts/vm.py -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/test_filters/lib/forge-std/src/Base.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/test_filters/lib/forge-std/src/Base.sol -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/test_filters/lib/forge-std/src/Script.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/test_filters/lib/forge-std/src/Script.sol -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/test_filters/lib/forge-std/src/StdAssertions.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/test_filters/lib/forge-std/src/StdAssertions.sol -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/test_filters/lib/forge-std/src/StdChains.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/test_filters/lib/forge-std/src/StdChains.sol -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/test_filters/lib/forge-std/src/StdCheats.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/test_filters/lib/forge-std/src/StdCheats.sol -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/test_filters/lib/forge-std/src/StdError.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/test_filters/lib/forge-std/src/StdError.sol -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/test_filters/lib/forge-std/src/StdInvariant.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/test_filters/lib/forge-std/src/StdInvariant.sol -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/test_filters/lib/forge-std/src/StdJson.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/test_filters/lib/forge-std/src/StdJson.sol -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/test_filters/lib/forge-std/src/StdMath.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/test_filters/lib/forge-std/src/StdMath.sol -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/test_filters/lib/forge-std/src/StdStorage.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/test_filters/lib/forge-std/src/StdStorage.sol -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/test_filters/lib/forge-std/src/StdStyle.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/test_filters/lib/forge-std/src/StdStyle.sol -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/test_filters/lib/forge-std/src/StdUtils.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/test_filters/lib/forge-std/src/StdUtils.sol -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/test_filters/lib/forge-std/src/Test.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/test_filters/lib/forge-std/src/Test.sol -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/test_filters/lib/forge-std/src/Vm.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/test_filters/lib/forge-std/src/Vm.sol -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/test_filters/lib/forge-std/src/console.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/test_filters/lib/forge-std/src/console.sol -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/test_filters/lib/forge-std/src/console2.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/test_filters/lib/forge-std/src/console2.sol -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/test_filters/lib/forge-std/src/safeconsole.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/test_filters/lib/forge-std/src/safeconsole.sol -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/test_filters/lib/forge-std/test/StdChains.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/test_filters/lib/forge-std/test/StdChains.t.sol -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/test_filters/lib/forge-std/test/StdCheats.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/test_filters/lib/forge-std/test/StdCheats.t.sol -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/test_filters/lib/forge-std/test/StdError.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/test_filters/lib/forge-std/test/StdError.t.sol -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/test_filters/lib/forge-std/test/StdMath.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/test_filters/lib/forge-std/test/StdMath.t.sol -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/test_filters/lib/forge-std/test/StdStorage.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/test_filters/lib/forge-std/test/StdStorage.t.sol -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/test_filters/lib/forge-std/test/StdStyle.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/test_filters/lib/forge-std/test/StdStyle.t.sol -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/test_filters/lib/forge-std/test/StdUtils.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/test_filters/lib/forge-std/test/StdUtils.t.sol -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/test_filters/lib/forge-std/test/Vm.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/test_filters/lib/forge-std/test/Vm.t.sol -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/test_filters/out/Base.sol/CommonBase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/test_filters/out/Base.sol/CommonBase.json -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/test_filters/out/Base.sol/ScriptBase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/test_filters/out/Base.sol/ScriptBase.json -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/test_filters/out/Base.sol/TestBase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/test_filters/out/Base.sol/TestBase.json -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/test_filters/out/IERC165.sol/IERC165.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/test_filters/out/IERC165.sol/IERC165.json -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/test_filters/out/IERC20.sol/IERC20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/test_filters/out/IERC20.sol/IERC20.json -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/test_filters/out/IERC721.sol/IERC721.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/test_filters/out/IERC721.sol/IERC721.json -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/test_filters/out/MockERC20.sol/MockERC20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/test_filters/out/MockERC20.sol/MockERC20.json -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/test_filters/out/MockERC721.sol/MockERC721.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/test_filters/out/MockERC721.sol/MockERC721.json -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/test_filters/out/StdChains.sol/StdChains.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/test_filters/out/StdChains.sol/StdChains.json -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/test_filters/out/StdCheats.sol/StdCheats.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/test_filters/out/StdCheats.sol/StdCheats.json -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/test_filters/out/StdError.sol/stdError.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/test_filters/out/StdError.sol/stdError.json -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/test_filters/out/StdJson.sol/stdJson.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/test_filters/out/StdJson.sol/stdJson.json -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/test_filters/out/StdMath.sol/stdMath.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/test_filters/out/StdMath.sol/stdMath.json -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/test_filters/out/StdStorage.sol/stdStorage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/test_filters/out/StdStorage.sol/stdStorage.json -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/test_filters/out/StdStyle.sol/StdStyle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/test_filters/out/StdStyle.sol/StdStyle.json -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/test_filters/out/StdUtils.sol/StdUtils.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/test_filters/out/StdUtils.sol/StdUtils.json -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/test_filters/out/Test.sol/Test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/test_filters/out/Test.sol/Test.json -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/test_filters/out/Vm.sol/Vm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/test_filters/out/Vm.sol/Vm.json -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/test_filters/out/Vm.sol/VmSafe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/test_filters/out/Vm.sol/VmSafe.json -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/test_filters/out/console.sol/console.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/test_filters/out/console.sol/console.json -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/test_filters/out/console2.sol/console2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/test_filters/out/console2.sol/console2.json -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/test_filters/out/test.sol/DSTest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/test_filters/out/test.sol/DSTest.json -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/test_filters/test/ComplicatedContract.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/test_filters/test/ComplicatedContract.t.sol -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/test_filters/test/ContractB.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/test_filters/test/ContractB.t.sol -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/writing_tests/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/writing_tests/foundry.toml -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/writing_tests/test/Basic.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/writing_tests/test/Basic.t.sol -------------------------------------------------------------------------------- /vocs/docs/snippets/projects/writing_tests/test/Basic2.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/snippets/projects/writing_tests/test/Basic2.t.sol -------------------------------------------------------------------------------- /vocs/docs/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/docs/styles.css -------------------------------------------------------------------------------- /vocs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/package.json -------------------------------------------------------------------------------- /vocs/scripts/fetch-benchmarks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/scripts/fetch-benchmarks.ts -------------------------------------------------------------------------------- /vocs/scripts/fetch-releases.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/scripts/fetch-releases.ts -------------------------------------------------------------------------------- /vocs/sidebar/anvil-cli-reference.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/sidebar/anvil-cli-reference.ts -------------------------------------------------------------------------------- /vocs/sidebar/cast-cli-reference.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/sidebar/cast-cli-reference.ts -------------------------------------------------------------------------------- /vocs/sidebar/chisel-cli-reference.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/sidebar/chisel-cli-reference.ts -------------------------------------------------------------------------------- /vocs/sidebar/cmd-reference.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/sidebar/cmd-reference.ts -------------------------------------------------------------------------------- /vocs/sidebar/forge-cli-reference.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/sidebar/forge-cli-reference.ts -------------------------------------------------------------------------------- /vocs/sidebar/forge-overview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/sidebar/forge-overview.ts -------------------------------------------------------------------------------- /vocs/sidebar/sidebar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/sidebar/sidebar.ts -------------------------------------------------------------------------------- /vocs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/tsconfig.json -------------------------------------------------------------------------------- /vocs/vocs.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-rs/book/HEAD/vocs/vocs.config.ts --------------------------------------------------------------------------------