Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
256 changes: 88 additions & 168 deletions packages/config-bundles/polywrap-sys-config-bundle/poetry.lock

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "polywrap-sys-config-bundle"
version = "0.1.0b3"
version = "0.1.0b5"
description = "Polywrap System Client Config Bundle"
authors = ["Niraj <niraj@polywrap.io>"]
readme = "README.rst"
Expand All @@ -15,13 +15,13 @@ include = ["**/wrap.info", "**/wrap.wasm"]

[tool.poetry.dependencies]
python = "^3.10"
polywrap-core = {path = "../../polywrap-core", develop = true}
polywrap-client-config-builder = {path = "../../polywrap-client-config-builder", develop = true}
polywrap-uri-resolvers = {path = "../../polywrap-uri-resolvers", develop = true}
polywrap-manifest = {path = "../../polywrap-manifest", develop = true}
polywrap-wasm = {path = "../../polywrap-wasm", develop = true}
polywrap-fs-plugin = {path = "../../plugins/polywrap-fs-plugin", develop = true}
polywrap-http-plugin = {path = "../../plugins/polywrap-http-plugin", develop = true}
polywrap-core = "^0.1.0b5"
polywrap-client-config-builder = "^0.1.0b5"
polywrap-uri-resolvers = "^0.1.0b5"
polywrap-manifest = "^0.1.0b5"
polywrap-wasm = "^0.1.0b5"
polywrap-fs-plugin = "^0.1.0b5"
polywrap-http-plugin = "^0.1.0b5"

[tool.poetry.group.dev.dependencies]
polywrap-client = {path = "../../polywrap-client", develop = true}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,14 @@ Imports
~~~~~~~

>>> from polywrap_client_config_builder import PolywrapClientConfigBuilder
>>> from polywrap_web3_config_bundle import get_web3_config
>>> from polywrap_web3_config_bundle import web3_bundle
>>> from polywrap_client import PolywrapClient
>>> from polywrap_core import Uri, UriPackage

Configure
~~~~~~~~~

>>> config = PolywrapClientConfigBuilder().add(get_web3_config()).build()
>>> config = PolywrapClientConfigBuilder().add_bundle(web3_bundle).build()
>>> client = PolywrapClient(config)

Resolve URI with bundled ens resolver
Expand Down
Loading