### Install Project Dependencies Source: https://github.com/1inch/cross-chain-resolver-example/blob/master/README.md Installs the necessary JavaScript dependencies for the project using pnpm. ```shell pnpm install ``` -------------------------------- ### Install Foundry Development Tools Source: https://github.com/1inch/cross-chain-resolver-example/blob/master/README.md Installs Foundry, a fast, portable, and modular toolkit for Ethereum application development, using a curl command. ```shell curl -L https://foundry.paradigm.xyz | bash ``` -------------------------------- ### Install Contract Dependencies Source: https://github.com/1inch/cross-chain-resolver-example/blob/master/README.md Installs smart contract dependencies required by the project using Foundry's forge command. ```shell forge install ``` -------------------------------- ### List Available Test Accounts Source: https://github.com/1inch/cross-chain-resolver-example/blob/master/README.md Provides a list of pre-configured test accounts, including their private keys and public addresses, along with their roles (e.g., Owner, User, Resolver) within the example project's context. ```text (0) 0xac0974bec39a17e36ba4a6b4d238ff944bacb478cbed5efcae784d7bf4f2ff80: "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266" Owner of EscrowFactory (1) 0x59c6995e998f97a5a0044966f0945389dc9e86dae88c7a8412f4603b6b78690d: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8" User (2) 0x5de4111afa1a4b94908f83103eb1f1706367c2e68ca870fc3fb9a804cdab365a: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC" Resolver ``` -------------------------------- ### Run Cross-Chain Tests Source: https://github.com/1inch/cross-chain-resolver-example/blob/master/README.md Executes the project's tests, requiring environment variables for Ethereum and Binance Smart Chain (BSC) fork URLs to be set. This enables testing across different blockchain networks. ```shell SRC_CHAIN_RPC=ETH_FORK_URL DST_CHAIN_RPC=BNB_FORK_URL pnpm test ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.