├── .github ├── actions │ └── publish-if-newer │ │ └── action.yml ├── pull_request_template.md └── workflows │ └── ci.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── Makefile ├── README.md ├── ci └── Dockerfile.builder ├── ink-wrapper-types ├── Cargo.toml └── src │ ├── calls.rs │ ├── drink_types │ ├── client.rs │ └── mod.rs │ ├── lib.rs │ └── utils.rs ├── ink-wrapper ├── Cargo.lock ├── Cargo.toml └── src │ ├── codegen.rs │ ├── extensions.rs │ └── main.rs ├── rust-toolchain.toml ├── rustfmt.toml └── tests ├── drink ├── Cargo.lock ├── Cargo.toml └── src │ ├── lib.rs │ ├── psp22_tests.rs │ └── test_contract_tests.rs ├── psp22_contract ├── .gitignore ├── Cargo.toml └── lib.rs └── test_contract ├── .gitignore ├── Cargo.toml └── lib.rs /.github/actions/publish-if-newer/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cardinal-Cryptography/ink-wrapper/HEAD/.github/actions/publish-if-newer/action.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cardinal-Cryptography/ink-wrapper/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cardinal-Cryptography/ink-wrapper/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cardinal-Cryptography/ink-wrapper/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cardinal-Cryptography/ink-wrapper/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cardinal-Cryptography/ink-wrapper/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cardinal-Cryptography/ink-wrapper/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cardinal-Cryptography/ink-wrapper/HEAD/README.md -------------------------------------------------------------------------------- /ci/Dockerfile.builder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cardinal-Cryptography/ink-wrapper/HEAD/ci/Dockerfile.builder -------------------------------------------------------------------------------- /ink-wrapper-types/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cardinal-Cryptography/ink-wrapper/HEAD/ink-wrapper-types/Cargo.toml -------------------------------------------------------------------------------- /ink-wrapper-types/src/calls.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cardinal-Cryptography/ink-wrapper/HEAD/ink-wrapper-types/src/calls.rs -------------------------------------------------------------------------------- /ink-wrapper-types/src/drink_types/client.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cardinal-Cryptography/ink-wrapper/HEAD/ink-wrapper-types/src/drink_types/client.rs -------------------------------------------------------------------------------- /ink-wrapper-types/src/drink_types/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cardinal-Cryptography/ink-wrapper/HEAD/ink-wrapper-types/src/drink_types/mod.rs -------------------------------------------------------------------------------- /ink-wrapper-types/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cardinal-Cryptography/ink-wrapper/HEAD/ink-wrapper-types/src/lib.rs -------------------------------------------------------------------------------- /ink-wrapper-types/src/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cardinal-Cryptography/ink-wrapper/HEAD/ink-wrapper-types/src/utils.rs -------------------------------------------------------------------------------- /ink-wrapper/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cardinal-Cryptography/ink-wrapper/HEAD/ink-wrapper/Cargo.lock -------------------------------------------------------------------------------- /ink-wrapper/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cardinal-Cryptography/ink-wrapper/HEAD/ink-wrapper/Cargo.toml -------------------------------------------------------------------------------- /ink-wrapper/src/codegen.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cardinal-Cryptography/ink-wrapper/HEAD/ink-wrapper/src/codegen.rs -------------------------------------------------------------------------------- /ink-wrapper/src/extensions.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cardinal-Cryptography/ink-wrapper/HEAD/ink-wrapper/src/extensions.rs -------------------------------------------------------------------------------- /ink-wrapper/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cardinal-Cryptography/ink-wrapper/HEAD/ink-wrapper/src/main.rs -------------------------------------------------------------------------------- /rust-toolchain.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cardinal-Cryptography/ink-wrapper/HEAD/rust-toolchain.toml -------------------------------------------------------------------------------- /rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cardinal-Cryptography/ink-wrapper/HEAD/rustfmt.toml -------------------------------------------------------------------------------- /tests/drink/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cardinal-Cryptography/ink-wrapper/HEAD/tests/drink/Cargo.lock -------------------------------------------------------------------------------- /tests/drink/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cardinal-Cryptography/ink-wrapper/HEAD/tests/drink/Cargo.toml -------------------------------------------------------------------------------- /tests/drink/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cardinal-Cryptography/ink-wrapper/HEAD/tests/drink/src/lib.rs -------------------------------------------------------------------------------- /tests/drink/src/psp22_tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cardinal-Cryptography/ink-wrapper/HEAD/tests/drink/src/psp22_tests.rs -------------------------------------------------------------------------------- /tests/drink/src/test_contract_tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cardinal-Cryptography/ink-wrapper/HEAD/tests/drink/src/test_contract_tests.rs -------------------------------------------------------------------------------- /tests/psp22_contract/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cardinal-Cryptography/ink-wrapper/HEAD/tests/psp22_contract/.gitignore -------------------------------------------------------------------------------- /tests/psp22_contract/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cardinal-Cryptography/ink-wrapper/HEAD/tests/psp22_contract/Cargo.toml -------------------------------------------------------------------------------- /tests/psp22_contract/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cardinal-Cryptography/ink-wrapper/HEAD/tests/psp22_contract/lib.rs -------------------------------------------------------------------------------- /tests/test_contract/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cardinal-Cryptography/ink-wrapper/HEAD/tests/test_contract/.gitignore -------------------------------------------------------------------------------- /tests/test_contract/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cardinal-Cryptography/ink-wrapper/HEAD/tests/test_contract/Cargo.toml -------------------------------------------------------------------------------- /tests/test_contract/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cardinal-Cryptography/ink-wrapper/HEAD/tests/test_contract/lib.rs --------------------------------------------------------------------------------