├── .github └── workflows │ └── ci.yaml ├── .gitignore ├── Move.toml ├── README.md └── sources ├── u256.move └── u256.spec.move /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pontem-network/u256/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | .aptos/ 3 | -------------------------------------------------------------------------------- /Move.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pontem-network/u256/HEAD/Move.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pontem-network/u256/HEAD/README.md -------------------------------------------------------------------------------- /sources/u256.move: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pontem-network/u256/HEAD/sources/u256.move -------------------------------------------------------------------------------- /sources/u256.spec.move: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pontem-network/u256/HEAD/sources/u256.spec.move --------------------------------------------------------------------------------