├── .github └── workflows │ └── npm-publish.yml ├── .gitignore ├── README.md ├── core ├── IConnext.sol ├── IWeth.sol └── IXReceiver.sol ├── libraries ├── LibConnextStorage.sol └── TokenId.sol └── package.json /.github/workflows/npm-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connext/interfaces/HEAD/.github/workflows/npm-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connext/interfaces/HEAD/README.md -------------------------------------------------------------------------------- /core/IConnext.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connext/interfaces/HEAD/core/IConnext.sol -------------------------------------------------------------------------------- /core/IWeth.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connext/interfaces/HEAD/core/IWeth.sol -------------------------------------------------------------------------------- /core/IXReceiver.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connext/interfaces/HEAD/core/IXReceiver.sol -------------------------------------------------------------------------------- /libraries/LibConnextStorage.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connext/interfaces/HEAD/libraries/LibConnextStorage.sol -------------------------------------------------------------------------------- /libraries/TokenId.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connext/interfaces/HEAD/libraries/TokenId.sol -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connext/interfaces/HEAD/package.json --------------------------------------------------------------------------------