├── LICENSE ├── README.md ├── docs ├── api.md ├── core_values.md ├── examples.md ├── glossary.md ├── images │ ├── favicon.png │ └── icon-large.png ├── index.md ├── overview.md ├── protocol │ ├── bitswap.md │ ├── channels.md │ ├── dht.md │ ├── directory_structure.md │ ├── dispute_resolution.md │ ├── exchange_rates.md │ ├── go-resources.md │ ├── identity.md │ ├── ipld.md │ ├── naming.md │ ├── offline_messaging.md │ ├── overview.md │ ├── p2p_network.md │ ├── pointers.md │ ├── primitives.md │ ├── ratings_reviews.md │ ├── ricardian_contracts.md │ ├── secio.md │ └── trade_flow.md └── references.md └── mkdocs.yml /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBazaar/docs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBazaar/docs/HEAD/README.md -------------------------------------------------------------------------------- /docs/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBazaar/docs/HEAD/docs/api.md -------------------------------------------------------------------------------- /docs/core_values.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBazaar/docs/HEAD/docs/core_values.md -------------------------------------------------------------------------------- /docs/examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBazaar/docs/HEAD/docs/examples.md -------------------------------------------------------------------------------- /docs/glossary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBazaar/docs/HEAD/docs/glossary.md -------------------------------------------------------------------------------- /docs/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBazaar/docs/HEAD/docs/images/favicon.png -------------------------------------------------------------------------------- /docs/images/icon-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBazaar/docs/HEAD/docs/images/icon-large.png -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBazaar/docs/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBazaar/docs/HEAD/docs/overview.md -------------------------------------------------------------------------------- /docs/protocol/bitswap.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/protocol/channels.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/protocol/dht.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/protocol/directory_structure.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/protocol/dispute_resolution.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/protocol/exchange_rates.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/protocol/go-resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBazaar/docs/HEAD/docs/protocol/go-resources.md -------------------------------------------------------------------------------- /docs/protocol/identity.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/protocol/ipld.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/protocol/naming.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/protocol/offline_messaging.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/protocol/overview.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/protocol/p2p_network.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/protocol/pointers.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/protocol/primitives.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/protocol/ratings_reviews.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/protocol/ricardian_contracts.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/protocol/secio.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/protocol/trade_flow.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/references.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBazaar/docs/HEAD/docs/references.md -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBazaar/docs/HEAD/mkdocs.yml --------------------------------------------------------------------------------