├── .github └── workflows │ └── release-post-actions.yml ├── .gitignore ├── CHANGELOG.md ├── Cargo.toml ├── Jenkinsfile ├── LICENSE ├── README.md └── src ├── client.rs ├── contracts.rs ├── crypto.rs ├── error.rs ├── interop.rs ├── json_helper.rs ├── lib.rs ├── queries.rs ├── tests ├── contracts │ ├── Giver.abi.json │ ├── GiverWallet.abi.json │ ├── abi_v1 │ │ ├── Hello.abi.json │ │ ├── Hello.tvc │ │ ├── LimitWallet.abi.json │ │ ├── LimitWallet.tvc │ │ ├── Piggy.abi.json │ │ ├── Piggy.tvc │ │ ├── Subscription.abi.json │ │ ├── Subscription.tvc │ │ ├── Wallet.abi.json │ │ └── Wallet.tvc │ ├── abi_v2 │ │ ├── Hello.abi.json │ │ ├── Hello.tvc │ │ ├── LimitWallet.abi.json │ │ ├── LimitWallet.tvc │ │ ├── Piggy.abi.json │ │ ├── Piggy.tvc │ │ ├── Subscription.abi.json │ │ ├── Subscription.tvc │ │ ├── Wallet.abi.json │ │ └── Wallet.tvc │ └── elector.json ├── mod.rs ├── test_errors.rs ├── test_hello.rs ├── test_local_run.rs ├── test_piggy.rs └── test_run_get.rs └── types.rs /.github/workflows/release-post-actions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-client-rs/HEAD/.github/workflows/release-post-actions.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-client-rs/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-client-rs/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-client-rs/HEAD/Cargo.toml -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-client-rs/HEAD/Jenkinsfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-client-rs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-client-rs/HEAD/README.md -------------------------------------------------------------------------------- /src/client.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-client-rs/HEAD/src/client.rs -------------------------------------------------------------------------------- /src/contracts.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-client-rs/HEAD/src/contracts.rs -------------------------------------------------------------------------------- /src/crypto.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-client-rs/HEAD/src/crypto.rs -------------------------------------------------------------------------------- /src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-client-rs/HEAD/src/error.rs -------------------------------------------------------------------------------- /src/interop.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-client-rs/HEAD/src/interop.rs -------------------------------------------------------------------------------- /src/json_helper.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-client-rs/HEAD/src/json_helper.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-client-rs/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/queries.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-client-rs/HEAD/src/queries.rs -------------------------------------------------------------------------------- /src/tests/contracts/Giver.abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-client-rs/HEAD/src/tests/contracts/Giver.abi.json -------------------------------------------------------------------------------- /src/tests/contracts/GiverWallet.abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-client-rs/HEAD/src/tests/contracts/GiverWallet.abi.json -------------------------------------------------------------------------------- /src/tests/contracts/abi_v1/Hello.abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-client-rs/HEAD/src/tests/contracts/abi_v1/Hello.abi.json -------------------------------------------------------------------------------- /src/tests/contracts/abi_v1/Hello.tvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-client-rs/HEAD/src/tests/contracts/abi_v1/Hello.tvc -------------------------------------------------------------------------------- /src/tests/contracts/abi_v1/LimitWallet.abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-client-rs/HEAD/src/tests/contracts/abi_v1/LimitWallet.abi.json -------------------------------------------------------------------------------- /src/tests/contracts/abi_v1/LimitWallet.tvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-client-rs/HEAD/src/tests/contracts/abi_v1/LimitWallet.tvc -------------------------------------------------------------------------------- /src/tests/contracts/abi_v1/Piggy.abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-client-rs/HEAD/src/tests/contracts/abi_v1/Piggy.abi.json -------------------------------------------------------------------------------- /src/tests/contracts/abi_v1/Piggy.tvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-client-rs/HEAD/src/tests/contracts/abi_v1/Piggy.tvc -------------------------------------------------------------------------------- /src/tests/contracts/abi_v1/Subscription.abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-client-rs/HEAD/src/tests/contracts/abi_v1/Subscription.abi.json -------------------------------------------------------------------------------- /src/tests/contracts/abi_v1/Subscription.tvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-client-rs/HEAD/src/tests/contracts/abi_v1/Subscription.tvc -------------------------------------------------------------------------------- /src/tests/contracts/abi_v1/Wallet.abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-client-rs/HEAD/src/tests/contracts/abi_v1/Wallet.abi.json -------------------------------------------------------------------------------- /src/tests/contracts/abi_v1/Wallet.tvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-client-rs/HEAD/src/tests/contracts/abi_v1/Wallet.tvc -------------------------------------------------------------------------------- /src/tests/contracts/abi_v2/Hello.abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-client-rs/HEAD/src/tests/contracts/abi_v2/Hello.abi.json -------------------------------------------------------------------------------- /src/tests/contracts/abi_v2/Hello.tvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-client-rs/HEAD/src/tests/contracts/abi_v2/Hello.tvc -------------------------------------------------------------------------------- /src/tests/contracts/abi_v2/LimitWallet.abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-client-rs/HEAD/src/tests/contracts/abi_v2/LimitWallet.abi.json -------------------------------------------------------------------------------- /src/tests/contracts/abi_v2/LimitWallet.tvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-client-rs/HEAD/src/tests/contracts/abi_v2/LimitWallet.tvc -------------------------------------------------------------------------------- /src/tests/contracts/abi_v2/Piggy.abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-client-rs/HEAD/src/tests/contracts/abi_v2/Piggy.abi.json -------------------------------------------------------------------------------- /src/tests/contracts/abi_v2/Piggy.tvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-client-rs/HEAD/src/tests/contracts/abi_v2/Piggy.tvc -------------------------------------------------------------------------------- /src/tests/contracts/abi_v2/Subscription.abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-client-rs/HEAD/src/tests/contracts/abi_v2/Subscription.abi.json -------------------------------------------------------------------------------- /src/tests/contracts/abi_v2/Subscription.tvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-client-rs/HEAD/src/tests/contracts/abi_v2/Subscription.tvc -------------------------------------------------------------------------------- /src/tests/contracts/abi_v2/Wallet.abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-client-rs/HEAD/src/tests/contracts/abi_v2/Wallet.abi.json -------------------------------------------------------------------------------- /src/tests/contracts/abi_v2/Wallet.tvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-client-rs/HEAD/src/tests/contracts/abi_v2/Wallet.tvc -------------------------------------------------------------------------------- /src/tests/contracts/elector.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-client-rs/HEAD/src/tests/contracts/elector.json -------------------------------------------------------------------------------- /src/tests/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-client-rs/HEAD/src/tests/mod.rs -------------------------------------------------------------------------------- /src/tests/test_errors.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-client-rs/HEAD/src/tests/test_errors.rs -------------------------------------------------------------------------------- /src/tests/test_hello.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-client-rs/HEAD/src/tests/test_hello.rs -------------------------------------------------------------------------------- /src/tests/test_local_run.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-client-rs/HEAD/src/tests/test_local_run.rs -------------------------------------------------------------------------------- /src/tests/test_piggy.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-client-rs/HEAD/src/tests/test_piggy.rs -------------------------------------------------------------------------------- /src/tests/test_run_get.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-client-rs/HEAD/src/tests/test_run_get.rs -------------------------------------------------------------------------------- /src/types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-client-rs/HEAD/src/types.rs --------------------------------------------------------------------------------