├── .cargo └── config.toml ├── .codecov.yml ├── .github └── workflows │ ├── cd.yml │ └── ci.yml ├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── crates └── nile-test-utils │ ├── Cargo.toml │ └── src │ ├── lib.rs │ └── snapbox.rs ├── docs └── FEATURE_PARITY.md ├── src ├── bin │ └── nile-rs │ │ ├── cli.rs │ │ ├── commands.rs │ │ ├── commands │ │ ├── call.rs │ │ ├── clean.rs │ │ ├── compile.rs │ │ ├── counterfactual_address.rs │ │ ├── declare.rs │ │ ├── declare │ │ │ ├── declare_v1.rs │ │ │ └── declare_v2.rs │ │ ├── deploy.rs │ │ ├── get_accounts.rs │ │ ├── get_balance.rs │ │ ├── get_nonce.rs │ │ ├── init.rs │ │ ├── init │ │ │ └── base_project.rs │ │ ├── legacy_deploy.rs │ │ ├── run.rs │ │ ├── send.rs │ │ ├── setup.rs │ │ └── status.rs │ │ └── main.rs └── nile-rs │ ├── common │ ├── artifacts │ │ ├── account.rs │ │ └── mod.rs │ ├── constants.rs │ ├── devnet.rs │ ├── getters │ │ ├── get_accounts.rs │ │ ├── get_balance.rs │ │ ├── get_nonce.rs │ │ └── mod.rs │ ├── legacy.rs │ └── mod.rs │ ├── config.rs │ ├── config │ ├── default.rs │ └── scarb_provider.rs │ ├── core │ ├── accounts.rs │ ├── accounts │ │ ├── account.rs │ │ └── account_factory.rs │ ├── deployments.rs │ ├── deployments │ │ ├── accounts.rs │ │ └── contracts.rs │ ├── mod.rs │ ├── status.rs │ └── types.rs │ ├── lib.rs │ ├── nre.rs │ └── utils │ ├── constants.rs │ ├── fs.rs │ └── mod.rs └── tests ├── clean.rs ├── common └── mod.rs ├── counterfactual_address.rs ├── declare.rs ├── deploy.rs ├── fixtures ├── .env ├── Scarb.toml ├── artifacts │ ├── ERC20.json │ ├── cairo0_contract.json │ ├── cairo1_contract.json │ └── hello_starknet.sierra ├── contracts │ ├── hello_starknet.cairo │ └── tokens │ │ └── erc20.cairo ├── deployments │ ├── 0.accounts.json │ ├── 0.contracts.json │ ├── empty.accounts.json │ ├── empty.contracts.json │ └── localhost.accounts.json └── stdout │ ├── clean.stdout │ ├── clean_all.stdout │ ├── clean_none.stdout │ ├── counterfactual_address.stdout │ ├── declare.stdout │ ├── deploy.stdout │ ├── estimate_fee.stdout │ ├── get_accounts.stdout │ ├── get_balance.stdout │ ├── get_nonce.stdout │ ├── init.stdout │ ├── legacy_deploy.stdout │ ├── raw_call.stdout │ ├── run.stdout │ ├── send.stdout │ └── status.stdout ├── get_accounts.rs ├── get_balance.rs ├── get_nonce.rs ├── init.rs ├── legacy_declare.rs ├── legacy_deploy.rs ├── library ├── deployments.rs └── mod.rs ├── mod.rs ├── raw_call.rs ├── run.rs ├── send.rs ├── setup.rs └── status.rs /.cargo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/nile-rs/HEAD/.cargo/config.toml -------------------------------------------------------------------------------- /.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/nile-rs/HEAD/.codecov.yml -------------------------------------------------------------------------------- /.github/workflows/cd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/nile-rs/HEAD/.github/workflows/cd.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/nile-rs/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/nile-rs/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/nile-rs/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/nile-rs/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/nile-rs/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/nile-rs/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/nile-rs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/nile-rs/HEAD/README.md -------------------------------------------------------------------------------- /crates/nile-test-utils/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/nile-rs/HEAD/crates/nile-test-utils/Cargo.toml -------------------------------------------------------------------------------- /crates/nile-test-utils/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/nile-rs/HEAD/crates/nile-test-utils/src/lib.rs -------------------------------------------------------------------------------- /crates/nile-test-utils/src/snapbox.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/nile-rs/HEAD/crates/nile-test-utils/src/snapbox.rs -------------------------------------------------------------------------------- /docs/FEATURE_PARITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/nile-rs/HEAD/docs/FEATURE_PARITY.md -------------------------------------------------------------------------------- /src/bin/nile-rs/cli.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/nile-rs/HEAD/src/bin/nile-rs/cli.rs -------------------------------------------------------------------------------- /src/bin/nile-rs/commands.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/nile-rs/HEAD/src/bin/nile-rs/commands.rs -------------------------------------------------------------------------------- /src/bin/nile-rs/commands/call.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/nile-rs/HEAD/src/bin/nile-rs/commands/call.rs -------------------------------------------------------------------------------- /src/bin/nile-rs/commands/clean.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/nile-rs/HEAD/src/bin/nile-rs/commands/clean.rs -------------------------------------------------------------------------------- /src/bin/nile-rs/commands/compile.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/nile-rs/HEAD/src/bin/nile-rs/commands/compile.rs -------------------------------------------------------------------------------- /src/bin/nile-rs/commands/counterfactual_address.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/nile-rs/HEAD/src/bin/nile-rs/commands/counterfactual_address.rs -------------------------------------------------------------------------------- /src/bin/nile-rs/commands/declare.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/nile-rs/HEAD/src/bin/nile-rs/commands/declare.rs -------------------------------------------------------------------------------- /src/bin/nile-rs/commands/declare/declare_v1.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/nile-rs/HEAD/src/bin/nile-rs/commands/declare/declare_v1.rs -------------------------------------------------------------------------------- /src/bin/nile-rs/commands/declare/declare_v2.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/nile-rs/HEAD/src/bin/nile-rs/commands/declare/declare_v2.rs -------------------------------------------------------------------------------- /src/bin/nile-rs/commands/deploy.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/nile-rs/HEAD/src/bin/nile-rs/commands/deploy.rs -------------------------------------------------------------------------------- /src/bin/nile-rs/commands/get_accounts.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/nile-rs/HEAD/src/bin/nile-rs/commands/get_accounts.rs -------------------------------------------------------------------------------- /src/bin/nile-rs/commands/get_balance.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/nile-rs/HEAD/src/bin/nile-rs/commands/get_balance.rs -------------------------------------------------------------------------------- /src/bin/nile-rs/commands/get_nonce.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/nile-rs/HEAD/src/bin/nile-rs/commands/get_nonce.rs -------------------------------------------------------------------------------- /src/bin/nile-rs/commands/init.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/nile-rs/HEAD/src/bin/nile-rs/commands/init.rs -------------------------------------------------------------------------------- /src/bin/nile-rs/commands/init/base_project.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/nile-rs/HEAD/src/bin/nile-rs/commands/init/base_project.rs -------------------------------------------------------------------------------- /src/bin/nile-rs/commands/legacy_deploy.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/nile-rs/HEAD/src/bin/nile-rs/commands/legacy_deploy.rs -------------------------------------------------------------------------------- /src/bin/nile-rs/commands/run.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/nile-rs/HEAD/src/bin/nile-rs/commands/run.rs -------------------------------------------------------------------------------- /src/bin/nile-rs/commands/send.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/nile-rs/HEAD/src/bin/nile-rs/commands/send.rs -------------------------------------------------------------------------------- /src/bin/nile-rs/commands/setup.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/nile-rs/HEAD/src/bin/nile-rs/commands/setup.rs -------------------------------------------------------------------------------- /src/bin/nile-rs/commands/status.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/nile-rs/HEAD/src/bin/nile-rs/commands/status.rs -------------------------------------------------------------------------------- /src/bin/nile-rs/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/nile-rs/HEAD/src/bin/nile-rs/main.rs -------------------------------------------------------------------------------- /src/nile-rs/common/artifacts/account.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/nile-rs/HEAD/src/nile-rs/common/artifacts/account.rs -------------------------------------------------------------------------------- /src/nile-rs/common/artifacts/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/nile-rs/HEAD/src/nile-rs/common/artifacts/mod.rs -------------------------------------------------------------------------------- /src/nile-rs/common/constants.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/nile-rs/HEAD/src/nile-rs/common/constants.rs -------------------------------------------------------------------------------- /src/nile-rs/common/devnet.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/nile-rs/HEAD/src/nile-rs/common/devnet.rs -------------------------------------------------------------------------------- /src/nile-rs/common/getters/get_accounts.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/nile-rs/HEAD/src/nile-rs/common/getters/get_accounts.rs -------------------------------------------------------------------------------- /src/nile-rs/common/getters/get_balance.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/nile-rs/HEAD/src/nile-rs/common/getters/get_balance.rs -------------------------------------------------------------------------------- /src/nile-rs/common/getters/get_nonce.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/nile-rs/HEAD/src/nile-rs/common/getters/get_nonce.rs -------------------------------------------------------------------------------- /src/nile-rs/common/getters/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/nile-rs/HEAD/src/nile-rs/common/getters/mod.rs -------------------------------------------------------------------------------- /src/nile-rs/common/legacy.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/nile-rs/HEAD/src/nile-rs/common/legacy.rs -------------------------------------------------------------------------------- /src/nile-rs/common/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/nile-rs/HEAD/src/nile-rs/common/mod.rs -------------------------------------------------------------------------------- /src/nile-rs/config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/nile-rs/HEAD/src/nile-rs/config.rs -------------------------------------------------------------------------------- /src/nile-rs/config/default.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/nile-rs/HEAD/src/nile-rs/config/default.rs -------------------------------------------------------------------------------- /src/nile-rs/config/scarb_provider.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/nile-rs/HEAD/src/nile-rs/config/scarb_provider.rs -------------------------------------------------------------------------------- /src/nile-rs/core/accounts.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/nile-rs/HEAD/src/nile-rs/core/accounts.rs -------------------------------------------------------------------------------- /src/nile-rs/core/accounts/account.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/nile-rs/HEAD/src/nile-rs/core/accounts/account.rs -------------------------------------------------------------------------------- /src/nile-rs/core/accounts/account_factory.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/nile-rs/HEAD/src/nile-rs/core/accounts/account_factory.rs -------------------------------------------------------------------------------- /src/nile-rs/core/deployments.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/nile-rs/HEAD/src/nile-rs/core/deployments.rs -------------------------------------------------------------------------------- /src/nile-rs/core/deployments/accounts.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/nile-rs/HEAD/src/nile-rs/core/deployments/accounts.rs -------------------------------------------------------------------------------- /src/nile-rs/core/deployments/contracts.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/nile-rs/HEAD/src/nile-rs/core/deployments/contracts.rs -------------------------------------------------------------------------------- /src/nile-rs/core/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/nile-rs/HEAD/src/nile-rs/core/mod.rs -------------------------------------------------------------------------------- /src/nile-rs/core/status.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/nile-rs/HEAD/src/nile-rs/core/status.rs -------------------------------------------------------------------------------- /src/nile-rs/core/types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/nile-rs/HEAD/src/nile-rs/core/types.rs -------------------------------------------------------------------------------- /src/nile-rs/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/nile-rs/HEAD/src/nile-rs/lib.rs -------------------------------------------------------------------------------- /src/nile-rs/nre.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/nile-rs/HEAD/src/nile-rs/nre.rs -------------------------------------------------------------------------------- /src/nile-rs/utils/constants.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/nile-rs/HEAD/src/nile-rs/utils/constants.rs -------------------------------------------------------------------------------- /src/nile-rs/utils/fs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/nile-rs/HEAD/src/nile-rs/utils/fs.rs -------------------------------------------------------------------------------- /src/nile-rs/utils/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/nile-rs/HEAD/src/nile-rs/utils/mod.rs -------------------------------------------------------------------------------- /tests/clean.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/nile-rs/HEAD/tests/clean.rs -------------------------------------------------------------------------------- /tests/common/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/nile-rs/HEAD/tests/common/mod.rs -------------------------------------------------------------------------------- /tests/counterfactual_address.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/nile-rs/HEAD/tests/counterfactual_address.rs -------------------------------------------------------------------------------- /tests/declare.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/nile-rs/HEAD/tests/declare.rs -------------------------------------------------------------------------------- /tests/deploy.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/nile-rs/HEAD/tests/deploy.rs -------------------------------------------------------------------------------- /tests/fixtures/.env: -------------------------------------------------------------------------------- 1 | TEST_ACCOUNT = 1234 -------------------------------------------------------------------------------- /tests/fixtures/Scarb.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/nile-rs/HEAD/tests/fixtures/Scarb.toml -------------------------------------------------------------------------------- /tests/fixtures/artifacts/ERC20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/nile-rs/HEAD/tests/fixtures/artifacts/ERC20.json -------------------------------------------------------------------------------- /tests/fixtures/artifacts/cairo0_contract.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/nile-rs/HEAD/tests/fixtures/artifacts/cairo0_contract.json -------------------------------------------------------------------------------- /tests/fixtures/artifacts/cairo1_contract.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/nile-rs/HEAD/tests/fixtures/artifacts/cairo1_contract.json -------------------------------------------------------------------------------- /tests/fixtures/artifacts/hello_starknet.sierra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/nile-rs/HEAD/tests/fixtures/artifacts/hello_starknet.sierra -------------------------------------------------------------------------------- /tests/fixtures/contracts/hello_starknet.cairo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/nile-rs/HEAD/tests/fixtures/contracts/hello_starknet.cairo -------------------------------------------------------------------------------- /tests/fixtures/contracts/tokens/erc20.cairo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/nile-rs/HEAD/tests/fixtures/contracts/tokens/erc20.cairo -------------------------------------------------------------------------------- /tests/fixtures/deployments/0.accounts.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /tests/fixtures/deployments/0.contracts.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /tests/fixtures/deployments/empty.accounts.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/deployments/empty.contracts.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/deployments/localhost.accounts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/nile-rs/HEAD/tests/fixtures/deployments/localhost.accounts.json -------------------------------------------------------------------------------- /tests/fixtures/stdout/clean.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/nile-rs/HEAD/tests/fixtures/stdout/clean.stdout -------------------------------------------------------------------------------- /tests/fixtures/stdout/clean_all.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/nile-rs/HEAD/tests/fixtures/stdout/clean_all.stdout -------------------------------------------------------------------------------- /tests/fixtures/stdout/clean_none.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/nile-rs/HEAD/tests/fixtures/stdout/clean_none.stdout -------------------------------------------------------------------------------- /tests/fixtures/stdout/counterfactual_address.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/nile-rs/HEAD/tests/fixtures/stdout/counterfactual_address.stdout -------------------------------------------------------------------------------- /tests/fixtures/stdout/declare.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/nile-rs/HEAD/tests/fixtures/stdout/declare.stdout -------------------------------------------------------------------------------- /tests/fixtures/stdout/deploy.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/nile-rs/HEAD/tests/fixtures/stdout/deploy.stdout -------------------------------------------------------------------------------- /tests/fixtures/stdout/estimate_fee.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/nile-rs/HEAD/tests/fixtures/stdout/estimate_fee.stdout -------------------------------------------------------------------------------- /tests/fixtures/stdout/get_accounts.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/nile-rs/HEAD/tests/fixtures/stdout/get_accounts.stdout -------------------------------------------------------------------------------- /tests/fixtures/stdout/get_balance.stdout: -------------------------------------------------------------------------------- 1 | The current balance is: 2 | 🪙 5 wei 3 | -------------------------------------------------------------------------------- /tests/fixtures/stdout/get_nonce.stdout: -------------------------------------------------------------------------------- 1 | 2 | The current nonce is: 0 3 | -------------------------------------------------------------------------------- /tests/fixtures/stdout/init.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/nile-rs/HEAD/tests/fixtures/stdout/init.stdout -------------------------------------------------------------------------------- /tests/fixtures/stdout/legacy_deploy.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/nile-rs/HEAD/tests/fixtures/stdout/legacy_deploy.stdout -------------------------------------------------------------------------------- /tests/fixtures/stdout/raw_call.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/nile-rs/HEAD/tests/fixtures/stdout/raw_call.stdout -------------------------------------------------------------------------------- /tests/fixtures/stdout/run.stdout: -------------------------------------------------------------------------------- 1 | Running declare script! 2 | -------------------------------------------------------------------------------- /tests/fixtures/stdout/send.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/nile-rs/HEAD/tests/fixtures/stdout/send.stdout -------------------------------------------------------------------------------- /tests/fixtures/stdout/status.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/nile-rs/HEAD/tests/fixtures/stdout/status.stdout -------------------------------------------------------------------------------- /tests/get_accounts.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/nile-rs/HEAD/tests/get_accounts.rs -------------------------------------------------------------------------------- /tests/get_balance.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/nile-rs/HEAD/tests/get_balance.rs -------------------------------------------------------------------------------- /tests/get_nonce.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/nile-rs/HEAD/tests/get_nonce.rs -------------------------------------------------------------------------------- /tests/init.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/nile-rs/HEAD/tests/init.rs -------------------------------------------------------------------------------- /tests/legacy_declare.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/nile-rs/HEAD/tests/legacy_declare.rs -------------------------------------------------------------------------------- /tests/legacy_deploy.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/nile-rs/HEAD/tests/legacy_deploy.rs -------------------------------------------------------------------------------- /tests/library/deployments.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/nile-rs/HEAD/tests/library/deployments.rs -------------------------------------------------------------------------------- /tests/library/mod.rs: -------------------------------------------------------------------------------- 1 | mod deployments; 2 | -------------------------------------------------------------------------------- /tests/mod.rs: -------------------------------------------------------------------------------- 1 | mod library; 2 | -------------------------------------------------------------------------------- /tests/raw_call.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/nile-rs/HEAD/tests/raw_call.rs -------------------------------------------------------------------------------- /tests/run.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/nile-rs/HEAD/tests/run.rs -------------------------------------------------------------------------------- /tests/send.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/nile-rs/HEAD/tests/send.rs -------------------------------------------------------------------------------- /tests/setup.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/nile-rs/HEAD/tests/setup.rs -------------------------------------------------------------------------------- /tests/status.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/nile-rs/HEAD/tests/status.rs --------------------------------------------------------------------------------