├── .gitignore ├── LICENSE.md ├── README.md ├── data ├── abis │ ├── EnclavesDEXProxy.json │ └── MintableNFT.json └── bytecodes │ ├── EnclavesDEXProxy.json │ └── MintableNFT.json ├── index.js ├── package.json ├── scripts └── endecodeHelper.js └── test └── index.test.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptofinlabs/canoe-solidity/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptofinlabs/canoe-solidity/HEAD/README.md -------------------------------------------------------------------------------- /data/abis/EnclavesDEXProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptofinlabs/canoe-solidity/HEAD/data/abis/EnclavesDEXProxy.json -------------------------------------------------------------------------------- /data/abis/MintableNFT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptofinlabs/canoe-solidity/HEAD/data/abis/MintableNFT.json -------------------------------------------------------------------------------- /data/bytecodes/EnclavesDEXProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptofinlabs/canoe-solidity/HEAD/data/bytecodes/EnclavesDEXProxy.json -------------------------------------------------------------------------------- /data/bytecodes/MintableNFT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptofinlabs/canoe-solidity/HEAD/data/bytecodes/MintableNFT.json -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptofinlabs/canoe-solidity/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptofinlabs/canoe-solidity/HEAD/package.json -------------------------------------------------------------------------------- /scripts/endecodeHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptofinlabs/canoe-solidity/HEAD/scripts/endecodeHelper.js -------------------------------------------------------------------------------- /test/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptofinlabs/canoe-solidity/HEAD/test/index.test.js --------------------------------------------------------------------------------