├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── doc └── svm_api.jpg ├── rust-toolchain.toml ├── src ├── lib.rs ├── loader.rs ├── processor.rs ├── settler.rs └── transaction.rs └── tests ├── native_sol.rs ├── setup.rs └── spl_tokens.rs /.gitignore: -------------------------------------------------------------------------------- 1 | target -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buffalojoec/paytube/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buffalojoec/paytube/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buffalojoec/paytube/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buffalojoec/paytube/HEAD/README.md -------------------------------------------------------------------------------- /doc/svm_api.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buffalojoec/paytube/HEAD/doc/svm_api.jpg -------------------------------------------------------------------------------- /rust-toolchain.toml: -------------------------------------------------------------------------------- 1 | [toolchain] 2 | channel = "1.84.1" 3 | -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buffalojoec/paytube/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/loader.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buffalojoec/paytube/HEAD/src/loader.rs -------------------------------------------------------------------------------- /src/processor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buffalojoec/paytube/HEAD/src/processor.rs -------------------------------------------------------------------------------- /src/settler.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buffalojoec/paytube/HEAD/src/settler.rs -------------------------------------------------------------------------------- /src/transaction.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buffalojoec/paytube/HEAD/src/transaction.rs -------------------------------------------------------------------------------- /tests/native_sol.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buffalojoec/paytube/HEAD/tests/native_sol.rs -------------------------------------------------------------------------------- /tests/setup.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buffalojoec/paytube/HEAD/tests/setup.rs -------------------------------------------------------------------------------- /tests/spl_tokens.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buffalojoec/paytube/HEAD/tests/spl_tokens.rs --------------------------------------------------------------------------------