├── .devcontainer ├── Dockerfile ├── devcontainer.json ├── post_attach_welcome_text.sh ├── post_start_cli_autocomplete.sh ├── post_start_cli_autocomplete_test.bats ├── test_helper.bats └── tests │ └── build_devcontainer_ci.sh ├── .dockerignore ├── .github ├── pull_request_template.md └── workflows │ ├── build-and-test-devcontainer.yml │ ├── rust.yml │ └── validate-devcontainer-json.yml ├── .gitignore ├── FULL_HELP_DOCS.md ├── LICENSE ├── Makefile ├── README.md ├── account ├── Cargo.lock ├── Cargo.toml ├── Makefile └── src │ ├── lib.rs │ └── test.rs ├── alloc ├── Cargo.lock ├── Cargo.toml ├── Makefile └── src │ ├── lib.rs │ └── test.rs ├── assets └── devcontainer-vscode-local.png ├── atomic_multiswap ├── Cargo.lock ├── Cargo.toml ├── Makefile └── src │ ├── lib.rs │ └── test.rs ├── atomic_swap ├── Cargo.lock ├── Cargo.toml ├── Makefile └── src │ ├── lib.rs │ └── test.rs ├── auth ├── Cargo.lock ├── Cargo.toml ├── Makefile └── src │ ├── lib.rs │ └── test.rs ├── bls_signature ├── Cargo.lock ├── Cargo.toml ├── Makefile ├── README └── src │ ├── lib.rs │ └── test.rs ├── cross_contract ├── contract_a │ ├── Cargo.lock │ ├── Cargo.toml │ ├── Makefile │ └── src │ │ └── lib.rs └── contract_b │ ├── Cargo.lock │ ├── Cargo.toml │ ├── Makefile │ └── src │ ├── lib.rs │ └── test.rs ├── custom_types ├── Cargo.lock ├── Cargo.toml ├── Makefile └── src │ ├── lib.rs │ └── test.rs ├── deep_contract_auth ├── Cargo.lock ├── Cargo.toml ├── Makefile └── src │ ├── lib.rs │ └── test.rs ├── deployer ├── contract │ ├── Cargo.lock │ ├── Cargo.toml │ ├── Makefile │ └── src │ │ └── lib.rs └── deployer │ ├── Cargo.lock │ ├── Cargo.toml │ ├── Makefile │ └── src │ ├── lib.rs │ └── test.rs ├── devcontainer.md ├── errors ├── Cargo.lock ├── Cargo.toml ├── Makefile └── src │ ├── lib.rs │ └── test.rs ├── eth_abi ├── Cargo.lock ├── Cargo.toml ├── Makefile ├── src │ ├── lib.rs │ └── test.rs └── test_snapshots │ └── test │ └── test_exec.1.json ├── events ├── Cargo.lock ├── Cargo.toml ├── Makefile └── src │ ├── lib.rs │ └── test.rs ├── fuzzing ├── Cargo.lock ├── Cargo.toml ├── Makefile ├── fuzz │ ├── .gitignore │ ├── Cargo.lock │ ├── Cargo.toml │ └── fuzz_targets │ │ ├── fuzz_target_1.rs │ │ └── fuzz_target_2.rs └── src │ ├── lib.rs │ └── proptest.rs ├── groth16_verifier ├── Cargo.lock ├── Cargo.toml ├── Makefile ├── README ├── data │ ├── auxiliary │ │ ├── input.json │ │ ├── multiplier2.circom │ │ ├── multiplier2_0000.zkey │ │ ├── multiplier2_0001.zkey │ │ ├── pot12_0000.ptau │ │ ├── pot12_0001.ptau │ │ ├── pot12_final.ptau │ │ └── witness.wtns │ ├── proof.json │ ├── public.json │ └── verification_key.json ├── rust-toolchain.toml └── src │ ├── lib.rs │ └── test.rs ├── hello_world ├── Cargo.lock ├── Cargo.toml ├── Makefile └── src │ ├── lib.rs │ └── test.rs ├── import_ark_bn254 ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── Makefile ├── README.md ├── rust-toolchain.toml └── src │ ├── lib.rs │ └── test.rs ├── increment ├── Cargo.lock ├── Cargo.toml ├── Makefile └── src │ ├── lib.rs │ └── test.rs ├── increment_with_fuzz ├── Cargo.lock ├── Cargo.toml ├── Makefile ├── fuzz │ ├── .gitignore │ ├── Cargo.lock │ ├── Cargo.toml │ └── fuzz_targets │ │ └── fuzz_target_1.rs └── src │ ├── lib.rs │ └── test.rs ├── increment_with_pause ├── Cargo.lock ├── Cargo.toml ├── Makefile └── src │ ├── lib.rs │ ├── test_mock.rs │ └── test_real.rs ├── liquidity_pool ├── Cargo.lock ├── Cargo.toml ├── Makefile └── src │ ├── lib.rs │ └── test.rs ├── logging ├── Cargo.lock ├── Cargo.toml ├── Makefile └── src │ ├── lib.rs │ └── test.rs ├── merkle_distribution ├── Cargo.lock ├── Cargo.toml ├── Makefile └── src │ ├── lib.rs │ └── test.rs ├── mint-lock ├── Cargo.lock ├── Cargo.toml ├── Makefile ├── src │ ├── lib.rs │ └── test.rs └── test_snapshots │ └── test │ ├── test.1.json │ └── test_disallow_negative.1.json ├── multisig_1_of_n_account ├── .vscode │ └── settings.json ├── README.md ├── contract │ ├── Cargo.lock │ ├── Cargo.toml │ ├── Makefile │ └── src │ │ ├── lib.rs │ │ └── test.rs ├── stellar-cli-sign-auth-ed25519-js │ ├── Makefile │ ├── deno.json │ ├── deno.lock │ ├── io.ts │ └── main.ts └── stellar-cli-sign-auth-ed25519 │ ├── Cargo.lock │ ├── Cargo.toml │ ├── Makefile │ ├── rust-toolchain.toml │ └── src │ └── main.rs ├── other_custom_types ├── Cargo.lock ├── Cargo.toml ├── Makefile └── src │ ├── lib.rs │ └── test.rs ├── pause ├── Cargo.lock ├── Cargo.toml ├── Makefile └── src │ ├── lib.rs │ └── test.rs ├── privacy-pools ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── Makefile ├── README.md ├── circuits │ ├── Makefile │ ├── commitment.circom │ ├── dummy.circom │ ├── main.circom │ ├── merkleProof.circom │ ├── poseidon255.circom │ ├── poseidon255_constants.circom │ └── test │ │ ├── README.md │ │ ├── lean-imt-test │ │ ├── Cargo.toml │ │ └── src │ │ │ └── main.rs │ │ ├── poseidon-test │ │ ├── Cargo.toml │ │ └── src │ │ │ └── main.rs │ │ ├── test_commitment.circom │ │ ├── test_merkleProof.circom │ │ ├── test_poseidon.circom │ │ └── test_poseidon_input.json ├── cli │ ├── circom2soroban │ │ ├── Cargo.toml │ │ └── src │ │ │ └── main.rs │ └── coinutils │ │ ├── Cargo.toml │ │ ├── README.md │ │ ├── src │ │ ├── cli │ │ │ ├── args.rs │ │ │ ├── commands.rs │ │ │ └── mod.rs │ │ ├── config.rs │ │ ├── crypto │ │ │ ├── coin.rs │ │ │ ├── conversions.rs │ │ │ ├── mod.rs │ │ │ └── poseidon.rs │ │ ├── error.rs │ │ ├── io │ │ │ ├── files.rs │ │ │ ├── mod.rs │ │ │ └── serialization.rs │ │ ├── lib.rs │ │ ├── main.rs │ │ ├── merkle │ │ │ ├── association.rs │ │ │ ├── mod.rs │ │ │ └── withdrawal.rs │ │ └── types │ │ │ ├── coin.rs │ │ │ ├── mod.rs │ │ │ ├── snark.rs │ │ │ └── state.rs │ │ └── tests │ │ ├── integration_tests.rs │ │ └── test_data │ │ ├── sample_association.json │ │ ├── sample_coin.json │ │ └── sample_state.json ├── contract │ ├── Cargo.toml │ ├── Makefile │ └── src │ │ ├── lib.rs │ │ └── test.rs ├── demo.sh └── libs │ ├── lean-imt │ ├── Cargo.toml │ ├── README.md │ └── src │ │ ├── lib.rs │ │ └── tests.rs │ ├── poseidon │ ├── Cargo.toml │ └── src │ │ ├── lib.rs │ │ └── test.rs │ └── zk │ ├── Cargo.toml │ └── src │ ├── lib.rs │ └── test.rs ├── rust-toolchain.toml ├── simple_account ├── Cargo.lock ├── Cargo.toml ├── Makefile └── src │ ├── lib.rs │ └── test.rs ├── single_offer ├── Cargo.lock ├── Cargo.toml ├── Makefile └── src │ ├── lib.rs │ └── test.rs ├── timelock ├── Cargo.lock ├── Cargo.toml ├── Makefile └── src │ ├── lib.rs │ └── test.rs ├── token ├── Cargo.lock ├── Cargo.toml ├── Makefile └── src │ ├── admin.rs │ ├── allowance.rs │ ├── balance.rs │ ├── contract.rs │ ├── lib.rs │ ├── metadata.rs │ ├── storage_types.rs │ └── test.rs ├── ttl ├── Cargo.lock ├── Cargo.toml ├── Makefile └── src │ ├── lib.rs │ └── test.rs ├── upgradeable_contract ├── new_contract │ ├── Cargo.lock │ ├── Cargo.toml │ ├── Makefile │ └── src │ │ └── lib.rs └── old_contract │ ├── Cargo.lock │ ├── Cargo.toml │ ├── Makefile │ └── src │ ├── lib.rs │ └── test.rs └── workspace ├── Cargo.lock ├── Cargo.toml ├── Makefile ├── contract_a ├── Cargo.toml └── src │ └── lib.rs ├── contract_a_interface ├── Cargo.toml └── src │ └── lib.rs └── contract_b ├── Cargo.toml └── src ├── lib.rs └── test.rs /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.devcontainer/post_attach_welcome_text.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/.devcontainer/post_attach_welcome_text.sh -------------------------------------------------------------------------------- /.devcontainer/post_start_cli_autocomplete.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/.devcontainer/post_start_cli_autocomplete.sh -------------------------------------------------------------------------------- /.devcontainer/post_start_cli_autocomplete_test.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/.devcontainer/post_start_cli_autocomplete_test.bats -------------------------------------------------------------------------------- /.devcontainer/test_helper.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/.devcontainer/test_helper.bats -------------------------------------------------------------------------------- /.devcontainer/tests/build_devcontainer_ci.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/.devcontainer/tests/build_devcontainer_ci.sh -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/build-and-test-devcontainer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/.github/workflows/build-and-test-devcontainer.yml -------------------------------------------------------------------------------- /.github/workflows/rust.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/.github/workflows/rust.yml -------------------------------------------------------------------------------- /.github/workflows/validate-devcontainer-json.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/.github/workflows/validate-devcontainer-json.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/.gitignore -------------------------------------------------------------------------------- /FULL_HELP_DOCS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/FULL_HELP_DOCS.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/README.md -------------------------------------------------------------------------------- /account/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/account/Cargo.lock -------------------------------------------------------------------------------- /account/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/account/Cargo.toml -------------------------------------------------------------------------------- /account/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/account/Makefile -------------------------------------------------------------------------------- /account/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/account/src/lib.rs -------------------------------------------------------------------------------- /account/src/test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/account/src/test.rs -------------------------------------------------------------------------------- /alloc/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/alloc/Cargo.lock -------------------------------------------------------------------------------- /alloc/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/alloc/Cargo.toml -------------------------------------------------------------------------------- /alloc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/alloc/Makefile -------------------------------------------------------------------------------- /alloc/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/alloc/src/lib.rs -------------------------------------------------------------------------------- /alloc/src/test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/alloc/src/test.rs -------------------------------------------------------------------------------- /assets/devcontainer-vscode-local.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/assets/devcontainer-vscode-local.png -------------------------------------------------------------------------------- /atomic_multiswap/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/atomic_multiswap/Cargo.lock -------------------------------------------------------------------------------- /atomic_multiswap/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/atomic_multiswap/Cargo.toml -------------------------------------------------------------------------------- /atomic_multiswap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/atomic_multiswap/Makefile -------------------------------------------------------------------------------- /atomic_multiswap/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/atomic_multiswap/src/lib.rs -------------------------------------------------------------------------------- /atomic_multiswap/src/test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/atomic_multiswap/src/test.rs -------------------------------------------------------------------------------- /atomic_swap/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/atomic_swap/Cargo.lock -------------------------------------------------------------------------------- /atomic_swap/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/atomic_swap/Cargo.toml -------------------------------------------------------------------------------- /atomic_swap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/atomic_swap/Makefile -------------------------------------------------------------------------------- /atomic_swap/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/atomic_swap/src/lib.rs -------------------------------------------------------------------------------- /atomic_swap/src/test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/atomic_swap/src/test.rs -------------------------------------------------------------------------------- /auth/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/auth/Cargo.lock -------------------------------------------------------------------------------- /auth/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/auth/Cargo.toml -------------------------------------------------------------------------------- /auth/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/auth/Makefile -------------------------------------------------------------------------------- /auth/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/auth/src/lib.rs -------------------------------------------------------------------------------- /auth/src/test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/auth/src/test.rs -------------------------------------------------------------------------------- /bls_signature/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/bls_signature/Cargo.lock -------------------------------------------------------------------------------- /bls_signature/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/bls_signature/Cargo.toml -------------------------------------------------------------------------------- /bls_signature/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/bls_signature/Makefile -------------------------------------------------------------------------------- /bls_signature/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/bls_signature/README -------------------------------------------------------------------------------- /bls_signature/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/bls_signature/src/lib.rs -------------------------------------------------------------------------------- /bls_signature/src/test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/bls_signature/src/test.rs -------------------------------------------------------------------------------- /cross_contract/contract_a/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/cross_contract/contract_a/Cargo.lock -------------------------------------------------------------------------------- /cross_contract/contract_a/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/cross_contract/contract_a/Cargo.toml -------------------------------------------------------------------------------- /cross_contract/contract_a/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/cross_contract/contract_a/Makefile -------------------------------------------------------------------------------- /cross_contract/contract_a/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/cross_contract/contract_a/src/lib.rs -------------------------------------------------------------------------------- /cross_contract/contract_b/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/cross_contract/contract_b/Cargo.lock -------------------------------------------------------------------------------- /cross_contract/contract_b/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/cross_contract/contract_b/Cargo.toml -------------------------------------------------------------------------------- /cross_contract/contract_b/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/cross_contract/contract_b/Makefile -------------------------------------------------------------------------------- /cross_contract/contract_b/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/cross_contract/contract_b/src/lib.rs -------------------------------------------------------------------------------- /cross_contract/contract_b/src/test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/cross_contract/contract_b/src/test.rs -------------------------------------------------------------------------------- /custom_types/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/custom_types/Cargo.lock -------------------------------------------------------------------------------- /custom_types/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/custom_types/Cargo.toml -------------------------------------------------------------------------------- /custom_types/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/custom_types/Makefile -------------------------------------------------------------------------------- /custom_types/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/custom_types/src/lib.rs -------------------------------------------------------------------------------- /custom_types/src/test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/custom_types/src/test.rs -------------------------------------------------------------------------------- /deep_contract_auth/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/deep_contract_auth/Cargo.lock -------------------------------------------------------------------------------- /deep_contract_auth/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/deep_contract_auth/Cargo.toml -------------------------------------------------------------------------------- /deep_contract_auth/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/deep_contract_auth/Makefile -------------------------------------------------------------------------------- /deep_contract_auth/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/deep_contract_auth/src/lib.rs -------------------------------------------------------------------------------- /deep_contract_auth/src/test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/deep_contract_auth/src/test.rs -------------------------------------------------------------------------------- /deployer/contract/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/deployer/contract/Cargo.lock -------------------------------------------------------------------------------- /deployer/contract/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/deployer/contract/Cargo.toml -------------------------------------------------------------------------------- /deployer/contract/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/deployer/contract/Makefile -------------------------------------------------------------------------------- /deployer/contract/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/deployer/contract/src/lib.rs -------------------------------------------------------------------------------- /deployer/deployer/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/deployer/deployer/Cargo.lock -------------------------------------------------------------------------------- /deployer/deployer/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/deployer/deployer/Cargo.toml -------------------------------------------------------------------------------- /deployer/deployer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/deployer/deployer/Makefile -------------------------------------------------------------------------------- /deployer/deployer/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/deployer/deployer/src/lib.rs -------------------------------------------------------------------------------- /deployer/deployer/src/test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/deployer/deployer/src/test.rs -------------------------------------------------------------------------------- /devcontainer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/devcontainer.md -------------------------------------------------------------------------------- /errors/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/errors/Cargo.lock -------------------------------------------------------------------------------- /errors/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/errors/Cargo.toml -------------------------------------------------------------------------------- /errors/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/errors/Makefile -------------------------------------------------------------------------------- /errors/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/errors/src/lib.rs -------------------------------------------------------------------------------- /errors/src/test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/errors/src/test.rs -------------------------------------------------------------------------------- /eth_abi/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/eth_abi/Cargo.lock -------------------------------------------------------------------------------- /eth_abi/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/eth_abi/Cargo.toml -------------------------------------------------------------------------------- /eth_abi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/eth_abi/Makefile -------------------------------------------------------------------------------- /eth_abi/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/eth_abi/src/lib.rs -------------------------------------------------------------------------------- /eth_abi/src/test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/eth_abi/src/test.rs -------------------------------------------------------------------------------- /eth_abi/test_snapshots/test/test_exec.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/eth_abi/test_snapshots/test/test_exec.1.json -------------------------------------------------------------------------------- /events/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/events/Cargo.lock -------------------------------------------------------------------------------- /events/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/events/Cargo.toml -------------------------------------------------------------------------------- /events/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/events/Makefile -------------------------------------------------------------------------------- /events/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/events/src/lib.rs -------------------------------------------------------------------------------- /events/src/test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/events/src/test.rs -------------------------------------------------------------------------------- /fuzzing/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/fuzzing/Cargo.lock -------------------------------------------------------------------------------- /fuzzing/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/fuzzing/Cargo.toml -------------------------------------------------------------------------------- /fuzzing/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/fuzzing/Makefile -------------------------------------------------------------------------------- /fuzzing/fuzz/.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | corpus 3 | artifacts 4 | coverage 5 | -------------------------------------------------------------------------------- /fuzzing/fuzz/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/fuzzing/fuzz/Cargo.lock -------------------------------------------------------------------------------- /fuzzing/fuzz/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/fuzzing/fuzz/Cargo.toml -------------------------------------------------------------------------------- /fuzzing/fuzz/fuzz_targets/fuzz_target_1.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/fuzzing/fuzz/fuzz_targets/fuzz_target_1.rs -------------------------------------------------------------------------------- /fuzzing/fuzz/fuzz_targets/fuzz_target_2.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/fuzzing/fuzz/fuzz_targets/fuzz_target_2.rs -------------------------------------------------------------------------------- /fuzzing/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/fuzzing/src/lib.rs -------------------------------------------------------------------------------- /fuzzing/src/proptest.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/fuzzing/src/proptest.rs -------------------------------------------------------------------------------- /groth16_verifier/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/groth16_verifier/Cargo.lock -------------------------------------------------------------------------------- /groth16_verifier/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/groth16_verifier/Cargo.toml -------------------------------------------------------------------------------- /groth16_verifier/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/groth16_verifier/Makefile -------------------------------------------------------------------------------- /groth16_verifier/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/groth16_verifier/README -------------------------------------------------------------------------------- /groth16_verifier/data/auxiliary/input.json: -------------------------------------------------------------------------------- 1 | {"a": 3, "b": 11} 2 | -------------------------------------------------------------------------------- /groth16_verifier/data/auxiliary/multiplier2.circom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/groth16_verifier/data/auxiliary/multiplier2.circom -------------------------------------------------------------------------------- /groth16_verifier/data/auxiliary/multiplier2_0000.zkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/groth16_verifier/data/auxiliary/multiplier2_0000.zkey -------------------------------------------------------------------------------- /groth16_verifier/data/auxiliary/multiplier2_0001.zkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/groth16_verifier/data/auxiliary/multiplier2_0001.zkey -------------------------------------------------------------------------------- /groth16_verifier/data/auxiliary/pot12_0000.ptau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/groth16_verifier/data/auxiliary/pot12_0000.ptau -------------------------------------------------------------------------------- /groth16_verifier/data/auxiliary/pot12_0001.ptau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/groth16_verifier/data/auxiliary/pot12_0001.ptau -------------------------------------------------------------------------------- /groth16_verifier/data/auxiliary/pot12_final.ptau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/groth16_verifier/data/auxiliary/pot12_final.ptau -------------------------------------------------------------------------------- /groth16_verifier/data/auxiliary/witness.wtns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/groth16_verifier/data/auxiliary/witness.wtns -------------------------------------------------------------------------------- /groth16_verifier/data/proof.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/groth16_verifier/data/proof.json -------------------------------------------------------------------------------- /groth16_verifier/data/public.json: -------------------------------------------------------------------------------- 1 | [ 2 | "33" 3 | ] -------------------------------------------------------------------------------- /groth16_verifier/data/verification_key.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/groth16_verifier/data/verification_key.json -------------------------------------------------------------------------------- /groth16_verifier/rust-toolchain.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/groth16_verifier/rust-toolchain.toml -------------------------------------------------------------------------------- /groth16_verifier/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/groth16_verifier/src/lib.rs -------------------------------------------------------------------------------- /groth16_verifier/src/test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/groth16_verifier/src/test.rs -------------------------------------------------------------------------------- /hello_world/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/hello_world/Cargo.lock -------------------------------------------------------------------------------- /hello_world/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/hello_world/Cargo.toml -------------------------------------------------------------------------------- /hello_world/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/hello_world/Makefile -------------------------------------------------------------------------------- /hello_world/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/hello_world/src/lib.rs -------------------------------------------------------------------------------- /hello_world/src/test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/hello_world/src/test.rs -------------------------------------------------------------------------------- /import_ark_bn254/.gitignore: -------------------------------------------------------------------------------- 1 | opt/ 2 | -------------------------------------------------------------------------------- /import_ark_bn254/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/import_ark_bn254/Cargo.lock -------------------------------------------------------------------------------- /import_ark_bn254/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/import_ark_bn254/Cargo.toml -------------------------------------------------------------------------------- /import_ark_bn254/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/import_ark_bn254/Makefile -------------------------------------------------------------------------------- /import_ark_bn254/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/import_ark_bn254/README.md -------------------------------------------------------------------------------- /import_ark_bn254/rust-toolchain.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/import_ark_bn254/rust-toolchain.toml -------------------------------------------------------------------------------- /import_ark_bn254/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/import_ark_bn254/src/lib.rs -------------------------------------------------------------------------------- /import_ark_bn254/src/test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/import_ark_bn254/src/test.rs -------------------------------------------------------------------------------- /increment/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/increment/Cargo.lock -------------------------------------------------------------------------------- /increment/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/increment/Cargo.toml -------------------------------------------------------------------------------- /increment/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/increment/Makefile -------------------------------------------------------------------------------- /increment/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/increment/src/lib.rs -------------------------------------------------------------------------------- /increment/src/test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/increment/src/test.rs -------------------------------------------------------------------------------- /increment_with_fuzz/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/increment_with_fuzz/Cargo.lock -------------------------------------------------------------------------------- /increment_with_fuzz/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/increment_with_fuzz/Cargo.toml -------------------------------------------------------------------------------- /increment_with_fuzz/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/increment_with_fuzz/Makefile -------------------------------------------------------------------------------- /increment_with_fuzz/fuzz/.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | corpus 3 | artifacts 4 | coverage 5 | -------------------------------------------------------------------------------- /increment_with_fuzz/fuzz/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/increment_with_fuzz/fuzz/Cargo.lock -------------------------------------------------------------------------------- /increment_with_fuzz/fuzz/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/increment_with_fuzz/fuzz/Cargo.toml -------------------------------------------------------------------------------- /increment_with_fuzz/fuzz/fuzz_targets/fuzz_target_1.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/increment_with_fuzz/fuzz/fuzz_targets/fuzz_target_1.rs -------------------------------------------------------------------------------- /increment_with_fuzz/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/increment_with_fuzz/src/lib.rs -------------------------------------------------------------------------------- /increment_with_fuzz/src/test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/increment_with_fuzz/src/test.rs -------------------------------------------------------------------------------- /increment_with_pause/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/increment_with_pause/Cargo.lock -------------------------------------------------------------------------------- /increment_with_pause/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/increment_with_pause/Cargo.toml -------------------------------------------------------------------------------- /increment_with_pause/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/increment_with_pause/Makefile -------------------------------------------------------------------------------- /increment_with_pause/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/increment_with_pause/src/lib.rs -------------------------------------------------------------------------------- /increment_with_pause/src/test_mock.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/increment_with_pause/src/test_mock.rs -------------------------------------------------------------------------------- /increment_with_pause/src/test_real.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/increment_with_pause/src/test_real.rs -------------------------------------------------------------------------------- /liquidity_pool/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/liquidity_pool/Cargo.lock -------------------------------------------------------------------------------- /liquidity_pool/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/liquidity_pool/Cargo.toml -------------------------------------------------------------------------------- /liquidity_pool/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/liquidity_pool/Makefile -------------------------------------------------------------------------------- /liquidity_pool/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/liquidity_pool/src/lib.rs -------------------------------------------------------------------------------- /liquidity_pool/src/test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/liquidity_pool/src/test.rs -------------------------------------------------------------------------------- /logging/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/logging/Cargo.lock -------------------------------------------------------------------------------- /logging/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/logging/Cargo.toml -------------------------------------------------------------------------------- /logging/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/logging/Makefile -------------------------------------------------------------------------------- /logging/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/logging/src/lib.rs -------------------------------------------------------------------------------- /logging/src/test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/logging/src/test.rs -------------------------------------------------------------------------------- /merkle_distribution/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/merkle_distribution/Cargo.lock -------------------------------------------------------------------------------- /merkle_distribution/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/merkle_distribution/Cargo.toml -------------------------------------------------------------------------------- /merkle_distribution/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/merkle_distribution/Makefile -------------------------------------------------------------------------------- /merkle_distribution/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/merkle_distribution/src/lib.rs -------------------------------------------------------------------------------- /merkle_distribution/src/test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/merkle_distribution/src/test.rs -------------------------------------------------------------------------------- /mint-lock/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/mint-lock/Cargo.lock -------------------------------------------------------------------------------- /mint-lock/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/mint-lock/Cargo.toml -------------------------------------------------------------------------------- /mint-lock/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/mint-lock/Makefile -------------------------------------------------------------------------------- /mint-lock/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/mint-lock/src/lib.rs -------------------------------------------------------------------------------- /mint-lock/src/test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/mint-lock/src/test.rs -------------------------------------------------------------------------------- /mint-lock/test_snapshots/test/test.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/mint-lock/test_snapshots/test/test.1.json -------------------------------------------------------------------------------- /mint-lock/test_snapshots/test/test_disallow_negative.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/mint-lock/test_snapshots/test/test_disallow_negative.1.json -------------------------------------------------------------------------------- /multisig_1_of_n_account/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "deno.enable": true 3 | } 4 | -------------------------------------------------------------------------------- /multisig_1_of_n_account/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/multisig_1_of_n_account/README.md -------------------------------------------------------------------------------- /multisig_1_of_n_account/contract/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/multisig_1_of_n_account/contract/Cargo.lock -------------------------------------------------------------------------------- /multisig_1_of_n_account/contract/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/multisig_1_of_n_account/contract/Cargo.toml -------------------------------------------------------------------------------- /multisig_1_of_n_account/contract/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/multisig_1_of_n_account/contract/Makefile -------------------------------------------------------------------------------- /multisig_1_of_n_account/contract/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/multisig_1_of_n_account/contract/src/lib.rs -------------------------------------------------------------------------------- /multisig_1_of_n_account/contract/src/test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/multisig_1_of_n_account/contract/src/test.rs -------------------------------------------------------------------------------- /multisig_1_of_n_account/stellar-cli-sign-auth-ed25519-js/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/multisig_1_of_n_account/stellar-cli-sign-auth-ed25519-js/Makefile -------------------------------------------------------------------------------- /multisig_1_of_n_account/stellar-cli-sign-auth-ed25519-js/deno.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/multisig_1_of_n_account/stellar-cli-sign-auth-ed25519-js/deno.json -------------------------------------------------------------------------------- /multisig_1_of_n_account/stellar-cli-sign-auth-ed25519-js/deno.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/multisig_1_of_n_account/stellar-cli-sign-auth-ed25519-js/deno.lock -------------------------------------------------------------------------------- /multisig_1_of_n_account/stellar-cli-sign-auth-ed25519-js/io.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/multisig_1_of_n_account/stellar-cli-sign-auth-ed25519-js/io.ts -------------------------------------------------------------------------------- /multisig_1_of_n_account/stellar-cli-sign-auth-ed25519-js/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/multisig_1_of_n_account/stellar-cli-sign-auth-ed25519-js/main.ts -------------------------------------------------------------------------------- /multisig_1_of_n_account/stellar-cli-sign-auth-ed25519/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/multisig_1_of_n_account/stellar-cli-sign-auth-ed25519/Cargo.lock -------------------------------------------------------------------------------- /multisig_1_of_n_account/stellar-cli-sign-auth-ed25519/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/multisig_1_of_n_account/stellar-cli-sign-auth-ed25519/Cargo.toml -------------------------------------------------------------------------------- /multisig_1_of_n_account/stellar-cli-sign-auth-ed25519/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/multisig_1_of_n_account/stellar-cli-sign-auth-ed25519/Makefile -------------------------------------------------------------------------------- /multisig_1_of_n_account/stellar-cli-sign-auth-ed25519/rust-toolchain.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/multisig_1_of_n_account/stellar-cli-sign-auth-ed25519/rust-toolchain.toml -------------------------------------------------------------------------------- /multisig_1_of_n_account/stellar-cli-sign-auth-ed25519/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/multisig_1_of_n_account/stellar-cli-sign-auth-ed25519/src/main.rs -------------------------------------------------------------------------------- /other_custom_types/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/other_custom_types/Cargo.lock -------------------------------------------------------------------------------- /other_custom_types/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/other_custom_types/Cargo.toml -------------------------------------------------------------------------------- /other_custom_types/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/other_custom_types/Makefile -------------------------------------------------------------------------------- /other_custom_types/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/other_custom_types/src/lib.rs -------------------------------------------------------------------------------- /other_custom_types/src/test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/other_custom_types/src/test.rs -------------------------------------------------------------------------------- /pause/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/pause/Cargo.lock -------------------------------------------------------------------------------- /pause/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/pause/Cargo.toml -------------------------------------------------------------------------------- /pause/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/pause/Makefile -------------------------------------------------------------------------------- /pause/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/pause/src/lib.rs -------------------------------------------------------------------------------- /pause/src/test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/pause/src/test.rs -------------------------------------------------------------------------------- /privacy-pools/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/privacy-pools/.gitignore -------------------------------------------------------------------------------- /privacy-pools/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/privacy-pools/Cargo.lock -------------------------------------------------------------------------------- /privacy-pools/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/privacy-pools/Cargo.toml -------------------------------------------------------------------------------- /privacy-pools/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/privacy-pools/LICENSE -------------------------------------------------------------------------------- /privacy-pools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/privacy-pools/Makefile -------------------------------------------------------------------------------- /privacy-pools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/privacy-pools/README.md -------------------------------------------------------------------------------- /privacy-pools/circuits/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/privacy-pools/circuits/Makefile -------------------------------------------------------------------------------- /privacy-pools/circuits/commitment.circom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/privacy-pools/circuits/commitment.circom -------------------------------------------------------------------------------- /privacy-pools/circuits/dummy.circom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/privacy-pools/circuits/dummy.circom -------------------------------------------------------------------------------- /privacy-pools/circuits/main.circom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/privacy-pools/circuits/main.circom -------------------------------------------------------------------------------- /privacy-pools/circuits/merkleProof.circom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/privacy-pools/circuits/merkleProof.circom -------------------------------------------------------------------------------- /privacy-pools/circuits/poseidon255.circom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/privacy-pools/circuits/poseidon255.circom -------------------------------------------------------------------------------- /privacy-pools/circuits/poseidon255_constants.circom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/privacy-pools/circuits/poseidon255_constants.circom -------------------------------------------------------------------------------- /privacy-pools/circuits/test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/privacy-pools/circuits/test/README.md -------------------------------------------------------------------------------- /privacy-pools/circuits/test/lean-imt-test/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/privacy-pools/circuits/test/lean-imt-test/Cargo.toml -------------------------------------------------------------------------------- /privacy-pools/circuits/test/lean-imt-test/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/privacy-pools/circuits/test/lean-imt-test/src/main.rs -------------------------------------------------------------------------------- /privacy-pools/circuits/test/poseidon-test/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/privacy-pools/circuits/test/poseidon-test/Cargo.toml -------------------------------------------------------------------------------- /privacy-pools/circuits/test/poseidon-test/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/privacy-pools/circuits/test/poseidon-test/src/main.rs -------------------------------------------------------------------------------- /privacy-pools/circuits/test/test_commitment.circom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/privacy-pools/circuits/test/test_commitment.circom -------------------------------------------------------------------------------- /privacy-pools/circuits/test/test_merkleProof.circom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/privacy-pools/circuits/test/test_merkleProof.circom -------------------------------------------------------------------------------- /privacy-pools/circuits/test/test_poseidon.circom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/privacy-pools/circuits/test/test_poseidon.circom -------------------------------------------------------------------------------- /privacy-pools/circuits/test/test_poseidon_input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/privacy-pools/circuits/test/test_poseidon_input.json -------------------------------------------------------------------------------- /privacy-pools/cli/circom2soroban/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/privacy-pools/cli/circom2soroban/Cargo.toml -------------------------------------------------------------------------------- /privacy-pools/cli/circom2soroban/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/privacy-pools/cli/circom2soroban/src/main.rs -------------------------------------------------------------------------------- /privacy-pools/cli/coinutils/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/privacy-pools/cli/coinutils/Cargo.toml -------------------------------------------------------------------------------- /privacy-pools/cli/coinutils/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/privacy-pools/cli/coinutils/README.md -------------------------------------------------------------------------------- /privacy-pools/cli/coinutils/src/cli/args.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/privacy-pools/cli/coinutils/src/cli/args.rs -------------------------------------------------------------------------------- /privacy-pools/cli/coinutils/src/cli/commands.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/privacy-pools/cli/coinutils/src/cli/commands.rs -------------------------------------------------------------------------------- /privacy-pools/cli/coinutils/src/cli/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/privacy-pools/cli/coinutils/src/cli/mod.rs -------------------------------------------------------------------------------- /privacy-pools/cli/coinutils/src/config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/privacy-pools/cli/coinutils/src/config.rs -------------------------------------------------------------------------------- /privacy-pools/cli/coinutils/src/crypto/coin.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/privacy-pools/cli/coinutils/src/crypto/coin.rs -------------------------------------------------------------------------------- /privacy-pools/cli/coinutils/src/crypto/conversions.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/privacy-pools/cli/coinutils/src/crypto/conversions.rs -------------------------------------------------------------------------------- /privacy-pools/cli/coinutils/src/crypto/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/privacy-pools/cli/coinutils/src/crypto/mod.rs -------------------------------------------------------------------------------- /privacy-pools/cli/coinutils/src/crypto/poseidon.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/privacy-pools/cli/coinutils/src/crypto/poseidon.rs -------------------------------------------------------------------------------- /privacy-pools/cli/coinutils/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/privacy-pools/cli/coinutils/src/error.rs -------------------------------------------------------------------------------- /privacy-pools/cli/coinutils/src/io/files.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/privacy-pools/cli/coinutils/src/io/files.rs -------------------------------------------------------------------------------- /privacy-pools/cli/coinutils/src/io/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/privacy-pools/cli/coinutils/src/io/mod.rs -------------------------------------------------------------------------------- /privacy-pools/cli/coinutils/src/io/serialization.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/privacy-pools/cli/coinutils/src/io/serialization.rs -------------------------------------------------------------------------------- /privacy-pools/cli/coinutils/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/privacy-pools/cli/coinutils/src/lib.rs -------------------------------------------------------------------------------- /privacy-pools/cli/coinutils/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/privacy-pools/cli/coinutils/src/main.rs -------------------------------------------------------------------------------- /privacy-pools/cli/coinutils/src/merkle/association.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/privacy-pools/cli/coinutils/src/merkle/association.rs -------------------------------------------------------------------------------- /privacy-pools/cli/coinutils/src/merkle/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/privacy-pools/cli/coinutils/src/merkle/mod.rs -------------------------------------------------------------------------------- /privacy-pools/cli/coinutils/src/merkle/withdrawal.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/privacy-pools/cli/coinutils/src/merkle/withdrawal.rs -------------------------------------------------------------------------------- /privacy-pools/cli/coinutils/src/types/coin.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/privacy-pools/cli/coinutils/src/types/coin.rs -------------------------------------------------------------------------------- /privacy-pools/cli/coinutils/src/types/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/privacy-pools/cli/coinutils/src/types/mod.rs -------------------------------------------------------------------------------- /privacy-pools/cli/coinutils/src/types/snark.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/privacy-pools/cli/coinutils/src/types/snark.rs -------------------------------------------------------------------------------- /privacy-pools/cli/coinutils/src/types/state.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/privacy-pools/cli/coinutils/src/types/state.rs -------------------------------------------------------------------------------- /privacy-pools/cli/coinutils/tests/integration_tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/privacy-pools/cli/coinutils/tests/integration_tests.rs -------------------------------------------------------------------------------- /privacy-pools/cli/coinutils/tests/test_data/sample_association.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/privacy-pools/cli/coinutils/tests/test_data/sample_association.json -------------------------------------------------------------------------------- /privacy-pools/cli/coinutils/tests/test_data/sample_coin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/privacy-pools/cli/coinutils/tests/test_data/sample_coin.json -------------------------------------------------------------------------------- /privacy-pools/cli/coinutils/tests/test_data/sample_state.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/privacy-pools/cli/coinutils/tests/test_data/sample_state.json -------------------------------------------------------------------------------- /privacy-pools/contract/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/privacy-pools/contract/Cargo.toml -------------------------------------------------------------------------------- /privacy-pools/contract/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/privacy-pools/contract/Makefile -------------------------------------------------------------------------------- /privacy-pools/contract/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/privacy-pools/contract/src/lib.rs -------------------------------------------------------------------------------- /privacy-pools/contract/src/test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/privacy-pools/contract/src/test.rs -------------------------------------------------------------------------------- /privacy-pools/demo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/privacy-pools/demo.sh -------------------------------------------------------------------------------- /privacy-pools/libs/lean-imt/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/privacy-pools/libs/lean-imt/Cargo.toml -------------------------------------------------------------------------------- /privacy-pools/libs/lean-imt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/privacy-pools/libs/lean-imt/README.md -------------------------------------------------------------------------------- /privacy-pools/libs/lean-imt/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/privacy-pools/libs/lean-imt/src/lib.rs -------------------------------------------------------------------------------- /privacy-pools/libs/lean-imt/src/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/privacy-pools/libs/lean-imt/src/tests.rs -------------------------------------------------------------------------------- /privacy-pools/libs/poseidon/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/privacy-pools/libs/poseidon/Cargo.toml -------------------------------------------------------------------------------- /privacy-pools/libs/poseidon/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/privacy-pools/libs/poseidon/src/lib.rs -------------------------------------------------------------------------------- /privacy-pools/libs/poseidon/src/test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/privacy-pools/libs/poseidon/src/test.rs -------------------------------------------------------------------------------- /privacy-pools/libs/zk/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/privacy-pools/libs/zk/Cargo.toml -------------------------------------------------------------------------------- /privacy-pools/libs/zk/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/privacy-pools/libs/zk/src/lib.rs -------------------------------------------------------------------------------- /privacy-pools/libs/zk/src/test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/privacy-pools/libs/zk/src/test.rs -------------------------------------------------------------------------------- /rust-toolchain.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/rust-toolchain.toml -------------------------------------------------------------------------------- /simple_account/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/simple_account/Cargo.lock -------------------------------------------------------------------------------- /simple_account/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/simple_account/Cargo.toml -------------------------------------------------------------------------------- /simple_account/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/simple_account/Makefile -------------------------------------------------------------------------------- /simple_account/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/simple_account/src/lib.rs -------------------------------------------------------------------------------- /simple_account/src/test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/simple_account/src/test.rs -------------------------------------------------------------------------------- /single_offer/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/single_offer/Cargo.lock -------------------------------------------------------------------------------- /single_offer/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/single_offer/Cargo.toml -------------------------------------------------------------------------------- /single_offer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/single_offer/Makefile -------------------------------------------------------------------------------- /single_offer/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/single_offer/src/lib.rs -------------------------------------------------------------------------------- /single_offer/src/test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/single_offer/src/test.rs -------------------------------------------------------------------------------- /timelock/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/timelock/Cargo.lock -------------------------------------------------------------------------------- /timelock/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/timelock/Cargo.toml -------------------------------------------------------------------------------- /timelock/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/timelock/Makefile -------------------------------------------------------------------------------- /timelock/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/timelock/src/lib.rs -------------------------------------------------------------------------------- /timelock/src/test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/timelock/src/test.rs -------------------------------------------------------------------------------- /token/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/token/Cargo.lock -------------------------------------------------------------------------------- /token/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/token/Cargo.toml -------------------------------------------------------------------------------- /token/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/token/Makefile -------------------------------------------------------------------------------- /token/src/admin.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/token/src/admin.rs -------------------------------------------------------------------------------- /token/src/allowance.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/token/src/allowance.rs -------------------------------------------------------------------------------- /token/src/balance.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/token/src/balance.rs -------------------------------------------------------------------------------- /token/src/contract.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/token/src/contract.rs -------------------------------------------------------------------------------- /token/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/token/src/lib.rs -------------------------------------------------------------------------------- /token/src/metadata.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/token/src/metadata.rs -------------------------------------------------------------------------------- /token/src/storage_types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/token/src/storage_types.rs -------------------------------------------------------------------------------- /token/src/test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/token/src/test.rs -------------------------------------------------------------------------------- /ttl/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/ttl/Cargo.lock -------------------------------------------------------------------------------- /ttl/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/ttl/Cargo.toml -------------------------------------------------------------------------------- /ttl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/ttl/Makefile -------------------------------------------------------------------------------- /ttl/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/ttl/src/lib.rs -------------------------------------------------------------------------------- /ttl/src/test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/ttl/src/test.rs -------------------------------------------------------------------------------- /upgradeable_contract/new_contract/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/upgradeable_contract/new_contract/Cargo.lock -------------------------------------------------------------------------------- /upgradeable_contract/new_contract/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/upgradeable_contract/new_contract/Cargo.toml -------------------------------------------------------------------------------- /upgradeable_contract/new_contract/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/upgradeable_contract/new_contract/Makefile -------------------------------------------------------------------------------- /upgradeable_contract/new_contract/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/upgradeable_contract/new_contract/src/lib.rs -------------------------------------------------------------------------------- /upgradeable_contract/old_contract/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/upgradeable_contract/old_contract/Cargo.lock -------------------------------------------------------------------------------- /upgradeable_contract/old_contract/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/upgradeable_contract/old_contract/Cargo.toml -------------------------------------------------------------------------------- /upgradeable_contract/old_contract/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/upgradeable_contract/old_contract/Makefile -------------------------------------------------------------------------------- /upgradeable_contract/old_contract/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/upgradeable_contract/old_contract/src/lib.rs -------------------------------------------------------------------------------- /upgradeable_contract/old_contract/src/test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/upgradeable_contract/old_contract/src/test.rs -------------------------------------------------------------------------------- /workspace/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/workspace/Cargo.lock -------------------------------------------------------------------------------- /workspace/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/workspace/Cargo.toml -------------------------------------------------------------------------------- /workspace/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/workspace/Makefile -------------------------------------------------------------------------------- /workspace/contract_a/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/workspace/contract_a/Cargo.toml -------------------------------------------------------------------------------- /workspace/contract_a/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/workspace/contract_a/src/lib.rs -------------------------------------------------------------------------------- /workspace/contract_a_interface/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/workspace/contract_a_interface/Cargo.toml -------------------------------------------------------------------------------- /workspace/contract_a_interface/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/workspace/contract_a_interface/src/lib.rs -------------------------------------------------------------------------------- /workspace/contract_b/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/workspace/contract_b/Cargo.toml -------------------------------------------------------------------------------- /workspace/contract_b/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/workspace/contract_b/src/lib.rs -------------------------------------------------------------------------------- /workspace/contract_b/src/test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/soroban-examples/HEAD/workspace/contract_b/src/test.rs --------------------------------------------------------------------------------