├── .editorconfig ├── .gitattributes ├── .github ├── dependabot.yml └── workflows │ ├── images.yml │ └── lint.yml ├── .gitignore ├── .prettierignore ├── .vscode ├── extensions.json ├── settings.json └── spellright.dict ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.txt ├── README.md ├── docs ├── .vuepress │ ├── config.js │ ├── public │ │ ├── WavyHeader.svg │ │ ├── favicon.ico │ │ ├── ol-logo-black.svg │ │ ├── ol-logo-color.svg │ │ └── ol-logo-white.svg │ └── styles │ │ ├── index.styl │ │ └── palette.styl ├── README.md ├── api-client │ └── README.md ├── beginners-guide │ ├── README.md │ └── img │ │ ├── address.png │ │ ├── choice-example-in-editor.png │ │ ├── choice-example.png │ │ ├── choice-in-form.png │ │ ├── choice.png │ │ ├── company-address.png │ │ ├── company-name.png │ │ ├── conditional-in-form.png │ │ ├── conditional.png │ │ ├── date-time.png │ │ ├── date.png │ │ ├── default-value.png │ │ ├── description-text.png │ │ ├── edit-toolbar.png │ │ ├── effective-date.png │ │ ├── ethereum-address.png │ │ ├── image-file.png │ │ ├── large-text.png │ │ ├── new-template-nav.png │ │ ├── number.png │ │ └── sections.png ├── conversion-tool │ └── README.md ├── es │ ├── getting-started-overview │ │ └── README.md │ └── markup-language │ │ └── README.md ├── forms-flows │ └── README.md ├── getting-started-overview │ └── README.md ├── integration-framework │ └── README.md ├── markup-language │ ├── README.md │ └── img │ │ └── clause-type.png ├── openlaw-core │ └── README.md ├── openlaw-elements │ └── README.md ├── openlaw-object │ └── README.md ├── relayer │ └── README.md ├── review-tool │ ├── README.md │ └── img │ │ ├── blacklist-example.png │ │ ├── editor.png │ │ ├── feedback-popup.png │ │ ├── renaming-popup-date-var.png │ │ ├── renaming-popup-org-var.png │ │ ├── renaming-popup-person-var.png │ │ ├── review-editor-background-var-highlight.png │ │ ├── review-popup-entity-none.png │ │ ├── review-popup-extended-selection.png │ │ ├── review-popup-fix-entity.png │ │ ├── review-popup-invalid-entity.png │ │ ├── review-popup-invalid-match.png │ │ ├── review-popup-partial-match.png │ │ ├── review-tool-dashboard.png │ │ └── title-suggestion-popup.png ├── sign-store │ └── README.md └── token-forge │ ├── README.md │ └── img │ ├── draft-create-tokenized-SPV.png │ ├── new-template-nav.png │ ├── rinkeby-transaction-tokenized-SPV.png │ └── smart-contract-execution-tokenized-SPV.png ├── netlify.toml └── package.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlawteam/docs/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlawteam/docs/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlawteam/docs/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/images.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlawteam/docs/HEAD/.github/workflows/images.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlawteam/docs/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | docs/.vuepress/dist 3 | .idea/ 4 | .DS_Store 5 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlawteam/docs/HEAD/.prettierignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlawteam/docs/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlawteam/docs/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/spellright.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlawteam/docs/HEAD/.vscode/spellright.dict -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlawteam/docs/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlawteam/docs/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlawteam/docs/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlawteam/docs/HEAD/README.md -------------------------------------------------------------------------------- /docs/.vuepress/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlawteam/docs/HEAD/docs/.vuepress/config.js -------------------------------------------------------------------------------- /docs/.vuepress/public/WavyHeader.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlawteam/docs/HEAD/docs/.vuepress/public/WavyHeader.svg -------------------------------------------------------------------------------- /docs/.vuepress/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlawteam/docs/HEAD/docs/.vuepress/public/favicon.ico -------------------------------------------------------------------------------- /docs/.vuepress/public/ol-logo-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlawteam/docs/HEAD/docs/.vuepress/public/ol-logo-black.svg -------------------------------------------------------------------------------- /docs/.vuepress/public/ol-logo-color.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlawteam/docs/HEAD/docs/.vuepress/public/ol-logo-color.svg -------------------------------------------------------------------------------- /docs/.vuepress/public/ol-logo-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlawteam/docs/HEAD/docs/.vuepress/public/ol-logo-white.svg -------------------------------------------------------------------------------- /docs/.vuepress/styles/index.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlawteam/docs/HEAD/docs/.vuepress/styles/index.styl -------------------------------------------------------------------------------- /docs/.vuepress/styles/palette.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlawteam/docs/HEAD/docs/.vuepress/styles/palette.styl -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlawteam/docs/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/api-client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlawteam/docs/HEAD/docs/api-client/README.md -------------------------------------------------------------------------------- /docs/beginners-guide/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlawteam/docs/HEAD/docs/beginners-guide/README.md -------------------------------------------------------------------------------- /docs/beginners-guide/img/address.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlawteam/docs/HEAD/docs/beginners-guide/img/address.png -------------------------------------------------------------------------------- /docs/beginners-guide/img/choice-example-in-editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlawteam/docs/HEAD/docs/beginners-guide/img/choice-example-in-editor.png -------------------------------------------------------------------------------- /docs/beginners-guide/img/choice-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlawteam/docs/HEAD/docs/beginners-guide/img/choice-example.png -------------------------------------------------------------------------------- /docs/beginners-guide/img/choice-in-form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlawteam/docs/HEAD/docs/beginners-guide/img/choice-in-form.png -------------------------------------------------------------------------------- /docs/beginners-guide/img/choice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlawteam/docs/HEAD/docs/beginners-guide/img/choice.png -------------------------------------------------------------------------------- /docs/beginners-guide/img/company-address.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlawteam/docs/HEAD/docs/beginners-guide/img/company-address.png -------------------------------------------------------------------------------- /docs/beginners-guide/img/company-name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlawteam/docs/HEAD/docs/beginners-guide/img/company-name.png -------------------------------------------------------------------------------- /docs/beginners-guide/img/conditional-in-form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlawteam/docs/HEAD/docs/beginners-guide/img/conditional-in-form.png -------------------------------------------------------------------------------- /docs/beginners-guide/img/conditional.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlawteam/docs/HEAD/docs/beginners-guide/img/conditional.png -------------------------------------------------------------------------------- /docs/beginners-guide/img/date-time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlawteam/docs/HEAD/docs/beginners-guide/img/date-time.png -------------------------------------------------------------------------------- /docs/beginners-guide/img/date.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlawteam/docs/HEAD/docs/beginners-guide/img/date.png -------------------------------------------------------------------------------- /docs/beginners-guide/img/default-value.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlawteam/docs/HEAD/docs/beginners-guide/img/default-value.png -------------------------------------------------------------------------------- /docs/beginners-guide/img/description-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlawteam/docs/HEAD/docs/beginners-guide/img/description-text.png -------------------------------------------------------------------------------- /docs/beginners-guide/img/edit-toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlawteam/docs/HEAD/docs/beginners-guide/img/edit-toolbar.png -------------------------------------------------------------------------------- /docs/beginners-guide/img/effective-date.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlawteam/docs/HEAD/docs/beginners-guide/img/effective-date.png -------------------------------------------------------------------------------- /docs/beginners-guide/img/ethereum-address.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlawteam/docs/HEAD/docs/beginners-guide/img/ethereum-address.png -------------------------------------------------------------------------------- /docs/beginners-guide/img/image-file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlawteam/docs/HEAD/docs/beginners-guide/img/image-file.png -------------------------------------------------------------------------------- /docs/beginners-guide/img/large-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlawteam/docs/HEAD/docs/beginners-guide/img/large-text.png -------------------------------------------------------------------------------- /docs/beginners-guide/img/new-template-nav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlawteam/docs/HEAD/docs/beginners-guide/img/new-template-nav.png -------------------------------------------------------------------------------- /docs/beginners-guide/img/number.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlawteam/docs/HEAD/docs/beginners-guide/img/number.png -------------------------------------------------------------------------------- /docs/beginners-guide/img/sections.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlawteam/docs/HEAD/docs/beginners-guide/img/sections.png -------------------------------------------------------------------------------- /docs/conversion-tool/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlawteam/docs/HEAD/docs/conversion-tool/README.md -------------------------------------------------------------------------------- /docs/es/getting-started-overview/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlawteam/docs/HEAD/docs/es/getting-started-overview/README.md -------------------------------------------------------------------------------- /docs/es/markup-language/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlawteam/docs/HEAD/docs/es/markup-language/README.md -------------------------------------------------------------------------------- /docs/forms-flows/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlawteam/docs/HEAD/docs/forms-flows/README.md -------------------------------------------------------------------------------- /docs/getting-started-overview/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlawteam/docs/HEAD/docs/getting-started-overview/README.md -------------------------------------------------------------------------------- /docs/integration-framework/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlawteam/docs/HEAD/docs/integration-framework/README.md -------------------------------------------------------------------------------- /docs/markup-language/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlawteam/docs/HEAD/docs/markup-language/README.md -------------------------------------------------------------------------------- /docs/markup-language/img/clause-type.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlawteam/docs/HEAD/docs/markup-language/img/clause-type.png -------------------------------------------------------------------------------- /docs/openlaw-core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlawteam/docs/HEAD/docs/openlaw-core/README.md -------------------------------------------------------------------------------- /docs/openlaw-elements/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlawteam/docs/HEAD/docs/openlaw-elements/README.md -------------------------------------------------------------------------------- /docs/openlaw-object/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlawteam/docs/HEAD/docs/openlaw-object/README.md -------------------------------------------------------------------------------- /docs/relayer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlawteam/docs/HEAD/docs/relayer/README.md -------------------------------------------------------------------------------- /docs/review-tool/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlawteam/docs/HEAD/docs/review-tool/README.md -------------------------------------------------------------------------------- /docs/review-tool/img/blacklist-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlawteam/docs/HEAD/docs/review-tool/img/blacklist-example.png -------------------------------------------------------------------------------- /docs/review-tool/img/editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlawteam/docs/HEAD/docs/review-tool/img/editor.png -------------------------------------------------------------------------------- /docs/review-tool/img/feedback-popup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlawteam/docs/HEAD/docs/review-tool/img/feedback-popup.png -------------------------------------------------------------------------------- /docs/review-tool/img/renaming-popup-date-var.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlawteam/docs/HEAD/docs/review-tool/img/renaming-popup-date-var.png -------------------------------------------------------------------------------- /docs/review-tool/img/renaming-popup-org-var.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlawteam/docs/HEAD/docs/review-tool/img/renaming-popup-org-var.png -------------------------------------------------------------------------------- /docs/review-tool/img/renaming-popup-person-var.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlawteam/docs/HEAD/docs/review-tool/img/renaming-popup-person-var.png -------------------------------------------------------------------------------- /docs/review-tool/img/review-editor-background-var-highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlawteam/docs/HEAD/docs/review-tool/img/review-editor-background-var-highlight.png -------------------------------------------------------------------------------- /docs/review-tool/img/review-popup-entity-none.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlawteam/docs/HEAD/docs/review-tool/img/review-popup-entity-none.png -------------------------------------------------------------------------------- /docs/review-tool/img/review-popup-extended-selection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlawteam/docs/HEAD/docs/review-tool/img/review-popup-extended-selection.png -------------------------------------------------------------------------------- /docs/review-tool/img/review-popup-fix-entity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlawteam/docs/HEAD/docs/review-tool/img/review-popup-fix-entity.png -------------------------------------------------------------------------------- /docs/review-tool/img/review-popup-invalid-entity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlawteam/docs/HEAD/docs/review-tool/img/review-popup-invalid-entity.png -------------------------------------------------------------------------------- /docs/review-tool/img/review-popup-invalid-match.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlawteam/docs/HEAD/docs/review-tool/img/review-popup-invalid-match.png -------------------------------------------------------------------------------- /docs/review-tool/img/review-popup-partial-match.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlawteam/docs/HEAD/docs/review-tool/img/review-popup-partial-match.png -------------------------------------------------------------------------------- /docs/review-tool/img/review-tool-dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlawteam/docs/HEAD/docs/review-tool/img/review-tool-dashboard.png -------------------------------------------------------------------------------- /docs/review-tool/img/title-suggestion-popup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlawteam/docs/HEAD/docs/review-tool/img/title-suggestion-popup.png -------------------------------------------------------------------------------- /docs/sign-store/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlawteam/docs/HEAD/docs/sign-store/README.md -------------------------------------------------------------------------------- /docs/token-forge/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlawteam/docs/HEAD/docs/token-forge/README.md -------------------------------------------------------------------------------- /docs/token-forge/img/draft-create-tokenized-SPV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlawteam/docs/HEAD/docs/token-forge/img/draft-create-tokenized-SPV.png -------------------------------------------------------------------------------- /docs/token-forge/img/new-template-nav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlawteam/docs/HEAD/docs/token-forge/img/new-template-nav.png -------------------------------------------------------------------------------- /docs/token-forge/img/rinkeby-transaction-tokenized-SPV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlawteam/docs/HEAD/docs/token-forge/img/rinkeby-transaction-tokenized-SPV.png -------------------------------------------------------------------------------- /docs/token-forge/img/smart-contract-execution-tokenized-SPV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlawteam/docs/HEAD/docs/token-forge/img/smart-contract-execution-tokenized-SPV.png -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlawteam/docs/HEAD/netlify.toml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlawteam/docs/HEAD/package.json --------------------------------------------------------------------------------