├── IcERC20 ├── ERC20.sol ├── IcERC20.sol └── IcERC20Interface.sol ├── IcERC712 └── IcERC721.sol ├── LICENSE ├── README.md ├── docs └── precompiles │ ├── AbstractAccount │ ├── AbstractAccountAbi.json │ └── AbstractAccountInterface.sol │ ├── EvmInterpreter │ ├── EvmInterpreterAbi.json │ └── EvmInterpreterInterface.sol │ ├── InterTx │ ├── InterTxAbi.json │ └── InterTxInterface.sol │ ├── PrecompileWrap.sol │ └── Quasar │ ├── CosmosSdkAbi.json │ ├── CosmosSdkInterface.sol │ ├── README.md │ └── test │ ├── ProxyContract.sol │ └── RecursiveProxyContract.sol ├── multi-chain-simple-storage ├── README.md ├── SimpleStorage.sol ├── SimpleStorageAbi.json └── SimpleStorageMark.json └── nBridge ├── README.md └── nBridgeMark.json /IcERC20/ERC20.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-laurel/demos/HEAD/IcERC20/ERC20.sol -------------------------------------------------------------------------------- /IcERC20/IcERC20.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-laurel/demos/HEAD/IcERC20/IcERC20.sol -------------------------------------------------------------------------------- /IcERC20/IcERC20Interface.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-laurel/demos/HEAD/IcERC20/IcERC20Interface.sol -------------------------------------------------------------------------------- /IcERC712/IcERC721.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-laurel/demos/HEAD/IcERC712/IcERC721.sol -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-laurel/demos/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-laurel/demos/HEAD/README.md -------------------------------------------------------------------------------- /docs/precompiles/AbstractAccount/AbstractAccountAbi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-laurel/demos/HEAD/docs/precompiles/AbstractAccount/AbstractAccountAbi.json -------------------------------------------------------------------------------- /docs/precompiles/AbstractAccount/AbstractAccountInterface.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-laurel/demos/HEAD/docs/precompiles/AbstractAccount/AbstractAccountInterface.sol -------------------------------------------------------------------------------- /docs/precompiles/EvmInterpreter/EvmInterpreterAbi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-laurel/demos/HEAD/docs/precompiles/EvmInterpreter/EvmInterpreterAbi.json -------------------------------------------------------------------------------- /docs/precompiles/EvmInterpreter/EvmInterpreterInterface.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-laurel/demos/HEAD/docs/precompiles/EvmInterpreter/EvmInterpreterInterface.sol -------------------------------------------------------------------------------- /docs/precompiles/InterTx/InterTxAbi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-laurel/demos/HEAD/docs/precompiles/InterTx/InterTxAbi.json -------------------------------------------------------------------------------- /docs/precompiles/InterTx/InterTxInterface.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-laurel/demos/HEAD/docs/precompiles/InterTx/InterTxInterface.sol -------------------------------------------------------------------------------- /docs/precompiles/PrecompileWrap.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-laurel/demos/HEAD/docs/precompiles/PrecompileWrap.sol -------------------------------------------------------------------------------- /docs/precompiles/Quasar/CosmosSdkAbi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-laurel/demos/HEAD/docs/precompiles/Quasar/CosmosSdkAbi.json -------------------------------------------------------------------------------- /docs/precompiles/Quasar/CosmosSdkInterface.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-laurel/demos/HEAD/docs/precompiles/Quasar/CosmosSdkInterface.sol -------------------------------------------------------------------------------- /docs/precompiles/Quasar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-laurel/demos/HEAD/docs/precompiles/Quasar/README.md -------------------------------------------------------------------------------- /docs/precompiles/Quasar/test/ProxyContract.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-laurel/demos/HEAD/docs/precompiles/Quasar/test/ProxyContract.sol -------------------------------------------------------------------------------- /docs/precompiles/Quasar/test/RecursiveProxyContract.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-laurel/demos/HEAD/docs/precompiles/Quasar/test/RecursiveProxyContract.sol -------------------------------------------------------------------------------- /multi-chain-simple-storage/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /multi-chain-simple-storage/SimpleStorage.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-laurel/demos/HEAD/multi-chain-simple-storage/SimpleStorage.sol -------------------------------------------------------------------------------- /multi-chain-simple-storage/SimpleStorageAbi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-laurel/demos/HEAD/multi-chain-simple-storage/SimpleStorageAbi.json -------------------------------------------------------------------------------- /multi-chain-simple-storage/SimpleStorageMark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-laurel/demos/HEAD/multi-chain-simple-storage/SimpleStorageMark.json -------------------------------------------------------------------------------- /nBridge/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nBridge/nBridgeMark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-laurel/demos/HEAD/nBridge/nBridgeMark.json --------------------------------------------------------------------------------