├── .env.dist ├── .github ├── config.yaml └── workflows │ ├── sui-publish.yml │ ├── sui-test.yml │ ├── update-registry-main.yml │ └── update-registry-test.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── Move.lock ├── Move.toml ├── README.md ├── TODO.md ├── bin ├── build.sh ├── mappings.sh ├── publish.sh ├── register-all.sh └── register.sh └── sources ├── balances.move ├── bloom_filter.move ├── box.move ├── crit_bit.move ├── crit_bit_u64.move ├── date.move ├── escrow.move ├── escrow_shared.move ├── i128_type.move ├── i64_type.move ├── linear_vesting.move ├── math.move ├── math_safe_precise.move ├── math_u128.move ├── merkle_proof.move ├── object_box.move ├── object_vec.move ├── quadratic_vesting.move ├── to_string.move ├── typed_id.move └── vectors.move /.env.dist: -------------------------------------------------------------------------------- 1 | SUI_VERSION="testnet-1.0.0" 2 | -------------------------------------------------------------------------------- /.github/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Origin-Byte/originmate/HEAD/.github/config.yaml -------------------------------------------------------------------------------- /.github/workflows/sui-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Origin-Byte/originmate/HEAD/.github/workflows/sui-publish.yml -------------------------------------------------------------------------------- /.github/workflows/sui-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Origin-Byte/originmate/HEAD/.github/workflows/sui-test.yml -------------------------------------------------------------------------------- /.github/workflows/update-registry-main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Origin-Byte/originmate/HEAD/.github/workflows/update-registry-main.yml -------------------------------------------------------------------------------- /.github/workflows/update-registry-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Origin-Byte/originmate/HEAD/.github/workflows/update-registry-test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | build/ 3 | sui.log.* 4 | local -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Origin-Byte/originmate/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Origin-Byte/originmate/HEAD/LICENSE -------------------------------------------------------------------------------- /Move.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Origin-Byte/originmate/HEAD/Move.lock -------------------------------------------------------------------------------- /Move.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Origin-Byte/originmate/HEAD/Move.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Origin-Byte/originmate/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Origin-Byte/originmate/HEAD/TODO.md -------------------------------------------------------------------------------- /bin/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Origin-Byte/originmate/HEAD/bin/build.sh -------------------------------------------------------------------------------- /bin/mappings.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Origin-Byte/originmate/HEAD/bin/mappings.sh -------------------------------------------------------------------------------- /bin/publish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Origin-Byte/originmate/HEAD/bin/publish.sh -------------------------------------------------------------------------------- /bin/register-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Origin-Byte/originmate/HEAD/bin/register-all.sh -------------------------------------------------------------------------------- /bin/register.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Origin-Byte/originmate/HEAD/bin/register.sh -------------------------------------------------------------------------------- /sources/balances.move: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Origin-Byte/originmate/HEAD/sources/balances.move -------------------------------------------------------------------------------- /sources/bloom_filter.move: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Origin-Byte/originmate/HEAD/sources/bloom_filter.move -------------------------------------------------------------------------------- /sources/box.move: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Origin-Byte/originmate/HEAD/sources/box.move -------------------------------------------------------------------------------- /sources/crit_bit.move: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Origin-Byte/originmate/HEAD/sources/crit_bit.move -------------------------------------------------------------------------------- /sources/crit_bit_u64.move: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Origin-Byte/originmate/HEAD/sources/crit_bit_u64.move -------------------------------------------------------------------------------- /sources/date.move: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Origin-Byte/originmate/HEAD/sources/date.move -------------------------------------------------------------------------------- /sources/escrow.move: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Origin-Byte/originmate/HEAD/sources/escrow.move -------------------------------------------------------------------------------- /sources/escrow_shared.move: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Origin-Byte/originmate/HEAD/sources/escrow_shared.move -------------------------------------------------------------------------------- /sources/i128_type.move: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Origin-Byte/originmate/HEAD/sources/i128_type.move -------------------------------------------------------------------------------- /sources/i64_type.move: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Origin-Byte/originmate/HEAD/sources/i64_type.move -------------------------------------------------------------------------------- /sources/linear_vesting.move: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Origin-Byte/originmate/HEAD/sources/linear_vesting.move -------------------------------------------------------------------------------- /sources/math.move: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Origin-Byte/originmate/HEAD/sources/math.move -------------------------------------------------------------------------------- /sources/math_safe_precise.move: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Origin-Byte/originmate/HEAD/sources/math_safe_precise.move -------------------------------------------------------------------------------- /sources/math_u128.move: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Origin-Byte/originmate/HEAD/sources/math_u128.move -------------------------------------------------------------------------------- /sources/merkle_proof.move: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Origin-Byte/originmate/HEAD/sources/merkle_proof.move -------------------------------------------------------------------------------- /sources/object_box.move: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Origin-Byte/originmate/HEAD/sources/object_box.move -------------------------------------------------------------------------------- /sources/object_vec.move: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Origin-Byte/originmate/HEAD/sources/object_vec.move -------------------------------------------------------------------------------- /sources/quadratic_vesting.move: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Origin-Byte/originmate/HEAD/sources/quadratic_vesting.move -------------------------------------------------------------------------------- /sources/to_string.move: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Origin-Byte/originmate/HEAD/sources/to_string.move -------------------------------------------------------------------------------- /sources/typed_id.move: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Origin-Byte/originmate/HEAD/sources/typed_id.move -------------------------------------------------------------------------------- /sources/vectors.move: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Origin-Byte/originmate/HEAD/sources/vectors.move --------------------------------------------------------------------------------