├── .gitignore ├── CODEOWNERS └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | # IDEs 2 | .vscode/ 3 | .idea/ 4 | 5 | node_modules 6 | docusaurus/build 7 | docusaurus/.docusaurus -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- 1 | ** @dfinity/canister-os 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Internet Computer Reference 2 | 3 | **The Interface Specification has been moved to the [`dfinity/portal` repository](https://github.com/dfinity/portal).** 4 | 5 | The relevant files include: 6 | 7 | ```bash 8 | docs/references/http-gateway-protocol-spec.md 9 | docs/references/ic-interface-spec.md 10 | docs/references/_attachments/certificates.cddl 11 | docs/references/_attachments/http-gateway.did 12 | docs/references/_attachments/ic.did 13 | docs/references/_attachments/interface-spec-changelog.md 14 | docs/references/_attachments/requests.cddl 15 | ``` 16 | --------------------------------------------------------------------------------