diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 3426beb2..236987c4 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -40,6 +40,6 @@ jobs: poetry run pytest --cov --cov-report=xml - name: Upload coverage to Codecov - uses: codecov/codecov-action@v3 + uses: codecov/codecov-action@v4 with: env_vars: OS,PYTHON diff --git a/CHANGELOG.md b/CHANGELOG.md index 90addb65..7e525b92 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,15 @@ All notable changes to this project will be documented in this file. +## [1.6.1] - 2024-08-07 +### Added +- Added support for the following messages in the chain "exchange" module: + - MsgDecreasePositionMargin + - MsgUpdateSpotMarket + - MsgUpdateDerivativeMarket + - MsgAuthorizeStakeGrants + - MsgActivateStakeGrant + ## [1.6.0] - 2024-07-30 ### Added - Support for all queries in the chain "tendermint" module diff --git a/buf.gen.yaml b/buf.gen.yaml index 2c740297..1cb56c02 100644 --- a/buf.gen.yaml +++ b/buf.gen.yaml @@ -2,9 +2,9 @@ version: v2 managed: enabled: true plugins: - - remote: buf.build/protocolbuffers/python + - remote: buf.build/protocolbuffers/python:v26.1 out: ./pyinjective/proto/ - - remote: buf.build/grpc/python + - remote: buf.build/grpc/python:v1.65.4 out: ./pyinjective/proto/ inputs: - module: buf.build/cosmos/cosmos-proto diff --git a/examples/chain_client/exchange/14_MsgCreateBinaryOptionsLimitOrder.py b/examples/chain_client/exchange/14_MsgCreateBinaryOptionsLimitOrder.py index 5ad8c59e..c15711b2 100644 --- a/examples/chain_client/exchange/14_MsgCreateBinaryOptionsLimitOrder.py +++ b/examples/chain_client/exchange/14_MsgCreateBinaryOptionsLimitOrder.py @@ -38,7 +38,14 @@ async def main() -> None: fee_recipient = "inj1hkhdaj2a2clmq5jq6mspsggqs32vynpk228q3r" # set custom denom to bypass ini file load (optional) - denom = Denom(description="desc", base=0, quote=6, min_price_tick_size=1000, min_quantity_tick_size=0.0001) + denom = Denom( + description="desc", + base=0, + quote=6, + min_price_tick_size=1000, + min_quantity_tick_size=0.0001, + min_notional=0, + ) # prepare tx msg msg = composer.msg_create_binary_options_limit_order( diff --git a/examples/chain_client/exchange/23_MsgDecreasePositionMargin.py b/examples/chain_client/exchange/23_MsgDecreasePositionMargin.py new file mode 100644 index 00000000..5914063d --- /dev/null +++ b/examples/chain_client/exchange/23_MsgDecreasePositionMargin.py @@ -0,0 +1,56 @@ +import asyncio +import os +from decimal import Decimal + +import dotenv + +from pyinjective.async_client import AsyncClient +from pyinjective.core.broadcaster import MsgBroadcasterWithPk +from pyinjective.core.network import Network +from pyinjective.wallet import PrivateKey + + +async def main() -> None: + dotenv.load_dotenv() + configured_private_key = os.getenv("INJECTIVE_PRIVATE_KEY") + + # select network: local, testnet, mainnet + network = Network.testnet() + + # initialize grpc client + client = AsyncClient(network) + composer = await client.composer() + await client.sync_timeout_height() + + message_broadcaster = MsgBroadcasterWithPk.new_using_simulation( + network=network, + private_key=configured_private_key, + ) + + # load account + priv_key = PrivateKey.from_hex(configured_private_key) + pub_key = priv_key.to_public_key() + address = pub_key.to_address() + await client.fetch_account(address.to_acc_bech32()) + subaccount_id = address.get_subaccount_id(index=0) + + # prepare trade info + market_id = "0x17ef48032cb24375ba7c2e39f384e56433bcab20cbee9a7357e4cba2eb00abe6" + + # prepare tx msg + msg = composer.msg_decrease_position_margin( + sender=address.to_acc_bech32(), + market_id=market_id, + source_subaccount_id=subaccount_id, + destination_subaccount_id=subaccount_id, + amount=Decimal(2), + ) + + # broadcast the transaction + result = await message_broadcaster.broadcast([msg]) + print("---Transaction Response---") + print(result) + + +if __name__ == "__main__": + asyncio.get_event_loop().run_until_complete(main()) diff --git a/examples/chain_client/exchange/24_MsgUpdateSpotMarket.py b/examples/chain_client/exchange/24_MsgUpdateSpotMarket.py new file mode 100644 index 00000000..67d73a4d --- /dev/null +++ b/examples/chain_client/exchange/24_MsgUpdateSpotMarket.py @@ -0,0 +1,54 @@ +import asyncio +import os +from decimal import Decimal + +import dotenv + +from pyinjective.async_client import AsyncClient +from pyinjective.core.broadcaster import MsgBroadcasterWithPk +from pyinjective.core.network import Network +from pyinjective.wallet import PrivateKey + + +async def main() -> None: + dotenv.load_dotenv() + configured_private_key = os.getenv("INJECTIVE_PRIVATE_KEY") + + # select network: local, testnet, mainnet + network = Network.testnet() + + # initialize grpc client + client = AsyncClient(network) + await client.initialize_tokens_from_chain_denoms() + composer = await client.composer() + await client.sync_timeout_height() + + message_broadcaster = MsgBroadcasterWithPk.new_using_simulation( + network=network, + private_key=configured_private_key, + ) + + # load account + priv_key = PrivateKey.from_hex(configured_private_key) + pub_key = priv_key.to_public_key() + address = pub_key.to_address() + await client.fetch_account(address.to_acc_bech32()) + + # prepare tx msg + message = composer.msg_update_spot_market( + admin=address.to_acc_bech32(), + market_id="0x215970bfdea5c94d8e964a759d3ce6eae1d113900129cc8428267db5ccdb3d1a", + new_ticker="INJ/USDC 2", + new_min_price_tick_size=Decimal("0.01"), + new_min_quantity_tick_size=Decimal("0.01"), + new_min_notional=Decimal("2"), + ) + + # broadcast the transaction + result = await message_broadcaster.broadcast([message]) + print("---Transaction Response---") + print(result) + + +if __name__ == "__main__": + asyncio.get_event_loop().run_until_complete(main()) diff --git a/examples/chain_client/exchange/25_MsgUpdateDerivativeMarket.py b/examples/chain_client/exchange/25_MsgUpdateDerivativeMarket.py new file mode 100644 index 00000000..da2aa593 --- /dev/null +++ b/examples/chain_client/exchange/25_MsgUpdateDerivativeMarket.py @@ -0,0 +1,56 @@ +import asyncio +import os +from decimal import Decimal + +import dotenv + +from pyinjective.async_client import AsyncClient +from pyinjective.core.broadcaster import MsgBroadcasterWithPk +from pyinjective.core.network import Network +from pyinjective.wallet import PrivateKey + + +async def main() -> None: + dotenv.load_dotenv() + configured_private_key = os.getenv("INJECTIVE_PRIVATE_KEY") + + # select network: local, testnet, mainnet + network = Network.testnet() + + # initialize grpc client + client = AsyncClient(network) + await client.initialize_tokens_from_chain_denoms() + composer = await client.composer() + await client.sync_timeout_height() + + message_broadcaster = MsgBroadcasterWithPk.new_using_simulation( + network=network, + private_key=configured_private_key, + ) + + # load account + priv_key = PrivateKey.from_hex(configured_private_key) + pub_key = priv_key.to_public_key() + address = pub_key.to_address() + await client.fetch_account(address.to_acc_bech32()) + + # prepare tx msg + message = composer.msg_update_derivative_market( + admin=address.to_acc_bech32(), + market_id="0x17ef48032cb24375ba7c2e39f384e56433bcab20cbee9a7357e4cba2eb00abe6", + new_ticker="INJ/USDT PERP 2", + new_min_price_tick_size=Decimal("1"), + new_min_quantity_tick_size=Decimal("1"), + new_min_notional=Decimal("2"), + new_initial_margin_ratio=Decimal("0.40"), + new_maintenance_margin_ratio=Decimal("0.085"), + ) + + # broadcast the transaction + result = await message_broadcaster.broadcast([message]) + print("---Transaction Response---") + print(result) + + +if __name__ == "__main__": + asyncio.get_event_loop().run_until_complete(main()) diff --git a/examples/chain_client/exchange/26_MsgAuthorizeStakeGrants.py b/examples/chain_client/exchange/26_MsgAuthorizeStakeGrants.py new file mode 100644 index 00000000..91d52808 --- /dev/null +++ b/examples/chain_client/exchange/26_MsgAuthorizeStakeGrants.py @@ -0,0 +1,51 @@ +import asyncio +import os +from decimal import Decimal + +import dotenv + +from pyinjective.async_client import AsyncClient +from pyinjective.core.broadcaster import MsgBroadcasterWithPk +from pyinjective.core.network import Network +from pyinjective.wallet import PrivateKey + + +async def main() -> None: + dotenv.load_dotenv() + configured_private_key = os.getenv("INJECTIVE_PRIVATE_KEY") + + # select network: local, testnet, mainnet + network = Network.testnet() + + # initialize grpc client + client = AsyncClient(network) + await client.initialize_tokens_from_chain_denoms() + composer = await client.composer() + await client.sync_timeout_height() + + message_broadcaster = MsgBroadcasterWithPk.new_using_simulation( + network=network, + private_key=configured_private_key, + ) + + # load account + priv_key = PrivateKey.from_hex(configured_private_key) + pub_key = priv_key.to_public_key() + address = pub_key.to_address() + await client.fetch_account(address.to_acc_bech32()) + + # prepare tx msg + grant_authorization = composer.create_grant_authorization( + grantee="inj1hkhdaj2a2clmq5jq6mspsggqs32vynpk228q3r", + amount=Decimal("1"), + ) + message = composer.msg_authorize_stake_grants(sender=address.to_acc_bech32(), grants=[grant_authorization]) + + # broadcast the transaction + result = await message_broadcaster.broadcast([message]) + print("---Transaction Response---") + print(result) + + +if __name__ == "__main__": + asyncio.get_event_loop().run_until_complete(main()) diff --git a/examples/chain_client/exchange/27_MsgActivateStakeGrant.py b/examples/chain_client/exchange/27_MsgActivateStakeGrant.py new file mode 100644 index 00000000..c0ca5d3b --- /dev/null +++ b/examples/chain_client/exchange/27_MsgActivateStakeGrant.py @@ -0,0 +1,48 @@ +import asyncio +import os + +import dotenv + +from pyinjective.async_client import AsyncClient +from pyinjective.core.broadcaster import MsgBroadcasterWithPk +from pyinjective.core.network import Network +from pyinjective.wallet import PrivateKey + + +async def main() -> None: + dotenv.load_dotenv() + configured_private_key = os.getenv("INJECTIVE_PRIVATE_KEY") + + # select network: local, testnet, mainnet + network = Network.testnet() + + # initialize grpc client + client = AsyncClient(network) + await client.initialize_tokens_from_chain_denoms() + composer = await client.composer() + await client.sync_timeout_height() + + message_broadcaster = MsgBroadcasterWithPk.new_using_simulation( + network=network, + private_key=configured_private_key, + ) + + # load account + priv_key = PrivateKey.from_hex(configured_private_key) + pub_key = priv_key.to_public_key() + address = pub_key.to_address() + await client.fetch_account(address.to_acc_bech32()) + + # prepare tx msg + message = composer.msg_activate_stake_grant( + sender=address.to_acc_bech32(), granter="inj1hkhdaj2a2clmq5jq6mspsggqs32vynpk228q3r" + ) + + # broadcast the transaction + result = await message_broadcaster.broadcast([message]) + print("---Transaction Response---") + print(result) + + +if __name__ == "__main__": + asyncio.get_event_loop().run_until_complete(main()) diff --git a/poetry.lock b/poetry.lock index b1903f1a..9e6d1993 100644 --- a/poetry.lock +++ b/poetry.lock @@ -1,91 +1,103 @@ # This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. +[[package]] +name = "aiohappyeyeballs" +version = "2.3.4" +description = "Happy Eyeballs for asyncio" +optional = false +python-versions = "<4.0,>=3.8" +files = [ + {file = "aiohappyeyeballs-2.3.4-py3-none-any.whl", hash = "sha256:40a16ceffcf1fc9e142fd488123b2e218abc4188cf12ac20c67200e1579baa42"}, + {file = "aiohappyeyeballs-2.3.4.tar.gz", hash = "sha256:7e1ae8399c320a8adec76f6c919ed5ceae6edd4c3672f4d9eae2b27e37c80ff6"}, +] + [[package]] name = "aiohttp" -version = "3.9.5" +version = "3.10.1" description = "Async http client/server framework (asyncio)" optional = false python-versions = ">=3.8" files = [ - {file = "aiohttp-3.9.5-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:fcde4c397f673fdec23e6b05ebf8d4751314fa7c24f93334bf1f1364c1c69ac7"}, - {file = "aiohttp-3.9.5-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:5d6b3f1fabe465e819aed2c421a6743d8debbde79b6a8600739300630a01bf2c"}, - {file = "aiohttp-3.9.5-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:6ae79c1bc12c34082d92bf9422764f799aee4746fd7a392db46b7fd357d4a17a"}, - {file = "aiohttp-3.9.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4d3ebb9e1316ec74277d19c5f482f98cc65a73ccd5430540d6d11682cd857430"}, - {file = "aiohttp-3.9.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:84dabd95154f43a2ea80deffec9cb44d2e301e38a0c9d331cc4aa0166fe28ae3"}, - {file = "aiohttp-3.9.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c8a02fbeca6f63cb1f0475c799679057fc9268b77075ab7cf3f1c600e81dd46b"}, - {file = "aiohttp-3.9.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c26959ca7b75ff768e2776d8055bf9582a6267e24556bb7f7bd29e677932be72"}, - {file = "aiohttp-3.9.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:714d4e5231fed4ba2762ed489b4aec07b2b9953cf4ee31e9871caac895a839c0"}, - {file = "aiohttp-3.9.5-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:e7a6a8354f1b62e15d48e04350f13e726fa08b62c3d7b8401c0a1314f02e3558"}, - {file = "aiohttp-3.9.5-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:c413016880e03e69d166efb5a1a95d40f83d5a3a648d16486592c49ffb76d0db"}, - {file = "aiohttp-3.9.5-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:ff84aeb864e0fac81f676be9f4685f0527b660f1efdc40dcede3c251ef1e867f"}, - {file = "aiohttp-3.9.5-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:ad7f2919d7dac062f24d6f5fe95d401597fbb015a25771f85e692d043c9d7832"}, - {file = "aiohttp-3.9.5-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:702e2c7c187c1a498a4e2b03155d52658fdd6fda882d3d7fbb891a5cf108bb10"}, - {file = "aiohttp-3.9.5-cp310-cp310-win32.whl", hash = "sha256:67c3119f5ddc7261d47163ed86d760ddf0e625cd6246b4ed852e82159617b5fb"}, - {file = "aiohttp-3.9.5-cp310-cp310-win_amd64.whl", hash = "sha256:471f0ef53ccedec9995287f02caf0c068732f026455f07db3f01a46e49d76bbb"}, - {file = "aiohttp-3.9.5-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:e0ae53e33ee7476dd3d1132f932eeb39bf6125083820049d06edcdca4381f342"}, - {file = "aiohttp-3.9.5-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c088c4d70d21f8ca5c0b8b5403fe84a7bc8e024161febdd4ef04575ef35d474d"}, - {file = "aiohttp-3.9.5-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:639d0042b7670222f33b0028de6b4e2fad6451462ce7df2af8aee37dcac55424"}, - {file = "aiohttp-3.9.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f26383adb94da5e7fb388d441bf09c61e5e35f455a3217bfd790c6b6bc64b2ee"}, - {file = "aiohttp-3.9.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:66331d00fb28dc90aa606d9a54304af76b335ae204d1836f65797d6fe27f1ca2"}, - {file = "aiohttp-3.9.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4ff550491f5492ab5ed3533e76b8567f4b37bd2995e780a1f46bca2024223233"}, - {file = "aiohttp-3.9.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f22eb3a6c1080d862befa0a89c380b4dafce29dc6cd56083f630073d102eb595"}, - {file = "aiohttp-3.9.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a81b1143d42b66ffc40a441379387076243ef7b51019204fd3ec36b9f69e77d6"}, - {file = "aiohttp-3.9.5-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:f64fd07515dad67f24b6ea4a66ae2876c01031de91c93075b8093f07c0a2d93d"}, - {file = "aiohttp-3.9.5-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:93e22add827447d2e26d67c9ac0161756007f152fdc5210277d00a85f6c92323"}, - {file = "aiohttp-3.9.5-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:55b39c8684a46e56ef8c8d24faf02de4a2b2ac60d26cee93bc595651ff545de9"}, - {file = "aiohttp-3.9.5-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:4715a9b778f4293b9f8ae7a0a7cef9829f02ff8d6277a39d7f40565c737d3771"}, - {file = "aiohttp-3.9.5-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:afc52b8d969eff14e069a710057d15ab9ac17cd4b6753042c407dcea0e40bf75"}, - {file = "aiohttp-3.9.5-cp311-cp311-win32.whl", hash = "sha256:b3df71da99c98534be076196791adca8819761f0bf6e08e07fd7da25127150d6"}, - {file = "aiohttp-3.9.5-cp311-cp311-win_amd64.whl", hash = "sha256:88e311d98cc0bf45b62fc46c66753a83445f5ab20038bcc1b8a1cc05666f428a"}, - {file = "aiohttp-3.9.5-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:c7a4b7a6cf5b6eb11e109a9755fd4fda7d57395f8c575e166d363b9fc3ec4678"}, - {file = "aiohttp-3.9.5-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:0a158704edf0abcac8ac371fbb54044f3270bdbc93e254a82b6c82be1ef08f3c"}, - {file = "aiohttp-3.9.5-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:d153f652a687a8e95ad367a86a61e8d53d528b0530ef382ec5aaf533140ed00f"}, - {file = "aiohttp-3.9.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:82a6a97d9771cb48ae16979c3a3a9a18b600a8505b1115cfe354dfb2054468b4"}, - {file = "aiohttp-3.9.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:60cdbd56f4cad9f69c35eaac0fbbdf1f77b0ff9456cebd4902f3dd1cf096464c"}, - {file = "aiohttp-3.9.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8676e8fd73141ded15ea586de0b7cda1542960a7b9ad89b2b06428e97125d4fa"}, - {file = "aiohttp-3.9.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:da00da442a0e31f1c69d26d224e1efd3a1ca5bcbf210978a2ca7426dfcae9f58"}, - {file = "aiohttp-3.9.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:18f634d540dd099c262e9f887c8bbacc959847cfe5da7a0e2e1cf3f14dbf2daf"}, - {file = "aiohttp-3.9.5-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:320e8618eda64e19d11bdb3bd04ccc0a816c17eaecb7e4945d01deee2a22f95f"}, - {file = "aiohttp-3.9.5-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:2faa61a904b83142747fc6a6d7ad8fccff898c849123030f8e75d5d967fd4a81"}, - {file = "aiohttp-3.9.5-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:8c64a6dc3fe5db7b1b4d2b5cb84c4f677768bdc340611eca673afb7cf416ef5a"}, - {file = "aiohttp-3.9.5-cp312-cp312-musllinux_1_1_s390x.whl", hash = "sha256:393c7aba2b55559ef7ab791c94b44f7482a07bf7640d17b341b79081f5e5cd1a"}, - {file = "aiohttp-3.9.5-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:c671dc117c2c21a1ca10c116cfcd6e3e44da7fcde37bf83b2be485ab377b25da"}, - {file = "aiohttp-3.9.5-cp312-cp312-win32.whl", hash = "sha256:5a7ee16aab26e76add4afc45e8f8206c95d1d75540f1039b84a03c3b3800dd59"}, - {file = "aiohttp-3.9.5-cp312-cp312-win_amd64.whl", hash = "sha256:5ca51eadbd67045396bc92a4345d1790b7301c14d1848feaac1d6a6c9289e888"}, - {file = "aiohttp-3.9.5-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:694d828b5c41255e54bc2dddb51a9f5150b4eefa9886e38b52605a05d96566e8"}, - {file = "aiohttp-3.9.5-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:0605cc2c0088fcaae79f01c913a38611ad09ba68ff482402d3410bf59039bfb8"}, - {file = "aiohttp-3.9.5-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:4558e5012ee03d2638c681e156461d37b7a113fe13970d438d95d10173d25f78"}, - {file = "aiohttp-3.9.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9dbc053ac75ccc63dc3a3cc547b98c7258ec35a215a92bd9f983e0aac95d3d5b"}, - {file = "aiohttp-3.9.5-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4109adee842b90671f1b689901b948f347325045c15f46b39797ae1bf17019de"}, - {file = "aiohttp-3.9.5-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a6ea1a5b409a85477fd8e5ee6ad8f0e40bf2844c270955e09360418cfd09abac"}, - {file = "aiohttp-3.9.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f3c2890ca8c59ee683fd09adf32321a40fe1cf164e3387799efb2acebf090c11"}, - {file = "aiohttp-3.9.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3916c8692dbd9d55c523374a3b8213e628424d19116ac4308e434dbf6d95bbdd"}, - {file = "aiohttp-3.9.5-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:8d1964eb7617907c792ca00b341b5ec3e01ae8c280825deadbbd678447b127e1"}, - {file = "aiohttp-3.9.5-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:d5ab8e1f6bee051a4bf6195e38a5c13e5e161cb7bad83d8854524798bd9fcd6e"}, - {file = "aiohttp-3.9.5-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:52c27110f3862a1afbcb2af4281fc9fdc40327fa286c4625dfee247c3ba90156"}, - {file = "aiohttp-3.9.5-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:7f64cbd44443e80094309875d4f9c71d0401e966d191c3d469cde4642bc2e031"}, - {file = "aiohttp-3.9.5-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:8b4f72fbb66279624bfe83fd5eb6aea0022dad8eec62b71e7bf63ee1caadeafe"}, - {file = "aiohttp-3.9.5-cp38-cp38-win32.whl", hash = "sha256:6380c039ec52866c06d69b5c7aad5478b24ed11696f0e72f6b807cfb261453da"}, - {file = "aiohttp-3.9.5-cp38-cp38-win_amd64.whl", hash = "sha256:da22dab31d7180f8c3ac7c7635f3bcd53808f374f6aa333fe0b0b9e14b01f91a"}, - {file = "aiohttp-3.9.5-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:1732102949ff6087589408d76cd6dea656b93c896b011ecafff418c9661dc4ed"}, - {file = "aiohttp-3.9.5-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:c6021d296318cb6f9414b48e6a439a7f5d1f665464da507e8ff640848ee2a58a"}, - {file = "aiohttp-3.9.5-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:239f975589a944eeb1bad26b8b140a59a3a320067fb3cd10b75c3092405a1372"}, - {file = "aiohttp-3.9.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3b7b30258348082826d274504fbc7c849959f1989d86c29bc355107accec6cfb"}, - {file = "aiohttp-3.9.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:cd2adf5c87ff6d8b277814a28a535b59e20bfea40a101db6b3bdca7e9926bc24"}, - {file = "aiohttp-3.9.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e9a3d838441bebcf5cf442700e3963f58b5c33f015341f9ea86dcd7d503c07e2"}, - {file = "aiohttp-3.9.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9e3a1ae66e3d0c17cf65c08968a5ee3180c5a95920ec2731f53343fac9bad106"}, - {file = "aiohttp-3.9.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9c69e77370cce2d6df5d12b4e12bdcca60c47ba13d1cbbc8645dd005a20b738b"}, - {file = "aiohttp-3.9.5-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:0cbf56238f4bbf49dab8c2dc2e6b1b68502b1e88d335bea59b3f5b9f4c001475"}, - {file = "aiohttp-3.9.5-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:d1469f228cd9ffddd396d9948b8c9cd8022b6d1bf1e40c6f25b0fb90b4f893ed"}, - {file = "aiohttp-3.9.5-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:45731330e754f5811c314901cebdf19dd776a44b31927fa4b4dbecab9e457b0c"}, - {file = "aiohttp-3.9.5-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:3fcb4046d2904378e3aeea1df51f697b0467f2aac55d232c87ba162709478c46"}, - {file = "aiohttp-3.9.5-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:8cf142aa6c1a751fcb364158fd710b8a9be874b81889c2bd13aa8893197455e2"}, - {file = "aiohttp-3.9.5-cp39-cp39-win32.whl", hash = "sha256:7b179eea70833c8dee51ec42f3b4097bd6370892fa93f510f76762105568cf09"}, - {file = "aiohttp-3.9.5-cp39-cp39-win_amd64.whl", hash = "sha256:38d80498e2e169bc61418ff36170e0aad0cd268da8b38a17c4cf29d254a8b3f1"}, - {file = "aiohttp-3.9.5.tar.gz", hash = "sha256:edea7d15772ceeb29db4aff55e482d4bcfb6ae160ce144f2682de02f6d693551"}, + {file = "aiohttp-3.10.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:47b4c2412960e64d97258f40616efddaebcb34ff664c8a972119ed38fac2a62c"}, + {file = "aiohttp-3.10.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e7dbf637f87dd315fa1f36aaed8afa929ee2c607454fb7791e74c88a0d94da59"}, + {file = "aiohttp-3.10.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:c8fb76214b5b739ce59e2236a6489d9dc3483649cfd6f563dbf5d8e40dbdd57d"}, + {file = "aiohttp-3.10.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c577cdcf8f92862363b3d598d971c6a84ed8f0bf824d4cc1ce70c2fb02acb4a"}, + {file = "aiohttp-3.10.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:777e23609899cb230ad2642b4bdf1008890f84968be78de29099a8a86f10b261"}, + {file = "aiohttp-3.10.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b07286a1090483799599a2f72f76ac396993da31f6e08efedb59f40876c144fa"}, + {file = "aiohttp-3.10.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b9db600a86414a9a653e3c1c7f6a2f6a1894ab8f83d11505247bd1b90ad57157"}, + {file = "aiohttp-3.10.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:01c3f1eb280008e51965a8d160a108c333136f4a39d46f516c64d2aa2e6a53f2"}, + {file = "aiohttp-3.10.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:f5dd109a925fee4c9ac3f6a094900461a2712df41745f5d04782ebcbe6479ccb"}, + {file = "aiohttp-3.10.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:8c81ff4afffef9b1186639506d70ea90888218f5ddfff03870e74ec80bb59970"}, + {file = "aiohttp-3.10.1-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:2a384dfbe8bfebd203b778a30a712886d147c61943675f4719b56725a8bbe803"}, + {file = "aiohttp-3.10.1-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:b9fb6508893dc31cfcbb8191ef35abd79751db1d6871b3e2caee83959b4d91eb"}, + {file = "aiohttp-3.10.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:88596384c3bec644a96ae46287bb646d6a23fa6014afe3799156aef42669c6bd"}, + {file = "aiohttp-3.10.1-cp310-cp310-win32.whl", hash = "sha256:68164d43c580c2e8bf8e0eb4960142919d304052ccab92be10250a3a33b53268"}, + {file = "aiohttp-3.10.1-cp310-cp310-win_amd64.whl", hash = "sha256:d6bbe2c90c10382ca96df33b56e2060404a4f0f88673e1e84b44c8952517e5f3"}, + {file = "aiohttp-3.10.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:f6979b4f20d3e557a867da9d9227de4c156fcdcb348a5848e3e6190fd7feb972"}, + {file = "aiohttp-3.10.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:03c0c380c83f8a8d4416224aafb88d378376d6f4cadebb56b060688251055cd4"}, + {file = "aiohttp-3.10.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:1c2b104e81b3c3deba7e6f5bc1a9a0e9161c380530479970766a6655b8b77c7c"}, + {file = "aiohttp-3.10.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b023b68c61ab0cd48bd38416b421464a62c381e32b9dc7b4bdfa2905807452a4"}, + {file = "aiohttp-3.10.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1a07c76a82390506ca0eabf57c0540cf5a60c993c442928fe4928472c4c6e5e6"}, + {file = "aiohttp-3.10.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:41d8dab8c64ded1edf117d2a64f353efa096c52b853ef461aebd49abae979f16"}, + {file = "aiohttp-3.10.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:615348fab1a9ef7d0960a905e83ad39051ae9cb0d2837da739b5d3a7671e497a"}, + {file = "aiohttp-3.10.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:256ee6044214ee9d66d531bb374f065ee94e60667d6bbeaa25ca111fc3997158"}, + {file = "aiohttp-3.10.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:b7d5bb926805022508b7ddeaad957f1fce7a8d77532068d7bdb431056dc630cd"}, + {file = "aiohttp-3.10.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:028faf71b338f069077af6315ad54281612705d68889f5d914318cbc2aab0d50"}, + {file = "aiohttp-3.10.1-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:5c12310d153b27aa630750be44e79313acc4e864c421eb7d2bc6fa3429c41bf8"}, + {file = "aiohttp-3.10.1-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:de1a91d5faded9054957ed0a9e01b9d632109341942fc123947ced358c5d9009"}, + {file = "aiohttp-3.10.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:9c186b270979fb1dee3ababe2d12fb243ed7da08b30abc83ebac3a928a4ddb15"}, + {file = "aiohttp-3.10.1-cp311-cp311-win32.whl", hash = "sha256:4a9ce70f5e00380377aac0e568abd075266ff992be2e271765f7b35d228a990c"}, + {file = "aiohttp-3.10.1-cp311-cp311-win_amd64.whl", hash = "sha256:a77c79bac8d908d839d32c212aef2354d2246eb9deb3e2cb01ffa83fb7a6ea5d"}, + {file = "aiohttp-3.10.1-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:2212296cdb63b092e295c3e4b4b442e7b7eb41e8a30d0f53c16d5962efed395d"}, + {file = "aiohttp-3.10.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:4dcb127ca3eb0a61205818a606393cbb60d93b7afb9accd2fd1e9081cc533144"}, + {file = "aiohttp-3.10.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:cb8b79a65332e1a426ccb6290ce0409e1dc16b4daac1cc5761e059127fa3d134"}, + {file = "aiohttp-3.10.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:68cc24f707ed9cb961f6ee04020ca01de2c89b2811f3cf3361dc7c96a14bfbcc"}, + {file = "aiohttp-3.10.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9cb54f5725b4b37af12edf6c9e834df59258c82c15a244daa521a065fbb11717"}, + {file = "aiohttp-3.10.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:51d03e948e53b3639ce4d438f3d1d8202898ec6655cadcc09ec99229d4adc2a9"}, + {file = "aiohttp-3.10.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:786299d719eb5d868f161aeec56d589396b053925b7e0ce36e983d30d0a3e55c"}, + {file = "aiohttp-3.10.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:abda4009a30d51d3f06f36bc7411a62b3e647fa6cc935ef667e3e3d3a7dd09b1"}, + {file = "aiohttp-3.10.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:67f7639424c313125213954e93a6229d3a1d386855d70c292a12628f600c7150"}, + {file = "aiohttp-3.10.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:8e5a26d7aac4c0d8414a347da162696eea0629fdce939ada6aedf951abb1d745"}, + {file = "aiohttp-3.10.1-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:120548d89f14b76a041088b582454d89389370632ee12bf39d919cc5c561d1ca"}, + {file = "aiohttp-3.10.1-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:f5293726943bdcea24715b121d8c4ae12581441d22623b0e6ab12d07ce85f9c4"}, + {file = "aiohttp-3.10.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:1f8605e573ed6c44ec689d94544b2c4bb1390aaa723a8b5a2cc0a5a485987a68"}, + {file = "aiohttp-3.10.1-cp312-cp312-win32.whl", hash = "sha256:e7168782621be4448d90169a60c8b37e9b0926b3b79b6097bc180c0a8a119e73"}, + {file = "aiohttp-3.10.1-cp312-cp312-win_amd64.whl", hash = "sha256:8fbf8c0ded367c5c8eaf585f85ca8dd85ff4d5b73fb8fe1e6ac9e1b5e62e11f7"}, + {file = "aiohttp-3.10.1-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:54b7f4a20d7cc6bfa4438abbde069d417bb7a119f870975f78a2b99890226d55"}, + {file = "aiohttp-3.10.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2fa643ca990323db68911b92f3f7a0ca9ae300ae340d0235de87c523601e58d9"}, + {file = "aiohttp-3.10.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:d8311d0d690487359fe2247ec5d2cac9946e70d50dced8c01ce9e72341c21151"}, + {file = "aiohttp-3.10.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:222821c60b8f6a64c5908cb43d69c0ee978a1188f6a8433d4757d39231b42cdb"}, + {file = "aiohttp-3.10.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e7b55d9ede66af7feb6de87ff277e0ccf6d51c7db74cc39337fe3a0e31b5872d"}, + {file = "aiohttp-3.10.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5a95151a5567b3b00368e99e9c5334a919514f60888a6b6d2054fea5e66e527e"}, + {file = "aiohttp-3.10.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4e9e9171d2fe6bfd9d3838a6fe63b1e91b55e0bf726c16edf265536e4eafed19"}, + {file = "aiohttp-3.10.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a57e73f9523e980f6101dc9a83adcd7ac0006ea8bf7937ca3870391c7bb4f8ff"}, + {file = "aiohttp-3.10.1-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:0df51a3d70a2bfbb9c921619f68d6d02591f24f10e9c76de6f3388c89ed01de6"}, + {file = "aiohttp-3.10.1-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:b0de63ff0307eac3961b4af74382d30220d4813f36b7aaaf57f063a1243b4214"}, + {file = "aiohttp-3.10.1-cp38-cp38-musllinux_1_2_ppc64le.whl", hash = "sha256:8db9b749f589b5af8e4993623dbda6716b2b7a5fcb0fa2277bf3ce4b278c7059"}, + {file = "aiohttp-3.10.1-cp38-cp38-musllinux_1_2_s390x.whl", hash = "sha256:6b14c19172eb53b63931d3e62a9749d6519f7c121149493e6eefca055fcdb352"}, + {file = "aiohttp-3.10.1-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:5cd57ad998e3038aa87c38fe85c99ed728001bf5dde8eca121cadee06ee3f637"}, + {file = "aiohttp-3.10.1-cp38-cp38-win32.whl", hash = "sha256:df31641e3f02b77eb3c5fb63c0508bee0fc067cf153da0e002ebbb0db0b6d91a"}, + {file = "aiohttp-3.10.1-cp38-cp38-win_amd64.whl", hash = "sha256:93094eba50bc2ad4c40ff4997ead1fdcd41536116f2e7d6cfec9596a8ecb3615"}, + {file = "aiohttp-3.10.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:440954ddc6b77257e67170d57b1026aa9545275c33312357472504eef7b4cc0b"}, + {file = "aiohttp-3.10.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:f9f8beed277488a52ee2b459b23c4135e54d6a819eaba2e120e57311015b58e9"}, + {file = "aiohttp-3.10.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:d8a8221a63602008550022aa3a4152ca357e1dde7ab3dd1da7e1925050b56863"}, + {file = "aiohttp-3.10.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a702bd3663b5cbf3916e84bf332400d24cdb18399f0877ca6b313ce6c08bfb43"}, + {file = "aiohttp-3.10.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1988b370536eb14f0ce7f3a4a5b422ab64c4e255b3f5d7752c5f583dc8c967fc"}, + {file = "aiohttp-3.10.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7ccf1f0a304352c891d124ac1a9dea59b14b2abed1704aaa7689fc90ef9c5be1"}, + {file = "aiohttp-3.10.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc3ea6ef2a83edad84bbdb5d96e22f587b67c68922cd7b6f9d8f24865e655bcf"}, + {file = "aiohttp-3.10.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:89b47c125ab07f0831803b88aeb12b04c564d5f07a1c1a225d4eb4d2f26e8b5e"}, + {file = "aiohttp-3.10.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:21778552ef3d44aac3278cc6f6d13a6423504fa5f09f2df34bfe489ed9ded7f5"}, + {file = "aiohttp-3.10.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:bde0693073fd5e542e46ea100aa6c1a5d36282dbdbad85b1c3365d5421490a92"}, + {file = "aiohttp-3.10.1-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:bf66149bb348d8e713f3a8e0b4f5b952094c2948c408e1cfef03b49e86745d60"}, + {file = "aiohttp-3.10.1-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:587237571a85716d6f71f60d103416c9df7d5acb55d96d3d3ced65f39bff9c0c"}, + {file = "aiohttp-3.10.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:bfe33cba6e127d0b5b417623c9aa621f0a69f304742acdca929a9fdab4593693"}, + {file = "aiohttp-3.10.1-cp39-cp39-win32.whl", hash = "sha256:9fbff00646cf8211b330690eb2fd64b23e1ce5b63a342436c1d1d6951d53d8dd"}, + {file = "aiohttp-3.10.1-cp39-cp39-win_amd64.whl", hash = "sha256:5951c328f9ac42d7bce7a6ded535879bc9ae13032818d036749631fa27777905"}, + {file = "aiohttp-3.10.1.tar.gz", hash = "sha256:8b0d058e4e425d3b45e8ec70d49b402f4d6b21041e674798b1f91ba027c73f28"}, ] [package.dependencies] +aiohappyeyeballs = ">=2.3.0" aiosignal = ">=1.1.2" async-timeout = {version = ">=4.0,<5.0", markers = "python_version < \"3.11\""} attrs = ">=17.3.0" @@ -94,7 +106,7 @@ multidict = ">=4.5,<7.0" yarl = ">=1.0,<2.0" [package.extras] -speedups = ["Brotli", "aiodns", "brotlicffi"] +speedups = ["Brotli", "aiodns (>=3.2.0)", "brotlicffi"] [[package]] name = "aioresponses" @@ -148,22 +160,22 @@ files = [ [[package]] name = "attrs" -version = "23.2.0" +version = "24.2.0" description = "Classes Without Boilerplate" optional = false python-versions = ">=3.7" files = [ - {file = "attrs-23.2.0-py3-none-any.whl", hash = "sha256:99b87a485a5820b23b879f04c2305b44b951b502fd64be915879d77a7e8fc6f1"}, - {file = "attrs-23.2.0.tar.gz", hash = "sha256:935dc3b529c262f6cf76e50877d35a4bd3c1de194fd41f47a2b7ae8f19971f30"}, + {file = "attrs-24.2.0-py3-none-any.whl", hash = "sha256:81921eb96de3191c8258c199618104dd27ac608d9366f5e35d011eae1867ede2"}, + {file = "attrs-24.2.0.tar.gz", hash = "sha256:5cfb1b9148b5b086569baec03f20d7b6bf3bcacc9a42bebf87ffaaca362f6346"}, ] [package.extras] -cov = ["attrs[tests]", "coverage[toml] (>=5.3)"] -dev = ["attrs[tests]", "pre-commit"] -docs = ["furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier", "zope-interface"] -tests = ["attrs[tests-no-zope]", "zope-interface"] -tests-mypy = ["mypy (>=1.6)", "pytest-mypy-plugins"] -tests-no-zope = ["attrs[tests-mypy]", "cloudpickle", "hypothesis", "pympler", "pytest (>=4.3.0)", "pytest-xdist[psutil]"] +benchmark = ["cloudpickle", "hypothesis", "mypy (>=1.11.1)", "pympler", "pytest (>=4.3.0)", "pytest-codspeed", "pytest-mypy-plugins", "pytest-xdist[psutil]"] +cov = ["cloudpickle", "coverage[toml] (>=5.3)", "hypothesis", "mypy (>=1.11.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] +dev = ["cloudpickle", "hypothesis", "mypy (>=1.11.1)", "pre-commit", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] +docs = ["cogapp", "furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier (<24.7)"] +tests = ["cloudpickle", "hypothesis", "mypy (>=1.11.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] +tests-mypy = ["mypy (>=1.11.1)", "pytest-mypy-plugins"] [[package]] name = "base58" @@ -395,63 +407,78 @@ files = [ [[package]] name = "cffi" -version = "1.16.0" +version = "1.17.0" description = "Foreign Function Interface for Python calling C code." optional = false python-versions = ">=3.8" files = [ - {file = "cffi-1.16.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:6b3d6606d369fc1da4fd8c357d026317fbb9c9b75d36dc16e90e84c26854b088"}, - {file = "cffi-1.16.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:ac0f5edd2360eea2f1daa9e26a41db02dd4b0451b48f7c318e217ee092a213e9"}, - {file = "cffi-1.16.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7e61e3e4fa664a8588aa25c883eab612a188c725755afff6289454d6362b9673"}, - {file = "cffi-1.16.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a72e8961a86d19bdb45851d8f1f08b041ea37d2bd8d4fd19903bc3083d80c896"}, - {file = "cffi-1.16.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5b50bf3f55561dac5438f8e70bfcdfd74543fd60df5fa5f62d94e5867deca684"}, - {file = "cffi-1.16.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7651c50c8c5ef7bdb41108b7b8c5a83013bfaa8a935590c5d74627c047a583c7"}, - {file = "cffi-1.16.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e4108df7fe9b707191e55f33efbcb2d81928e10cea45527879a4749cbe472614"}, - {file = "cffi-1.16.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:32c68ef735dbe5857c810328cb2481e24722a59a2003018885514d4c09af9743"}, - {file = "cffi-1.16.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:673739cb539f8cdaa07d92d02efa93c9ccf87e345b9a0b556e3ecc666718468d"}, - {file = "cffi-1.16.0-cp310-cp310-win32.whl", hash = "sha256:9f90389693731ff1f659e55c7d1640e2ec43ff725cc61b04b2f9c6d8d017df6a"}, - {file = "cffi-1.16.0-cp310-cp310-win_amd64.whl", hash = "sha256:e6024675e67af929088fda399b2094574609396b1decb609c55fa58b028a32a1"}, - {file = "cffi-1.16.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:b84834d0cf97e7d27dd5b7f3aca7b6e9263c56308ab9dc8aae9784abb774d404"}, - {file = "cffi-1.16.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:1b8ebc27c014c59692bb2664c7d13ce7a6e9a629be20e54e7271fa696ff2b417"}, - {file = "cffi-1.16.0-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ee07e47c12890ef248766a6e55bd38ebfb2bb8edd4142d56db91b21ea68b7627"}, - {file = "cffi-1.16.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d8a9d3ebe49f084ad71f9269834ceccbf398253c9fac910c4fd7053ff1386936"}, - {file = "cffi-1.16.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e70f54f1796669ef691ca07d046cd81a29cb4deb1e5f942003f401c0c4a2695d"}, - {file = "cffi-1.16.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5bf44d66cdf9e893637896c7faa22298baebcd18d1ddb6d2626a6e39793a1d56"}, - {file = "cffi-1.16.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7b78010e7b97fef4bee1e896df8a4bbb6712b7f05b7ef630f9d1da00f6444d2e"}, - {file = "cffi-1.16.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:c6a164aa47843fb1b01e941d385aab7215563bb8816d80ff3a363a9f8448a8dc"}, - {file = "cffi-1.16.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e09f3ff613345df5e8c3667da1d918f9149bd623cd9070c983c013792a9a62eb"}, - {file = "cffi-1.16.0-cp311-cp311-win32.whl", hash = "sha256:2c56b361916f390cd758a57f2e16233eb4f64bcbeee88a4881ea90fca14dc6ab"}, - {file = "cffi-1.16.0-cp311-cp311-win_amd64.whl", hash = "sha256:db8e577c19c0fda0beb7e0d4e09e0ba74b1e4c092e0e40bfa12fe05b6f6d75ba"}, - {file = "cffi-1.16.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:fa3a0128b152627161ce47201262d3140edb5a5c3da88d73a1b790a959126956"}, - {file = "cffi-1.16.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:68e7c44931cc171c54ccb702482e9fc723192e88d25a0e133edd7aff8fcd1f6e"}, - {file = "cffi-1.16.0-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:abd808f9c129ba2beda4cfc53bde801e5bcf9d6e0f22f095e45327c038bfe68e"}, - {file = "cffi-1.16.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:88e2b3c14bdb32e440be531ade29d3c50a1a59cd4e51b1dd8b0865c54ea5d2e2"}, - {file = "cffi-1.16.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:fcc8eb6d5902bb1cf6dc4f187ee3ea80a1eba0a89aba40a5cb20a5087d961357"}, - {file = "cffi-1.16.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b7be2d771cdba2942e13215c4e340bfd76398e9227ad10402a8767ab1865d2e6"}, - {file = "cffi-1.16.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e715596e683d2ce000574bae5d07bd522c781a822866c20495e52520564f0969"}, - {file = "cffi-1.16.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:2d92b25dbf6cae33f65005baf472d2c245c050b1ce709cc4588cdcdd5495b520"}, - {file = "cffi-1.16.0-cp312-cp312-win32.whl", hash = "sha256:b2ca4e77f9f47c55c194982e10f058db063937845bb2b7a86c84a6cfe0aefa8b"}, - {file = "cffi-1.16.0-cp312-cp312-win_amd64.whl", hash = "sha256:68678abf380b42ce21a5f2abde8efee05c114c2fdb2e9eef2efdb0257fba1235"}, - {file = "cffi-1.16.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:0c9ef6ff37e974b73c25eecc13952c55bceed9112be2d9d938ded8e856138bcc"}, - {file = "cffi-1.16.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a09582f178759ee8128d9270cd1344154fd473bb77d94ce0aeb2a93ebf0feaf0"}, - {file = "cffi-1.16.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e760191dd42581e023a68b758769e2da259b5d52e3103c6060ddc02c9edb8d7b"}, - {file = "cffi-1.16.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:80876338e19c951fdfed6198e70bc88f1c9758b94578d5a7c4c91a87af3cf31c"}, - {file = "cffi-1.16.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a6a14b17d7e17fa0d207ac08642c8820f84f25ce17a442fd15e27ea18d67c59b"}, - {file = "cffi-1.16.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6602bc8dc6f3a9e02b6c22c4fc1e47aa50f8f8e6d3f78a5e16ac33ef5fefa324"}, - {file = "cffi-1.16.0-cp38-cp38-win32.whl", hash = "sha256:131fd094d1065b19540c3d72594260f118b231090295d8c34e19a7bbcf2e860a"}, - {file = "cffi-1.16.0-cp38-cp38-win_amd64.whl", hash = "sha256:31d13b0f99e0836b7ff893d37af07366ebc90b678b6664c955b54561fc36ef36"}, - {file = "cffi-1.16.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:582215a0e9adbe0e379761260553ba11c58943e4bbe9c36430c4ca6ac74b15ed"}, - {file = "cffi-1.16.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:b29ebffcf550f9da55bec9e02ad430c992a87e5f512cd63388abb76f1036d8d2"}, - {file = "cffi-1.16.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:dc9b18bf40cc75f66f40a7379f6a9513244fe33c0e8aa72e2d56b0196a7ef872"}, - {file = "cffi-1.16.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9cb4a35b3642fc5c005a6755a5d17c6c8b6bcb6981baf81cea8bfbc8903e8ba8"}, - {file = "cffi-1.16.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b86851a328eedc692acf81fb05444bdf1891747c25af7529e39ddafaf68a4f3f"}, - {file = "cffi-1.16.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c0f31130ebc2d37cdd8e44605fb5fa7ad59049298b3f745c74fa74c62fbfcfc4"}, - {file = "cffi-1.16.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8f8e709127c6c77446a8c0a8c8bf3c8ee706a06cd44b1e827c3e6a2ee6b8c098"}, - {file = "cffi-1.16.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:748dcd1e3d3d7cd5443ef03ce8685043294ad6bd7c02a38d1bd367cfd968e000"}, - {file = "cffi-1.16.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:8895613bcc094d4a1b2dbe179d88d7fb4a15cee43c052e8885783fac397d91fe"}, - {file = "cffi-1.16.0-cp39-cp39-win32.whl", hash = "sha256:ed86a35631f7bfbb28e108dd96773b9d5a6ce4811cf6ea468bb6a359b256b1e4"}, - {file = "cffi-1.16.0-cp39-cp39-win_amd64.whl", hash = "sha256:3686dffb02459559c74dd3d81748269ffb0eb027c39a6fc99502de37d501faa8"}, - {file = "cffi-1.16.0.tar.gz", hash = "sha256:bcb3ef43e58665bbda2fb198698fcae6776483e0c4a631aa5647806c25e02cc0"}, + {file = "cffi-1.17.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:f9338cc05451f1942d0d8203ec2c346c830f8e86469903d5126c1f0a13a2bcbb"}, + {file = "cffi-1.17.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a0ce71725cacc9ebf839630772b07eeec220cbb5f03be1399e0457a1464f8e1a"}, + {file = "cffi-1.17.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c815270206f983309915a6844fe994b2fa47e5d05c4c4cef267c3b30e34dbe42"}, + {file = "cffi-1.17.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d6bdcd415ba87846fd317bee0774e412e8792832e7805938987e4ede1d13046d"}, + {file = "cffi-1.17.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8a98748ed1a1df4ee1d6f927e151ed6c1a09d5ec21684de879c7ea6aa96f58f2"}, + {file = "cffi-1.17.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0a048d4f6630113e54bb4b77e315e1ba32a5a31512c31a273807d0027a7e69ab"}, + {file = "cffi-1.17.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:24aa705a5f5bd3a8bcfa4d123f03413de5d86e497435693b638cbffb7d5d8a1b"}, + {file = "cffi-1.17.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:856bf0924d24e7f93b8aee12a3a1095c34085600aa805693fb7f5d1962393206"}, + {file = "cffi-1.17.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:4304d4416ff032ed50ad6bb87416d802e67139e31c0bde4628f36a47a3164bfa"}, + {file = "cffi-1.17.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:331ad15c39c9fe9186ceaf87203a9ecf5ae0ba2538c9e898e3a6967e8ad3db6f"}, + {file = "cffi-1.17.0-cp310-cp310-win32.whl", hash = "sha256:669b29a9eca6146465cc574659058ed949748f0809a2582d1f1a324eb91054dc"}, + {file = "cffi-1.17.0-cp310-cp310-win_amd64.whl", hash = "sha256:48b389b1fd5144603d61d752afd7167dfd205973a43151ae5045b35793232aa2"}, + {file = "cffi-1.17.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c5d97162c196ce54af6700949ddf9409e9833ef1003b4741c2b39ef46f1d9720"}, + {file = "cffi-1.17.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:5ba5c243f4004c750836f81606a9fcb7841f8874ad8f3bf204ff5e56332b72b9"}, + {file = "cffi-1.17.0-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:bb9333f58fc3a2296fb1d54576138d4cf5d496a2cc118422bd77835e6ae0b9cb"}, + {file = "cffi-1.17.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:435a22d00ec7d7ea533db494da8581b05977f9c37338c80bc86314bec2619424"}, + {file = "cffi-1.17.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d1df34588123fcc88c872f5acb6f74ae59e9d182a2707097f9e28275ec26a12d"}, + {file = "cffi-1.17.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:df8bb0010fdd0a743b7542589223a2816bdde4d94bb5ad67884348fa2c1c67e8"}, + {file = "cffi-1.17.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a8b5b9712783415695663bd463990e2f00c6750562e6ad1d28e072a611c5f2a6"}, + {file = "cffi-1.17.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:ffef8fd58a36fb5f1196919638f73dd3ae0db1a878982b27a9a5a176ede4ba91"}, + {file = "cffi-1.17.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:4e67d26532bfd8b7f7c05d5a766d6f437b362c1bf203a3a5ce3593a645e870b8"}, + {file = "cffi-1.17.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:45f7cd36186db767d803b1473b3c659d57a23b5fa491ad83c6d40f2af58e4dbb"}, + {file = "cffi-1.17.0-cp311-cp311-win32.whl", hash = "sha256:a9015f5b8af1bb6837a3fcb0cdf3b874fe3385ff6274e8b7925d81ccaec3c5c9"}, + {file = "cffi-1.17.0-cp311-cp311-win_amd64.whl", hash = "sha256:b50aaac7d05c2c26dfd50c3321199f019ba76bb650e346a6ef3616306eed67b0"}, + {file = "cffi-1.17.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:aec510255ce690d240f7cb23d7114f6b351c733a74c279a84def763660a2c3bc"}, + {file = "cffi-1.17.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:2770bb0d5e3cc0e31e7318db06efcbcdb7b31bcb1a70086d3177692a02256f59"}, + {file = "cffi-1.17.0-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:db9a30ec064129d605d0f1aedc93e00894b9334ec74ba9c6bdd08147434b33eb"}, + {file = "cffi-1.17.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a47eef975d2b8b721775a0fa286f50eab535b9d56c70a6e62842134cf7841195"}, + {file = "cffi-1.17.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f3e0992f23bbb0be00a921eae5363329253c3b86287db27092461c887b791e5e"}, + {file = "cffi-1.17.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6107e445faf057c118d5050560695e46d272e5301feffda3c41849641222a828"}, + {file = "cffi-1.17.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eb862356ee9391dc5a0b3cbc00f416b48c1b9a52d252d898e5b7696a5f9fe150"}, + {file = "cffi-1.17.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:c1c13185b90bbd3f8b5963cd8ce7ad4ff441924c31e23c975cb150e27c2bf67a"}, + {file = "cffi-1.17.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:17c6d6d3260c7f2d94f657e6872591fe8733872a86ed1345bda872cfc8c74885"}, + {file = "cffi-1.17.0-cp312-cp312-win32.whl", hash = "sha256:c3b8bd3133cd50f6b637bb4322822c94c5ce4bf0d724ed5ae70afce62187c492"}, + {file = "cffi-1.17.0-cp312-cp312-win_amd64.whl", hash = "sha256:dca802c8db0720ce1c49cce1149ff7b06e91ba15fa84b1d59144fef1a1bc7ac2"}, + {file = "cffi-1.17.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:6ce01337d23884b21c03869d2f68c5523d43174d4fc405490eb0091057943118"}, + {file = "cffi-1.17.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:cab2eba3830bf4f6d91e2d6718e0e1c14a2f5ad1af68a89d24ace0c6b17cced7"}, + {file = "cffi-1.17.0-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:14b9cbc8f7ac98a739558eb86fabc283d4d564dafed50216e7f7ee62d0d25377"}, + {file = "cffi-1.17.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b00e7bcd71caa0282cbe3c90966f738e2db91e64092a877c3ff7f19a1628fdcb"}, + {file = "cffi-1.17.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:41f4915e09218744d8bae14759f983e466ab69b178de38066f7579892ff2a555"}, + {file = "cffi-1.17.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e4760a68cab57bfaa628938e9c2971137e05ce48e762a9cb53b76c9b569f1204"}, + {file = "cffi-1.17.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:011aff3524d578a9412c8b3cfaa50f2c0bd78e03eb7af7aa5e0df59b158efb2f"}, + {file = "cffi-1.17.0-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:a003ac9edc22d99ae1286b0875c460351f4e101f8c9d9d2576e78d7e048f64e0"}, + {file = "cffi-1.17.0-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:ef9528915df81b8f4c7612b19b8628214c65c9b7f74db2e34a646a0a2a0da2d4"}, + {file = "cffi-1.17.0-cp313-cp313-win32.whl", hash = "sha256:70d2aa9fb00cf52034feac4b913181a6e10356019b18ef89bc7c12a283bf5f5a"}, + {file = "cffi-1.17.0-cp313-cp313-win_amd64.whl", hash = "sha256:b7b6ea9e36d32582cda3465f54c4b454f62f23cb083ebc7a94e2ca6ef011c3a7"}, + {file = "cffi-1.17.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:964823b2fc77b55355999ade496c54dde161c621cb1f6eac61dc30ed1b63cd4c"}, + {file = "cffi-1.17.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:516a405f174fd3b88829eabfe4bb296ac602d6a0f68e0d64d5ac9456194a5b7e"}, + {file = "cffi-1.17.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dec6b307ce928e8e112a6bb9921a1cb00a0e14979bf28b98e084a4b8a742bd9b"}, + {file = "cffi-1.17.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e4094c7b464cf0a858e75cd14b03509e84789abf7b79f8537e6a72152109c76e"}, + {file = "cffi-1.17.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2404f3de742f47cb62d023f0ba7c5a916c9c653d5b368cc966382ae4e57da401"}, + {file = "cffi-1.17.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3aa9d43b02a0c681f0bfbc12d476d47b2b2b6a3f9287f11ee42989a268a1833c"}, + {file = "cffi-1.17.0-cp38-cp38-win32.whl", hash = "sha256:0bb15e7acf8ab35ca8b24b90af52c8b391690ef5c4aec3d31f38f0d37d2cc499"}, + {file = "cffi-1.17.0-cp38-cp38-win_amd64.whl", hash = "sha256:93a7350f6706b31f457c1457d3a3259ff9071a66f312ae64dc024f049055f72c"}, + {file = "cffi-1.17.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:1a2ddbac59dc3716bc79f27906c010406155031a1c801410f1bafff17ea304d2"}, + {file = "cffi-1.17.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:6327b572f5770293fc062a7ec04160e89741e8552bf1c358d1a23eba68166759"}, + {file = "cffi-1.17.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:dbc183e7bef690c9abe5ea67b7b60fdbca81aa8da43468287dae7b5c046107d4"}, + {file = "cffi-1.17.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5bdc0f1f610d067c70aa3737ed06e2726fd9d6f7bfee4a351f4c40b6831f4e82"}, + {file = "cffi-1.17.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:6d872186c1617d143969defeadac5a904e6e374183e07977eedef9c07c8953bf"}, + {file = "cffi-1.17.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0d46ee4764b88b91f16661a8befc6bfb24806d885e27436fdc292ed7e6f6d058"}, + {file = "cffi-1.17.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6f76a90c345796c01d85e6332e81cab6d70de83b829cf1d9762d0a3da59c7932"}, + {file = "cffi-1.17.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:0e60821d312f99d3e1569202518dddf10ae547e799d75aef3bca3a2d9e8ee693"}, + {file = "cffi-1.17.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:eb09b82377233b902d4c3fbeeb7ad731cdab579c6c6fda1f763cd779139e47c3"}, + {file = "cffi-1.17.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:24658baf6224d8f280e827f0a50c46ad819ec8ba380a42448e24459daf809cf4"}, + {file = "cffi-1.17.0-cp39-cp39-win32.whl", hash = "sha256:0fdacad9e0d9fc23e519efd5ea24a70348305e8d7d85ecbb1a5fa66dc834e7fb"}, + {file = "cffi-1.17.0-cp39-cp39-win_amd64.whl", hash = "sha256:7cbc78dc018596315d4e7841c8c3a7ae31cc4d638c9b627f87d52e8abaaf2d29"}, + {file = "cffi-1.17.0.tar.gz", hash = "sha256:f3157624b7558b914cb039fd1af735e5e8049a87c817cc215109ad1c8779df76"}, ] [package.dependencies] @@ -743,63 +770,83 @@ files = [ [[package]] name = "coverage" -version = "7.6.0" +version = "7.6.1" description = "Code coverage measurement for Python" optional = false python-versions = ">=3.8" files = [ - {file = "coverage-7.6.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:dff044f661f59dace805eedb4a7404c573b6ff0cdba4a524141bc63d7be5c7fd"}, - {file = "coverage-7.6.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a8659fd33ee9e6ca03950cfdcdf271d645cf681609153f218826dd9805ab585c"}, - {file = "coverage-7.6.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7792f0ab20df8071d669d929c75c97fecfa6bcab82c10ee4adb91c7a54055463"}, - {file = "coverage-7.6.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d4b3cd1ca7cd73d229487fa5caca9e4bc1f0bca96526b922d61053ea751fe791"}, - {file = "coverage-7.6.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e7e128f85c0b419907d1f38e616c4f1e9f1d1b37a7949f44df9a73d5da5cd53c"}, - {file = "coverage-7.6.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:a94925102c89247530ae1dab7dc02c690942566f22e189cbd53579b0693c0783"}, - {file = "coverage-7.6.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:dcd070b5b585b50e6617e8972f3fbbee786afca71b1936ac06257f7e178f00f6"}, - {file = "coverage-7.6.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:d50a252b23b9b4dfeefc1f663c568a221092cbaded20a05a11665d0dbec9b8fb"}, - {file = "coverage-7.6.0-cp310-cp310-win32.whl", hash = "sha256:0e7b27d04131c46e6894f23a4ae186a6a2207209a05df5b6ad4caee6d54a222c"}, - {file = "coverage-7.6.0-cp310-cp310-win_amd64.whl", hash = "sha256:54dece71673b3187c86226c3ca793c5f891f9fc3d8aa183f2e3653da18566169"}, - {file = "coverage-7.6.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c7b525ab52ce18c57ae232ba6f7010297a87ced82a2383b1afd238849c1ff933"}, - {file = "coverage-7.6.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:4bea27c4269234e06f621f3fac3925f56ff34bc14521484b8f66a580aacc2e7d"}, - {file = "coverage-7.6.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed8d1d1821ba5fc88d4a4f45387b65de52382fa3ef1f0115a4f7a20cdfab0e94"}, - {file = "coverage-7.6.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:01c322ef2bbe15057bc4bf132b525b7e3f7206f071799eb8aa6ad1940bcf5fb1"}, - {file = "coverage-7.6.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:03cafe82c1b32b770a29fd6de923625ccac3185a54a5e66606da26d105f37dac"}, - {file = "coverage-7.6.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:0d1b923fc4a40c5832be4f35a5dab0e5ff89cddf83bb4174499e02ea089daf57"}, - {file = "coverage-7.6.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:4b03741e70fb811d1a9a1d75355cf391f274ed85847f4b78e35459899f57af4d"}, - {file = "coverage-7.6.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:a73d18625f6a8a1cbb11eadc1d03929f9510f4131879288e3f7922097a429f63"}, - {file = "coverage-7.6.0-cp311-cp311-win32.whl", hash = "sha256:65fa405b837060db569a61ec368b74688f429b32fa47a8929a7a2f9b47183713"}, - {file = "coverage-7.6.0-cp311-cp311-win_amd64.whl", hash = "sha256:6379688fb4cfa921ae349c76eb1a9ab26b65f32b03d46bb0eed841fd4cb6afb1"}, - {file = "coverage-7.6.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:f7db0b6ae1f96ae41afe626095149ecd1b212b424626175a6633c2999eaad45b"}, - {file = "coverage-7.6.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:bbdf9a72403110a3bdae77948b8011f644571311c2fb35ee15f0f10a8fc082e8"}, - {file = "coverage-7.6.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9cc44bf0315268e253bf563f3560e6c004efe38f76db03a1558274a6e04bf5d5"}, - {file = "coverage-7.6.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:da8549d17489cd52f85a9829d0e1d91059359b3c54a26f28bec2c5d369524807"}, - {file = "coverage-7.6.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0086cd4fc71b7d485ac93ca4239c8f75732c2ae3ba83f6be1c9be59d9e2c6382"}, - {file = "coverage-7.6.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:1fad32ee9b27350687035cb5fdf9145bc9cf0a094a9577d43e909948ebcfa27b"}, - {file = "coverage-7.6.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:044a0985a4f25b335882b0966625270a8d9db3d3409ddc49a4eb00b0ef5e8cee"}, - {file = "coverage-7.6.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:76d5f82213aa78098b9b964ea89de4617e70e0d43e97900c2778a50856dac605"}, - {file = "coverage-7.6.0-cp312-cp312-win32.whl", hash = "sha256:3c59105f8d58ce500f348c5b56163a4113a440dad6daa2294b5052a10db866da"}, - {file = "coverage-7.6.0-cp312-cp312-win_amd64.whl", hash = "sha256:ca5d79cfdae420a1d52bf177de4bc2289c321d6c961ae321503b2ca59c17ae67"}, - {file = "coverage-7.6.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:d39bd10f0ae453554798b125d2f39884290c480f56e8a02ba7a6ed552005243b"}, - {file = "coverage-7.6.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:beb08e8508e53a568811016e59f3234d29c2583f6b6e28572f0954a6b4f7e03d"}, - {file = "coverage-7.6.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b2e16f4cd2bc4d88ba30ca2d3bbf2f21f00f382cf4e1ce3b1ddc96c634bc48ca"}, - {file = "coverage-7.6.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6616d1c9bf1e3faea78711ee42a8b972367d82ceae233ec0ac61cc7fec09fa6b"}, - {file = "coverage-7.6.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ad4567d6c334c46046d1c4c20024de2a1c3abc626817ae21ae3da600f5779b44"}, - {file = "coverage-7.6.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:d17c6a415d68cfe1091d3296ba5749d3d8696e42c37fca5d4860c5bf7b729f03"}, - {file = "coverage-7.6.0-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:9146579352d7b5f6412735d0f203bbd8d00113a680b66565e205bc605ef81bc6"}, - {file = "coverage-7.6.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:cdab02a0a941af190df8782aafc591ef3ad08824f97850b015c8c6a8b3877b0b"}, - {file = "coverage-7.6.0-cp38-cp38-win32.whl", hash = "sha256:df423f351b162a702c053d5dddc0fc0ef9a9e27ea3f449781ace5f906b664428"}, - {file = "coverage-7.6.0-cp38-cp38-win_amd64.whl", hash = "sha256:f2501d60d7497fd55e391f423f965bbe9e650e9ffc3c627d5f0ac516026000b8"}, - {file = "coverage-7.6.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:7221f9ac9dad9492cecab6f676b3eaf9185141539d5c9689d13fd6b0d7de840c"}, - {file = "coverage-7.6.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:ddaaa91bfc4477d2871442bbf30a125e8fe6b05da8a0015507bfbf4718228ab2"}, - {file = "coverage-7.6.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c4cbe651f3904e28f3a55d6f371203049034b4ddbce65a54527a3f189ca3b390"}, - {file = "coverage-7.6.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:831b476d79408ab6ccfadaaf199906c833f02fdb32c9ab907b1d4aa0713cfa3b"}, - {file = "coverage-7.6.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:46c3d091059ad0b9c59d1034de74a7f36dcfa7f6d3bde782c49deb42438f2450"}, - {file = "coverage-7.6.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:4d5fae0a22dc86259dee66f2cc6c1d3e490c4a1214d7daa2a93d07491c5c04b6"}, - {file = "coverage-7.6.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:07ed352205574aad067482e53dd606926afebcb5590653121063fbf4e2175166"}, - {file = "coverage-7.6.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:49c76cdfa13015c4560702574bad67f0e15ca5a2872c6a125f6327ead2b731dd"}, - {file = "coverage-7.6.0-cp39-cp39-win32.whl", hash = "sha256:482855914928c8175735a2a59c8dc5806cf7d8f032e4820d52e845d1f731dca2"}, - {file = "coverage-7.6.0-cp39-cp39-win_amd64.whl", hash = "sha256:543ef9179bc55edfd895154a51792b01c017c87af0ebaae092720152e19e42ca"}, - {file = "coverage-7.6.0-pp38.pp39.pp310-none-any.whl", hash = "sha256:6fe885135c8a479d3e37a7aae61cbd3a0fb2deccb4dda3c25f92a49189f766d6"}, - {file = "coverage-7.6.0.tar.gz", hash = "sha256:289cc803fa1dc901f84701ac10c9ee873619320f2f9aff38794db4a4a0268d51"}, + {file = "coverage-7.6.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:b06079abebbc0e89e6163b8e8f0e16270124c154dc6e4a47b413dd538859af16"}, + {file = "coverage-7.6.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:cf4b19715bccd7ee27b6b120e7e9dd56037b9c0681dcc1adc9ba9db3d417fa36"}, + {file = "coverage-7.6.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e61c0abb4c85b095a784ef23fdd4aede7a2628478e7baba7c5e3deba61070a02"}, + {file = "coverage-7.6.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:fd21f6ae3f08b41004dfb433fa895d858f3f5979e7762d052b12aef444e29afc"}, + {file = "coverage-7.6.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8f59d57baca39b32db42b83b2a7ba6f47ad9c394ec2076b084c3f029b7afca23"}, + {file = "coverage-7.6.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:a1ac0ae2b8bd743b88ed0502544847c3053d7171a3cff9228af618a068ed9c34"}, + {file = "coverage-7.6.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e6a08c0be454c3b3beb105c0596ebdc2371fab6bb90c0c0297f4e58fd7e1012c"}, + {file = "coverage-7.6.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:f5796e664fe802da4f57a168c85359a8fbf3eab5e55cd4e4569fbacecc903959"}, + {file = "coverage-7.6.1-cp310-cp310-win32.whl", hash = "sha256:7bb65125fcbef8d989fa1dd0e8a060999497629ca5b0efbca209588a73356232"}, + {file = "coverage-7.6.1-cp310-cp310-win_amd64.whl", hash = "sha256:3115a95daa9bdba70aea750db7b96b37259a81a709223c8448fa97727d546fe0"}, + {file = "coverage-7.6.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:7dea0889685db8550f839fa202744652e87c60015029ce3f60e006f8c4462c93"}, + {file = "coverage-7.6.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:ed37bd3c3b063412f7620464a9ac1314d33100329f39799255fb8d3027da50d3"}, + {file = "coverage-7.6.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d85f5e9a5f8b73e2350097c3756ef7e785f55bd71205defa0bfdaf96c31616ff"}, + {file = "coverage-7.6.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9bc572be474cafb617672c43fe989d6e48d3c83af02ce8de73fff1c6bb3c198d"}, + {file = "coverage-7.6.1-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0c0420b573964c760df9e9e86d1a9a622d0d27f417e1a949a8a66dd7bcee7bc6"}, + {file = "coverage-7.6.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:1f4aa8219db826ce6be7099d559f8ec311549bfc4046f7f9fe9b5cea5c581c56"}, + {file = "coverage-7.6.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:fc5a77d0c516700ebad189b587de289a20a78324bc54baee03dd486f0855d234"}, + {file = "coverage-7.6.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:b48f312cca9621272ae49008c7f613337c53fadca647d6384cc129d2996d1133"}, + {file = "coverage-7.6.1-cp311-cp311-win32.whl", hash = "sha256:1125ca0e5fd475cbbba3bb67ae20bd2c23a98fac4e32412883f9bcbaa81c314c"}, + {file = "coverage-7.6.1-cp311-cp311-win_amd64.whl", hash = "sha256:8ae539519c4c040c5ffd0632784e21b2f03fc1340752af711f33e5be83a9d6c6"}, + {file = "coverage-7.6.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:95cae0efeb032af8458fc27d191f85d1717b1d4e49f7cb226cf526ff28179778"}, + {file = "coverage-7.6.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:5621a9175cf9d0b0c84c2ef2b12e9f5f5071357c4d2ea6ca1cf01814f45d2391"}, + {file = "coverage-7.6.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:260933720fdcd75340e7dbe9060655aff3af1f0c5d20f46b57f262ab6c86a5e8"}, + {file = "coverage-7.6.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:07e2ca0ad381b91350c0ed49d52699b625aab2b44b65e1b4e02fa9df0e92ad2d"}, + {file = "coverage-7.6.1-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c44fee9975f04b33331cb8eb272827111efc8930cfd582e0320613263ca849ca"}, + {file = "coverage-7.6.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:877abb17e6339d96bf08e7a622d05095e72b71f8afd8a9fefc82cf30ed944163"}, + {file = "coverage-7.6.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:3e0cadcf6733c09154b461f1ca72d5416635e5e4ec4e536192180d34ec160f8a"}, + {file = "coverage-7.6.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:c3c02d12f837d9683e5ab2f3d9844dc57655b92c74e286c262e0fc54213c216d"}, + {file = "coverage-7.6.1-cp312-cp312-win32.whl", hash = "sha256:e05882b70b87a18d937ca6768ff33cc3f72847cbc4de4491c8e73880766718e5"}, + {file = "coverage-7.6.1-cp312-cp312-win_amd64.whl", hash = "sha256:b5d7b556859dd85f3a541db6a4e0167b86e7273e1cdc973e5b175166bb634fdb"}, + {file = "coverage-7.6.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:a4acd025ecc06185ba2b801f2de85546e0b8ac787cf9d3b06e7e2a69f925b106"}, + {file = "coverage-7.6.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:a6d3adcf24b624a7b778533480e32434a39ad8fa30c315208f6d3e5542aeb6e9"}, + {file = "coverage-7.6.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d0c212c49b6c10e6951362f7c6df3329f04c2b1c28499563d4035d964ab8e08c"}, + {file = "coverage-7.6.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6e81d7a3e58882450ec4186ca59a3f20a5d4440f25b1cff6f0902ad890e6748a"}, + {file = "coverage-7.6.1-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:78b260de9790fd81e69401c2dc8b17da47c8038176a79092a89cb2b7d945d060"}, + {file = "coverage-7.6.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:a78d169acd38300060b28d600344a803628c3fd585c912cacc9ea8790fe96862"}, + {file = "coverage-7.6.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:2c09f4ce52cb99dd7505cd0fc8e0e37c77b87f46bc9c1eb03fe3bc9991085388"}, + {file = "coverage-7.6.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6878ef48d4227aace338d88c48738a4258213cd7b74fd9a3d4d7582bb1d8a155"}, + {file = "coverage-7.6.1-cp313-cp313-win32.whl", hash = "sha256:44df346d5215a8c0e360307d46ffaabe0f5d3502c8a1cefd700b34baf31d411a"}, + {file = "coverage-7.6.1-cp313-cp313-win_amd64.whl", hash = "sha256:8284cf8c0dd272a247bc154eb6c95548722dce90d098c17a883ed36e67cdb129"}, + {file = "coverage-7.6.1-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:d3296782ca4eab572a1a4eca686d8bfb00226300dcefdf43faa25b5242ab8a3e"}, + {file = "coverage-7.6.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:502753043567491d3ff6d08629270127e0c31d4184c4c8d98f92c26f65019962"}, + {file = "coverage-7.6.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6a89ecca80709d4076b95f89f308544ec8f7b4727e8a547913a35f16717856cb"}, + {file = "coverage-7.6.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a318d68e92e80af8b00fa99609796fdbcdfef3629c77c6283566c6f02c6d6704"}, + {file = "coverage-7.6.1-cp313-cp313t-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:13b0a73a0896988f053e4fbb7de6d93388e6dd292b0d87ee51d106f2c11b465b"}, + {file = "coverage-7.6.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:4421712dbfc5562150f7554f13dde997a2e932a6b5f352edcce948a815efee6f"}, + {file = "coverage-7.6.1-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:166811d20dfea725e2e4baa71fffd6c968a958577848d2131f39b60043400223"}, + {file = "coverage-7.6.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:225667980479a17db1048cb2bf8bfb39b8e5be8f164b8f6628b64f78a72cf9d3"}, + {file = "coverage-7.6.1-cp313-cp313t-win32.whl", hash = "sha256:170d444ab405852903b7d04ea9ae9b98f98ab6d7e63e1115e82620807519797f"}, + {file = "coverage-7.6.1-cp313-cp313t-win_amd64.whl", hash = "sha256:b9f222de8cded79c49bf184bdbc06630d4c58eec9459b939b4a690c82ed05657"}, + {file = "coverage-7.6.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:6db04803b6c7291985a761004e9060b2bca08da6d04f26a7f2294b8623a0c1a0"}, + {file = "coverage-7.6.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:f1adfc8ac319e1a348af294106bc6a8458a0f1633cc62a1446aebc30c5fa186a"}, + {file = "coverage-7.6.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a95324a9de9650a729239daea117df21f4b9868ce32e63f8b650ebe6cef5595b"}, + {file = "coverage-7.6.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b43c03669dc4618ec25270b06ecd3ee4fa94c7f9b3c14bae6571ca00ef98b0d3"}, + {file = "coverage-7.6.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8929543a7192c13d177b770008bc4e8119f2e1f881d563fc6b6305d2d0ebe9de"}, + {file = "coverage-7.6.1-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:a09ece4a69cf399510c8ab25e0950d9cf2b42f7b3cb0374f95d2e2ff594478a6"}, + {file = "coverage-7.6.1-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:9054a0754de38d9dbd01a46621636689124d666bad1936d76c0341f7d71bf569"}, + {file = "coverage-7.6.1-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:0dbde0f4aa9a16fa4d754356a8f2e36296ff4d83994b2c9d8398aa32f222f989"}, + {file = "coverage-7.6.1-cp38-cp38-win32.whl", hash = "sha256:da511e6ad4f7323ee5702e6633085fb76c2f893aaf8ce4c51a0ba4fc07580ea7"}, + {file = "coverage-7.6.1-cp38-cp38-win_amd64.whl", hash = "sha256:3f1156e3e8f2872197af3840d8ad307a9dd18e615dc64d9ee41696f287c57ad8"}, + {file = "coverage-7.6.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:abd5fd0db5f4dc9289408aaf34908072f805ff7792632250dcb36dc591d24255"}, + {file = "coverage-7.6.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:547f45fa1a93154bd82050a7f3cddbc1a7a4dd2a9bf5cb7d06f4ae29fe94eaf8"}, + {file = "coverage-7.6.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:645786266c8f18a931b65bfcefdbf6952dd0dea98feee39bd188607a9d307ed2"}, + {file = "coverage-7.6.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9e0b2df163b8ed01d515807af24f63de04bebcecbd6c3bfeff88385789fdf75a"}, + {file = "coverage-7.6.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:609b06f178fe8e9f89ef676532760ec0b4deea15e9969bf754b37f7c40326dbc"}, + {file = "coverage-7.6.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:702855feff378050ae4f741045e19a32d57d19f3e0676d589df0575008ea5004"}, + {file = "coverage-7.6.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:2bdb062ea438f22d99cba0d7829c2ef0af1d768d1e4a4f528087224c90b132cb"}, + {file = "coverage-7.6.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:9c56863d44bd1c4fe2abb8a4d6f5371d197f1ac0ebdee542f07f35895fc07f36"}, + {file = "coverage-7.6.1-cp39-cp39-win32.whl", hash = "sha256:6e2cd258d7d927d09493c8df1ce9174ad01b381d4729a9d8d4e38670ca24774c"}, + {file = "coverage-7.6.1-cp39-cp39-win_amd64.whl", hash = "sha256:06a737c882bd26d0d6ee7269b20b12f14a8704807a01056c80bb881a4b2ce6ca"}, + {file = "coverage-7.6.1-pp38.pp39.pp310-none-any.whl", hash = "sha256:e9a6e0eb86070e8ccaedfbd9d38fec54864f3125ab95419970575b42af7541df"}, + {file = "coverage-7.6.1.tar.gz", hash = "sha256:953510dfb7b12ab69d20135a0662397f077c59b1e6379a768e97c59d852ee51d"}, ] [package.dependencies] @@ -1338,119 +1385,119 @@ files = [ [[package]] name = "grpcio" -version = "1.65.1" +version = "1.65.4" description = "HTTP/2-based RPC framework" optional = false python-versions = ">=3.8" files = [ - {file = "grpcio-1.65.1-cp310-cp310-linux_armv7l.whl", hash = "sha256:3dc5f928815b8972fb83b78d8db5039559f39e004ec93ebac316403fe031a062"}, - {file = "grpcio-1.65.1-cp310-cp310-macosx_12_0_universal2.whl", hash = "sha256:8333ca46053c35484c9f2f7e8d8ec98c1383a8675a449163cea31a2076d93de8"}, - {file = "grpcio-1.65.1-cp310-cp310-manylinux_2_17_aarch64.whl", hash = "sha256:7af64838b6e615fff0ec711960ed9b6ee83086edfa8c32670eafb736f169d719"}, - {file = "grpcio-1.65.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:dbb64b4166362d9326f7efbf75b1c72106c1aa87f13a8c8b56a1224fac152f5c"}, - {file = "grpcio-1.65.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a8422dc13ad93ec8caa2612b5032a2b9cd6421c13ed87f54db4a3a2c93afaf77"}, - {file = "grpcio-1.65.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:4effc0562b6c65d4add6a873ca132e46ba5e5a46f07c93502c37a9ae7f043857"}, - {file = "grpcio-1.65.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:a6c71575a2fedf259724981fd73a18906513d2f306169c46262a5bae956e6364"}, - {file = "grpcio-1.65.1-cp310-cp310-win32.whl", hash = "sha256:34966cf526ef0ea616e008d40d989463e3db157abb213b2f20c6ce0ae7928875"}, - {file = "grpcio-1.65.1-cp310-cp310-win_amd64.whl", hash = "sha256:ca931de5dd6d9eb94ff19a2c9434b23923bce6f767179fef04dfa991f282eaad"}, - {file = "grpcio-1.65.1-cp311-cp311-linux_armv7l.whl", hash = "sha256:bbb46330cc643ecf10bd9bd4ca8e7419a14b6b9dedd05f671c90fb2c813c6037"}, - {file = "grpcio-1.65.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:d827a6fb9215b961eb73459ad7977edb9e748b23e3407d21c845d1d8ef6597e5"}, - {file = "grpcio-1.65.1-cp311-cp311-manylinux_2_17_aarch64.whl", hash = "sha256:6e71aed8835f8d9fbcb84babc93a9da95955d1685021cceb7089f4f1e717d719"}, - {file = "grpcio-1.65.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9a1c84560b3b2d34695c9ba53ab0264e2802721c530678a8f0a227951f453462"}, - {file = "grpcio-1.65.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:27adee2338d697e71143ed147fe286c05810965d5d30ec14dd09c22479bfe48a"}, - {file = "grpcio-1.65.1-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:f62652ddcadc75d0e7aa629e96bb61658f85a993e748333715b4ab667192e4e8"}, - {file = "grpcio-1.65.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:71a05fd814700dd9cb7d9a507f2f6a1ef85866733ccaf557eedacec32d65e4c2"}, - {file = "grpcio-1.65.1-cp311-cp311-win32.whl", hash = "sha256:b590f1ad056294dfaeac0b7e1b71d3d5ace638d8dd1f1147ce4bd13458783ba8"}, - {file = "grpcio-1.65.1-cp311-cp311-win_amd64.whl", hash = "sha256:12e9bdf3b5fd48e5fbe5b3da382ad8f97c08b47969f3cca81dd9b36b86ed39e2"}, - {file = "grpcio-1.65.1-cp312-cp312-linux_armv7l.whl", hash = "sha256:54cb822e177374b318b233e54b6856c692c24cdbd5a3ba5335f18a47396bac8f"}, - {file = "grpcio-1.65.1-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:aaf3c54419a28d45bd1681372029f40e5bfb58e5265e3882eaf21e4a5f81a119"}, - {file = "grpcio-1.65.1-cp312-cp312-manylinux_2_17_aarch64.whl", hash = "sha256:557de35bdfbe8bafea0a003dbd0f4da6d89223ac6c4c7549d78e20f92ead95d9"}, - {file = "grpcio-1.65.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:8bfd95ef3b097f0cc86ade54eafefa1c8ed623aa01a26fbbdcd1a3650494dd11"}, - {file = "grpcio-1.65.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9e6a8f3d6c41e6b642870afe6cafbaf7b61c57317f9ec66d0efdaf19db992b90"}, - {file = "grpcio-1.65.1-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:1faaf7355ceed07ceaef0b9dcefa4c98daf1dd8840ed75c2de128c3f4a4d859d"}, - {file = "grpcio-1.65.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:60f1f38eed830488ad2a1b11579ef0f345ff16fffdad1d24d9fbc97ba31804ff"}, - {file = "grpcio-1.65.1-cp312-cp312-win32.whl", hash = "sha256:e75acfa52daf5ea0712e8aa82f0003bba964de7ae22c26d208cbd7bc08500177"}, - {file = "grpcio-1.65.1-cp312-cp312-win_amd64.whl", hash = "sha256:ff5a84907e51924973aa05ed8759210d8cdae7ffcf9e44fd17646cf4a902df59"}, - {file = "grpcio-1.65.1-cp38-cp38-linux_armv7l.whl", hash = "sha256:1fbd6331f18c3acd7e09d17fd840c096f56eaf0ef830fbd50af45ae9dc8dfd83"}, - {file = "grpcio-1.65.1-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:de5b6be29116e094c5ef9d9e4252e7eb143e3d5f6bd6d50a78075553ab4930b0"}, - {file = "grpcio-1.65.1-cp38-cp38-manylinux_2_17_aarch64.whl", hash = "sha256:e4a3cdba62b2d6aeae6027ae65f350de6dc082b72e6215eccf82628e79efe9ba"}, - {file = "grpcio-1.65.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:941c4869aa229d88706b78187d60d66aca77fe5c32518b79e3c3e03fc26109a2"}, - {file = "grpcio-1.65.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f40cebe5edb518d78b8131e87cb83b3ee688984de38a232024b9b44e74ee53d3"}, - {file = "grpcio-1.65.1-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:2ca684ba331fb249d8a1ce88db5394e70dbcd96e58d8c4b7e0d7b141a453dce9"}, - {file = "grpcio-1.65.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:8558f0083ddaf5de64a59c790bffd7568e353914c0c551eae2955f54ee4b857f"}, - {file = "grpcio-1.65.1-cp38-cp38-win32.whl", hash = "sha256:8d8143a3e3966f85dce6c5cc45387ec36552174ba5712c5dc6fcc0898fb324c0"}, - {file = "grpcio-1.65.1-cp38-cp38-win_amd64.whl", hash = "sha256:76e81a86424d6ca1ce7c16b15bdd6a964a42b40544bf796a48da241fdaf61153"}, - {file = "grpcio-1.65.1-cp39-cp39-linux_armv7l.whl", hash = "sha256:cb5175f45c980ff418998723ea1b3869cce3766d2ab4e4916fbd3cedbc9d0ed3"}, - {file = "grpcio-1.65.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:b12c1aa7b95abe73b3e04e052c8b362655b41c7798da69f1eaf8d186c7d204df"}, - {file = "grpcio-1.65.1-cp39-cp39-manylinux_2_17_aarch64.whl", hash = "sha256:3019fb50128b21a5e018d89569ffaaaa361680e1346c2f261bb84a91082eb3d3"}, - {file = "grpcio-1.65.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7ae15275ed98ea267f64ee9ddedf8ecd5306a5b5bb87972a48bfe24af24153e8"}, - {file = "grpcio-1.65.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5f096ffb881f37e8d4f958b63c74bfc400c7cebd7a944b027357cd2fb8d91a57"}, - {file = "grpcio-1.65.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:2f56b5a68fdcf17a0a1d524bf177218c3c69b3947cb239ea222c6f1867c3ab68"}, - {file = "grpcio-1.65.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:941596d419b9736ab548aa0feb5bbba922f98872668847bf0720b42d1d227b9e"}, - {file = "grpcio-1.65.1-cp39-cp39-win32.whl", hash = "sha256:5fd7337a823b890215f07d429f4f193d24b80d62a5485cf88ee06648591a0c57"}, - {file = "grpcio-1.65.1-cp39-cp39-win_amd64.whl", hash = "sha256:1bceeec568372cbebf554eae1b436b06c2ff24cfaf04afade729fb9035408c6c"}, - {file = "grpcio-1.65.1.tar.gz", hash = "sha256:3c492301988cd720cd145d84e17318d45af342e29ef93141228f9cd73222368b"}, + {file = "grpcio-1.65.4-cp310-cp310-linux_armv7l.whl", hash = "sha256:0e85c8766cf7f004ab01aff6a0393935a30d84388fa3c58d77849fcf27f3e98c"}, + {file = "grpcio-1.65.4-cp310-cp310-macosx_12_0_universal2.whl", hash = "sha256:e4a795c02405c7dfa8affd98c14d980f4acea16ea3b539e7404c645329460e5a"}, + {file = "grpcio-1.65.4-cp310-cp310-manylinux_2_17_aarch64.whl", hash = "sha256:d7b984a8dd975d949c2042b9b5ebcf297d6d5af57dcd47f946849ee15d3c2fb8"}, + {file = "grpcio-1.65.4-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:644a783ce604a7d7c91412bd51cf9418b942cf71896344b6dc8d55713c71ce82"}, + {file = "grpcio-1.65.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5764237d751d3031a36fafd57eb7d36fd2c10c658d2b4057c516ccf114849a3e"}, + {file = "grpcio-1.65.4-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:ee40d058cf20e1dd4cacec9c39e9bce13fedd38ce32f9ba00f639464fcb757de"}, + {file = "grpcio-1.65.4-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:4482a44ce7cf577a1f8082e807a5b909236bce35b3e3897f839f2fbd9ae6982d"}, + {file = "grpcio-1.65.4-cp310-cp310-win32.whl", hash = "sha256:66bb051881c84aa82e4f22d8ebc9d1704b2e35d7867757f0740c6ef7b902f9b1"}, + {file = "grpcio-1.65.4-cp310-cp310-win_amd64.whl", hash = "sha256:870370524eff3144304da4d1bbe901d39bdd24f858ce849b7197e530c8c8f2ec"}, + {file = "grpcio-1.65.4-cp311-cp311-linux_armv7l.whl", hash = "sha256:85e9c69378af02e483bc626fc19a218451b24a402bdf44c7531e4c9253fb49ef"}, + {file = "grpcio-1.65.4-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:2bd672e005afab8bf0d6aad5ad659e72a06dd713020554182a66d7c0c8f47e18"}, + {file = "grpcio-1.65.4-cp311-cp311-manylinux_2_17_aarch64.whl", hash = "sha256:abccc5d73f5988e8f512eb29341ed9ced923b586bb72e785f265131c160231d8"}, + {file = "grpcio-1.65.4-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:886b45b29f3793b0c2576201947258782d7e54a218fe15d4a0468d9a6e00ce17"}, + {file = "grpcio-1.65.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:be952436571dacc93ccc7796db06b7daf37b3b56bb97e3420e6503dccfe2f1b4"}, + {file = "grpcio-1.65.4-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:8dc9ddc4603ec43f6238a5c95400c9a901b6d079feb824e890623da7194ff11e"}, + {file = "grpcio-1.65.4-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:ade1256c98cba5a333ef54636095f2c09e6882c35f76acb04412f3b1aa3c29a5"}, + {file = "grpcio-1.65.4-cp311-cp311-win32.whl", hash = "sha256:280e93356fba6058cbbfc6f91a18e958062ef1bdaf5b1caf46c615ba1ae71b5b"}, + {file = "grpcio-1.65.4-cp311-cp311-win_amd64.whl", hash = "sha256:d2b819f9ee27ed4e3e737a4f3920e337e00bc53f9e254377dd26fc7027c4d558"}, + {file = "grpcio-1.65.4-cp312-cp312-linux_armv7l.whl", hash = "sha256:926a0750a5e6fb002542e80f7fa6cab8b1a2ce5513a1c24641da33e088ca4c56"}, + {file = "grpcio-1.65.4-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:2a1d4c84d9e657f72bfbab8bedf31bdfc6bfc4a1efb10b8f2d28241efabfaaf2"}, + {file = "grpcio-1.65.4-cp312-cp312-manylinux_2_17_aarch64.whl", hash = "sha256:17de4fda50967679677712eec0a5c13e8904b76ec90ac845d83386b65da0ae1e"}, + {file = "grpcio-1.65.4-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3dee50c1b69754a4228e933696408ea87f7e896e8d9797a3ed2aeed8dbd04b74"}, + {file = "grpcio-1.65.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:74c34fc7562bdd169b77966068434a93040bfca990e235f7a67cdf26e1bd5c63"}, + {file = "grpcio-1.65.4-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:24a2246e80a059b9eb981e4c2a6d8111b1b5e03a44421adbf2736cc1d4988a8a"}, + {file = "grpcio-1.65.4-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:18c10f0d054d2dce34dd15855fcca7cc44ec3b811139437543226776730c0f28"}, + {file = "grpcio-1.65.4-cp312-cp312-win32.whl", hash = "sha256:d72962788b6c22ddbcdb70b10c11fbb37d60ae598c51eb47ec019db66ccfdff0"}, + {file = "grpcio-1.65.4-cp312-cp312-win_amd64.whl", hash = "sha256:7656376821fed8c89e68206a522522317787a3d9ed66fb5110b1dff736a5e416"}, + {file = "grpcio-1.65.4-cp38-cp38-linux_armv7l.whl", hash = "sha256:4934077b33aa6fe0b451de8b71dabde96bf2d9b4cb2b3187be86e5adebcba021"}, + {file = "grpcio-1.65.4-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:0cef8c919a3359847c357cb4314e50ed1f0cca070f828ee8f878d362fd744d52"}, + {file = "grpcio-1.65.4-cp38-cp38-manylinux_2_17_aarch64.whl", hash = "sha256:a925446e6aa12ca37114840d8550f308e29026cdc423a73da3043fd1603a6385"}, + {file = "grpcio-1.65.4-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cf53e6247f1e2af93657e62e240e4f12e11ee0b9cef4ddcb37eab03d501ca864"}, + {file = "grpcio-1.65.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cdb34278e4ceb224c89704cd23db0d902e5e3c1c9687ec9d7c5bb4c150f86816"}, + {file = "grpcio-1.65.4-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:e6cbdd107e56bde55c565da5fd16f08e1b4e9b0674851d7749e7f32d8645f524"}, + {file = "grpcio-1.65.4-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:626319a156b1f19513156a3b0dbfe977f5f93db63ca673a0703238ebd40670d7"}, + {file = "grpcio-1.65.4-cp38-cp38-win32.whl", hash = "sha256:3d1bbf7e1dd1096378bd83c83f554d3b93819b91161deaf63e03b7022a85224a"}, + {file = "grpcio-1.65.4-cp38-cp38-win_amd64.whl", hash = "sha256:a99e6dffefd3027b438116f33ed1261c8d360f0dd4f943cb44541a2782eba72f"}, + {file = "grpcio-1.65.4-cp39-cp39-linux_armv7l.whl", hash = "sha256:874acd010e60a2ec1e30d5e505b0651ab12eb968157cd244f852b27c6dbed733"}, + {file = "grpcio-1.65.4-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:b07f36faf01fca5427d4aa23645e2d492157d56c91fab7e06fe5697d7e171ad4"}, + {file = "grpcio-1.65.4-cp39-cp39-manylinux_2_17_aarch64.whl", hash = "sha256:b81711bf4ec08a3710b534e8054c7dcf90f2edc22bebe11c1775a23f145595fe"}, + {file = "grpcio-1.65.4-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88fcabc332a4aef8bcefadc34a02e9ab9407ab975d2c7d981a8e12c1aed92aa1"}, + {file = "grpcio-1.65.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c9ba3e63108a8749994f02c7c0e156afb39ba5bdf755337de8e75eb685be244b"}, + {file = "grpcio-1.65.4-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:8eb485801957a486bf5de15f2c792d9f9c897a86f2f18db8f3f6795a094b4bb2"}, + {file = "grpcio-1.65.4-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:075f3903bc1749ace93f2b0664f72964ee5f2da5c15d4b47e0ab68e4f442c257"}, + {file = "grpcio-1.65.4-cp39-cp39-win32.whl", hash = "sha256:0a0720299bdb2cc7306737295d56e41ce8827d5669d4a3cd870af832e3b17c4d"}, + {file = "grpcio-1.65.4-cp39-cp39-win_amd64.whl", hash = "sha256:a146bc40fa78769f22e1e9ff4f110ef36ad271b79707577bf2a31e3e931141b9"}, + {file = "grpcio-1.65.4.tar.gz", hash = "sha256:2a4f476209acffec056360d3e647ae0e14ae13dcf3dfb130c227ae1c594cbe39"}, ] [package.extras] -protobuf = ["grpcio-tools (>=1.65.1)"] +protobuf = ["grpcio-tools (>=1.65.4)"] [[package]] name = "grpcio-tools" -version = "1.65.1" +version = "1.65.4" description = "Protobuf code generator for gRPC" optional = false python-versions = ">=3.8" files = [ - {file = "grpcio_tools-1.65.1-cp310-cp310-linux_armv7l.whl", hash = "sha256:16f2f49048c76a68a8171507c39652c8be9ed4e7408deb9877002813aea4c396"}, - {file = "grpcio_tools-1.65.1-cp310-cp310-macosx_12_0_universal2.whl", hash = "sha256:6f75bf562057723818dff7bf4e05884c220653ead3db19effe5873ce88c7cfd2"}, - {file = "grpcio_tools-1.65.1-cp310-cp310-manylinux_2_17_aarch64.whl", hash = "sha256:e859001e20d4199ac90979e11d0d0ecb83f6b0235b08f8bfae93c2bd1401795a"}, - {file = "grpcio_tools-1.65.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:257decc1782b9adca422a2625663529be64018c056d7346d8bbc7c9bf0fe3b80"}, - {file = "grpcio_tools-1.65.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ac8cc2684bcde43296cf5a350b80b73713610f0789ff912c88f898ef065a0b6c"}, - {file = "grpcio_tools-1.65.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:b8ef108fceabb12ed29f750f2cb4827d7bad5033dc13596ad0de092f015f5123"}, - {file = "grpcio_tools-1.65.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:32fa16e64f4b1684ed634155af9b03fdeabdf641d484e53c453e592e0f574f03"}, - {file = "grpcio_tools-1.65.1-cp310-cp310-win32.whl", hash = "sha256:d4afb3e74c7a567eabda3c447421eb8fb5c6cbf19bb9292319056beff4ab49a1"}, - {file = "grpcio_tools-1.65.1-cp310-cp310-win_amd64.whl", hash = "sha256:edb4731b4ad068c3c48d52bbfa1404236cbcdd2524eb01a655e8adfadc2f0034"}, - {file = "grpcio_tools-1.65.1-cp311-cp311-linux_armv7l.whl", hash = "sha256:fabbc0698cf0c614059c3e103b06c74d07190e9c7518f457703e98617ed467c0"}, - {file = "grpcio_tools-1.65.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ee1353c741f8f2fcf4fcce8764d4570e2d7c3025cc4c918a0c6532c18b6cbac5"}, - {file = "grpcio_tools-1.65.1-cp311-cp311-manylinux_2_17_aarch64.whl", hash = "sha256:f49acf17ae7b1a35b5e0e5907ed9b70c042b3e7ab8769ea9fd26f20b2b888743"}, - {file = "grpcio_tools-1.65.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c50895d383d41a379f9a235ce6d14c6639f36d43bf71c7148bf8a114a8f0936a"}, - {file = "grpcio_tools-1.65.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c394cf5b77eb71ff5c0ab857877f59dfee080cc95fb24d47e97d3965aaaf3c64"}, - {file = "grpcio_tools-1.65.1-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:e24819f8d11fc9e6bad1e13a1d7fddd6027ed2a1aad583f093cfe027852ff3f9"}, - {file = "grpcio_tools-1.65.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:2ec7e376f3f53e7ab90614d5a2404c19c7902750bcc5bed8219ab864f9bc1c4b"}, - {file = "grpcio_tools-1.65.1-cp311-cp311-win32.whl", hash = "sha256:9b6dbddca8e399ad96d263b786d0803acc67194cb80d01117691a9f239ac8dc9"}, - {file = "grpcio_tools-1.65.1-cp311-cp311-win_amd64.whl", hash = "sha256:3135888461888dcc7b358c17d60f32654cb36daf02bb805c84c0f8ab550743eb"}, - {file = "grpcio_tools-1.65.1-cp312-cp312-linux_armv7l.whl", hash = "sha256:b8fe0bd8e63a4dd84c022ccbb6057e9f3c338e036a1b95c2a6dbcc928c35b4f9"}, - {file = "grpcio_tools-1.65.1-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:bfb1a5e429756cdc9ce7183cca24a90bd7e68626379c83ea065bb30125d7aca4"}, - {file = "grpcio_tools-1.65.1-cp312-cp312-manylinux_2_17_aarch64.whl", hash = "sha256:4dde0d90f96e29670c58a08aeeac61da49792f71602cb7421943be8918857a2a"}, - {file = "grpcio_tools-1.65.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a89203d864dd024c4a13032f2df792eb465c63c224f9b82460d53f0cf30a3d16"}, - {file = "grpcio_tools-1.65.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7813a67cb427847e1a88d4fd4cbabfd2ed272455bd78b4f417377361d3b8edbd"}, - {file = "grpcio_tools-1.65.1-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:33e4c602221f91c1d87c4574c496621f11826d4f8867f31f4c4c2ff1b144a777"}, - {file = "grpcio_tools-1.65.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:fd2fe61d40e7421dc64c90912e29c05f1c419dd7a90452c84a1b456e06bd8530"}, - {file = "grpcio_tools-1.65.1-cp312-cp312-win32.whl", hash = "sha256:013017df92d6165e1556a17c618cf22471ef131fb614b428683730968b54b46d"}, - {file = "grpcio_tools-1.65.1-cp312-cp312-win_amd64.whl", hash = "sha256:1ab64a9af7ce0aeb639a77423fa99de91863a0b8ce0e43fc50f57fc460a0d30e"}, - {file = "grpcio_tools-1.65.1-cp38-cp38-linux_armv7l.whl", hash = "sha256:a95fd13dc17b065a934f00a0b99078de7773d4743772312efc8e75521ab62f7b"}, - {file = "grpcio_tools-1.65.1-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:e44c69c029614fc61da2701587299fe19e52031aa1fba2a69a02c2dd77f903fe"}, - {file = "grpcio_tools-1.65.1-cp38-cp38-manylinux_2_17_aarch64.whl", hash = "sha256:196e12c18f0ebe5ac7f5446fc1daef8d9c69ba40a987a1f8379bfdf6c32e54af"}, - {file = "grpcio_tools-1.65.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:881ccc523a171235bb6b1d8e965c2f11e525b54eb1d66aeb8fea5a72f84d6e02"}, - {file = "grpcio_tools-1.65.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8d5a12e0bd2a0f33af11e11d89f19cddea66568716b53b77f3f5dc605ceb32e0"}, - {file = "grpcio_tools-1.65.1-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:1d8671d82449206ef040756a14484b0c5189615a0aac5f4734ad3d023d07d4b1"}, - {file = "grpcio_tools-1.65.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:dc904f0de72eecbd024c111caa3e3165522349ff3c89361e4cbf06035c93061a"}, - {file = "grpcio_tools-1.65.1-cp38-cp38-win32.whl", hash = "sha256:b6e45377dbe50c7a737d81620841b8c3f3a1650c76cb56a87b5b0414d10f9987"}, - {file = "grpcio_tools-1.65.1-cp38-cp38-win_amd64.whl", hash = "sha256:5c9b4d95d2623b8b9435103305c3d375f8b4a266ee6fbbf29b5f4a57a8405047"}, - {file = "grpcio_tools-1.65.1-cp39-cp39-linux_armv7l.whl", hash = "sha256:4b0714458a6a3a1ed587271f3e7c301b735ccbdd7946071a1d85a6d0aabcb57a"}, - {file = "grpcio_tools-1.65.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:1ece34ebb677a869606200812653f274757844754f0b684e59d61244b194f002"}, - {file = "grpcio_tools-1.65.1-cp39-cp39-manylinux_2_17_aarch64.whl", hash = "sha256:4887af67ff130174fa7fb420ee985d38659a7c960053639de28980003fe710eb"}, - {file = "grpcio_tools-1.65.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d99945dc53daa7987ae8c33227f96697ccc4d0a4a1ca6c366e28fcc9fc1c55fb"}, - {file = "grpcio_tools-1.65.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:68d14cbd135541366bbef18c1d463f5d560878629f1901cae03777dad87755d9"}, - {file = "grpcio_tools-1.65.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:bc55edf7a0af0ad7384887845b6498fdb1a75d3633d11807f953cac531a34588"}, - {file = "grpcio_tools-1.65.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:074fce3b96a5c59ed526bdd07c04c6243c07b13278388837a0540840ae10bf5b"}, - {file = "grpcio_tools-1.65.1-cp39-cp39-win32.whl", hash = "sha256:004232fa8ef82298eeb01b391d708b3a89317910e2f7c623b566aea0448c8dcc"}, - {file = "grpcio_tools-1.65.1-cp39-cp39-win_amd64.whl", hash = "sha256:9cc6f342b8e8a2aa801d2d1640290a47563d8bb1a802671191dc3fc218747da3"}, - {file = "grpcio_tools-1.65.1.tar.gz", hash = "sha256:24cffe8bc90fb8237f0bcf240bd6c70304255fe27b69db32601499a043f871be"}, + {file = "grpcio_tools-1.65.4-cp310-cp310-linux_armv7l.whl", hash = "sha256:bd9bfc03776def6267d08885f639ca593eee60c6aa98252b08ac50ece75989bd"}, + {file = "grpcio_tools-1.65.4-cp310-cp310-macosx_12_0_universal2.whl", hash = "sha256:15d8263027ed6f326661a26a1ac4548f01dd6ca1624f491a4aef908c0e7afe22"}, + {file = "grpcio_tools-1.65.4-cp310-cp310-manylinux_2_17_aarch64.whl", hash = "sha256:9075bb8e15726e2dbd9ce7cc982a77b011a529b013013487861d82454508eb7b"}, + {file = "grpcio_tools-1.65.4-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:db10c68bca4a14be13f06143e853231c7265a38571d5b12877394a48397b9b96"}, + {file = "grpcio_tools-1.65.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:21569dda4aa7ab1301766ddc2d5d30c58f987d02a9ca5d984886bdb419a76746"}, + {file = "grpcio_tools-1.65.4-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:5fb1bc6263af137662ab1d11eed36a50f9f75aa1948837030dd54d8688a9e8f1"}, + {file = "grpcio_tools-1.65.4-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:d3fafd48563cc28e8537f4a7d2de28b4436df9337e639a42acfd53548ecaa62e"}, + {file = "grpcio_tools-1.65.4-cp310-cp310-win32.whl", hash = "sha256:9dd133763c0b322466a83557e04c9455c2966f51621cc03adee096dcfdbc6b51"}, + {file = "grpcio_tools-1.65.4-cp310-cp310-win_amd64.whl", hash = "sha256:4b108396d95a07705b2d5f53e8621a8499025148167ee801e05d90a267c111d5"}, + {file = "grpcio_tools-1.65.4-cp311-cp311-linux_armv7l.whl", hash = "sha256:64162a0df2fb170674a580ed5d14b954ea9f48460f5ec8f0f54231c3e52ed56c"}, + {file = "grpcio_tools-1.65.4-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:323a168b7cdd25b4273781b277559a4048d890f64931c102295a042f5434693f"}, + {file = "grpcio_tools-1.65.4-cp311-cp311-manylinux_2_17_aarch64.whl", hash = "sha256:12db3fd619b55679df484c3998fce49db04924fb4000e5eb794cb6c92f65830f"}, + {file = "grpcio_tools-1.65.4-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2d82c974592e7af9a9bc20103b3a2a07f3832fdc48b4a24c71c9726560b5889f"}, + {file = "grpcio_tools-1.65.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fe2278a86c360d1772e42a635ed5028bdecf9b4c88e61cdba1f72c048c8358d5"}, + {file = "grpcio_tools-1.65.4-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:9ec926ac0f11e195ae69ea46ce4f5b4cb67784e1149cb0a244dcf3163a7579fa"}, + {file = "grpcio_tools-1.65.4-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:8e7a836784d43add8cdbf8434546334aa17c67fafb7c8cf79053a6fe5a4d9b4f"}, + {file = "grpcio_tools-1.65.4-cp311-cp311-win32.whl", hash = "sha256:5589828575bd4f097f129a8458b1315dbe0681fc6f79df4490e513fbd5d5612f"}, + {file = "grpcio_tools-1.65.4-cp311-cp311-win_amd64.whl", hash = "sha256:8efdda509c8f203ea228cddd4fa8ece56e585daabb891ed1963604f173969dee"}, + {file = "grpcio_tools-1.65.4-cp312-cp312-linux_armv7l.whl", hash = "sha256:a077784cf8808f8bc632978f609abb1eb409b84ce72fd61dc6755def782bfbe7"}, + {file = "grpcio_tools-1.65.4-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:cb5e360704ceeb71658602b1de717a8613044194f90a7a087e90c6d36539e695"}, + {file = "grpcio_tools-1.65.4-cp312-cp312-manylinux_2_17_aarch64.whl", hash = "sha256:9c9155210d15891eb7344eb4b6b91153472cbe67dfcfb41de71fc79763155c17"}, + {file = "grpcio_tools-1.65.4-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:245254307701a3dfb32bfbea4f2f618c30eb7ea638824f2e7ccd2e3bfeec3a47"}, + {file = "grpcio_tools-1.65.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6da3adf692b55fb52019b79294a6b4b6833186b2fa68186e7cc993a53b232982"}, + {file = "grpcio_tools-1.65.4-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:49ef47db7c6487f37ab302f5f5b5003c96a015649a1c0d7bcbbd0daa18beeb43"}, + {file = "grpcio_tools-1.65.4-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:6d1004ea42639bec7b7a9b7883cd4bd8a6ef4845f9b39870aaee8efac2a24e46"}, + {file = "grpcio_tools-1.65.4-cp312-cp312-win32.whl", hash = "sha256:c1471720682639f19d1baaa976df1021e98a51c609d1405e0b277b9cbcae96bd"}, + {file = "grpcio_tools-1.65.4-cp312-cp312-win_amd64.whl", hash = "sha256:75cf8276550d213524cf660e73aaee858f94d19f99a0ec8e29665d6deab0f89e"}, + {file = "grpcio_tools-1.65.4-cp38-cp38-linux_armv7l.whl", hash = "sha256:442fc5d8d4535e475a17f85a4e45b4af5741bf895f187e20f881e83cbc34e791"}, + {file = "grpcio_tools-1.65.4-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:a10d079ea52264fbf82cf14c4f103873ad54cba237d708f03603a8cb367584e1"}, + {file = "grpcio_tools-1.65.4-cp38-cp38-manylinux_2_17_aarch64.whl", hash = "sha256:460226bc931b98e60b96b6b4063331de70f19508c8c14072d3661924cdd9a82c"}, + {file = "grpcio_tools-1.65.4-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:aa9d9322e07909031b81ae10124f6a01e74a8f7d42b6eeaccfd790aad2518060"}, + {file = "grpcio_tools-1.65.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2c87b7e304376a6c5aaf7d6276f4f58a36b861709063370902eb9c6d5317a31b"}, + {file = "grpcio_tools-1.65.4-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:d68abc5c9c012f2521f93b2941b6a44b24d03462ed1f0dcddb03a62df1a81091"}, + {file = "grpcio_tools-1.65.4-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:3ac76c7331fe397307d58098f24657efa793b21db7d87e22112f1fe3dad62789"}, + {file = "grpcio_tools-1.65.4-cp38-cp38-win32.whl", hash = "sha256:1f628780bd18025e30675b97ece2faadedd33360c4b87fe91e788522c4425a79"}, + {file = "grpcio_tools-1.65.4-cp38-cp38-win_amd64.whl", hash = "sha256:b0d6f235be4d4faca855156094d8684ee7ebe3087ee9dd0689cfa527009cdeaf"}, + {file = "grpcio_tools-1.65.4-cp39-cp39-linux_armv7l.whl", hash = "sha256:d84ed2f64ca63f775f96c66426c8cd5dd904d38f1f1246e23c9a686839673b2d"}, + {file = "grpcio_tools-1.65.4-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:79056f95ae64d0f936edd1c2d421897c0923687a09f479b6a4bd5a64e8b4a2ec"}, + {file = "grpcio_tools-1.65.4-cp39-cp39-manylinux_2_17_aarch64.whl", hash = "sha256:bfca471c8ab6af43e2ccdd395cda6e40d4100ffc39961d53707becb4db51dc8b"}, + {file = "grpcio_tools-1.65.4-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:24048d0a969813851ba5f2b3fabc92fa7cb49e6b10f1d00114303eaa84f770fb"}, + {file = "grpcio_tools-1.65.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d37bf8276058b4600b3c65b9d62242d45fde06a2b69ff86d4e0f061287c33aa5"}, + {file = "grpcio_tools-1.65.4-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:2f04d4879077795b998dc5d1c7510f8cd42f5082d4447c35fe39f57b95d7010e"}, + {file = "grpcio_tools-1.65.4-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:cef9ae044b846e4ab9ce3c7cb872ebeedbb7ae545db8c585187744848dd93559"}, + {file = "grpcio_tools-1.65.4-cp39-cp39-win32.whl", hash = "sha256:5051e85953b942521528b19eb39bd6dad3b3e0e5a552a66bbeadbbd4a4a6f0e5"}, + {file = "grpcio_tools-1.65.4-cp39-cp39-win_amd64.whl", hash = "sha256:a39a9c033391c3ce591a06ee058ed16e07b06ac2866083c53daa4e5d5235efc6"}, + {file = "grpcio_tools-1.65.4.tar.gz", hash = "sha256:638486d9ebf68a847f59dad0480292142a3c5143a2943bce7721c3ce9f665148"}, ] [package.dependencies] -grpcio = ">=1.65.1" +grpcio = ">=1.65.4" protobuf = ">=5.26.1,<6.0dev" setuptools = "*" @@ -1876,13 +1923,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "pre-commit" -version = "3.7.1" +version = "3.8.0" description = "A framework for managing and maintaining multi-language pre-commit hooks." optional = false python-versions = ">=3.9" files = [ - {file = "pre_commit-3.7.1-py2.py3-none-any.whl", hash = "sha256:fae36fd1d7ad7d6a5a1c0b0d5adb2ed1a3bda5a21bf6c3e5372073d7a11cd4c5"}, - {file = "pre_commit-3.7.1.tar.gz", hash = "sha256:8ca3ad567bc78a4972a3f1a477e94a79d4597e8140a6e0b651c5e33899c3654a"}, + {file = "pre_commit-3.8.0-py2.py3-none-any.whl", hash = "sha256:9a90a53bf82fdd8778d58085faf8d83df56e40dfe18f45b19446e26bf1b3a63f"}, + {file = "pre_commit-3.8.0.tar.gz", hash = "sha256:8bb6494d4a20423842e198980c9ecf9f96607a07ea29549e180eef9ae80fe7af"}, ] [package.dependencies] @@ -1894,22 +1941,22 @@ virtualenv = ">=20.10.0" [[package]] name = "protobuf" -version = "5.27.2" +version = "5.26.1" description = "" optional = false python-versions = ">=3.8" files = [ - {file = "protobuf-5.27.2-cp310-abi3-win32.whl", hash = "sha256:354d84fac2b0d76062e9b3221f4abbbacdfd2a4d8af36bab0474f3a0bb30ab38"}, - {file = "protobuf-5.27.2-cp310-abi3-win_amd64.whl", hash = "sha256:0e341109c609749d501986b835f667c6e1e24531096cff9d34ae411595e26505"}, - {file = "protobuf-5.27.2-cp38-abi3-macosx_10_9_universal2.whl", hash = "sha256:a109916aaac42bff84702fb5187f3edadbc7c97fc2c99c5ff81dd15dcce0d1e5"}, - {file = "protobuf-5.27.2-cp38-abi3-manylinux2014_aarch64.whl", hash = "sha256:176c12b1f1c880bf7a76d9f7c75822b6a2bc3db2d28baa4d300e8ce4cde7409b"}, - {file = "protobuf-5.27.2-cp38-abi3-manylinux2014_x86_64.whl", hash = "sha256:b848dbe1d57ed7c191dfc4ea64b8b004a3f9ece4bf4d0d80a367b76df20bf36e"}, - {file = "protobuf-5.27.2-cp38-cp38-win32.whl", hash = "sha256:4fadd8d83e1992eed0248bc50a4a6361dc31bcccc84388c54c86e530b7f58863"}, - {file = "protobuf-5.27.2-cp38-cp38-win_amd64.whl", hash = "sha256:610e700f02469c4a997e58e328cac6f305f649826853813177e6290416e846c6"}, - {file = "protobuf-5.27.2-cp39-cp39-win32.whl", hash = "sha256:9e8f199bf7f97bd7ecebffcae45ebf9527603549b2b562df0fbc6d4d688f14ca"}, - {file = "protobuf-5.27.2-cp39-cp39-win_amd64.whl", hash = "sha256:7fc3add9e6003e026da5fc9e59b131b8f22b428b991ccd53e2af8071687b4fce"}, - {file = "protobuf-5.27.2-py3-none-any.whl", hash = "sha256:54330f07e4949d09614707c48b06d1a22f8ffb5763c159efd5c0928326a91470"}, - {file = "protobuf-5.27.2.tar.gz", hash = "sha256:f3ecdef226b9af856075f28227ff2c90ce3a594d092c39bee5513573f25e2714"}, + {file = "protobuf-5.26.1-cp310-abi3-win32.whl", hash = "sha256:3c388ea6ddfe735f8cf69e3f7dc7611e73107b60bdfcf5d0f024c3ccd3794e23"}, + {file = "protobuf-5.26.1-cp310-abi3-win_amd64.whl", hash = "sha256:e6039957449cb918f331d32ffafa8eb9255769c96aa0560d9a5bf0b4e00a2a33"}, + {file = "protobuf-5.26.1-cp37-abi3-macosx_10_9_universal2.whl", hash = "sha256:38aa5f535721d5bb99861166c445c4105c4e285c765fbb2ac10f116e32dcd46d"}, + {file = "protobuf-5.26.1-cp37-abi3-manylinux2014_aarch64.whl", hash = "sha256:fbfe61e7ee8c1860855696e3ac6cfd1b01af5498facc6834fcc345c9684fb2ca"}, + {file = "protobuf-5.26.1-cp37-abi3-manylinux2014_x86_64.whl", hash = "sha256:f7417703f841167e5a27d48be13389d52ad705ec09eade63dfc3180a959215d7"}, + {file = "protobuf-5.26.1-cp38-cp38-win32.whl", hash = "sha256:d693d2504ca96750d92d9de8a103102dd648fda04540495535f0fec7577ed8fc"}, + {file = "protobuf-5.26.1-cp38-cp38-win_amd64.whl", hash = "sha256:9b557c317ebe6836835ec4ef74ec3e994ad0894ea424314ad3552bc6e8835b4e"}, + {file = "protobuf-5.26.1-cp39-cp39-win32.whl", hash = "sha256:b9ba3ca83c2e31219ffbeb9d76b63aad35a3eb1544170c55336993d7a18ae72c"}, + {file = "protobuf-5.26.1-cp39-cp39-win_amd64.whl", hash = "sha256:7ee014c2c87582e101d6b54260af03b6596728505c79f17c8586e7523aaa8f8c"}, + {file = "protobuf-5.26.1-py3-none-any.whl", hash = "sha256:da612f2720c0183417194eeaa2523215c4fcc1a1949772dc65f05047e08d5932"}, + {file = "protobuf-5.26.1.tar.gz", hash = "sha256:8ca2a1d97c290ec7b16e4e5dff2e5ae150cc1582f55b5ab300d45cb0dfa90e51"}, ] [[package]] @@ -2357,114 +2404,114 @@ test = ["hypothesis (==5.19.0)", "pytest (>=7.0.0)", "pytest-xdist (>=2.4.0)"] [[package]] name = "rpds-py" -version = "0.19.1" +version = "0.20.0" description = "Python bindings to Rust's persistent data structures (rpds)" optional = false python-versions = ">=3.8" files = [ - {file = "rpds_py-0.19.1-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:aaf71f95b21f9dc708123335df22e5a2fef6307e3e6f9ed773b2e0938cc4d491"}, - {file = "rpds_py-0.19.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:ca0dda0c5715efe2ab35bb83f813f681ebcd2840d8b1b92bfc6fe3ab382fae4a"}, - {file = "rpds_py-0.19.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:81db2e7282cc0487f500d4db203edc57da81acde9e35f061d69ed983228ffe3b"}, - {file = "rpds_py-0.19.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:1a8dfa125b60ec00c7c9baef945bb04abf8ac772d8ebefd79dae2a5f316d7850"}, - {file = "rpds_py-0.19.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:271accf41b02687cef26367c775ab220372ee0f4925591c6796e7c148c50cab5"}, - {file = "rpds_py-0.19.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f9bc4161bd3b970cd6a6fcda70583ad4afd10f2750609fb1f3ca9505050d4ef3"}, - {file = "rpds_py-0.19.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f0cf2a0dbb5987da4bd92a7ca727eadb225581dd9681365beba9accbe5308f7d"}, - {file = "rpds_py-0.19.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b5e28e56143750808c1c79c70a16519e9bc0a68b623197b96292b21b62d6055c"}, - {file = "rpds_py-0.19.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:c7af6f7b80f687b33a4cdb0a785a5d4de1fb027a44c9a049d8eb67d5bfe8a687"}, - {file = "rpds_py-0.19.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e429fc517a1c5e2a70d576077231538a98d59a45dfc552d1ac45a132844e6dfb"}, - {file = "rpds_py-0.19.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:d2dbd8f4990d4788cb122f63bf000357533f34860d269c1a8e90ae362090ff3a"}, - {file = "rpds_py-0.19.1-cp310-none-win32.whl", hash = "sha256:e0f9d268b19e8f61bf42a1da48276bcd05f7ab5560311f541d22557f8227b866"}, - {file = "rpds_py-0.19.1-cp310-none-win_amd64.whl", hash = "sha256:df7c841813f6265e636fe548a49664c77af31ddfa0085515326342a751a6ba51"}, - {file = "rpds_py-0.19.1-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:902cf4739458852fe917104365ec0efbea7d29a15e4276c96a8d33e6ed8ec137"}, - {file = "rpds_py-0.19.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f3d73022990ab0c8b172cce57c69fd9a89c24fd473a5e79cbce92df87e3d9c48"}, - {file = "rpds_py-0.19.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3837c63dd6918a24de6c526277910e3766d8c2b1627c500b155f3eecad8fad65"}, - {file = "rpds_py-0.19.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:cdb7eb3cf3deb3dd9e7b8749323b5d970052711f9e1e9f36364163627f96da58"}, - {file = "rpds_py-0.19.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:26ab43b6d65d25b1a333c8d1b1c2f8399385ff683a35ab5e274ba7b8bb7dc61c"}, - {file = "rpds_py-0.19.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:75130df05aae7a7ac171b3b5b24714cffeabd054ad2ebc18870b3aa4526eba23"}, - {file = "rpds_py-0.19.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c34f751bf67cab69638564eee34023909380ba3e0d8ee7f6fe473079bf93f09b"}, - {file = "rpds_py-0.19.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:f2671cb47e50a97f419a02cd1e0c339b31de017b033186358db92f4d8e2e17d8"}, - {file = "rpds_py-0.19.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:3c73254c256081704dba0a333457e2fb815364018788f9b501efe7c5e0ada401"}, - {file = "rpds_py-0.19.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:4383beb4a29935b8fa28aca8fa84c956bf545cb0c46307b091b8d312a9150e6a"}, - {file = "rpds_py-0.19.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:dbceedcf4a9329cc665452db1aaf0845b85c666e4885b92ee0cddb1dbf7e052a"}, - {file = "rpds_py-0.19.1-cp311-none-win32.whl", hash = "sha256:f0a6d4a93d2a05daec7cb885157c97bbb0be4da739d6f9dfb02e101eb40921cd"}, - {file = "rpds_py-0.19.1-cp311-none-win_amd64.whl", hash = "sha256:c149a652aeac4902ecff2dd93c3b2681c608bd5208c793c4a99404b3e1afc87c"}, - {file = "rpds_py-0.19.1-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:56313be667a837ff1ea3508cebb1ef6681d418fa2913a0635386cf29cff35165"}, - {file = "rpds_py-0.19.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:6d1d7539043b2b31307f2c6c72957a97c839a88b2629a348ebabe5aa8b626d6b"}, - {file = "rpds_py-0.19.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3e1dc59a5e7bc7f44bd0c048681f5e05356e479c50be4f2c1a7089103f1621d5"}, - {file = "rpds_py-0.19.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:b8f78398e67a7227aefa95f876481485403eb974b29e9dc38b307bb6eb2315ea"}, - {file = "rpds_py-0.19.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ef07a0a1d254eeb16455d839cef6e8c2ed127f47f014bbda64a58b5482b6c836"}, - {file = "rpds_py-0.19.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8124101e92c56827bebef084ff106e8ea11c743256149a95b9fd860d3a4f331f"}, - {file = "rpds_py-0.19.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:08ce9c95a0b093b7aec75676b356a27879901488abc27e9d029273d280438505"}, - {file = "rpds_py-0.19.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:0b02dd77a2de6e49078c8937aadabe933ceac04b41c5dde5eca13a69f3cf144e"}, - {file = "rpds_py-0.19.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:4dd02e29c8cbed21a1875330b07246b71121a1c08e29f0ee3db5b4cfe16980c4"}, - {file = "rpds_py-0.19.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:9c7042488165f7251dc7894cd533a875d2875af6d3b0e09eda9c4b334627ad1c"}, - {file = "rpds_py-0.19.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:f809a17cc78bd331e137caa25262b507225854073fd319e987bd216bed911b7c"}, - {file = "rpds_py-0.19.1-cp312-none-win32.whl", hash = "sha256:3ddab996807c6b4227967fe1587febade4e48ac47bb0e2d3e7858bc621b1cace"}, - {file = "rpds_py-0.19.1-cp312-none-win_amd64.whl", hash = "sha256:32e0db3d6e4f45601b58e4ac75c6f24afbf99818c647cc2066f3e4b192dabb1f"}, - {file = "rpds_py-0.19.1-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:747251e428406b05fc86fee3904ee19550c4d2d19258cef274e2151f31ae9d38"}, - {file = "rpds_py-0.19.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:dc733d35f861f8d78abfaf54035461e10423422999b360966bf1c443cbc42705"}, - {file = "rpds_py-0.19.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bbda75f245caecff8faa7e32ee94dfaa8312a3367397975527f29654cd17a6ed"}, - {file = "rpds_py-0.19.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bd04d8cab16cab5b0a9ffc7d10f0779cf1120ab16c3925404428f74a0a43205a"}, - {file = "rpds_py-0.19.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e2d66eb41ffca6cc3c91d8387509d27ba73ad28371ef90255c50cb51f8953301"}, - {file = "rpds_py-0.19.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:fdf4890cda3b59170009d012fca3294c00140e7f2abe1910e6a730809d0f3f9b"}, - {file = "rpds_py-0.19.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d1fa67ef839bad3815124f5f57e48cd50ff392f4911a9f3cf449d66fa3df62a5"}, - {file = "rpds_py-0.19.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b82c9514c6d74b89a370c4060bdb80d2299bc6857e462e4a215b4ef7aa7b090e"}, - {file = "rpds_py-0.19.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c7b07959866a6afb019abb9564d8a55046feb7a84506c74a6f197cbcdf8a208e"}, - {file = "rpds_py-0.19.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:4f580ae79d0b861dfd912494ab9d477bea535bfb4756a2269130b6607a21802e"}, - {file = "rpds_py-0.19.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:c6d20c8896c00775e6f62d8373aba32956aa0b850d02b5ec493f486c88e12859"}, - {file = "rpds_py-0.19.1-cp313-none-win32.whl", hash = "sha256:afedc35fe4b9e30ab240b208bb9dc8938cb4afe9187589e8d8d085e1aacb8309"}, - {file = "rpds_py-0.19.1-cp313-none-win_amd64.whl", hash = "sha256:1d4af2eb520d759f48f1073ad3caef997d1bfd910dc34e41261a595d3f038a94"}, - {file = "rpds_py-0.19.1-cp38-cp38-macosx_10_12_x86_64.whl", hash = "sha256:34bca66e2e3eabc8a19e9afe0d3e77789733c702c7c43cd008e953d5d1463fde"}, - {file = "rpds_py-0.19.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:24f8ae92c7fae7c28d0fae9b52829235df83f34847aa8160a47eb229d9666c7b"}, - {file = "rpds_py-0.19.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:71157f9db7f6bc6599a852852f3389343bea34315b4e6f109e5cbc97c1fb2963"}, - {file = "rpds_py-0.19.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:1d494887d40dc4dd0d5a71e9d07324e5c09c4383d93942d391727e7a40ff810b"}, - {file = "rpds_py-0.19.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:7b3661e6d4ba63a094138032c1356d557de5b3ea6fd3cca62a195f623e381c76"}, - {file = "rpds_py-0.19.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:97fbb77eaeb97591efdc654b8b5f3ccc066406ccfb3175b41382f221ecc216e8"}, - {file = "rpds_py-0.19.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4cc4bc73e53af8e7a42c8fd7923bbe35babacfa7394ae9240b3430b5dcf16b2a"}, - {file = "rpds_py-0.19.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:35af5e4d5448fa179fd7fff0bba0fba51f876cd55212f96c8bbcecc5c684ae5c"}, - {file = "rpds_py-0.19.1-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:3511f6baf8438326e351097cecd137eb45c5f019944fe0fd0ae2fea2fd26be39"}, - {file = "rpds_py-0.19.1-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:57863d16187995c10fe9cf911b897ed443ac68189179541734502353af33e693"}, - {file = "rpds_py-0.19.1-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:9e318e6786b1e750a62f90c6f7fa8b542102bdcf97c7c4de2a48b50b61bd36ec"}, - {file = "rpds_py-0.19.1-cp38-none-win32.whl", hash = "sha256:53dbc35808c6faa2ce3e48571f8f74ef70802218554884787b86a30947842a14"}, - {file = "rpds_py-0.19.1-cp38-none-win_amd64.whl", hash = "sha256:8df1c283e57c9cb4d271fdc1875f4a58a143a2d1698eb0d6b7c0d7d5f49c53a1"}, - {file = "rpds_py-0.19.1-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:e76c902d229a3aa9d5ceb813e1cbcc69bf5bda44c80d574ff1ac1fa3136dea71"}, - {file = "rpds_py-0.19.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:de1f7cd5b6b351e1afd7568bdab94934d656abe273d66cda0ceea43bbc02a0c2"}, - {file = "rpds_py-0.19.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:24fc5a84777cb61692d17988989690d6f34f7f95968ac81398d67c0d0994a897"}, - {file = "rpds_py-0.19.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:74129d5ffc4cde992d89d345f7f7d6758320e5d44a369d74d83493429dad2de5"}, - {file = "rpds_py-0.19.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5e360188b72f8080fefa3adfdcf3618604cc8173651c9754f189fece068d2a45"}, - {file = "rpds_py-0.19.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:13e6d4840897d4e4e6b2aa1443e3a8eca92b0402182aafc5f4ca1f5e24f9270a"}, - {file = "rpds_py-0.19.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f09529d2332264a902688031a83c19de8fda5eb5881e44233286b9c9ec91856d"}, - {file = "rpds_py-0.19.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:0d4b52811dcbc1aba08fd88d475f75b4f6db0984ba12275d9bed1a04b2cae9b5"}, - {file = "rpds_py-0.19.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:dd635c2c4043222d80d80ca1ac4530a633102a9f2ad12252183bcf338c1b9474"}, - {file = "rpds_py-0.19.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:f35b34a5184d5e0cc360b61664c1c06e866aab077b5a7c538a3e20c8fcdbf90b"}, - {file = "rpds_py-0.19.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:d4ec0046facab83012d821b33cead742a35b54575c4edfb7ed7445f63441835f"}, - {file = "rpds_py-0.19.1-cp39-none-win32.whl", hash = "sha256:f5b8353ea1a4d7dfb59a7f45c04df66ecfd363bb5b35f33b11ea579111d4655f"}, - {file = "rpds_py-0.19.1-cp39-none-win_amd64.whl", hash = "sha256:1fb93d3486f793d54a094e2bfd9cd97031f63fcb5bc18faeb3dd4b49a1c06523"}, - {file = "rpds_py-0.19.1-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:7d5c7e32f3ee42f77d8ff1a10384b5cdcc2d37035e2e3320ded909aa192d32c3"}, - {file = "rpds_py-0.19.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:89cc8921a4a5028d6dd388c399fcd2eef232e7040345af3d5b16c04b91cf3c7e"}, - {file = "rpds_py-0.19.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bca34e913d27401bda2a6f390d0614049f5a95b3b11cd8eff80fe4ec340a1208"}, - {file = "rpds_py-0.19.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:5953391af1405f968eb5701ebbb577ebc5ced8d0041406f9052638bafe52209d"}, - {file = "rpds_py-0.19.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:840e18c38098221ea6201f091fc5d4de6128961d2930fbbc96806fb43f69aec1"}, - {file = "rpds_py-0.19.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6d8b735c4d162dc7d86a9cf3d717f14b6c73637a1f9cd57fe7e61002d9cb1972"}, - {file = "rpds_py-0.19.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ce757c7c90d35719b38fa3d4ca55654a76a40716ee299b0865f2de21c146801c"}, - {file = "rpds_py-0.19.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:a9421b23c85f361a133aa7c5e8ec757668f70343f4ed8fdb5a4a14abd5437244"}, - {file = "rpds_py-0.19.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:3b823be829407393d84ee56dc849dbe3b31b6a326f388e171555b262e8456cc1"}, - {file = "rpds_py-0.19.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:5e58b61dcbb483a442c6239c3836696b79f2cd8e7eec11e12155d3f6f2d886d1"}, - {file = "rpds_py-0.19.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:39d67896f7235b2c886fb1ee77b1491b77049dcef6fbf0f401e7b4cbed86bbd4"}, - {file = "rpds_py-0.19.1-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:8b32cd4ab6db50c875001ba4f5a6b30c0f42151aa1fbf9c2e7e3674893fb1dc4"}, - {file = "rpds_py-0.19.1-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:1c32e41de995f39b6b315d66c27dea3ef7f7c937c06caab4c6a79a5e09e2c415"}, - {file = "rpds_py-0.19.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:1a129c02b42d46758c87faeea21a9f574e1c858b9f358b6dd0bbd71d17713175"}, - {file = "rpds_py-0.19.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:346557f5b1d8fd9966059b7a748fd79ac59f5752cd0e9498d6a40e3ac1c1875f"}, - {file = "rpds_py-0.19.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:31e450840f2f27699d014cfc8865cc747184286b26d945bcea6042bb6aa4d26e"}, - {file = "rpds_py-0.19.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:01227f8b3e6c8961490d869aa65c99653df80d2f0a7fde8c64ebddab2b9b02fd"}, - {file = "rpds_py-0.19.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:69084fd29bfeff14816666c93a466e85414fe6b7d236cfc108a9c11afa6f7301"}, - {file = "rpds_py-0.19.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e4d2b88efe65544a7d5121b0c3b003ebba92bfede2ea3577ce548b69c5235185"}, - {file = "rpds_py-0.19.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:6ea961a674172ed2235d990d7edf85d15d8dfa23ab8575e48306371c070cda67"}, - {file = "rpds_py-0.19.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:5beffdbe766cfe4fb04f30644d822a1080b5359df7db3a63d30fa928375b2720"}, - {file = "rpds_py-0.19.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:720f3108fb1bfa32e51db58b832898372eb5891e8472a8093008010911e324c5"}, - {file = "rpds_py-0.19.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:c2087dbb76a87ec2c619253e021e4fb20d1a72580feeaa6892b0b3d955175a71"}, - {file = "rpds_py-0.19.1-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:2ddd50f18ebc05ec29a0d9271e9dbe93997536da3546677f8ca00b76d477680c"}, - {file = "rpds_py-0.19.1.tar.gz", hash = "sha256:31dd5794837f00b46f4096aa8ccaa5972f73a938982e32ed817bb520c465e520"}, + {file = "rpds_py-0.20.0-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:3ad0fda1635f8439cde85c700f964b23ed5fc2d28016b32b9ee5fe30da5c84e2"}, + {file = "rpds_py-0.20.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9bb4a0d90fdb03437c109a17eade42dfbf6190408f29b2744114d11586611d6f"}, + {file = "rpds_py-0.20.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c6377e647bbfd0a0b159fe557f2c6c602c159fc752fa316572f012fc0bf67150"}, + {file = "rpds_py-0.20.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:eb851b7df9dda52dc1415ebee12362047ce771fc36914586b2e9fcbd7d293b3e"}, + {file = "rpds_py-0.20.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1e0f80b739e5a8f54837be5d5c924483996b603d5502bfff79bf33da06164ee2"}, + {file = "rpds_py-0.20.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5a8c94dad2e45324fc74dce25e1645d4d14df9a4e54a30fa0ae8bad9a63928e3"}, + {file = "rpds_py-0.20.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f8e604fe73ba048c06085beaf51147eaec7df856824bfe7b98657cf436623daf"}, + {file = "rpds_py-0.20.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:df3de6b7726b52966edf29663e57306b23ef775faf0ac01a3e9f4012a24a4140"}, + {file = "rpds_py-0.20.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:cf258ede5bc22a45c8e726b29835b9303c285ab46fc7c3a4cc770736b5304c9f"}, + {file = "rpds_py-0.20.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:55fea87029cded5df854ca7e192ec7bdb7ecd1d9a3f63d5c4eb09148acf4a7ce"}, + {file = "rpds_py-0.20.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:ae94bd0b2f02c28e199e9bc51485d0c5601f58780636185660f86bf80c89af94"}, + {file = "rpds_py-0.20.0-cp310-none-win32.whl", hash = "sha256:28527c685f237c05445efec62426d285e47a58fb05ba0090a4340b73ecda6dee"}, + {file = "rpds_py-0.20.0-cp310-none-win_amd64.whl", hash = "sha256:238a2d5b1cad28cdc6ed15faf93a998336eb041c4e440dd7f902528b8891b399"}, + {file = "rpds_py-0.20.0-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:ac2f4f7a98934c2ed6505aead07b979e6f999389f16b714448fb39bbaa86a489"}, + {file = "rpds_py-0.20.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:220002c1b846db9afd83371d08d239fdc865e8f8c5795bbaec20916a76db3318"}, + {file = "rpds_py-0.20.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8d7919548df3f25374a1f5d01fbcd38dacab338ef5f33e044744b5c36729c8db"}, + {file = "rpds_py-0.20.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:758406267907b3781beee0f0edfe4a179fbd97c0be2e9b1154d7f0a1279cf8e5"}, + {file = "rpds_py-0.20.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3d61339e9f84a3f0767b1995adfb171a0d00a1185192718a17af6e124728e0f5"}, + {file = "rpds_py-0.20.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1259c7b3705ac0a0bd38197565a5d603218591d3f6cee6e614e380b6ba61c6f6"}, + {file = "rpds_py-0.20.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5c1dc0f53856b9cc9a0ccca0a7cc61d3d20a7088201c0937f3f4048c1718a209"}, + {file = "rpds_py-0.20.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:7e60cb630f674a31f0368ed32b2a6b4331b8350d67de53c0359992444b116dd3"}, + {file = "rpds_py-0.20.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:dbe982f38565bb50cb7fb061ebf762c2f254ca3d8c20d4006878766e84266272"}, + {file = "rpds_py-0.20.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:514b3293b64187172bc77c8fb0cdae26981618021053b30d8371c3a902d4d5ad"}, + {file = "rpds_py-0.20.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:d0a26ffe9d4dd35e4dfdd1e71f46401cff0181c75ac174711ccff0459135fa58"}, + {file = "rpds_py-0.20.0-cp311-none-win32.whl", hash = "sha256:89c19a494bf3ad08c1da49445cc5d13d8fefc265f48ee7e7556839acdacf69d0"}, + {file = "rpds_py-0.20.0-cp311-none-win_amd64.whl", hash = "sha256:c638144ce971df84650d3ed0096e2ae7af8e62ecbbb7b201c8935c370df00a2c"}, + {file = "rpds_py-0.20.0-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:a84ab91cbe7aab97f7446652d0ed37d35b68a465aeef8fc41932a9d7eee2c1a6"}, + {file = "rpds_py-0.20.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:56e27147a5a4c2c21633ff8475d185734c0e4befd1c989b5b95a5d0db699b21b"}, + {file = "rpds_py-0.20.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2580b0c34583b85efec8c5c5ec9edf2dfe817330cc882ee972ae650e7b5ef739"}, + {file = "rpds_py-0.20.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:b80d4a7900cf6b66bb9cee5c352b2d708e29e5a37fe9bf784fa97fc11504bf6c"}, + {file = "rpds_py-0.20.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:50eccbf054e62a7b2209b28dc7a22d6254860209d6753e6b78cfaeb0075d7bee"}, + {file = "rpds_py-0.20.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:49a8063ea4296b3a7e81a5dfb8f7b2d73f0b1c20c2af401fb0cdf22e14711a96"}, + {file = "rpds_py-0.20.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ea438162a9fcbee3ecf36c23e6c68237479f89f962f82dae83dc15feeceb37e4"}, + {file = "rpds_py-0.20.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:18d7585c463087bddcfa74c2ba267339f14f2515158ac4db30b1f9cbdb62c8ef"}, + {file = "rpds_py-0.20.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:d4c7d1a051eeb39f5c9547e82ea27cbcc28338482242e3e0b7768033cb083821"}, + {file = "rpds_py-0.20.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:e4df1e3b3bec320790f699890d41c59d250f6beda159ea3c44c3f5bac1976940"}, + {file = "rpds_py-0.20.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:2cf126d33a91ee6eedc7f3197b53e87a2acdac63602c0f03a02dd69e4b138174"}, + {file = "rpds_py-0.20.0-cp312-none-win32.whl", hash = "sha256:8bc7690f7caee50b04a79bf017a8d020c1f48c2a1077ffe172abec59870f1139"}, + {file = "rpds_py-0.20.0-cp312-none-win_amd64.whl", hash = "sha256:0e13e6952ef264c40587d510ad676a988df19adea20444c2b295e536457bc585"}, + {file = "rpds_py-0.20.0-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:aa9a0521aeca7d4941499a73ad7d4f8ffa3d1affc50b9ea11d992cd7eff18a29"}, + {file = "rpds_py-0.20.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:4a1f1d51eccb7e6c32ae89243cb352389228ea62f89cd80823ea7dd1b98e0b91"}, + {file = "rpds_py-0.20.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8a86a9b96070674fc88b6f9f71a97d2c1d3e5165574615d1f9168ecba4cecb24"}, + {file = "rpds_py-0.20.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:6c8ef2ebf76df43f5750b46851ed1cdf8f109d7787ca40035fe19fbdc1acc5a7"}, + {file = "rpds_py-0.20.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b74b25f024b421d5859d156750ea9a65651793d51b76a2e9238c05c9d5f203a9"}, + {file = "rpds_py-0.20.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:57eb94a8c16ab08fef6404301c38318e2c5a32216bf5de453e2714c964c125c8"}, + {file = "rpds_py-0.20.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e1940dae14e715e2e02dfd5b0f64a52e8374a517a1e531ad9412319dc3ac7879"}, + {file = "rpds_py-0.20.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:d20277fd62e1b992a50c43f13fbe13277a31f8c9f70d59759c88f644d66c619f"}, + {file = "rpds_py-0.20.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:06db23d43f26478303e954c34c75182356ca9aa7797d22c5345b16871ab9c45c"}, + {file = "rpds_py-0.20.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:b2a5db5397d82fa847e4c624b0c98fe59d2d9b7cf0ce6de09e4d2e80f8f5b3f2"}, + {file = "rpds_py-0.20.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:5a35df9f5548fd79cb2f52d27182108c3e6641a4feb0f39067911bf2adaa3e57"}, + {file = "rpds_py-0.20.0-cp313-none-win32.whl", hash = "sha256:fd2d84f40633bc475ef2d5490b9c19543fbf18596dcb1b291e3a12ea5d722f7a"}, + {file = "rpds_py-0.20.0-cp313-none-win_amd64.whl", hash = "sha256:9bc2d153989e3216b0559251b0c260cfd168ec78b1fac33dd485750a228db5a2"}, + {file = "rpds_py-0.20.0-cp38-cp38-macosx_10_12_x86_64.whl", hash = "sha256:f2fbf7db2012d4876fb0d66b5b9ba6591197b0f165db8d99371d976546472a24"}, + {file = "rpds_py-0.20.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:1e5f3cd7397c8f86c8cc72d5a791071431c108edd79872cdd96e00abd8497d29"}, + {file = "rpds_py-0.20.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ce9845054c13696f7af7f2b353e6b4f676dab1b4b215d7fe5e05c6f8bb06f965"}, + {file = "rpds_py-0.20.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:c3e130fd0ec56cb76eb49ef52faead8ff09d13f4527e9b0c400307ff72b408e1"}, + {file = "rpds_py-0.20.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4b16aa0107ecb512b568244ef461f27697164d9a68d8b35090e9b0c1c8b27752"}, + {file = "rpds_py-0.20.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:aa7f429242aae2947246587d2964fad750b79e8c233a2367f71b554e9447949c"}, + {file = "rpds_py-0.20.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:af0fc424a5842a11e28956e69395fbbeab2c97c42253169d87e90aac2886d751"}, + {file = "rpds_py-0.20.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b8c00a3b1e70c1d3891f0db1b05292747f0dbcfb49c43f9244d04c70fbc40eb8"}, + {file = "rpds_py-0.20.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:40ce74fc86ee4645d0a225498d091d8bc61f39b709ebef8204cb8b5a464d3c0e"}, + {file = "rpds_py-0.20.0-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:4fe84294c7019456e56d93e8ababdad5a329cd25975be749c3f5f558abb48253"}, + {file = "rpds_py-0.20.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:338ca4539aad4ce70a656e5187a3a31c5204f261aef9f6ab50e50bcdffaf050a"}, + {file = "rpds_py-0.20.0-cp38-none-win32.whl", hash = "sha256:54b43a2b07db18314669092bb2de584524d1ef414588780261e31e85846c26a5"}, + {file = "rpds_py-0.20.0-cp38-none-win_amd64.whl", hash = "sha256:a1862d2d7ce1674cffa6d186d53ca95c6e17ed2b06b3f4c476173565c862d232"}, + {file = "rpds_py-0.20.0-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:3fde368e9140312b6e8b6c09fb9f8c8c2f00999d1823403ae90cc00480221b22"}, + {file = "rpds_py-0.20.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:9824fb430c9cf9af743cf7aaf6707bf14323fb51ee74425c380f4c846ea70789"}, + {file = "rpds_py-0.20.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:11ef6ce74616342888b69878d45e9f779b95d4bd48b382a229fe624a409b72c5"}, + {file = "rpds_py-0.20.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:c52d3f2f82b763a24ef52f5d24358553e8403ce05f893b5347098014f2d9eff2"}, + {file = "rpds_py-0.20.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9d35cef91e59ebbeaa45214861874bc6f19eb35de96db73e467a8358d701a96c"}, + {file = "rpds_py-0.20.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d72278a30111e5b5525c1dd96120d9e958464316f55adb030433ea905866f4de"}, + {file = "rpds_py-0.20.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b4c29cbbba378759ac5786730d1c3cb4ec6f8ababf5c42a9ce303dc4b3d08cda"}, + {file = "rpds_py-0.20.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:6632f2d04f15d1bd6fe0eedd3b86d9061b836ddca4c03d5cf5c7e9e6b7c14580"}, + {file = "rpds_py-0.20.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:d0b67d87bb45ed1cd020e8fbf2307d449b68abc45402fe1a4ac9e46c3c8b192b"}, + {file = "rpds_py-0.20.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:ec31a99ca63bf3cd7f1a5ac9fe95c5e2d060d3c768a09bc1d16e235840861420"}, + {file = "rpds_py-0.20.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:22e6c9976e38f4d8c4a63bd8a8edac5307dffd3ee7e6026d97f3cc3a2dc02a0b"}, + {file = "rpds_py-0.20.0-cp39-none-win32.whl", hash = "sha256:569b3ea770c2717b730b61998b6c54996adee3cef69fc28d444f3e7920313cf7"}, + {file = "rpds_py-0.20.0-cp39-none-win_amd64.whl", hash = "sha256:e6900ecdd50ce0facf703f7a00df12374b74bbc8ad9fe0f6559947fb20f82364"}, + {file = "rpds_py-0.20.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:617c7357272c67696fd052811e352ac54ed1d9b49ab370261a80d3b6ce385045"}, + {file = "rpds_py-0.20.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:9426133526f69fcaba6e42146b4e12d6bc6c839b8b555097020e2b78ce908dcc"}, + {file = "rpds_py-0.20.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:deb62214c42a261cb3eb04d474f7155279c1a8a8c30ac89b7dcb1721d92c3c02"}, + {file = "rpds_py-0.20.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:fcaeb7b57f1a1e071ebd748984359fef83ecb026325b9d4ca847c95bc7311c92"}, + {file = "rpds_py-0.20.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d454b8749b4bd70dd0a79f428731ee263fa6995f83ccb8bada706e8d1d3ff89d"}, + {file = "rpds_py-0.20.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d807dc2051abe041b6649681dce568f8e10668e3c1c6543ebae58f2d7e617855"}, + {file = "rpds_py-0.20.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c3c20f0ddeb6e29126d45f89206b8291352b8c5b44384e78a6499d68b52ae511"}, + {file = "rpds_py-0.20.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b7f19250ceef892adf27f0399b9e5afad019288e9be756d6919cb58892129f51"}, + {file = "rpds_py-0.20.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:4f1ed4749a08379555cebf4650453f14452eaa9c43d0a95c49db50c18b7da075"}, + {file = "rpds_py-0.20.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:dcedf0b42bcb4cfff4101d7771a10532415a6106062f005ab97d1d0ab5681c60"}, + {file = "rpds_py-0.20.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:39ed0d010457a78f54090fafb5d108501b5aa5604cc22408fc1c0c77eac14344"}, + {file = "rpds_py-0.20.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:bb273176be34a746bdac0b0d7e4e2c467323d13640b736c4c477881a3220a989"}, + {file = "rpds_py-0.20.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:f918a1a130a6dfe1d7fe0f105064141342e7dd1611f2e6a21cd2f5c8cb1cfb3e"}, + {file = "rpds_py-0.20.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:f60012a73aa396be721558caa3a6fd49b3dd0033d1675c6d59c4502e870fcf0c"}, + {file = "rpds_py-0.20.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3d2b1ad682a3dfda2a4e8ad8572f3100f95fad98cb99faf37ff0ddfe9cbf9d03"}, + {file = "rpds_py-0.20.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:614fdafe9f5f19c63ea02817fa4861c606a59a604a77c8cdef5aa01d28b97921"}, + {file = "rpds_py-0.20.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:fa518bcd7600c584bf42e6617ee8132869e877db2f76bcdc281ec6a4113a53ab"}, + {file = "rpds_py-0.20.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f0475242f447cc6cb8a9dd486d68b2ef7fbee84427124c232bff5f63b1fe11e5"}, + {file = "rpds_py-0.20.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f90a4cd061914a60bd51c68bcb4357086991bd0bb93d8aa66a6da7701370708f"}, + {file = "rpds_py-0.20.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:def7400461c3a3f26e49078302e1c1b38f6752342c77e3cf72ce91ca69fb1bc1"}, + {file = "rpds_py-0.20.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:65794e4048ee837494aea3c21a28ad5fc080994dfba5b036cf84de37f7ad5074"}, + {file = "rpds_py-0.20.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:faefcc78f53a88f3076b7f8be0a8f8d35133a3ecf7f3770895c25f8813460f08"}, + {file = "rpds_py-0.20.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:5b4f105deeffa28bbcdff6c49b34e74903139afa690e35d2d9e3c2c2fba18cec"}, + {file = "rpds_py-0.20.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:fdfc3a892927458d98f3d55428ae46b921d1f7543b89382fdb483f5640daaec8"}, + {file = "rpds_py-0.20.0.tar.gz", hash = "sha256:d72a210824facfdaf8768cf2d7ca25a042c30320b3020de2fa04640920d4e121"}, ] [[package]] @@ -2479,13 +2526,13 @@ files = [ [[package]] name = "setuptools" -version = "71.1.0" +version = "72.1.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-71.1.0-py3-none-any.whl", hash = "sha256:33874fdc59b3188304b2e7c80d9029097ea31627180896fb549c578ceb8a0855"}, - {file = "setuptools-71.1.0.tar.gz", hash = "sha256:032d42ee9fb536e33087fb66cac5f840eb9391ed05637b3f2a76a7c8fb477936"}, + {file = "setuptools-72.1.0-py3-none-any.whl", hash = "sha256:5a03e1860cf56bb6ef48ce186b0e557fdba433237481a9a625176c2831be15d1"}, + {file = "setuptools-72.1.0.tar.gz", hash = "sha256:8d243eff56d095e5817f796ede6ae32941278f542e0f941867cc05ae52b162ec"}, ] [package.extras] diff --git a/pyinjective/async_client.py b/pyinjective/async_client.py index af27080b..13aa9852 100644 --- a/pyinjective/async_client.py +++ b/pyinjective/async_client.py @@ -3324,6 +3324,7 @@ async def _initialize_tokens_and_markets(self): service_provider_fee=Decimal(market_info["serviceProviderFee"]), min_price_tick_size=Decimal(market_info["minPriceTickSize"]), min_quantity_tick_size=Decimal(market_info["minQuantityTickSize"]), + min_notional=Decimal(market_info["minNotional"]), ) spot_markets[market.id] = market @@ -3359,6 +3360,7 @@ async def _initialize_tokens_and_markets(self): service_provider_fee=Decimal(market_info["serviceProviderFee"]), min_price_tick_size=Decimal(market_info["minPriceTickSize"]), min_quantity_tick_size=Decimal(market_info["minQuantityTickSize"]), + min_notional=Decimal(market_info["minNotional"]), ) derivative_markets[market.id] = market @@ -3383,6 +3385,7 @@ async def _initialize_tokens_and_markets(self): service_provider_fee=Decimal(market_info["serviceProviderFee"]), min_price_tick_size=Decimal(market_info["minPriceTickSize"]), min_quantity_tick_size=Decimal(market_info["minQuantityTickSize"]), + min_notional=Decimal(market_info["minNotional"]), settlement_price=None if market_info["settlementPrice"] == "" else Decimal(market_info["settlementPrice"]), diff --git a/pyinjective/composer.py b/pyinjective/composer.py index e5f031e1..e9e49e7a 100644 --- a/pyinjective/composer.py +++ b/pyinjective/composer.py @@ -8,7 +8,7 @@ from google.protobuf import any_pb2, json_format, timestamp_pb2 from pyinjective import constant -from pyinjective.constant import ADDITIONAL_CHAIN_FORMAT_DECIMALS, INJ_DENOM +from pyinjective.constant import ADDITIONAL_CHAIN_FORMAT_DECIMALS, INJ_DECIMALS, INJ_DENOM from pyinjective.core.market import BinaryOptionMarket, DerivativeMarket, SpotMarket from pyinjective.core.token import Token from pyinjective.proto.cosmos.authz.v1beta1 import authz_pb2 as cosmos_authz_pb, tx_pb2 as cosmos_authz_tx_pb @@ -453,6 +453,10 @@ def binary_options_order( chain_trigger_price=chain_trigger_price, ) + def create_grant_authorization(self, grantee: str, amount: Decimal) -> injective_exchange_pb.GrantAuthorization: + chain_formatted_amount = int(amount * Decimal(f"1e{INJ_DECIMALS}")) + return injective_exchange_pb.GrantAuthorization(grantee=grantee, amount=str(chain_formatted_amount)) + # region Auction module def MsgBid(self, sender: str, bid_amount: float, round: float): be_amount = Decimal(str(bid_amount)) * Decimal(f"1e{ADDITIONAL_CHAIN_FORMAT_DECIMALS}") @@ -570,14 +574,14 @@ def msg_instant_spot_market_launch( base_token = self.tokens[base_denom] quote_token = self.tokens[quote_denom] - chain_min_price_tick_size = min_price_tick_size * Decimal( - f"1e{quote_token.decimals - base_token.decimals + ADDITIONAL_CHAIN_FORMAT_DECIMALS}" + chain_min_price_tick_size = ( + quote_token.chain_formatted_value(min_price_tick_size) / base_token.chain_formatted_value(Decimal("1")) + ) * Decimal(f"1e{ADDITIONAL_CHAIN_FORMAT_DECIMALS}") + chain_min_quantity_tick_size = base_token.chain_formatted_value(min_quantity_tick_size) * Decimal( + f"1e{ADDITIONAL_CHAIN_FORMAT_DECIMALS}" ) - chain_min_quantity_tick_size = min_quantity_tick_size * Decimal( - f"1e{base_token.decimals + ADDITIONAL_CHAIN_FORMAT_DECIMALS}" - ) - chain_min_notional = min_notional * Decimal( - f"1e{quote_token.decimals - base_token.decimals + ADDITIONAL_CHAIN_FORMAT_DECIMALS}" + chain_min_notional = quote_token.chain_formatted_value(min_notional) * Decimal( + f"1e{ADDITIONAL_CHAIN_FORMAT_DECIMALS}" ) return injective_exchange_tx_pb.MsgInstantSpotMarketLaunch( @@ -609,15 +613,17 @@ def msg_instant_perpetual_market_launch( ) -> injective_exchange_tx_pb.MsgInstantPerpetualMarketLaunch: quote_token = self.tokens[quote_denom] - chain_min_price_tick_size = min_price_tick_size * Decimal( - f"1e{quote_token.decimals + ADDITIONAL_CHAIN_FORMAT_DECIMALS}" + chain_min_price_tick_size = quote_token.chain_formatted_value(min_price_tick_size) * Decimal( + f"1e{ADDITIONAL_CHAIN_FORMAT_DECIMALS}" ) chain_min_quantity_tick_size = min_quantity_tick_size * Decimal(f"1e{ADDITIONAL_CHAIN_FORMAT_DECIMALS}") chain_maker_fee_rate = maker_fee_rate * Decimal(f"1e{ADDITIONAL_CHAIN_FORMAT_DECIMALS}") chain_taker_fee_rate = taker_fee_rate * Decimal(f"1e{ADDITIONAL_CHAIN_FORMAT_DECIMALS}") chain_initial_margin_ratio = initial_margin_ratio * Decimal(f"1e{ADDITIONAL_CHAIN_FORMAT_DECIMALS}") chain_maintenance_margin_ratio = maintenance_margin_ratio * Decimal(f"1e{ADDITIONAL_CHAIN_FORMAT_DECIMALS}") - chain_min_notional = min_notional * Decimal(f"1e{quote_token.decimals + ADDITIONAL_CHAIN_FORMAT_DECIMALS}") + chain_min_notional = quote_token.chain_formatted_value(min_notional) * Decimal( + f"1e{ADDITIONAL_CHAIN_FORMAT_DECIMALS}" + ) return injective_exchange_tx_pb.MsgInstantPerpetualMarketLaunch( sender=sender, @@ -656,15 +662,17 @@ def msg_instant_expiry_futures_market_launch( ) -> injective_exchange_tx_pb.MsgInstantPerpetualMarketLaunch: quote_token = self.tokens[quote_denom] - chain_min_price_tick_size = min_price_tick_size * Decimal( - f"1e{quote_token.decimals + ADDITIONAL_CHAIN_FORMAT_DECIMALS}" + chain_min_price_tick_size = quote_token.chain_formatted_value(min_price_tick_size) * Decimal( + f"1e{ADDITIONAL_CHAIN_FORMAT_DECIMALS}" ) chain_min_quantity_tick_size = min_quantity_tick_size * Decimal(f"1e{ADDITIONAL_CHAIN_FORMAT_DECIMALS}") chain_maker_fee_rate = maker_fee_rate * Decimal(f"1e{ADDITIONAL_CHAIN_FORMAT_DECIMALS}") chain_taker_fee_rate = taker_fee_rate * Decimal(f"1e{ADDITIONAL_CHAIN_FORMAT_DECIMALS}") chain_initial_margin_ratio = initial_margin_ratio * Decimal(f"1e{ADDITIONAL_CHAIN_FORMAT_DECIMALS}") chain_maintenance_margin_ratio = maintenance_margin_ratio * Decimal(f"1e{ADDITIONAL_CHAIN_FORMAT_DECIMALS}") - chain_min_notional = min_notional * Decimal(f"1e{quote_token.decimals + ADDITIONAL_CHAIN_FORMAT_DECIMALS}") + chain_min_notional = quote_token.chain_formatted_value(min_notional) * Decimal( + f"1e{ADDITIONAL_CHAIN_FORMAT_DECIMALS}" + ) return injective_exchange_tx_pb.MsgInstantExpiryFuturesMarketLaunch( sender=sender, @@ -1306,7 +1314,9 @@ def msg_instant_binary_options_market_launch( chain_min_quantity_tick_size = min_quantity_tick_size * Decimal(f"1e{ADDITIONAL_CHAIN_FORMAT_DECIMALS}") chain_maker_fee_rate = maker_fee_rate * Decimal(f"1e{ADDITIONAL_CHAIN_FORMAT_DECIMALS}") chain_taker_fee_rate = taker_fee_rate * Decimal(f"1e{ADDITIONAL_CHAIN_FORMAT_DECIMALS}") - chain_min_notional = min_notional * Decimal(f"1e{quote_token.decimals + ADDITIONAL_CHAIN_FORMAT_DECIMALS}") + chain_min_notional = quote_token.chain_formatted_value(min_notional) * Decimal( + f"1e{ADDITIONAL_CHAIN_FORMAT_DECIMALS}" + ) return injective_exchange_tx_pb.MsgInstantBinaryOptionsMarketLaunch( sender=sender, @@ -1802,6 +1812,103 @@ def msg_admin_update_binary_options_market( status=status, ) + def msg_decrease_position_margin( + self, + sender: str, + source_subaccount_id: str, + destination_subaccount_id: str, + market_id: str, + amount: Decimal, + ) -> injective_exchange_tx_pb.MsgDecreasePositionMargin: + market = self.derivative_markets[market_id] + + additional_margin = market.margin_to_chain_format(human_readable_value=amount) + return injective_exchange_tx_pb.MsgDecreasePositionMargin( + sender=sender, + source_subaccount_id=source_subaccount_id, + destination_subaccount_id=destination_subaccount_id, + market_id=market_id, + amount=str(int(additional_margin)), + ) + + def msg_update_spot_market( + self, + admin: str, + market_id: str, + new_ticker: str, + new_min_price_tick_size: Decimal, + new_min_quantity_tick_size: Decimal, + new_min_notional: Decimal, + ) -> injective_exchange_tx_pb.MsgUpdateSpotMarket: + market = self.spot_markets[market_id] + + chain_min_price_tick_size = new_min_price_tick_size * Decimal( + f"1e{market.quote_token.decimals - market.base_token.decimals + ADDITIONAL_CHAIN_FORMAT_DECIMALS}" + ) + chain_min_quantity_tick_size = new_min_quantity_tick_size * Decimal( + f"1e{market.base_token.decimals + ADDITIONAL_CHAIN_FORMAT_DECIMALS}" + ) + chain_min_notional = new_min_notional * Decimal( + f"1e{market.quote_token.decimals + ADDITIONAL_CHAIN_FORMAT_DECIMALS}" + ) + + return injective_exchange_tx_pb.MsgUpdateSpotMarket( + admin=admin, + market_id=market_id, + new_ticker=new_ticker, + new_min_price_tick_size=f"{chain_min_price_tick_size.normalize():f}", + new_min_quantity_tick_size=f"{chain_min_quantity_tick_size.normalize():f}", + new_min_notional=f"{chain_min_notional.normalize():f}", + ) + + def msg_update_derivative_market( + self, + admin: str, + market_id: str, + new_ticker: str, + new_min_price_tick_size: Decimal, + new_min_quantity_tick_size: Decimal, + new_min_notional: Decimal, + new_initial_margin_ratio: Decimal, + new_maintenance_margin_ratio: Decimal, + ) -> injective_exchange_tx_pb.MsgUpdateDerivativeMarket: + market = self.derivative_markets[market_id] + + chain_min_price_tick_size = new_min_price_tick_size * Decimal( + f"1e{market.quote_token.decimals + ADDITIONAL_CHAIN_FORMAT_DECIMALS}" + ) + chain_min_quantity_tick_size = new_min_quantity_tick_size * Decimal(f"1e{ADDITIONAL_CHAIN_FORMAT_DECIMALS}") + chain_min_notional = new_min_notional * Decimal( + f"1e{market.quote_token.decimals + ADDITIONAL_CHAIN_FORMAT_DECIMALS}" + ) + chain_initial_margin_ratio = new_initial_margin_ratio * Decimal(f"1e{ADDITIONAL_CHAIN_FORMAT_DECIMALS}") + chain_maintenance_margin_ratio = new_maintenance_margin_ratio * Decimal(f"1e{ADDITIONAL_CHAIN_FORMAT_DECIMALS}") + + return injective_exchange_tx_pb.MsgUpdateDerivativeMarket( + admin=admin, + market_id=market_id, + new_ticker=new_ticker, + new_min_price_tick_size=f"{chain_min_price_tick_size.normalize():f}", + new_min_quantity_tick_size=f"{chain_min_quantity_tick_size.normalize():f}", + new_min_notional=f"{chain_min_notional.normalize():f}", + new_initial_margin_ratio=f"{chain_initial_margin_ratio.normalize():f}", + new_maintenance_margin_ratio=f"{chain_maintenance_margin_ratio.normalize():f}", + ) + + def msg_authorize_stake_grants( + self, sender: str, grants: List[injective_exchange_pb.GrantAuthorization] + ) -> injective_exchange_tx_pb.MsgAuthorizeStakeGrants: + return injective_exchange_tx_pb.MsgAuthorizeStakeGrants( + sender=sender, + grants=grants, + ) + + def msg_activate_stake_grant(self, sender: str, granter: str) -> injective_exchange_tx_pb.MsgActivateStakeGrant: + return injective_exchange_tx_pb.MsgActivateStakeGrant( + sender=sender, + granter=granter, + ) + # endregion # region Insurance module @@ -2484,6 +2591,7 @@ def _initialize_markets_and_tokens_from_files(self): service_provider_fee=None, min_price_tick_size=Decimal(str(configuration_section["min_price_tick_size"])), min_quantity_tick_size=Decimal(str(configuration_section["min_quantity_tick_size"])), + min_notional=Decimal(str(configuration_section.get("min_notional", "0"))), ) spot_markets[market.id] = market else: @@ -2503,6 +2611,7 @@ def _initialize_markets_and_tokens_from_files(self): service_provider_fee=None, min_price_tick_size=Decimal(str(configuration_section["min_price_tick_size"])), min_quantity_tick_size=Decimal(str(configuration_section["min_quantity_tick_size"])), + min_notional=Decimal(str(configuration_section.get("min_notional", "0"))), ) derivative_markets[market.id] = market diff --git a/pyinjective/constant.py b/pyinjective/constant.py index 07274205..95fe2aa7 100644 --- a/pyinjective/constant.py +++ b/pyinjective/constant.py @@ -7,6 +7,7 @@ ADDITIONAL_CHAIN_FORMAT_DECIMALS = 18 TICKER_TOKENS_SEPARATOR = "/" INJ_DENOM = "inj" +INJ_DECIMALS = 18 devnet_config = ConfigParser() devnet_config.read(os.path.join(os.path.dirname(__file__), "denoms_devnet.ini")) diff --git a/pyinjective/core/market.py b/pyinjective/core/market.py index 66063130..3824232f 100644 --- a/pyinjective/core/market.py +++ b/pyinjective/core/market.py @@ -19,6 +19,7 @@ class SpotMarket: service_provider_fee: Decimal min_price_tick_size: Decimal min_quantity_tick_size: Decimal + min_notional: Decimal def quantity_to_chain_format(self, human_readable_value: Decimal) -> Decimal: chain_formatted_value = human_readable_value * Decimal(f"1e{self.base_token.decimals}") @@ -35,6 +36,13 @@ def price_to_chain_format(self, human_readable_value: Decimal) -> Decimal: return extended_chain_formatted_value + def notional_to_chain_format(self, human_readable_value: Decimal) -> Decimal: + decimals = self.quote_token.decimals + chain_formatted_value = human_readable_value * Decimal(f"1e{decimals}") + extended_chain_formatted_value = chain_formatted_value * Decimal(f"1e{ADDITIONAL_CHAIN_FORMAT_DECIMALS}") + + return extended_chain_formatted_value + def quantity_from_chain_format(self, chain_value: Decimal) -> Decimal: return chain_value / Decimal(f"1e{self.base_token.decimals}") @@ -42,12 +50,18 @@ def price_from_chain_format(self, chain_value: Decimal) -> Decimal: decimals = self.base_token.decimals - self.quote_token.decimals return chain_value * Decimal(f"1e{decimals}") + def notional_from_chain_format(self, chain_value: Decimal) -> Decimal: + return chain_value / Decimal(f"1e{self.quote_token.decimals}") + def quantity_from_extended_chain_format(self, chain_value: Decimal) -> Decimal: return self._from_extended_chain_format(chain_value=self.quantity_from_chain_format(chain_value=chain_value)) def price_from_extended_chain_format(self, chain_value: Decimal) -> Decimal: return self._from_extended_chain_format(chain_value=self.price_from_chain_format(chain_value=chain_value)) + def notional_from_extended_chain_format(self, chain_value: Decimal) -> Decimal: + return self._from_extended_chain_format(chain_value=self.notional_from_chain_format(chain_value=chain_value)) + def _from_extended_chain_format(self, chain_value: Decimal) -> Decimal: return chain_value / Decimal(f"1e{ADDITIONAL_CHAIN_FORMAT_DECIMALS}") @@ -69,6 +83,7 @@ class DerivativeMarket: service_provider_fee: Decimal min_price_tick_size: Decimal min_quantity_tick_size: Decimal + min_notional: Decimal def quantity_to_chain_format(self, human_readable_value: Decimal) -> Decimal: # Derivative markets do not have a base market to provide the number of decimals @@ -87,12 +102,7 @@ def price_to_chain_format(self, human_readable_value: Decimal) -> Decimal: return extended_chain_formatted_value def margin_to_chain_format(self, human_readable_value: Decimal) -> Decimal: - decimals = self.quote_token.decimals - chain_formatted_value = human_readable_value * Decimal(f"1e{decimals}") - quantized_value = (chain_formatted_value // self.min_quantity_tick_size) * self.min_quantity_tick_size - extended_chain_formatted_value = quantized_value * Decimal(f"1e{ADDITIONAL_CHAIN_FORMAT_DECIMALS}") - - return extended_chain_formatted_value + return self.notional_to_chain_format(human_readable_value=human_readable_value) def calculate_margin_in_chain_format( self, human_readable_quantity: Decimal, human_readable_price: Decimal, leverage: Decimal @@ -107,6 +117,13 @@ def calculate_margin_in_chain_format( return extended_chain_formatted_margin + def notional_to_chain_format(self, human_readable_value: Decimal) -> Decimal: + decimals = self.quote_token.decimals + chain_formatted_value = human_readable_value * Decimal(f"1e{decimals}") + extended_chain_formatted_value = chain_formatted_value * Decimal(f"1e{ADDITIONAL_CHAIN_FORMAT_DECIMALS}") + + return extended_chain_formatted_value + def quantity_from_chain_format(self, chain_value: Decimal) -> Decimal: return chain_value @@ -114,7 +131,10 @@ def price_from_chain_format(self, chain_value: Decimal) -> Decimal: return chain_value * Decimal(f"1e-{self.quote_token.decimals}") def margin_from_chain_format(self, chain_value: Decimal) -> Decimal: - return chain_value * Decimal(f"1e-{self.quote_token.decimals}") + return self.notional_from_chain_format(chain_value=chain_value) + + def notional_from_chain_format(self, chain_value: Decimal) -> Decimal: + return chain_value / Decimal(f"1e{self.quote_token.decimals}") def quantity_from_extended_chain_format(self, chain_value: Decimal) -> Decimal: return self._from_extended_chain_format(chain_value=self.quantity_from_chain_format(chain_value=chain_value)) @@ -123,7 +143,10 @@ def price_from_extended_chain_format(self, chain_value: Decimal) -> Decimal: return self._from_extended_chain_format(chain_value=self.price_from_chain_format(chain_value=chain_value)) def margin_from_extended_chain_format(self, chain_value: Decimal) -> Decimal: - return self._from_extended_chain_format(chain_value=self.margin_from_chain_format(chain_value=chain_value)) + return self.notional_from_extended_chain_format(chain_value=chain_value) + + def notional_from_extended_chain_format(self, chain_value: Decimal) -> Decimal: + return self._from_extended_chain_format(chain_value=self.notional_from_chain_format(chain_value=chain_value)) def _from_extended_chain_format(self, chain_value: Decimal) -> Decimal: return chain_value / Decimal(f"1e{ADDITIONAL_CHAIN_FORMAT_DECIMALS}") @@ -146,6 +169,7 @@ class BinaryOptionMarket: service_provider_fee: Decimal min_price_tick_size: Decimal min_quantity_tick_size: Decimal + min_notional: Decimal settlement_price: Optional[Decimal] = None def quantity_to_chain_format(self, human_readable_value: Decimal, special_denom: Optional[Denom] = None) -> Decimal: @@ -203,6 +227,13 @@ def calculate_margin_in_chain_format( return extended_chain_formatted_margin + def notional_to_chain_format(self, human_readable_value: Decimal) -> Decimal: + decimals = self.quote_token.decimals + chain_formatted_value = human_readable_value * Decimal(f"1e{decimals}") + extended_chain_formatted_value = chain_formatted_value * Decimal(f"1e{ADDITIONAL_CHAIN_FORMAT_DECIMALS}") + + return extended_chain_formatted_value + def quantity_from_chain_format(self, chain_value: Decimal, special_denom: Optional[Denom] = None) -> Decimal: # Binary option markets do not have a base market to provide the number of decimals decimals = 0 if special_denom is None else special_denom.base @@ -212,6 +243,12 @@ def price_from_chain_format(self, chain_value: Decimal, special_denom: Optional[ decimals = self.quote_token.decimals if special_denom is None else special_denom.quote return chain_value * Decimal(f"1e-{decimals}") + def margin_from_chain_format(self, chain_value: Decimal) -> Decimal: + return self.notional_from_chain_format(chain_value=chain_value) + + def notional_from_chain_format(self, chain_value: Decimal) -> Decimal: + return chain_value / Decimal(f"1e{self.quote_token.decimals}") + def quantity_from_extended_chain_format( self, chain_value: Decimal, special_denom: Optional[Denom] = None ) -> Decimal: @@ -224,5 +261,11 @@ def price_from_extended_chain_format(self, chain_value: Decimal, special_denom: chain_value=self.price_from_chain_format(chain_value=chain_value, special_denom=special_denom) ) + def margin_from_extended_chain_format(self, chain_value: Decimal) -> Decimal: + return self.notional_from_extended_chain_format(chain_value=chain_value) + + def notional_from_extended_chain_format(self, chain_value: Decimal) -> Decimal: + return self._from_extended_chain_format(chain_value=self.notional_from_chain_format(chain_value=chain_value)) + def _from_extended_chain_format(self, chain_value: Decimal) -> Decimal: return chain_value / Decimal(f"1e{ADDITIONAL_CHAIN_FORMAT_DECIMALS}") diff --git a/pyinjective/core/tokens_file_loader.py b/pyinjective/core/tokens_file_loader.py index 72dd30ed..0e84bebd 100644 --- a/pyinjective/core/tokens_file_loader.py +++ b/pyinjective/core/tokens_file_loader.py @@ -15,7 +15,7 @@ def load_json(self, json: List[Dict]) -> List[Token]: name=token_info["name"], symbol=token_info["symbol"], denom=token_info["denom"], - address=token_info["address"], + address=token_info.get("address", ""), decimals=token_info["decimals"], logo=token_info["logo"], updated=-1, diff --git a/pyinjective/denoms_devnet.ini b/pyinjective/denoms_devnet.ini index f01ccd09..a50c4ea6 100644 --- a/pyinjective/denoms_devnet.ini +++ b/pyinjective/denoms_devnet.ini @@ -6,6 +6,7 @@ min_price_tick_size = 0.000000000000001 min_display_price_tick_size = 0.001 min_quantity_tick_size = 1000000000000000 min_display_quantity_tick_size = 0.001 +min_notional = 0 [0x0511ddc4e6586f3bfe1acb2dd905f8b8a82c97e1edaef654b12ca7e6031ca0fa] description = 'Devnet Spot ATOM/USDT' @@ -15,6 +16,7 @@ min_price_tick_size = 0.001 min_display_price_tick_size = 0.001 min_quantity_tick_size = 1000 min_display_quantity_tick_size = 0.001 +min_notional = 1000000 [0xd1956e20d74eeb1febe31cd37060781ff1cb266f49e0512b446a5fafa9a16034] description = 'Devnet Spot WETH/USDT' @@ -24,6 +26,7 @@ min_price_tick_size = 0.000000000000001 min_display_price_tick_size = 0.001 min_quantity_tick_size = 1000000000000000 min_display_quantity_tick_size = 0.001 +min_notional = 1000000 [0xe97ebaf3e2ae3bd00dabe59046fcc28ec58ea969df33a9ce95f4fc285306c2d4] description = 'Devnet Spot WBTC/USDT' @@ -33,6 +36,7 @@ min_price_tick_size = 0.000000000000001 min_display_price_tick_size = 0.001 min_quantity_tick_size = 1000000000000000 min_display_quantity_tick_size = 0.001 +min_notional = 1000000 [0x26413a70c9b78a495023e5ab8003c9cf963ef963f6755f8b57255feb5744bf31] description = 'Devnet Spot LINK/USDT' @@ -42,6 +46,7 @@ min_price_tick_size = 0.000000000000001 min_display_price_tick_size = 0.001 min_quantity_tick_size = 1000000000000000 min_display_quantity_tick_size = 0.001 +min_notional = 1000000 [0x28f3c9897e23750bf653889224f93390c467b83c86d736af79431958fff833d1] description = 'Devnet Spot MATIC/USDT' @@ -51,6 +56,7 @@ min_price_tick_size = 0.000000000000001 min_display_price_tick_size = 0.001 min_quantity_tick_size = 1000000000000000 min_display_quantity_tick_size = 0.001 +min_notional = 1000000 [0x74b17b0d6855feba39f1f7ab1e8bad0363bd510ee1dcc74e40c2adfe1502f781] description = 'Devnet Spot BNB/USDT' @@ -60,6 +66,7 @@ min_price_tick_size = 0.000000000000001 min_display_price_tick_size = 0.001 min_quantity_tick_size = 1000000000000000 min_display_quantity_tick_size = 0.001 +min_notional = 1000000 [0x572f05fd93a6c2c4611b2eba1a0a36e102b6a592781956f0128a27662d84f112] description = 'Devnet Spot APE/USDT' @@ -69,6 +76,7 @@ min_price_tick_size = 0.000000000000001 min_display_price_tick_size = 0.001 min_quantity_tick_size = 1000000000000000 min_display_quantity_tick_size = 0.001 +min_notional = 1000000 [0x74ee114ad750f8429a97e07b5e73e145724e9b21670a7666625ddacc03d6758d] description = 'Devnet Spot YFI/USDT' @@ -78,6 +86,7 @@ min_price_tick_size = 0.000000000000001 min_display_price_tick_size = 0.001 min_quantity_tick_size = 1000000000000000 min_display_quantity_tick_size = 0.001 +min_notional = 1000000 [0x7f71c4fba375c964be8db7fc7a5275d974f8c6cdc4d758f2ac4997f106bb052b] description = 'Devnet Spot GF/USDT' @@ -87,6 +96,7 @@ min_price_tick_size = 0.000000000000001 min_display_price_tick_size = 0.001 min_quantity_tick_size = 100000 min_display_quantity_tick_size = 0.0000000000001 +min_notional = 1000000 [0x8b1a4d3e8f6b559e30e40922ee3662dd78edf7042330d4d620d188699d1a9715] description = 'Devnet Spot USDT/USDC' @@ -96,6 +106,7 @@ min_price_tick_size = 0.001 min_display_price_tick_size = 0.001 min_quantity_tick_size = 1000 min_display_quantity_tick_size = 0.001 +min_notional = 1000000 [0xa508cb32923323679f29a032c70342c147c17d0145625922b0ef22e955c844c0] description = 'Devnet Spot INJ/USDT' @@ -105,6 +116,7 @@ min_price_tick_size = 0.000000000000001 min_display_price_tick_size = 0.001 min_quantity_tick_size = 1000000000000000 min_display_quantity_tick_size = 0.001 +min_notional = 1000000 [0x6fa856bca5a9298ced8da3ef7616e66081ff64e4fdd2bffa38e95cf23c1f2321] description = 'Devnet Spot PROJ/USDT' @@ -114,6 +126,7 @@ min_price_tick_size = 0.001 min_display_price_tick_size = 1000000000 min_quantity_tick_size = 1000 min_display_quantity_tick_size = 0.000000000000001 +min_notional = 1000000 [0x0686357b934c761784d58a2b8b12618dfe557de108a220e06f8f6580abb83aab] description = 'Devnet Spot SOMM/USDT' @@ -123,6 +136,7 @@ min_price_tick_size = 0.0001 min_display_price_tick_size = 0.0001 min_quantity_tick_size = 10000000 min_display_quantity_tick_size = 10 +min_notional = 1000000 [0x4fa0bd2c2adbfe077f58395c18a72f5cbf89532743e3bddf43bc7aba706b0b74] description = 'Devnet Spot CHZ/USDC' @@ -132,6 +146,7 @@ min_price_tick_size = 0.000001 min_display_price_tick_size = 0.0001 min_quantity_tick_size = 100000000 min_display_quantity_tick_size = 1 +min_notional = 1000000 [0x2021159081a88c9a627c66f770fb60c7be78d492509c89b203e1829d0413995a] description = 'Devnet Spot ETHBTCTrend/USDT' @@ -141,6 +156,7 @@ min_price_tick_size = 0.000000000000001 min_display_price_tick_size = 0.001 min_quantity_tick_size = 10000000000000000 min_display_quantity_tick_size = 0.01 +min_notional = 1000000 [0xfad0838bf6be7467c6a00d61360f7924afc848e4d0c56cc4261f94e77e124e7a] description = 'Devnet Spot USDC/USDT' @@ -150,6 +166,7 @@ min_price_tick_size = 0.001 min_display_price_tick_size = 0.001 min_quantity_tick_size = 1000 min_display_quantity_tick_size = 0.001 +min_notional = 1000000 [0xba3101edf6cb94d0b29fd95fb1679f84fe981a98da91a3df1e06809845fab209] description = 'Devnet Spot WBTC/INJ' @@ -159,6 +176,7 @@ min_price_tick_size = 0.001 min_display_price_tick_size = 0.001 min_quantity_tick_size = 10000000000000 min_display_quantity_tick_size = 0.00001 +min_notional = 10000000000000000 [0xefc8e0b5bdb799010c9584c59fa14e759009d86c04fa52e0e67b411309096ace] description = 'Devnet Spot PROJ/INJ' @@ -168,6 +186,7 @@ min_price_tick_size = 0.00000001 min_display_price_tick_size = 0.00000001 min_quantity_tick_size = 1000000000000000000000 min_display_quantity_tick_size = 1000 +min_notional = 10000000000000000 [0x2d3b8d8833dda54a717adea9119134556848105fd6028e9a4a526e4e5a122a57] description = 'Devnet Spot KIRA/INJ' @@ -177,6 +196,7 @@ min_price_tick_size = 10000 min_display_price_tick_size = 0.00000001 min_quantity_tick_size = 1000000000 min_display_quantity_tick_size = 1000 +min_notional = 10000000000000000 [0x42edf70cc37e155e9b9f178e04e18999bc8c404bd7b638cc4cbf41da8ef45a21] description = 'Devnet Spot QUNT/INJ' @@ -186,6 +206,7 @@ min_price_tick_size = 10000 min_display_price_tick_size = 0.00000001 min_quantity_tick_size = 1000000000 min_display_quantity_tick_size = 1000 +min_notional = 0 [0xc8fafa1fcab27e16da20e98b4dc9dda45320418c27db80663b21edac72f3b597] description = 'Devnet Spot HDRO/INJ' @@ -195,6 +216,7 @@ min_price_tick_size = 1000000 min_display_price_tick_size = 0.000001 min_quantity_tick_size = 1000000 min_display_quantity_tick_size = 1 +min_notional = 10000000000000000 [0xd166688623206f9931307285678e9ff17cecd80a27d7b781dd88cecfba3b1839] description = 'Devnet Spot BLACK/INJ' @@ -204,6 +226,7 @@ min_price_tick_size = 1000000 min_display_price_tick_size = 0.000001 min_quantity_tick_size = 1000000 min_display_quantity_tick_size = 1 +min_notional = 10000000000000000 [0x1422a13427d5eabd4d8de7907c8340f7e58cb15553a9fd4ad5c90406561886f9] description = 'Devnet Derivative COMP/USDT PERP' @@ -213,6 +236,7 @@ min_price_tick_size = 1000 min_display_price_tick_size = 0.001 min_quantity_tick_size = 0.001 min_display_quantity_tick_size = 0.001 +min_notional = 1000000 [0x1c284820f24dff4c60fecd521a9df3df9c745d23dd585d45bf418653c2d73ab4] description = 'Devnet Derivative SNX/USDT PERP' @@ -222,6 +246,7 @@ min_price_tick_size = 1000 min_display_price_tick_size = 0.001 min_quantity_tick_size = 0.001 min_display_quantity_tick_size = 0.001 +min_notional = 1000000 [0x1f73e21972972c69c03fb105a5864592ac2b47996ffea3c500d1ea2d20138717] description = 'Devnet Derivative LINK/USDT PERP' @@ -231,6 +256,7 @@ min_price_tick_size = 1000 min_display_price_tick_size = 0.001 min_quantity_tick_size = 0.001 min_display_quantity_tick_size = 0.001 +min_notional = 1000000 [0x4ca0f92fc28be0c9761326016b5a1a2177dd6375558365116b5bdda9abc229ce] description = 'Devnet Derivative BTC/USDT PERP' @@ -240,6 +266,7 @@ min_price_tick_size = 1000 min_display_price_tick_size = 0.001 min_quantity_tick_size = 0.001 min_display_quantity_tick_size = 0.001 +min_notional = 1000000 [0x7cc8b10d7deb61e744ef83bdec2bbcf4a056867e89b062c6a453020ca82bd4e4] description = 'Devnet Derivative INJ/USDT PERP' @@ -249,6 +276,7 @@ min_price_tick_size = 1000 min_display_price_tick_size = 0.001 min_quantity_tick_size = 0.001 min_display_quantity_tick_size = 0.001 +min_notional = 1000000 [0x56d0c0293c4415e2d48fc2c8503a56a0c7389247396a2ef9b0a48c01f0646705] description = 'Devnet Derivative ATOM/USDT PERP' @@ -258,6 +286,7 @@ min_price_tick_size = 1000 min_display_price_tick_size = 0.001 min_quantity_tick_size = 0.01 min_display_quantity_tick_size = 0.01 +min_notional = 1000000 [0x979731deaaf17d26b2e256ad18fecd0ac742b3746b9ea5382bac9bd0b5e58f74] description = 'Devnet Derivative ETH/USDT PERP' @@ -267,6 +296,7 @@ min_price_tick_size = 1000 min_display_price_tick_size = 0.001 min_quantity_tick_size = 0.001 min_display_quantity_tick_size = 0.001 +min_notional = 1000000 [0xb64332daa987dcb200c26965bc9adaf8aa301fe3a0aecb0232fadbd3dfccd0d8] description = 'Devnet Derivative UNI/USDT PERP' @@ -276,6 +306,7 @@ min_price_tick_size = 1000 min_display_price_tick_size = 0.001 min_quantity_tick_size = 0.001 min_display_quantity_tick_size = 0.001 +min_notional = 1000000 [0xccd6723224cae013827668ad1e7f361cde694adbb7a87f62a6d547cc464ba9b5] description = 'Devnet Derivative GRT/USDT PERP' @@ -285,6 +316,7 @@ min_price_tick_size = 1000 min_display_price_tick_size = 0.001 min_quantity_tick_size = 0.001 min_display_quantity_tick_size = 0.001 +min_notional = 1000000 [0x3b7fb1d9351f7fa2e6e0e5a11b3639ee5e0486c33a6a74f629c3fc3c3043efd5] description = 'Devnet Derivative BONK/USDT PERP' @@ -294,6 +326,7 @@ min_price_tick_size = 0.0001 min_display_price_tick_size = 0.0000000001 min_quantity_tick_size = 0.1 min_display_quantity_tick_size = 0.1 +min_notional = 1000000 [$ALIEN] peggy_denom = factory/inj1mly2ykhf6f9tdj58pvndjf4q8dzdl4myjqm9t6/$alien diff --git a/pyinjective/denoms_mainnet.ini b/pyinjective/denoms_mainnet.ini index 9a76e299..7b6bbc04 100644 --- a/pyinjective/denoms_mainnet.ini +++ b/pyinjective/denoms_mainnet.ini @@ -6,6 +6,7 @@ min_price_tick_size = 0.000000000000001 min_display_price_tick_size = 0.001 min_quantity_tick_size = 1000000000000000 min_display_quantity_tick_size = 0.001 +min_notional = 0 [0xe0dc13205fb8b23111d8555a6402681965223135d368eeeb964681f9ff12eb2a] description = 'Mainnet Spot INJ/USDC' @@ -15,6 +16,7 @@ min_price_tick_size = 0.000000000000001 min_display_price_tick_size = 0.001 min_quantity_tick_size = 1000000000000000 min_display_quantity_tick_size = 0.001 +min_notional = 0 [0x8b1a4d3e8f6b559e30e40922ee3662dd78edf7042330d4d620d188699d1a9715] description = 'Mainnet Spot USDT/USDC' @@ -24,6 +26,7 @@ min_price_tick_size = 0.0001 min_display_price_tick_size = 0.0001 min_quantity_tick_size = 100 min_display_quantity_tick_size = 0.0001 +min_notional = 0 [0xfe93c19c0a072c8dd208b96694e024305a7dff01bbf12cac2bfa81b246c69040] description = 'Mainnet Spot LINK/USDC' @@ -33,6 +36,7 @@ min_price_tick_size = 0.000000000000001 min_display_price_tick_size = 0.001 min_quantity_tick_size = 1000000000000000 min_display_quantity_tick_size = 0.001 +min_notional = 0 [0xcdfbfaf1f24055e89b3c7cc763b8cb46ffff08cdc38c999d01f58d64af75dca9] description = 'Mainnet Spot AAVE/USDC' @@ -42,6 +46,7 @@ min_price_tick_size = 0.000000000000001 min_display_price_tick_size = 0.001 min_quantity_tick_size = 1000000000000000 min_display_quantity_tick_size = 0.001 +min_notional = 0 [0x5abfffe9079d53e0bf8ee9b3064b427acc3d71d6ba58a44235abe38f60115678] description = 'Mainnet Spot MATIC/USDC' @@ -51,6 +56,7 @@ min_price_tick_size = 0.000000000000001 min_display_price_tick_size = 0.001 min_quantity_tick_size = 1000000000000000 min_display_quantity_tick_size = 0.001 +min_notional = 0 [0xe8bf0467208c24209c1cf0fd64833fa43eb6e8035869f9d043dbff815ab76d01] description = 'Mainnet Spot UNI/USDT' @@ -60,6 +66,7 @@ min_price_tick_size = 0.000000000000001 min_display_price_tick_size = 0.001 min_quantity_tick_size = 1000000000000000 min_display_quantity_tick_size = 0.001 +min_notional = 0 [0x9a629b947b6f946af4f6076cfda67f3535d73ee3cef6176cf6d9c8d6b0a03f37] description = 'Mainnet Spot SUSHI/USDC' @@ -69,6 +76,7 @@ min_price_tick_size = 0.000000000000001 min_display_price_tick_size = 0.001 min_quantity_tick_size = 1000000000000000 min_display_quantity_tick_size = 0.001 +min_notional = 0 [0xa43d2be9861efb0d188b136cef0ae2150f80e08ec318392df654520dd359fcd7] description = 'Mainnet Spot GRT/USDC' @@ -78,6 +86,7 @@ min_price_tick_size = 0.000000000000001 min_display_price_tick_size = 0.001 min_quantity_tick_size = 1000000000000000 min_display_quantity_tick_size = 0.001 +min_notional = 0 [0xa508cb32923323679f29a032c70342c147c17d0145625922b0ef22e955c844c0] description = 'Mainnet Spot INJ/USDT' @@ -87,6 +96,7 @@ min_price_tick_size = 0.000000000000001 min_display_price_tick_size = 0.001 min_quantity_tick_size = 1000000000000000 min_display_quantity_tick_size = 0.001 +min_notional = 0 [0x28f3c9897e23750bf653889224f93390c467b83c86d736af79431958fff833d1] description = 'Mainnet Spot MATIC/USDT' @@ -96,6 +106,7 @@ min_price_tick_size = 0.000000000000001 min_display_price_tick_size = 0.001 min_quantity_tick_size = 1000000000000000 min_display_quantity_tick_size = 0.001 +min_notional = 0 [0x09cc2c28fbedbdd677e07924653f8f583d0ee5886e74046e7f114210d990784b] description = 'Mainnet Spot UNI/USDC' @@ -105,6 +116,7 @@ min_price_tick_size = 0.000000000000001 min_display_price_tick_size = 0.001 min_quantity_tick_size = 1000000000000000 min_display_quantity_tick_size = 0.001 +min_notional = 0 [0x26413a70c9b78a495023e5ab8003c9cf963ef963f6755f8b57255feb5744bf31] description = 'Mainnet Spot LINK/USDT' @@ -114,6 +126,7 @@ min_price_tick_size = 0.000000000000001 min_display_price_tick_size = 0.001 min_quantity_tick_size = 1000000000000000 min_display_quantity_tick_size = 0.001 +min_notional = 0 [0xd1956e20d74eeb1febe31cd37060781ff1cb266f49e0512b446a5fafa9a16034] description = 'Mainnet Spot WETH/USDT' @@ -123,6 +136,7 @@ min_price_tick_size = 0.0000000000001 min_display_price_tick_size = 0.1 min_quantity_tick_size = 1000000000000000 min_display_quantity_tick_size = 0.001 +min_notional = 0 [0x01edfab47f124748dc89998eb33144af734484ba07099014594321729a0ca16b] description = 'Mainnet Spot AAVE/USDT' @@ -132,6 +146,7 @@ min_price_tick_size = 0.000000000000001 min_display_price_tick_size = 0.001 min_quantity_tick_size = 1000000000000000 min_display_quantity_tick_size = 0.001 +min_notional = 0 [0x29255e99290ff967bc8b351ce5b1cb08bc76a9a9d012133fb242bdf92cd28d89] description = 'Mainnet Spot GRT/USDT' @@ -141,6 +156,7 @@ min_price_tick_size = 0.000000000000001 min_display_price_tick_size = 0.001 min_quantity_tick_size = 1000000000000000 min_display_quantity_tick_size = 0.001 +min_notional = 0 [0x0c9f98c99b23e89dbf6a60bec05372790b39e03da0f86dd0208fc8e28751bd8c] description = 'Mainnet Spot SUSHI/USDT' @@ -150,6 +166,7 @@ min_price_tick_size = 0.000000000000001 min_display_price_tick_size = 0.001 min_quantity_tick_size = 1000000000000000 min_display_quantity_tick_size = 0.001 +min_notional = 0 [0x51092ddec80dfd0d41fee1a7d93c8465de47cd33966c8af8ee66c14fe341a545] description = 'Mainnet Spot SNX/USDT' @@ -159,6 +176,7 @@ min_price_tick_size = 0.000000000000001 min_display_price_tick_size = 0.001 min_quantity_tick_size = 1000000000000000 min_display_quantity_tick_size = 0.001 +min_notional = 0 [0xbe9d4a0a768c7e8efb6740be76af955928f93c247e0b3a1a106184c6cf3216a7] description = 'Mainnet Spot QNT/USDT' @@ -168,6 +186,7 @@ min_price_tick_size = 0.000000000000001 min_display_price_tick_size = 0.001 min_quantity_tick_size = 1000000000000000 min_display_quantity_tick_size = 0.001 +min_notional = 0 [0x170a06eb653548f67e94b0fcb82c5258c83b0a2b62ed24c55749d5ac77bc7621] description = 'Mainnet Spot WBTC/USDC' @@ -177,6 +196,7 @@ min_price_tick_size = 0.0001 min_display_price_tick_size = 0.01 min_quantity_tick_size = 10000 min_display_quantity_tick_size = 0.0001 +min_notional = 0 [0x7471d361b90fc8541267bd088f498c2a461a2c0c57ff2b9a08279480e803b470] description = 'Mainnet Spot AXS/USDT' @@ -186,6 +206,7 @@ min_price_tick_size = 0.00000000000001 min_display_price_tick_size = 0.01 min_quantity_tick_size = 10000000000000000 min_display_quantity_tick_size = 0.01 +min_notional = 0 [0x0511ddc4e6586f3bfe1acb2dd905f8b8a82c97e1edaef654b12ca7e6031ca0fa] description = 'Mainnet Spot ATOM/USDT' @@ -195,6 +216,7 @@ min_price_tick_size = 0.001 min_display_price_tick_size = 0.001 min_quantity_tick_size = 10000 min_display_quantity_tick_size = 0.01 +min_notional = 0 [0x7f71c4fba375c964be8db7fc7a5275d974f8c6cdc4d758f2ac4997f106bb052b] description = 'Mainnet Spot GF/USDT' @@ -204,6 +226,7 @@ min_price_tick_size = 0.0000000000000001 min_display_price_tick_size = 0.0001 min_quantity_tick_size = 1000000000000000 min_display_quantity_tick_size = 0.001 +min_notional = 0 [0xdce84d5e9c4560b549256f34583fb4ed07c82026987451d5da361e6e238287b3] description = 'Mainnet Spot LUNA/UST' @@ -213,6 +236,7 @@ min_price_tick_size = 0.00000001 min_display_price_tick_size = 0.00000000000000000001 min_quantity_tick_size = 100000 min_display_quantity_tick_size = 0.1 +min_notional = 0 [0x0f1a11df46d748c2b20681273d9528021522c6a0db00de4684503bbd53bef16e] description = 'Mainnet Spot UST/USDT' @@ -222,6 +246,7 @@ min_price_tick_size = 0.0001 min_display_price_tick_size = 100000000 min_quantity_tick_size = 10000 min_display_quantity_tick_size = 0.00000000000001 +min_notional = 0 [0xfbc729e93b05b4c48916c1433c9f9c2ddb24605a73483303ea0f87a8886b52af] description = 'Mainnet Spot INJ/UST' @@ -231,6 +256,7 @@ min_price_tick_size = 0.000000000000001 min_display_price_tick_size = 0.000000000000001 min_quantity_tick_size = 1000000000000000 min_display_quantity_tick_size = 0.001 +min_notional = 0 [0xd7487c1fc78fdb283d838fa562339db0ca05cd4af57c6a20e6561f260c78d1ae] description = 'Mainnet Spot XBX/USDT' @@ -240,6 +266,7 @@ min_price_tick_size = 0.000000000000001 min_display_price_tick_size = 0.001 min_quantity_tick_size = 1000000000000000 min_display_quantity_tick_size = 0.001 +min_notional = 0 [0xf04d1b7acf40b331d239fcff7950f98a4f2ab7adb2ceb8f65aa32ac29455d7b4] description = 'Mainnet Spot HUAHUA/USDT' @@ -249,6 +276,7 @@ min_price_tick_size = 0.000001 min_display_price_tick_size = 0.000001 min_quantity_tick_size = 100000000 min_display_quantity_tick_size = 100 +min_notional = 0 [0x572f05fd93a6c2c4611b2eba1a0a36e102b6a592781956f0128a27662d84f112] description = 'Mainnet Spot APE/USDT' @@ -258,6 +286,7 @@ min_price_tick_size = 0.000000000000001 min_display_price_tick_size = 0.001 min_quantity_tick_size = 10000000000000000 min_display_quantity_tick_size = 0.01 +min_notional = 0 [0x719f1617efc6e998472b70436549e0999fab8c05701177b15ba8910f2c5e7ab2] description = 'Mainnet Spot EVMOS/USDT' @@ -267,6 +296,7 @@ min_price_tick_size = 0.0000000000000001 min_display_price_tick_size = 0.0001 min_quantity_tick_size = 1000000000000000 min_display_quantity_tick_size = 0.001 +min_notional = 0 [0x4d030dccc9564ab1536a7751c3a566fa3adcb6a08ac807edc82890f2a6ec4fed] description = 'Mainnet Spot XPRT/USDT' @@ -276,6 +306,7 @@ min_price_tick_size = 0.0001 min_display_price_tick_size = 0.0001 min_quantity_tick_size = 1000 min_display_quantity_tick_size = 0.001 +min_notional = 0 [0xd5f5895102b67300a2f8f2c2e4b8d7c4c820d612bc93c039ba8cb5b93ccedf22] description = 'Mainnet Spot DOT/USDT' @@ -285,6 +316,7 @@ min_price_tick_size = 0.000001 min_display_price_tick_size = 0.01 min_quantity_tick_size = 100000000 min_display_quantity_tick_size = 0.01 +min_notional = 0 [0xabc20971099f5df5d1de138f8ea871e7e9832e3b0b54b61056eae15b09fed678] description = 'Mainnet Spot USDC/USDT' @@ -294,6 +326,7 @@ min_price_tick_size = 0.0001 min_display_price_tick_size = 0.0001 min_quantity_tick_size = 1000000 min_display_quantity_tick_size = 1 +min_notional = 0 [0xcd4b823ad32db2245b61bf498936145d22cdedab808d2f9d65100330da315d29] description = 'Mainnet Spot STRD/USDT' @@ -303,6 +336,7 @@ min_price_tick_size = 0.0001 min_display_price_tick_size = 0.0001 min_quantity_tick_size = 1000 min_display_quantity_tick_size = 0.001 +min_notional = 0 [0x4807e9ac33c565b4278fb9d288bd79546abbf5a368dfc73f160fe9caa37a70b1] description = 'Mainnet Spot axlUSDC/USDT' @@ -312,6 +346,7 @@ min_price_tick_size = 0.0001 min_display_price_tick_size = 0.0001 min_quantity_tick_size = 1000000 min_display_quantity_tick_size = 1 +min_notional = 0 [0xe03df6e1571acb076c3d8f22564a692413b6843ad2df67411d8d8e56449c7ff4] description = 'Mainnet Spot CRE/USDT' @@ -321,6 +356,7 @@ min_price_tick_size = 0.0001 min_display_price_tick_size = 0.0001 min_quantity_tick_size = 1000 min_display_quantity_tick_size = 0.001 +min_notional = 0 [0x219b522871725d175f63d5cb0a55e95aa688b1c030272c5ae967331e45620032] description = 'Mainnet Spot SteadyETH/USDT' @@ -330,6 +366,7 @@ min_price_tick_size = 0.000000000000001 min_display_price_tick_size = 0.001 min_quantity_tick_size = 10000000000000000 min_display_quantity_tick_size = 0.01 +min_notional = 0 [0x510855ccf9148b47c6114e1c9e26731f9fd68a6f6dbc5d148152d02c0f3e5ce0] description = 'Mainnet Spot SteadyBTC/USDT' @@ -339,6 +376,7 @@ min_price_tick_size = 0.000000000000001 min_display_price_tick_size = 0.001 min_quantity_tick_size = 10000000000000000 min_display_quantity_tick_size = 0.01 +min_notional = 0 [0x2021159081a88c9a627c66f770fb60c7be78d492509c89b203e1829d0413995a] description = 'Mainnet Spot ETHBTCTrend/USDT' @@ -348,6 +386,7 @@ min_price_tick_size = 0.000000000000001 min_display_price_tick_size = 0.001 min_quantity_tick_size = 10000000000000000 min_display_quantity_tick_size = 0.01 +min_notional = 0 [0x0686357b934c761784d58a2b8b12618dfe557de108a220e06f8f6580abb83aab] description = 'Mainnet Spot SOMM/USDT' @@ -357,6 +396,7 @@ min_price_tick_size = 0.0001 min_display_price_tick_size = 0.0001 min_quantity_tick_size = 1000000 min_display_quantity_tick_size = 1 +min_notional = 0 [0x84ba79ffde31db8273a9655eb515cb6cadfdf451b8f57b83eb3f78dca5bbbe6d] description = 'Mainnet Spot SOL/USDC' @@ -366,6 +406,7 @@ min_price_tick_size = 0.0001 min_display_price_tick_size = 0.01 min_quantity_tick_size = 1000000 min_display_quantity_tick_size = 0.01 +min_notional = 0 [0xb825e2e4dbe369446e454e21c16e041cbc4d95d73f025c369f92210e82d2106f] description = 'Mainnet Spot USDCso/USDCet' @@ -375,6 +416,7 @@ min_price_tick_size = 0.0001 min_display_price_tick_size = 0.0001 min_quantity_tick_size = 100 min_display_quantity_tick_size = 0.0001 +min_notional = 0 [0xf66f797a0ff49bd2170a04d288ca3f13b5df1c822a7b0cc4204aca64a5860666] description = 'Mainnet Spot USDC/USDCet' @@ -384,6 +426,7 @@ min_price_tick_size = 0.0001 min_display_price_tick_size = 0.0001 min_quantity_tick_size = 100 min_display_quantity_tick_size = 0.0001 +min_notional = 0 [0xda0bb7a7d8361d17a9d2327ed161748f33ecbf02738b45a7dd1d812735d1531c] description = 'Mainnet Spot USDT/USDC' @@ -393,6 +436,7 @@ min_price_tick_size = 0.0001 min_display_price_tick_size = 0.0001 min_quantity_tick_size = 100 min_display_quantity_tick_size = 0.0001 +min_notional = 0 [0x4fa0bd2c2adbfe077f58395c18a72f5cbf89532743e3bddf43bc7aba706b0b74] description = 'Mainnet Spot CHZ/USDC' @@ -402,6 +446,7 @@ min_price_tick_size = 0.000001 min_display_price_tick_size = 0.0001 min_quantity_tick_size = 100000000 min_display_quantity_tick_size = 1 +min_notional = 0 [0xa7fb70ac87e220f3ea7f7f77faf48b47b3575a9f7ad22291f04a02799e631ca9] description = 'Mainnet Spot CANTO/USDT' @@ -411,6 +456,7 @@ min_price_tick_size = 0.0000000000000001 min_display_price_tick_size = 0.0001 min_quantity_tick_size = 10000000000000000000 min_display_quantity_tick_size = 10 +min_notional = 0 [0x7fce43f1140df2e5f16977520629e32a591939081b59e8fbc1e1c4ddfa77a044] description = 'Mainnet Spot LDO/USDC' @@ -420,6 +466,7 @@ min_price_tick_size = 0.1 min_display_price_tick_size = 0.001 min_quantity_tick_size = 1000 min_display_quantity_tick_size = 0.001 +min_notional = 0 [0x66a113e1f0c57196985f8f1f1cfce2f220fa0a96bca39360c70b6788a0bc06e0] description = 'Mainnet Spot LDO/USDC' @@ -429,6 +476,7 @@ min_price_tick_size = 0.00001 min_display_price_tick_size = 0.001 min_quantity_tick_size = 100000 min_display_quantity_tick_size = 0.001 +min_notional = 0 [0x4b29b6df99d73920acdc56962050786ac950fcdfec6603094b63cd38cad5197e] description = 'Mainnet Spot PUG/USDT' @@ -438,6 +486,7 @@ min_price_tick_size = 0.0000000000000001 min_display_price_tick_size = 0.0001 min_quantity_tick_size = 100000000000000 min_display_quantity_tick_size = 0.0001 +min_notional = 0 [0x1bba49ea1eb64958a19b66c450e241f17151bc2e5ea81ed5e2793af45598b906] description = 'Mainnet Spot ARB/USDT' @@ -447,6 +496,7 @@ min_price_tick_size = 0.000001 min_display_price_tick_size = 0.0001 min_quantity_tick_size = 10000000 min_display_quantity_tick_size = 0.1 +min_notional = 0 [0xba33c2cdb84b9ad941f5b76c74e2710cf35f6479730903e93715f73f2f5d44be] description = 'Mainnet Spot WMATIC/USDC' @@ -456,6 +506,7 @@ min_price_tick_size = 0.000001 min_display_price_tick_size = 0.0001 min_quantity_tick_size = 10000000 min_display_quantity_tick_size = 0.1 +min_notional = 0 [0xb9a07515a5c239fcbfa3e25eaa829a03d46c4b52b9ab8ee6be471e9eb0e9ea31] description = 'Mainnet Spot WMATIC/USDT' @@ -465,6 +516,7 @@ min_price_tick_size = 0.000001 min_display_price_tick_size = 0.0001 min_quantity_tick_size = 10000000 min_display_quantity_tick_size = 0.1 +min_notional = 0 [0xce1829d4942ed939580e72e66fd8be3502396fc840b6d12b2d676bdb86542363] description = 'Mainnet Spot stINJ/INJ' @@ -474,6 +526,7 @@ min_price_tick_size = 0.0001 min_display_price_tick_size = 0.0001 min_quantity_tick_size = 1000000000000000 min_display_quantity_tick_size = 0.001 +min_notional = 0 [0xa04adeed0f09ed45c73b344b520d05aa31eabe2f469dcbb02a021e0d9d098715] description = 'Mainnet Spot ORAI/USDT' @@ -483,6 +536,7 @@ min_price_tick_size = 0.0001 min_display_price_tick_size = 0.0001 min_quantity_tick_size = 100000 min_display_quantity_tick_size = 0.1 +min_notional = 0 [0xe8fe754e16233754e2811c36aca89992e35951cfd61376f1cbdc44be6ac8d3fb] description = 'Mainnet Spot NEOK/USDT' @@ -492,6 +546,7 @@ min_price_tick_size = 0.0000000000000001 min_display_price_tick_size = 0.0001 min_quantity_tick_size = 100000000000000000 min_display_quantity_tick_size = 0.1 +min_notional = 0 [0x2d8b2a2bef3782b988e16a8d718ea433d6dfebbb3b932975ca7913589cb408b5] description = 'Mainnet Spot KAVA/USDT' @@ -501,6 +556,7 @@ min_price_tick_size = 0.0001 min_display_price_tick_size = 0.0001 min_quantity_tick_size = 1000000 min_display_quantity_tick_size = 1 +min_notional = 0 [0xbf94d932d1463959badee52ffbeb2eeeeeda750e655493e909ced540c375a277] description = 'Mainnet Spot USDTkv/USDT' @@ -510,6 +566,7 @@ min_price_tick_size = 0.0001 min_display_price_tick_size = 0.0001 min_quantity_tick_size = 100000 min_display_quantity_tick_size = 0.1 +min_notional = 0 [0x35fd4fa9291ea68ce5eef6e0ea8567c7744c1891c2059ef08580ba2e7a31f101] description = 'Mainnet Spot TIA/USDT' @@ -519,6 +576,7 @@ min_price_tick_size = 0.001 min_display_price_tick_size = 0.001 min_quantity_tick_size = 100000 min_display_quantity_tick_size = 0.1 +min_notional = 0 [0x21f3eed62ddc64458129c0dcbff32b3f54c92084db787eb5cf7c20e69a1de033] description = 'Mainnet Spot TALIS/USDT' @@ -528,6 +586,7 @@ min_price_tick_size = 0.00001 min_display_price_tick_size = 0.00001 min_quantity_tick_size = 10000000 min_display_quantity_tick_size = 10 +min_notional = 0 [0xf09dd242aea343afd7b6644151bb00d1b8770d842881009bea867658602b6bf0] description = 'Mainnet Spot TALIS/INJ' @@ -537,6 +596,7 @@ min_price_tick_size = 1000000 min_display_price_tick_size = 0.000001 min_quantity_tick_size = 10000000 min_display_quantity_tick_size = 10 +min_notional = 0 [0x6922cf4383294c673971dd06aa4ae5ef47f65cb4f1ec1c2af4271c5e5ca67486] description = 'Mainnet Spot KUJI/USDT' @@ -546,6 +606,7 @@ min_price_tick_size = 0.001 min_display_price_tick_size = 0.001 min_quantity_tick_size = 100000 min_display_quantity_tick_size = 0.1 +min_notional = 0 [0xa6ec1de114a5ffa85b6b235144383ce51028a1c0c2dee7db5ff8bf14d5ca0d49] description = 'Mainnet Spot PYTH/USDT' @@ -555,6 +616,7 @@ min_price_tick_size = 0.0001 min_display_price_tick_size = 0.0001 min_quantity_tick_size = 1000000 min_display_quantity_tick_size = 1 +min_notional = 0 [0x75f6a79b552dac417df219ab384be19cb13b53dec7cf512d73a965aee8bc83af] description = 'Mainnet Spot USDY/USDT' @@ -564,6 +626,7 @@ min_price_tick_size = 0.0000000000000001 min_display_price_tick_size = 0.0001 min_quantity_tick_size = 100000000000000000 min_display_quantity_tick_size = 0.1 +min_notional = 0 [0x689ea50a30b0aeaf162e57100fefe5348a00099774f1c1ebcd90c4b480fda46a] description = 'Mainnet Spot WHALE/USDT' @@ -573,6 +636,7 @@ min_price_tick_size = 0.00001 min_display_price_tick_size = 0.00001 min_quantity_tick_size = 10000000 min_display_quantity_tick_size = 10 +min_notional = 0 [0xac938722067b1dfdfbf346d2434573fb26cb090d309b19af17df2c6827ceb32c] description = 'Mainnet Spot SOL/USDT' @@ -582,6 +646,7 @@ min_price_tick_size = 0.0001 min_display_price_tick_size = 0.01 min_quantity_tick_size = 1000000 min_display_quantity_tick_size = 0.01 +min_notional = 0 [0x2d3b8d8833dda54a717adea9119134556848105fd6028e9a4a526e4e5a122a57] description = 'Mainnet Spot KIRA/INJ' @@ -591,6 +656,7 @@ min_price_tick_size = 10000 min_display_price_tick_size = 0.00000001 min_quantity_tick_size = 1000000000 min_display_quantity_tick_size = 1000 +min_notional = 0 [0xdf9317eac1739a23bc385e264afde5d480c0b3d2322660b5efd206071d4e70b7] description = 'Mainnet Spot NINJA/INJ' @@ -600,6 +666,7 @@ min_price_tick_size = 1000000 min_display_price_tick_size = 0.000001 min_quantity_tick_size = 10000000 min_display_quantity_tick_size = 10 +min_notional = 0 [0x4bb3426a2d7ba80c244ef7eecfd7c4fd177d78e63ff40ba6235b1ae471e23cdb] description = 'Mainnet Spot KATANA/INJ' @@ -609,6 +676,7 @@ min_price_tick_size = 10000 min_display_price_tick_size = 0.00000001 min_quantity_tick_size = 1000000000 min_display_quantity_tick_size = 1000 +min_notional = 0 [0x23983c260fc8a6627befa50cfc0374feef834dc1dc90835238c8559cc073e08f] description = 'Mainnet Spot BRETT/INJ' @@ -618,6 +686,7 @@ min_price_tick_size = 1000000 min_display_price_tick_size = 0.000001 min_quantity_tick_size = 10000000 min_display_quantity_tick_size = 10 +min_notional = 0 [0x6de141d12691dd13fffcc4e3ceeb09191ff445e1f10dfbecedc63a1e365fb6cd] description = 'Mainnet Spot ZIG/INJ' @@ -627,6 +696,7 @@ min_price_tick_size = 0.000001 min_display_price_tick_size = 0.000001 min_quantity_tick_size = 10000000000000000000 min_display_quantity_tick_size = 10 +min_notional = 0 [0x02b56c5e6038f0dd795efb521718b33412126971608750538409f4b81ab5da2f] description = 'Mainnet Spot nINJ/INJ' @@ -636,6 +706,7 @@ min_price_tick_size = 0.0001 min_display_price_tick_size = 0.0001 min_quantity_tick_size = 1000000000000000 min_display_quantity_tick_size = 0.001 +min_notional = 0 [0xb6c24e9a586a50062f2fac059ddd79f8b0cf1c101e263f4b2c7484b0e20d2899] description = 'Mainnet Spot GINGER/INJ' @@ -645,6 +716,7 @@ min_price_tick_size = 100 min_display_price_tick_size = 0.0000000001 min_quantity_tick_size = 10000000000 min_display_quantity_tick_size = 10000 +min_notional = 0 [0x9b13c89f8f10386b61dd3a58aae56d5c7995133534ed65ac9835bb8d54890961] description = 'Mainnet Spot SNOWY/INJ' @@ -654,6 +726,7 @@ min_price_tick_size = 1000000 min_display_price_tick_size = 0.000001 min_quantity_tick_size = 1000000 min_display_quantity_tick_size = 1 +min_notional = 0 [0xb3f38c081a1817bb0fc717bf869e93f5557c10851db4e15922e1d9d2297bd802] description = 'Mainnet Spot AUTISM/INJ' @@ -663,6 +736,7 @@ min_price_tick_size = 1000000 min_display_price_tick_size = 0.000001 min_quantity_tick_size = 10000000 min_display_quantity_tick_size = 10 +min_notional = 0 [0xd0ba680312852ffb0709446fff518e6c4d798fb70cfd2699aba3717a2517cfd5] description = 'Mainnet Spot APP/INJ' @@ -672,6 +746,7 @@ min_price_tick_size = 0.000000000000000001 min_display_price_tick_size = 0.000001 min_quantity_tick_size = 10000000000000000000 min_display_quantity_tick_size = 10 +min_notional = 0 [0x05288e393771f09c923d1189e4265b7c2646b6699f08971fd2adf0bfd4b1ce7a] description = 'Mainnet Spot APP/INJ ' @@ -681,6 +756,7 @@ min_price_tick_size = 0.000001 min_display_price_tick_size = 0.000001 min_quantity_tick_size = 10000000000000000000 min_display_quantity_tick_size = 10 +min_notional = 0 [0xe6dd9895b169e2ca0087fcb8e8013805d06c3ed8ffc01ccaa31c710eef14a984] description = 'Mainnet Spot DOJO/INJ' @@ -690,6 +766,7 @@ min_price_tick_size = 0.000001 min_display_price_tick_size = 0.000001 min_quantity_tick_size = 10000000000000000000 min_display_quantity_tick_size = 10 +min_notional = 0 [0x0a1366c8b05658c0ccca6064e4b20aacd5ad350c02debd6ec0f4dc9178145d14] description = 'Mainnet Spot GYEN/USDT' @@ -699,6 +776,7 @@ min_price_tick_size = 0.000001 min_display_price_tick_size = 0.000001 min_quantity_tick_size = 100000000 min_display_quantity_tick_size = 100 +min_notional = 0 [0x9c8a91a894f773792b1e8d0b6a8224a6b748753738e9945020ee566266f817be] description = 'Mainnet Spot USDCnb/USDT' @@ -708,6 +786,7 @@ min_price_tick_size = 0.0001 min_display_price_tick_size = 0.0001 min_quantity_tick_size = 100000 min_display_quantity_tick_size = 0.1 +min_notional = 0 [0x9c42d763ba5135809ac4684b02082e9c880d69f6b96d258fe4c172396e9af7be] description = 'Mainnet Spot ANDR/INJ' @@ -717,6 +796,7 @@ min_price_tick_size = 10000000 min_display_price_tick_size = 0.00001 min_quantity_tick_size = 100000 min_display_quantity_tick_size = 0.1 +min_notional = 0 [0x1b1e062b3306f26ae3af3c354a10c1cf38b00dcb42917f038ba3fc14978b1dd8] description = 'Mainnet Spot hINJ/INJ' @@ -726,6 +806,7 @@ min_price_tick_size = 0.0001 min_display_price_tick_size = 0.0001 min_quantity_tick_size = 1000000000000000 min_display_quantity_tick_size = 0.001 +min_notional = 0 [0x959c9401a557ac090fff3ec11db5a1a9832e51a97a41b722d2496bb3cb0b2f72] description = 'Mainnet Spot ANDR/INJ' @@ -735,6 +816,7 @@ min_price_tick_size = 0.0001 min_display_price_tick_size = 0.0001 min_quantity_tick_size = 1000000 min_display_quantity_tick_size = 1 +min_notional = 0 [0x697457537bc2af5ff652bc0616fe23537437a570d0e4d91566f03af279e095d5] description = 'Mainnet Spot PHUC/INJ' @@ -744,6 +826,7 @@ min_price_tick_size = 10000 min_display_price_tick_size = 0.00000001 min_quantity_tick_size = 1000000000 min_display_quantity_tick_size = 1000 +min_notional = 0 [0x42edf70cc37e155e9b9f178e04e18999bc8c404bd7b638cc4cbf41da8ef45a21] description = 'Mainnet Spot QUNT/INJ' @@ -753,6 +836,7 @@ min_price_tick_size = 10000 min_display_price_tick_size = 0.00000001 min_quantity_tick_size = 100000000 min_display_quantity_tick_size = 100 +min_notional = 0 [0x586409ac5f6d6e90a81d2585b9a8e76de0b4898d5f2c047d0bc025a036489ba1] description = 'Mainnet Spot WHALE/INJ' @@ -762,6 +846,7 @@ min_price_tick_size = 1000000 min_display_price_tick_size = 0.000001 min_quantity_tick_size = 1000000 min_display_quantity_tick_size = 1 +min_notional = 0 [0x1af8fa374392dc1bd6331f38f0caa424a39b05dd9dfdc7a2a537f6f62bde50fe] description = 'Mainnet Spot USDe/USDT' @@ -771,6 +856,7 @@ min_price_tick_size = 0.0000000000000001 min_display_price_tick_size = 0.0001 min_quantity_tick_size = 100000000000000000 min_display_quantity_tick_size = 0.1 +min_notional = 0 [0xc8fafa1fcab27e16da20e98b4dc9dda45320418c27db80663b21edac72f3b597] description = 'Mainnet Spot HDRO/INJ' @@ -780,6 +866,7 @@ min_price_tick_size = 1000000 min_display_price_tick_size = 0.000001 min_quantity_tick_size = 1000000 min_display_quantity_tick_size = 1 +min_notional = 0 [0xb965ebede42e67af153929339040e650d5c2af26d6aa43382c110d943c627b0a] description = 'Mainnet Spot PYTH/INJ' @@ -789,6 +876,7 @@ min_price_tick_size = 10000000 min_display_price_tick_size = 0.00001 min_quantity_tick_size = 100000 min_display_quantity_tick_size = 0.1 +min_notional = 0 [0x25b545439f8e072856270d4b5ca94764521c4111dd9a2bbb5fbc96d2ab280f13] description = 'Mainnet Spot PYTH/INJ' @@ -798,6 +886,7 @@ min_price_tick_size = 10000000 min_display_price_tick_size = 0.00001 min_quantity_tick_size = 100000 min_display_quantity_tick_size = 0.1 +min_notional = 0 [0xeb95ab0b5416266b1987f1d46bcd5f63addeac68bbf5a089c5ed02484c97b6a3] description = 'Mainnet Spot LVN/INJ' @@ -807,6 +896,7 @@ min_price_tick_size = 1000000 min_display_price_tick_size = 0.000001 min_quantity_tick_size = 1000000 min_display_quantity_tick_size = 1 +min_notional = 0 [0x85ccdb2b6022b0586da19a2de0a11ce9876621630778e28a5d534464cbfff238] description = 'Mainnet Spot NONJA/INJ' @@ -816,6 +906,7 @@ min_price_tick_size = 0.00000001 min_display_price_tick_size = 0.00000001 min_quantity_tick_size = 100000000000000000000 min_display_quantity_tick_size = 100 +min_notional = 0 [0xd9089235d2c1b07261cbb2071f4f5a7f92fa1eca940e3cad88bb671c288a972f] description = 'Mainnet Spot SOL/USDT' @@ -825,6 +916,7 @@ min_price_tick_size = 0.0001 min_display_price_tick_size = 0.01 min_quantity_tick_size = 1000000 min_display_quantity_tick_size = 0.01 +min_notional = 0 [0x8cd25fdc0d7aad678eb998248f3d1771a2d27c964a7630e6ffa5406de7ea54c1] description = 'Mainnet Spot WMATIC/USDT' @@ -834,6 +926,7 @@ min_price_tick_size = 0.000001 min_display_price_tick_size = 0.0001 min_quantity_tick_size = 10000000 min_display_quantity_tick_size = 0.1 +min_notional = 0 [0x1c2e5b1b4b1269ff893b4817a478fba6095a89a3e5ce0cccfcafa72b3941eeb6] description = 'Mainnet Spot ARB/USDT' @@ -843,6 +936,7 @@ min_price_tick_size = 0.000001 min_display_price_tick_size = 0.0001 min_quantity_tick_size = 10000000 min_display_quantity_tick_size = 0.1 +min_notional = 0 [0xd5ef157b855101a19da355aee155a66f3f2eea7baca787bd27597f5182246da4] description = 'Mainnet Spot STRD/INJ' @@ -852,6 +946,7 @@ min_price_tick_size = 10000000 min_display_price_tick_size = 0.00001 min_quantity_tick_size = 100000 min_display_quantity_tick_size = 0.1 +min_notional = 0 [0x1f5d69fc3d063e2a130c29943a0c83c3e79c2ba897fe876fcd82c51ab2ea61de] description = 'Mainnet Spot sUSDe/USDe' @@ -861,6 +956,7 @@ min_price_tick_size = 0.00001 min_display_price_tick_size = 0.00001 min_quantity_tick_size = 100000000000000 min_display_quantity_tick_size = 0.0001 +min_notional = 0 [0x6ad662364885b8a4c50edfc88deeef23338b2bd0c1e4dc9b680b054afc9b6b24] description = 'Mainnet Spot ENA/USDT' @@ -870,6 +966,7 @@ min_price_tick_size = 0.0000000000000001 min_display_price_tick_size = 0.0001 min_quantity_tick_size = 1000000000000000000 min_display_quantity_tick_size = 1 +min_notional = 0 [0xb03ead807922111939d1b62121ae2956cf6f0a6b03dfdea8d9589c05b98f670f] description = 'Mainnet Spot BONUS/USDT' @@ -879,6 +976,7 @@ min_price_tick_size = 0.000001 min_display_price_tick_size = 0.0001 min_quantity_tick_size = 100000000 min_display_quantity_tick_size = 1 +min_notional = 0 [0x35a83ec8948babe4c1b8fbbf1d93f61c754fedd3af4d222fe11ce2a294cd74fb] description = 'Mainnet Spot W/USDT' @@ -888,6 +986,7 @@ min_price_tick_size = 0.001 min_display_price_tick_size = 0.001 min_quantity_tick_size = 100000 min_display_quantity_tick_size = 0.1 +min_notional = 0 [0x315e5cd5ee24b3a1e1396679885b5e42bbe18045105d1662c6618430a131d117] description = 'Mainnet Spot XIII/INJ' @@ -897,6 +996,7 @@ min_price_tick_size = 10000 min_display_price_tick_size = 0.00000001 min_quantity_tick_size = 100000000 min_display_quantity_tick_size = 100 +min_notional = 0 [0xd166688623206f9931307285678e9ff17cecd80a27d7b781dd88cecfba3b1839] description = 'Mainnet Spot BLACK/INJ' @@ -906,6 +1006,7 @@ min_price_tick_size = 1000000 min_display_price_tick_size = 0.000001 min_quantity_tick_size = 1000000 min_display_quantity_tick_size = 1 +min_notional = 0 [0x2be72879bb90ec8cbbd7510d0eed6a727f6c2690ce7f1397982453d552f9fe8f] description = 'Mainnet Spot OMNI/USDT' @@ -915,6 +1016,7 @@ min_price_tick_size = 0.00000000000001 min_display_price_tick_size = 0.01 min_quantity_tick_size = 10000000000000000 min_display_quantity_tick_size = 0.01 +min_notional = 0 [0xbd370d025c3693e8d658b44afe8434fa61cbc94178d0871bffd49e25773ef879] description = 'Mainnet Spot ASG/INJ' @@ -924,6 +1026,7 @@ min_price_tick_size = 1000 min_display_price_tick_size = 0.0000001 min_quantity_tick_size = 100000000 min_display_quantity_tick_size = 1 +min_notional = 0 [0xacb0dc21cddb15b686f36c3456f4223f701a2afa382006ef478d156439483b4d] description = 'Mainnet Spot EZETH/WETH' @@ -933,6 +1036,7 @@ min_price_tick_size = 0.00001 min_display_price_tick_size = 0.00001 min_quantity_tick_size = 10000000000000 min_display_quantity_tick_size = 0.00001 +min_notional = 0 [0x960038a93b70a08f1694c4aa5c914afda329063191e65a5b698f9d0676a0abf9] description = 'Mainnet Spot SAGA/USDT' @@ -942,6 +1046,7 @@ min_price_tick_size = 0.001 min_display_price_tick_size = 0.001 min_quantity_tick_size = 100000 min_display_quantity_tick_size = 0.1 +min_notional = 0 [0xca8121ea57a4f7fd3e058fa1957ebb69b37d52792e49b0b43932f1b9c0e01f8b] description = 'Mainnet Spot wUSDM/USDT' @@ -951,6 +1056,7 @@ min_price_tick_size = 0.0000000000000001 min_display_price_tick_size = 0.0001 min_quantity_tick_size = 100000000000000000 min_display_quantity_tick_size = 0.1 +min_notional = 0 [0x4ca0f92fc28be0c9761326016b5a1a2177dd6375558365116b5bdda9abc229ce] description = 'Mainnet Derivative BTC/USDT PERP' @@ -960,6 +1066,7 @@ min_price_tick_size = 1000000 min_display_price_tick_size = 1 min_quantity_tick_size = 0.0001 min_display_quantity_tick_size = 0.0001 +min_notional = 0 [0x54d4505adef6a5cef26bc403a33d595620ded4e15b9e2bc3dd489b714813366a] description = 'Mainnet Derivative ETH/USDT PERP' @@ -969,6 +1076,7 @@ min_price_tick_size = 100000 min_display_price_tick_size = 0.1 min_quantity_tick_size = 0.01 min_display_quantity_tick_size = 0.01 +min_notional = 0 [0x1c79dac019f73e4060494ab1b4fcba734350656d6fc4d474f6a238c13c6f9ced] description = 'Mainnet Derivative BNB/USDT PERP' @@ -978,6 +1086,7 @@ min_price_tick_size = 10000 min_display_price_tick_size = 0.01 min_quantity_tick_size = 0.01 min_display_quantity_tick_size = 0.01 +min_notional = 0 [0x9b9980167ecc3645ff1a5517886652d94a0825e54a77d2057cbbe3ebee015963] description = 'Mainnet Derivative INJ/USDT PERP' @@ -987,6 +1096,7 @@ min_price_tick_size = 1000 min_display_price_tick_size = 0.001 min_quantity_tick_size = 0.001 min_display_quantity_tick_size = 0.001 +min_notional = 0 [0xc559df216747fc11540e638646c384ad977617d6d8f0ea5ffdfc18d52e58ab01] description = 'Mainnet Derivative ATOM/USDT PERP' @@ -996,6 +1106,7 @@ min_price_tick_size = 1000 min_display_price_tick_size = 0.001 min_quantity_tick_size = 0.01 min_display_quantity_tick_size = 0.01 +min_notional = 0 [0x8c7fd5e6a7f49d840512a43d95389a78e60ebaf0cde1af86b26a785eb23b3be5] description = 'Mainnet Derivative OSMO/UST PERP' @@ -1005,6 +1116,7 @@ min_price_tick_size = 1000 min_display_price_tick_size = 0.000000000000001 min_quantity_tick_size = 0.01 min_display_quantity_tick_size = 0.01 +min_notional = 0 [0xcf18525b53e54ad7d27477426ade06d69d8d56d2f3bf35fe5ce2ad9eb97c2fbc] description = 'Mainnet Derivative OSMO/USDT PERP' @@ -1014,6 +1126,7 @@ min_price_tick_size = 1000 min_display_price_tick_size = 0.001 min_quantity_tick_size = 0.1 min_display_quantity_tick_size = 0.1 +min_notional = 0 [0x06c5a306492ddc2b8dc56969766959163287ed68a6b59baa2f42330dda0aebe0] description = 'Mainnet Derivative SOL/USDT PERP' @@ -1023,6 +1136,7 @@ min_price_tick_size = 10000 min_display_price_tick_size = 0.01 min_quantity_tick_size = 0.001 min_display_quantity_tick_size = 0.001 +min_notional = 0 [0x3b7fb1d9351f7fa2e6e0e5a11b3639ee5e0486c33a6a74f629c3fc3c3043efd5] description = 'Mainnet Derivative BONK/USDT PERP' @@ -1032,6 +1146,7 @@ min_price_tick_size = 0.01 min_display_price_tick_size = 0.00000001 min_quantity_tick_size = 10000 min_display_quantity_tick_size = 10000 +min_notional = 0 [0xcd0c859a99f26bb3530e21890937ed77d20754aa7825a599c71710514fc125ef] description = 'Mainnet Derivative 1MPEPE/USDT PERP' @@ -1041,6 +1156,7 @@ min_price_tick_size = 100 min_display_price_tick_size = 0.0001 min_quantity_tick_size = 1 min_display_quantity_tick_size = 1 +min_notional = 0 [0x63bafbeee644b6606afb8476dd378fba35d516c7081d6045145790af963545aa] description = 'Mainnet Derivative XRP/USDT PERP' @@ -1050,6 +1166,7 @@ min_price_tick_size = 100 min_display_price_tick_size = 0.0001 min_quantity_tick_size = 0.1 min_display_quantity_tick_size = 0.1 +min_notional = 0 [0x1afa358349b140e49441b6e68529578c7d2f27f06e18ef874f428457c0aaeb8b] description = 'Mainnet Derivative SEI/USDT PERP' @@ -1059,6 +1176,7 @@ min_price_tick_size = 100 min_display_price_tick_size = 0.0001 min_quantity_tick_size = 1 min_display_quantity_tick_size = 1 +min_notional = 0 [0x4fe7aff4dd27be7cbb924336e7fe2d160387bb1750811cf165ce58d4c612aebb] description = 'Mainnet Derivative AXL/USDT PERP' @@ -1068,6 +1186,7 @@ min_price_tick_size = 100 min_display_price_tick_size = 0.0001 min_quantity_tick_size = 1 min_display_quantity_tick_size = 1 +min_notional = 0 [0x887beca72224f88fb678a13a1ae91d39c53a05459fd37ef55005eb68f745d46d] description = 'Mainnet Derivative PYTH/USDT PERP' @@ -1077,6 +1196,7 @@ min_price_tick_size = 100 min_display_price_tick_size = 0.0001 min_quantity_tick_size = 1 min_display_quantity_tick_size = 1 +min_notional = 0 [0x9066bfa1bd97685e0df4e22a104f510fb867fde7f74a52f3341c7f5f56eb889c] description = 'Mainnet Derivative TIA/USDT PERP' @@ -1086,6 +1206,7 @@ min_price_tick_size = 1000 min_display_price_tick_size = 0.001 min_quantity_tick_size = 0.1 min_display_quantity_tick_size = 0.1 +min_notional = 0 [0x7a70d95e24ba42b99a30121e6a4ff0d6161847d5b86cbfc3d4b3a81d8e190a70] description = 'Mainnet Derivative ZRO/USDT PERP' @@ -1095,6 +1216,7 @@ min_price_tick_size = 1000 min_display_price_tick_size = 0.001 min_quantity_tick_size = 0.1 min_display_quantity_tick_size = 0.1 +min_notional = 0 [0x03841e74624fd885d1ee28453f921d18c211e78a0d7646c792c7903054eb152c] description = 'Mainnet Derivative JUP/USDT PERP' @@ -1104,6 +1226,7 @@ min_price_tick_size = 10 min_display_price_tick_size = 0.00001 min_quantity_tick_size = 1 min_display_quantity_tick_size = 1 +min_notional = 0 [0x30a1463cfb4c393c80e257ab93118cecd73c1e632dc4d2d31c12a51bc0a70bd7] description = 'Mainnet Derivative AVAX/USDT PERP' @@ -1113,6 +1236,7 @@ min_price_tick_size = 10000 min_display_price_tick_size = 0.01 min_quantity_tick_size = 0.01 min_display_quantity_tick_size = 0.01 +min_notional = 0 [0x18b2ca44b3d20a3b87c87d3765669b09b73b5e900693896c08394c70e79ab1e7] description = 'Mainnet Derivative SUI/USDT PERP' @@ -1122,6 +1246,7 @@ min_price_tick_size = 1000 min_display_price_tick_size = 0.001 min_quantity_tick_size = 0.1 min_display_quantity_tick_size = 0.1 +min_notional = 0 [0x1a6d3a59f45904e0a4a2eed269fc2f552e7e407ac90aaaeb602c31b017573f88] description = 'Mainnet Derivative WIF/USDT PERP' @@ -1131,6 +1256,7 @@ min_price_tick_size = 100 min_display_price_tick_size = 0.0001 min_quantity_tick_size = 1 min_display_quantity_tick_size = 1 +min_notional = 0 [0x48fcecd66ebabbf5a331178ec693b261dfae66ddfe6f552d7446744c6e78046c] description = 'Mainnet Derivative OP/USDT PERP' @@ -1140,6 +1266,7 @@ min_price_tick_size = 1000 min_display_price_tick_size = 0.001 min_quantity_tick_size = 0.1 min_display_quantity_tick_size = 0.1 +min_notional = 0 [0x6ddf0b8fbbd888981aafdae9fc967a12c6777aac4dd100a8257b8755c0c4b7d5] description = 'Mainnet Derivative ARB/USDT PERP' @@ -1149,6 +1276,7 @@ min_price_tick_size = 1000 min_display_price_tick_size = 0.001 min_quantity_tick_size = 0.1 min_display_quantity_tick_size = 0.1 +min_notional = 0 [0xf1bc70398e9b469db459f3153433c6bd1253bd02377248ee29bd346a218e6243] description = 'Mainnet Derivative W/USDT PERP' @@ -1158,6 +1286,7 @@ min_price_tick_size = 100 min_display_price_tick_size = 0.0001 min_quantity_tick_size = 1 min_display_quantity_tick_size = 1 +min_notional = 0 [0x03c8da1f6aaf8aca2be26b0f4d6b89d475835c7812a1dcdb19af7dec1c6b7f60] description = 'Mainnet Derivative LINK/USDT PERP' @@ -1167,6 +1296,7 @@ min_price_tick_size = 10000 min_display_price_tick_size = 0.01 min_quantity_tick_size = 0.01 min_display_quantity_tick_size = 0.01 +min_notional = 0 [0x7980993e508e0efc1c2634c153a1ef90f517b74351d6406221c77c04ec4799fe] description = 'Mainnet Derivative DOGE/USDT PERP' @@ -1176,6 +1306,7 @@ min_price_tick_size = 10 min_display_price_tick_size = 0.00001 min_quantity_tick_size = 10 min_display_quantity_tick_size = 10 +min_notional = 0 [0x4d42425fc3ccd6b61b8c4ad61134ab3cf21bdae1b665317eff671cfab79f4387] description = 'Mainnet Derivative OMNI/USDT PERP' @@ -1185,6 +1316,7 @@ min_price_tick_size = 100000 min_display_price_tick_size = 0.1 min_quantity_tick_size = 0.01 min_display_quantity_tick_size = 0.01 +min_notional = 0 [0x0160a0c8ecbf5716465b9fc22bceeedf6e92dcdc688e823bbe1af3b22a84e5b5] description = 'Mainnet Derivative XAU/USDT PERP' @@ -1194,6 +1326,7 @@ min_price_tick_size = 10000 min_display_price_tick_size = 0.01 min_quantity_tick_size = 0.0001 min_display_quantity_tick_size = 0.0001 +min_notional = 0 [0xedc48ec071136eeb858b11ba50ba87c96e113400e29670fecc0a18d588238052] description = 'Mainnet Derivative XAG/USDT PERP' @@ -1203,6 +1336,7 @@ min_price_tick_size = 1000 min_display_price_tick_size = 0.001 min_quantity_tick_size = 0.01 min_display_quantity_tick_size = 0.01 +min_notional = 0 [0x3c5bba656074e6e84965dc7d99a218f6f514066e6ddc5046acaff59105bb6bf5] description = 'Mainnet Derivative EUR/USDT PERP' @@ -1212,6 +1346,7 @@ min_price_tick_size = 10 min_display_price_tick_size = 0.00001 min_quantity_tick_size = 0.1 min_display_quantity_tick_size = 0.1 +min_notional = 0 [0x5c0de20c02afe5dcc1c3c841e33bfbaa1144d8900611066141ad584eeaefbd2f] description = 'Mainnet Derivative GBP/USDT PERP' @@ -1221,6 +1356,7 @@ min_price_tick_size = 10 min_display_price_tick_size = 0.00001 min_quantity_tick_size = 0.1 min_display_quantity_tick_size = 0.1 +min_notional = 0 [0xf1ceea00e01327497c321679896e5e64ad2a4e4b88e7324adeec7661351b6d93] description = 'Mainnet Derivative BODEN/USDT PERP' @@ -1230,6 +1366,7 @@ min_price_tick_size = 100 min_display_price_tick_size = 0.0001 min_quantity_tick_size = 1 min_display_quantity_tick_size = 1 +min_notional = 0 [0x0d4c722badb032f14dfc07355258a4bcbd354cbc5d79cb5b69ddd52b1eb2f709] description = 'Mainnet Derivative BTC/wUSDM Perp' @@ -1239,6 +1376,7 @@ min_price_tick_size = 1000000000000000000 min_display_price_tick_size = 1 min_quantity_tick_size = 0.0001 min_display_quantity_tick_size = 0.0001 +min_notional = 0 [ tether] peggy_denom = inj1wpeh7cm7s0mj7m3x6vrf5hvxfx2xusz5l27evk @@ -1320,6 +1458,10 @@ decimals = 6 peggy_denom = factory/inj1nhswhqrgfu3hpauvyeycz7pfealx4ack2c5hfp/adolf decimals = 6 +[AEVMOS] +peggy_denom = ibc/1BA3077202A1D84737F6E4F2F8E1214769B000AEBC3F31B9DA49B4E93734FE31 +decimals = 0 + [AGIX] peggy_denom = inj163fdg2e00gfdx9mjvarlgljuzt4guvx8ghhwml decimals = 8 @@ -1444,6 +1586,10 @@ decimals = 18 peggy_denom = factory/inj1pn6cg7jt5nvmh2rpjxhg95nrcjz0rujv54wkdg/apeinj decimals = 6 +[APLANQ] +peggy_denom = ibc/ABC34F1F9C95DAB3AD3DAFD5228FAB5CDEA67B6BD126BC545D6D25B15E57F527 +decimals = 0 + [APOLLO] peggy_denom = ibc/1D10FF873E3C5EC7263A7658CB116F9535EC0794185A8153F2DD662E0FA08CE5 decimals = 6 @@ -1468,6 +1614,10 @@ decimals = 6 peggy_denom = ibc/46B490B10E114ED9CE18FA1C92394F78CAA8A907EC72D66FF881E3B5EDC5E327 decimals = 6 +[ARAGORN] +peggy_denom = factory/inj1v5vml3038t0expy7vf5vkwj7t9xly9kudtjdg5/aragorn +decimals = 6 + [ARB] peggy_denom = ibc/8CF0E4184CA3105798EDB18CAA3981ADB16A9951FE9B05C6D830C746202747E1 decimals = 8 @@ -1600,10 +1750,18 @@ decimals = 6 peggy_denom = factory/inj14lf8xm6fcvlggpa7guxzjqwjmtr24gnvf56hvz/autism decimals = 6 +[AUTO] +peggy_denom = ibc/C4186992BA567DF4F28BF11D258D6158F0D1D4C7B9CF53E1D29DF8A07B669ADA +decimals = 6 + [AUUU] peggy_denom = ibc/4CEF2F778CDA8306B6DE18A3A4C4450BEBC84F27FC49F91F3617A37203FE84B2 decimals = 6 +[AVA1.1.6.95712B] +peggy_denom = ibc/386E9145A5C25DA49ED8F326ABC8776B343A3094A661121D265D5963080F652A +decimals = 0 + [AVAX] peggy_denom = factory/inj14ejqjyq8um4p3xfqj74yld5waqljf88f9eneuk/inj18a2u6az6dzw528rptepfg6n49ak6hdzkny4um6 decimals = 8 @@ -1820,6 +1978,10 @@ decimals = 18 peggy_denom = factory/inj1vrktrmvtxkzd52kk45ptc5m53zncm56d278qza/BASE decimals = 6 +[BASECRO] +peggy_denom = ibc/AA732299217B2A517BDB31DE27E52FBB7C0B31A51479389908D36469BCEDD9A1 +decimals = 0 + [BASTARD] peggy_denom = factory/inj16g5w38hqehsmye9yavag0g0tw7u8pjuzep0sys/BASTARD decimals = 6 @@ -2712,6 +2874,14 @@ decimals = 18 peggy_denom = factory/inj14ejqjyq8um4p3xfqj74yld5waqljf88f9eneuk/inj12kq4zh7kckuu0rfpxcr9l6l2x26ajf23uc0w55 decimals = 18 +[CW20:TERRA1CL273523KMR2UWJHHZNQ54JE69MTED2U3LJFFM8KP2AP4Z3DRDKSFTWQUN] +peggy_denom = ibc/44461C88F8BF1D2E8D890FB43B4C2C268B89FF6367ED8E39872BB13CA14A5512 +decimals = 0 + +[CW20:TERRA1NSUQSK6KH58ULCZATWEV87TTQ2Z6R3PUSULG9R24MFJ2FVTZD4UQ3EXN26] +peggy_denom = ibc/1966FE142949F3878ED8438FBDDE8620F4E0584D6605D2201E53388CF4CEAF41 +decimals = 0 + [CWIFLUCK] peggy_denom = factory/inj1u2fhfn0g8srf2kt3am52wd9dp4zyjvecm86uhj/CWIFLUCK decimals = 6 @@ -2804,6 +2974,10 @@ decimals = 6 peggy_denom = peggy0x6B175474E89094C44Da98b954EedeAC495271d0F decimals = 18 +[DAI-WEI] +peggy_denom = ibc/D60FA550EC962A2CAAC437052D06BA56543FB7787762153024216660CA4E0624 +decimals = 0 + [DANJER] peggy_denom = factory/inj1xzk83u23djtynmz3a3h9k0q454cuhsn3y9jhr3/DANJER decimals = 6 @@ -3020,6 +3194,10 @@ decimals = 18 peggy_denom = factory/inj14ejqjyq8um4p3xfqj74yld5waqljf88f9eneuk/inj1spzwwtr2luljr300ng2gu52zg7wn7j44m92mdf decimals = 10 +[DOT-PLANCK] +peggy_denom = ibc/6BF455853FEDB6745553C832A0BCCB70C548347558FB1C4DA395C7AB99B5B2E0 +decimals = 0 + [DOTRUMP] peggy_denom = factory/inj1v5vml3038t0expy7vf5vkwj7t9xly9kudtjdg5/dotrump decimals = 6 @@ -3336,6 +3514,14 @@ decimals = 18 peggy_denom = peggy0x3e1556B5b65C53Ab7f6956E7272A8ff6C1D0ed7b decimals = 18 +[ERC20/0X655ECB57432CC1370F65E5DC2309588B71B473A9] +peggy_denom = ibc/9A7A2B6433CFA1CA5D93AF75D568D614456EA4FEBC39F0BE1BE9ECBD420FB36F +decimals = 0 + +[ERC20/TETHER/USDT] +peggy_denom = ibc/04D85EE726D7D0241AD8E8D1AA98E0AC67094C9E5BEDD038AAF75AD46D37C154 +decimals = 0 + [ERIC] peggy_denom = factory/inj1w7cw5tltax6dx7znehul98gel6yutwuvh44j77/eric decimals = 6 @@ -3356,6 +3542,10 @@ decimals = 18 peggy_denom = eth decimals = 18 +[ETH.1.2.942D87] +peggy_denom = ibc/45CDDFFC2D593006ED982869A47AA09B1A1D46370C127B28F8B964A281EF2757 +decimals = 0 + [ETHBTCTrend] peggy_denom = peggy0x6b7f87279982d919Bbf85182DDeAB179B366D8f2 decimals = 18 @@ -3448,10 +3638,186 @@ decimals = 6 peggy_denom = ibc/5FE5E50EA0DF6D68C29EDFB7992EB81CD40B6780C33834A8AB3712FB148E1313 decimals = 6 +[FACTORY/CHIHUAHUA1X4Q2VKRZ4DFGD9HCW0P5M2F2NUV2UQMT9XR8K2/ACHIHUAHUAWIFHAT] +peggy_denom = ibc/F8AB96FFB2BF8F69AA42481D43B24E9121FF7403A4E95673D9135128CA769577 +decimals = 0 + +[FACTORY/INJ106ETGAY573E32KSYSC9DPDRYNXHK7KKMACLHFC/STARK] +peggy_denom = ibc/81B0CF8BB06F95247E3680844D0CB3889ACB2662B3AE2458C2370985BF4BD00B +decimals = 0 + +[FACTORY/INJ14EJQJYQ8UM4P3XFQJ74YLD5WAQLJF88F9ENEUK/INJ1STHRN5EP8LS5VZZ8F9GP89KHHMEDAHHDKQA8Z3] +peggy_denom = ibc/884A8507A762D0F1DE350C4E640ECA6EDD6F25617F39AD57BC6F5B7EC8DF7181 +decimals = 0 + +[FACTORY/INJ14LF8XM6FCVLGGPA7GUXZJQWJMTR24GNVF56HVZ/AUTISM] +peggy_denom = ibc/540553046CDCE9B477D2D82389E81AF99C76BDEAAC0BF9B9F64B5CAC7941DD63 +decimals = 0 + +[FACTORY/MIGALOO1436KXS0W2ES6XLQPP9RD35E3D0CJNW4SV8J3A7483SGKS29JQWGSHQDKY4/AMPWHALE] +peggy_denom = ibc/14ECCBBE1FF850AF4116A9F468DE3359AA97C1260BC734BA7956D593AF035FF7 +decimals = 0 + +[FACTORY/MIGALOO1MF6PTKSSDDFMXVHDX0ECH0K03KTP6KF9YK59RENAU2GVHT3NQ2GQDHTS4U/BONEWHALE] +peggy_denom = ibc/F14FD3D36F182611A987DFDFF77D8F31EEDCB4FBAD720E237989C60AD29A9061 +decimals = 0 + +[FACTORY/NEUTRON133XAKKRFKSQ39WXY575UNVE2NYEHG5NPX75NPH/GOP] +peggy_denom = ibc/B6DEF77F4106DE5F5E1D5C7AA857392A8B5CE766733BA23589AD4760AF953819 +decimals = 0 + +[FACTORY/NEUTRON133XAKKRFKSQ39WXY575UNVE2NYEHG5NPX75NPH/MOO] +peggy_denom = ibc/572EB1D6454B3BF6474A30B06D56597D1DEE758569CC695FF628D4EA235EFD5D +decimals = 0 + +[FACTORY/NEUTRON154GG0WTM2V4H9UR8XG32EP64E8EF0G5TWLSGVFEAJQWGHDRYVYQSQHGK8E/APOLLO] +peggy_denom = ibc/1B47F9D980CBB32A87022E1381C15005DE942A71CB61C1B498DBC2A18F43A8FE +decimals = 0 + +[FACTORY/OSMO1Q77CW0MMLLUXU0WR29FCDD0TDNH78GZHKVHE4N6ULAL9QVRTU43QTD0NH8/DJJTGA] +peggy_denom = ibc/50DC83F6AD408BC81CE04004C86BF457F9ED9BF70839F8E6BA6A3903228948D7 +decimals = 0 + +[FACTORY/OSMO1Q77CW0MMLLUXU0WR29FCDD0TDNH78GZHKVHE4N6ULAL9QVRTU43QTD0NH8/TEST] +peggy_denom = ibc/40C510742D7CE7F5EB2EF894AA9AD5056183D80628A73A04B48708A660FD088D +decimals = 0 + +[FACTORY/SEI189ADGUAWUGK3E55ZN63Z8R9LL29XRJWCA636RA7V7GXUZN98SXYQWZT47L/4TLQQCLAOKKFNFUPJA9O39YBKUWHR1F8N29TZ3HEBFP2] +peggy_denom = ibc/482A0E8D65CB9E840F728AC9EEC03DDE8C8117DD643635F2C52F6E9C33686834 +decimals = 0 + +[FACTORY/SEI189ADGUAWUGK3E55ZN63Z8R9LL29XRJWCA636RA7V7GXUZN98SXYQWZT47L/9FELVUHFO6YWL34ZALGPBCPZDK9MD1TAZMYCGH45QSHH] +peggy_denom = ibc/8A8AA255C5C0C1C58A35D74FE992620E10292BDCE1D2C7F8C7C439D642C42040 +decimals = 0 + +[FACTORY/SEI189ADGUAWUGK3E55ZN63Z8R9LL29XRJWCA636RA7V7GXUZN98SXYQWZT47L/9HJDBDAXQQQHF5HHAPUYKELNCBA38XQ5UONXN3TPQU5R] +peggy_denom = ibc/8CF037A7BCBFB7FC181078FF19C4C03DF4989CBC2CFF0520FB60B416A33C0C85 +decimals = 0 + +[FACTORY/SEI189ADGUAWUGK3E55ZN63Z8R9LL29XRJWCA636RA7V7GXUZN98SXYQWZT47L/HQ4TUDZHRBNXW3TFA5N6M52NVMVCC19XGGBYDIJKCD6H] +peggy_denom = ibc/03B0B4643FCA066FC383F781AAC5A238D1E433BFFEF210E93C8BF6F1D9DF29E4 +decimals = 0 + +[FACTORY/WORMHOLE14EJQJYQ8UM4P3XFQJ74YLD5WAQLJF88FZ25YXNMA0CNGSPXE3LES00FPJX/2WB6UEMFC9WLC2EYYVHA6QNWHKBWZUXDOOXSG6XXVVOS] +peggy_denom = ibc/8D59D4FCFE77CA4F11F9FD9E9ACA645197E9BFFE48B05ADA172D750D3C5F47E7 +decimals = 0 + +[FACTORY/WORMHOLE14EJQJYQ8UM4P3XFQJ74YLD5WAQLJF88FZ25YXNMA0CNGSPXE3LES00FPJX/3WFTBTQKJWFXFWHTSG6FJALTBPNALHN3BHFSMDVEVDXT] +peggy_denom = ibc/6C1F980F3D295DA21EC3AFD71008CC7674BA580EBEDBD76FD5E25E481067AF09 +decimals = 0 + +[FACTORY/WORMHOLE14EJQJYQ8UM4P3XFQJ74YLD5WAQLJF88FZ25YXNMA0CNGSPXE3LES00FPJX/576UQXYQRJFDQZDRVBNXIHN467IPUC12A5YN8V8H99F8] +peggy_denom = ibc/0F18C33D7C2C28E24A67BEFA2689A1552DCE9856E1BB3A16259403D5398EB23C +decimals = 0 + +[FACTORY/WORMHOLE14EJQJYQ8UM4P3XFQJ74YLD5WAQLJF88FZ25YXNMA0CNGSPXE3LES00FPJX/5BWQPR48LUBD55SZM5I62ZK7TFKDDCKHBT48YY6MNBDP] +peggy_denom = ibc/70F4C3604BE1891AB6164B504BA33D83C5E0D9A7868DABD75C59D1B33959360D +decimals = 0 + +[FACTORY/WORMHOLE14EJQJYQ8UM4P3XFQJ74YLD5WAQLJF88FZ25YXNMA0CNGSPXE3LES00FPJX/5CKYTGHOHU1VFNPD6IXDKYTM3CKTTZ1MECDYLUGGF4ZT] +peggy_denom = ibc/3C2EEA34EAF26698EE47A58FA2142369CE42E105E8452E1C074A32D34431484B +decimals = 0 + +[FACTORY/WORMHOLE14EJQJYQ8UM4P3XFQJ74YLD5WAQLJF88FZ25YXNMA0CNGSPXE3LES00FPJX/5MEVZ64BBVSZQACQCTQ2ZFWTMNQ5UKWNMADDSJDRUQTY] +peggy_denom = ibc/B7936BF07D9035C66C83B81B61672A05F30DE4196BE0A016A6CD4EDD20CB8F24 +decimals = 0 + +[FACTORY/WORMHOLE14EJQJYQ8UM4P3XFQJ74YLD5WAQLJF88FZ25YXNMA0CNGSPXE3LES00FPJX/6WMMXNYNI8TYB32CCAGPOPRR6NHLKX4J9KPGV5MOBNUT] +peggy_denom = ibc/13055E6ECA7C05091DD7B93DF81F0BB12479779DE3B9410CF445CC34B8361664 +decimals = 0 + +[FACTORY/WORMHOLE14EJQJYQ8UM4P3XFQJ74YLD5WAQLJF88FZ25YXNMA0CNGSPXE3LES00FPJX/7KQX8BVDA8W4EDPED8OHQHSFJSGF79XDCXCD8ELUWS7G] +peggy_denom = ibc/0A44483A7AFF7C096B2A4FB00A12E912BE717CD7703CF7F33ED99DB35230D404 +decimals = 0 + +[FACTORY/WORMHOLE14EJQJYQ8UM4P3XFQJ74YLD5WAQLJF88FZ25YXNMA0CNGSPXE3LES00FPJX/8IUAC6DSELVI2JDUTWJXLYTSZT8R19ITXEBZSNRELLNI] +peggy_denom = ibc/6D434846D1535247426AA917BBEC53BE1A881D49A010BF7EDACBFCD84DE4A5B8 +decimals = 0 + +[FACTORY/WORMHOLE14EJQJYQ8UM4P3XFQJ74YLD5WAQLJF88FZ25YXNMA0CNGSPXE3LES00FPJX/8SYGCZLRJC3J7QPN2BNBX6PIGCARHYX8RBHVANNFVHCA] +peggy_denom = ibc/0D84DE10252BC9D46B3454929129F76F13B03380E83ADBD9DD94A8D07E5555E2 +decimals = 0 + +[FACTORY/WORMHOLE14EJQJYQ8UM4P3XFQJ74YLD5WAQLJF88FZ25YXNMA0CNGSPXE3LES00FPJX/9WEDXCI5EPVG2XK6VTIKKXHIJYUQ79U6UZPWBNIF1CET] +peggy_denom = ibc/C2C022DC63E598614F39C575BC5EF4EC54E5D081365D9BE090D75F743364E54D +decimals = 0 + +[FACTORY/WORMHOLE14EJQJYQ8UM4P3XFQJ74YLD5WAQLJF88FZ25YXNMA0CNGSPXE3LES00FPJX/ASSYBMK2D3FMNTRGTD539XWDGWMJ7UV8VVXQTWTJYQBW] +peggy_denom = ibc/7A39488A287BF7DBC4A33DDA2BE3DDAC0F281FBCFF23934B7194893C136AAA99 +decimals = 0 + +[FACTORY/WORMHOLE14EJQJYQ8UM4P3XFQJ74YLD5WAQLJF88FZ25YXNMA0CNGSPXE3LES00FPJX/BJQMPMWFUPHE7QR3V8RLCZH8AOH2QFI2S1Z8649B62TY] +peggy_denom = ibc/4F72D2F3EAFB61D8615566B3C80AEF2778BB14B648929607568C79CD90416188 +decimals = 0 + +[FACTORY/WORMHOLE14EJQJYQ8UM4P3XFQJ74YLD5WAQLJF88FZ25YXNMA0CNGSPXE3LES00FPJX/BSWYXU2ZJFGASAU3ALDWNZMCDWENWHWPFWALPYNA7WZV] +peggy_denom = ibc/CB8E08B5C734BDA8344DDCFE5C9CCCC91521763BA1BC9F61CADE6E8F0B556E3D +decimals = 0 + +[FACTORY/WORMHOLE14EJQJYQ8UM4P3XFQJ74YLD5WAQLJF88FZ25YXNMA0CNGSPXE3LES00FPJX/CROEB5ZF21EA42EZHNPCV1JJ1JANLY4A1SQL6Y4USHGR] +peggy_denom = ibc/8E7F71072C97C5D8D19978C7E38AE90C0FBCCE551AF95FEB000EA9EBBFD6396B +decimals = 0 + +[FACTORY/WORMHOLE14EJQJYQ8UM4P3XFQJ74YLD5WAQLJF88FZ25YXNMA0CNGSPXE3LES00FPJX/CV4GKZRFUHNZTCJUDGDODRUP397E9NM7HMAQFWSCPVJJ] +peggy_denom = ibc/44EC7BD858EC12CE9C2F882119F522937264B50DD26DE73270CA219242E9C1B2 +decimals = 0 + +[FACTORY/WORMHOLE14EJQJYQ8UM4P3XFQJ74YLD5WAQLJF88FZ25YXNMA0CNGSPXE3LES00FPJX/EFEMLPMU8BCWMBZNY5DFBYCZRDVDVDO7NLZT7GZG4A8Y] +peggy_denom = ibc/366870891D57A5076D117307C42F597A000EB757793A9AB58019660B896292AA +decimals = 0 + +[FACTORY/WORMHOLE14EJQJYQ8UM4P3XFQJ74YLD5WAQLJF88FZ25YXNMA0CNGSPXE3LES00FPJX/EH6T4HGFF8MVEKYH5CSA7ZYOQ5HGKNNLF8QQ9YHSSU7J] +peggy_denom = ibc/AA2394D484EADAC0B982A8979B18109FAEDD5D47E36D8153955369FEC16D027B +decimals = 0 + +[FACTORY/WORMHOLE14EJQJYQ8UM4P3XFQJ74YLD5WAQLJF88FZ25YXNMA0CNGSPXE3LES00FPJX/EJ6P2SMCEENKLSZR2PWSCK9L1LUQWGKSMD3IVDYMFAJQ] +peggy_denom = ibc/6912080A54CAB152D10CED28050E6DBE87B49E4F77D6BA6D54A05DBF4C3CCA88 +decimals = 0 + +[FACTORY/WORMHOLE14EJQJYQ8UM4P3XFQJ74YLD5WAQLJF88FZ25YXNMA0CNGSPXE3LES00FPJX/F6QDZRJBTFMK1BNMRWS1D9UPQQKHE25QQR2BMPETULJB] +peggy_denom = ibc/473D128E740A340B0663BD09CFC9799A0254564448B62CAA557D65DB23D0FCCD +decimals = 0 + +[FACTORY/WORMHOLE14EJQJYQ8UM4P3XFQJ74YLD5WAQLJF88FZ25YXNMA0CNGSPXE3LES00FPJX/FRBRCKDFFWHKIHIMZRWBPQRYM65UJKYDSF4J3QKSASJ9] +peggy_denom = ibc/E2C56B24C032D2C54CF12EAD43432D65FDF22C64E819F97AAD3B141829EF3E60 +decimals = 0 + +[FACTORY/WORMHOLE14EJQJYQ8UM4P3XFQJ74YLD5WAQLJF88FZ25YXNMA0CNGSPXE3LES00FPJX/G4B8ZJQ7EUQVTWGBOKQIHYYA5PZHQ1BLIYAEK3YW9EN8] +peggy_denom = ibc/683CD81C466CF3678E78B5E822FA07F0C23107B1F8FA06E80EAD32D569C4CF84 +decimals = 0 + +[FACTORY/WORMHOLE14EJQJYQ8UM4P3XFQJ74YLD5WAQLJF88FZ25YXNMA0CNGSPXE3LES00FPJX/G8PQ2HELLT8UBJOCFKKD3PNMTGZO6HNTSEEUJUGN9DAJ] +peggy_denom = ibc/65CF217605B92B4CD37AC22955C5C59DE39CFD2A7A2E667861CCAFC810C4F5BD +decimals = 0 + +[FACTORY/WORMHOLE14EJQJYQ8UM4P3XFQJ74YLD5WAQLJF88FZ25YXNMA0CNGSPXE3LES00FPJX/GGH9UFN1SEDGRHZEKMYRKT5568VBBXZK2YVWNSD6PBXT] +peggy_denom = ibc/389982EAC0D365D49FABD2DA625B9EB2C5D4369EFC09FA05D7D324055A9B2FE7 +decimals = 0 + +[FACTORY/WORMHOLE14EJQJYQ8UM4P3XFQJ74YLD5WAQLJF88FZ25YXNMA0CNGSPXE3LES00FPJX/HJK1XMDRNUBRRPKKNZYUI7SWWDMJXZASYSZQGYNCQOU3] +peggy_denom = ibc/126D6F24002F098804B70C133E0BBCEE40EE2ED489373C648805FEA4FF206333 +decimals = 0 + [FACTORY01] peggy_denom = inj1q8h6pxj73kv36ehv8dx9d6jd6qnphmr0xydx2h decimals = 6 +[FACTORY:KUJIRA13RYRY75S34Y4SL5ST7G5MHK0HE8RC2NN7AH6SL:SPERM] +peggy_denom = ibc/EBC2F00888A965121201A6150B7C55E0941E49438BC7F02385A632D6C4E68E2A +decimals = 0 + +[FACTORY:KUJIRA1E224C8RY0NUUN5EXPXM00HMSSL8QNSJKD02FT94P3M2A33XKED2QYPGYS3:URCPT] +peggy_denom = ibc/49994E6147933B46B83CCEDE3528C6B3E5960ECE5A85548C2A519CF3B812E8B9 +decimals = 0 + +[FACTORY:KUJIRA1JELMU9TDMR6HQG0D6QW4G6C9MWREXRZURYH50FWCAVCPTHP5M0UQ20853H:URCPT] +peggy_denom = ibc/E970A80269F0867B0E9C914004AB991E6AF94F3EF2D4E1DFC92E140ACB6BBD5C +decimals = 0 + +[FACTORY:KUJIRA1YNTEGC5V3TVL0XFRDE0RUPNT9KFNX0SY9LYTGE9G2MRYJKNUDK6QG4ZYW9:URCPT] +peggy_denom = ibc/D4D75686C76511349744536403E94B31AC010EB6EA1B579C01B2D64B6888E068 +decimals = 0 + [FAITH] peggy_denom = inj1efjaf4yuz5ehncz0atjxvrmal7eeschauma26q decimals = 6 @@ -3920,6 +4286,30 @@ decimals = 6 peggy_denom = ibc/59AA66AA80190D98D3A6C5114AB8249DE16B7EC848552091C7DCCFE33E0C575C decimals = 6 +[GRAVITY0X30F271C9E86D2B7D00A6376CD96A1CFBD5F0B9B3] +peggy_denom = ibc/A7040C29BCCBF0062A5E9A61C39743410E77EAEE75D4FF9809E722B8EF0C9D07 +decimals = 0 + +[GRAVITY0XA0B73E1FF0B80914AB6FE0444E65848C4C34450B] +peggy_denom = ibc/FF8F4C5D1664F946E88654921D6C1E81D5C167B8A58A4E75B559BAA2DBBF0101 +decimals = 0 + +[GRAVITY0XA0B86991C6218B36C1D19D4A2E9EB0CE3606EB48] +peggy_denom = ibc/461DDE568D76936B030764211887623A38C86C1D9FDE70084976EA338B40ED46 +decimals = 0 + +[GRAVITY0XC02AAA39B223FE8D0A0E5C4F27EAD9083C756CC2] +peggy_denom = ibc/13485841477D3E4B0C5E589F5EA72BD4EBB7A8F92E736E658A3DA656F232B4EC +decimals = 0 + +[GRAVITY0XDAC17F958D2EE523A2206206994597C13D831EC7] +peggy_denom = ibc/7422C62BA17E804695AE66DE2444F41C83DC2B7B5D26C98792610E0B1B45D139 +decimals = 0 + +[GRAVITY0XE28B3B32B6C345A34FF64674606124DD5ACECA30] +peggy_denom = ibc/57E7FEFD5872F89EB1C792C4B06B51EA565AC644EA2F64B88F8FC40704F8E9C4 +decimals = 0 + [GREATDANE] peggy_denom = inj195vgq0yvykunkccdzvys548p90ejuc639ryhkg decimals = 6 @@ -5132,6 +5522,10 @@ decimals = 6 peggy_denom = peggy0x514910771AF9Ca656af840dff83E8264EcF986CA decimals = 18 +[LINK-WEI] +peggy_denom = ibc/6CF7D2AB610CDB3D3343E69CBDF2CFDA6053F542F4D2D9C18FAD0202AC8F9FA1 +decimals = 0 + [LIO] peggy_denom = factory/inj1p2nh5tx9j27eqwxvr6aj9sasttff6200tpq24k/LIO decimals = 6 @@ -5156,6 +5550,10 @@ decimals = 6 peggy_denom = factory/kujira1swkuyt08z74n5jl7zr6hx0ru5sa2yev5v896p6/local decimals = 6 +[LOKI] +peggy_denom = ibc/28325391B9F257ABED965813D29AE67D1FE5C58E40AB6D753250CD83306EC7A3 +decimals = 0 + [LOL] peggy_denom = factory/inj1jpddz58n2ugstuhp238qwwvdf3shxsxy5g6jkn/LOL decimals = 6 @@ -5688,6 +6086,10 @@ decimals = 18 peggy_denom = inj1fr693adew9nnl64ez2mmp46smgn48c9vq2gv6t decimals = 18 +[MNG] +peggy_denom = factory/inj1v5vml3038t0expy7vf5vkwj7t9xly9kudtjdg5/mng +decimals = 6 + [MNINJA] peggy_denom = inj1cv3dxtjpngy029k5j0mmsye3qrg0uh979ur920 decimals = 18 @@ -6524,6 +6926,10 @@ decimals = 8 peggy_denom = inj13m85m3pj3ndll30fxeudavyp85ffjaapdmhel5 decimals = 18 +[PEGGY0XDAC17F958D2EE523A2206206994597C13D831EC7] +peggy_denom = ibc/13EF490ADD26F95B3FEFBA0C8BC74345358B4C5A8D431AAE92CDB691CF8796FF +decimals = 0 + [PEPE] peggy_denom = peggy0x6982508145454Ce325dDbE47a25d4ec3d2311933 decimals = 18 @@ -6672,6 +7078,10 @@ decimals = 18 peggy_denom = peggy0x0cEC1A9154Ff802e7934Fc916Ed7Ca50bDE6844e decimals = 18 +[POOLDFB8434D5A80B4EAFA94B6878BD5B85265AC6C5D37204AB899B1C3C52543DA7E] +peggy_denom = ibc/9E9FFBF2C6921D1DFB3326DF5A140D1F802E336FE0BF38C0D708B62492A7326D +decimals = 0 + [POOR] peggy_denom = peggy0x9D433Fa992C5933D6843f8669019Da6D512fd5e9 decimals = 8 @@ -6712,6 +7122,10 @@ decimals = 18 peggy_denom = factory/inj1c7h6wnfdz0dpc5llsdxfq9yemmq9nwfpr0c59r/potter decimals = 6 +[PPICA] +peggy_denom = ibc/455C0229DFEB1ADCA527BAE29F4F5B30EE50F282DBEB7124D2836D2DD31514C8 +decimals = 0 + [PRERICH] peggy_denom = factory/inj18p952tvf264784sf9f90rpge4w7dhsjrtgn4lw/prerich decimals = 7 @@ -6728,6 +7142,10 @@ decimals = 8 peggy_denom = factory/inj1jpddz58n2ugstuhp238qwwvdf3shxsxy5g6jkn/PROOF decimals = 6 +[PROP420] +peggy_denom = factory/inj1l2gcrfr6aenjyt5jddk79j7w5v0twskw6n70y8/PROP420 +decimals = 6 + [PROTON-011] peggy_denom = inj1vts6mh344msrwr885ej5naev87yesred5mp23r decimals = 8 @@ -7364,6 +7782,10 @@ decimals = 6 peggy_denom = peggy0x95aD61b0a150d79219dCF64E1E6Cc01f0B64C4cE decimals = 18 +[SHIB-WEI] +peggy_denom = ibc/07794B62FE5A48C49C27966BBF566CD447418A2DBAD9CB7F3C01B297040909A5 +decimals = 0 + [SHIBINJ] peggy_denom = factory/inj13yzzxz90naqer4utnp03zlj5rguhu7v0hd2jzl/SHIBINJ decimals = 6 @@ -7664,6 +8086,10 @@ decimals = 18 peggy_denom = factory/inj1fepsfp58ff2l7fasj47ytwrrwwp6k7uz6uhfvn/stinjer decimals = 6 +[STK/UATOM] +peggy_denom = ibc/BBA6CC7A35489A10596662AC4E49D3BA6288330B79CA5315AF7D892C7CFD96D9 +decimals = 0 + [STL] peggy_denom = inj1m2pce9f8wfql0st8jrf7y2en7gvrvd5wm573xc decimals = 18 @@ -8164,6 +8590,10 @@ decimals = 18 peggy_denom = inj13yrhllhe40sd3nj0lde9azlwfkyrf2t9r78dx5 decimals = 6 +[Tether USD] +peggy_denom = ibc/F055E5BCED86221CD5CAFFC5F2D685DF841656133617E52EB87999C1E99B0280 +decimals = 6 + [Tether USD (Wormhole)] peggy_denom = ibc/3384DCE14A72BBD0A47107C19A30EDD5FD1AC50909C632CB807680DBC798BB30 decimals = 6 @@ -8180,6 +8610,10 @@ decimals = 6 peggy_denom = factory/inj168pjvcxwdr28uv295fchjtkk6pc5cd0lg3h450/trempboden decimals = 6 +[Tronix] +peggy_denom = ibc/58FCFF2ED22596D22620047BA8171F6698E75FDBD6A68AC70DA6B020DB96FF26 +decimals = 6 + [Trump] peggy_denom = inj1neclyywnhlhe4me0g2tky9fznjnun2n9maxuhx decimals = 6 @@ -8200,6 +8634,50 @@ decimals = 18 peggy_denom = inj1r3vswh4hevfj6ynfn7ypudzhe2rrngzjn4lv5a decimals = 8 +[UAKT] +peggy_denom = ibc/3BADB97E59D4BB8A26AD5E5485EF0AF123982363D1174AA1C6DEA9BE9C7E934D +decimals = 0 + +[UATOM] +peggy_denom = ibc/057B70A05AFF2A38C082ACE15A260080D29627CCBF1655EA38B043275AFAADCE +decimals = 0 + +[UAXL] +peggy_denom = ibc/2FB8CEA9180069DD4DB8883CA8E263D9879F446D6895CDAA90487ABCCFB4A45C +decimals = 0 + +[UBLD] +peggy_denom = ibc/40AE872789CC2B160222CC4301CA9B097493BD858EAD84218E2EC29C64F0BBAB +decimals = 0 + +[UBTSG] +peggy_denom = ibc/861CA7EF82BD341F2EB80C6F47730908E14A4E569099C510C0DAD8DA07F6DCC6 +decimals = 0 + +[UCMDX] +peggy_denom = ibc/2609F5ECC10691FE306DE1B99E4F6AF18F689ED328969F93186F28BE1173EEED +decimals = 0 + +[UCORE] +peggy_denom = ibc/478A95ED132D071603C8AD0FC5E1A74717653880144E0D9B2508A230820921EF +decimals = 0 + +[UCRBRUS] +peggy_denom = ibc/617A276F35F40221C033B0662301374A225A9784653C30184F9305398054525D +decimals = 0 + +[UCRE] +peggy_denom = ibc/021FDD63F6D8DA6998A93DD25A72BD18421604A50819D01932136E934F9A26C4 +decimals = 0 + +[UDOKI] +peggy_denom = ibc/80A2109FA720FF39E302876F885039D7378B3FC7B9FAF22E05E29EFB8F7B3306 +decimals = 0 + +[UHUAHUA] +peggy_denom = ibc/613786F0A8E01B0436DE4EBC2F922672063D8348AE5C7FEBA5CB22CD2B12E1D6 +decimals = 0 + [UIA] peggy_denom = inj1h6avzdsgkfvymg3sq5utgpq2aqg4pdee7ep77t decimals = 18 @@ -8208,6 +8686,22 @@ decimals = 18 peggy_denom = factory/inj158g7dfclyg9rr6u4ddxg9d2afwevq5d79g2tm6/UICIDE decimals = 6 +[UIST] +peggy_denom = ibc/388C7B1A3F5156BF983E9F3F81430156A0B635DE6CFA295C92D046659B2A3244 +decimals = 0 + +[UKAVA] +peggy_denom = ibc/BEF60A41B9311A281E62D00D4DF55FDADAC23466CD2CD05A74925D0BF647AE2C +decimals = 0 + +[UKUJI] +peggy_denom = ibc/B391CCE2B6954ED823E70244D3447C7910B4E1E2032F902D2B57F7EE052E91DC +decimals = 0 + +[ULUNA] +peggy_denom = ibc/2B3FA34CE2779629F4CBDD4D52EFF1FED8AD78EBA63786E946C7CE6D06034D0D +decimals = 0 + [UMA] peggy_denom = peggy0x04Fa0d235C4abf4BcF4787aF4CF447DE572eF828 decimals = 18 @@ -8220,6 +8714,22 @@ decimals = 6 peggy_denom = peggy0x1f9840a85d5aF5bf1D1762F925BDADdC4201F984 decimals = 18 +[UNLS] +peggy_denom = ibc/849AF9574F64D1A1228FC2EFC79C857D562BAFB5C44657B5D89BB08A454C6DF9 +decimals = 0 + +[UNOIS] +peggy_denom = ibc/D2C7259861170E5EE7B21DBEC44D4720EC6C97293F1CAA79B0A0FF84B508C012 +decimals = 0 + +[UNTRN] +peggy_denom = ibc/6E512756C29F76C31032D456A4C957309E377827A443F1267D19DE551EB76048 +decimals = 0 + +[UOSMO] +peggy_denom = ibc/49CE7E3072FB1C70C1B2DE9AD1E74D15E2AC2AFD62949DB82EC653EB3E2B0A84 +decimals = 0 + [UP10X] peggy_denom = inj1zeu70usj0gtgqapy2srsp7pstf9r82ckqk45hs decimals = 6 @@ -8244,6 +8754,10 @@ decimals = 6 peggy_denom = ibc/5307C5A7B88337FE81565E210CDB5C50FBD6DCCF2D90D524A7E9D1FE00C40139 decimals = 8 +[USCRT] +peggy_denom = ibc/3C38B741DF7CD6CAC484343A4994CFC74BC002D1840AAFD5416D9DAC61E37F10 +decimals = 0 + [USD] peggy_denom = ibc/7474CABFDF3CF58A227C19B2CEDE34315A68212C863E367FC69928ABA344024C decimals = 18 @@ -8364,18 +8878,58 @@ decimals = 18 peggy_denom = peggy0x83E7D0451da91Ac509cd7F545Fb4AA04D4dD3BA8 decimals = 18 +[USEI] +peggy_denom = ibc/262300516331DBB83707BF21D485454F5608610B74F9232FB2503ABA3363BD59 +decimals = 0 + [USK] peggy_denom = ibc/58BC643F2EB5758C08D8B1569C7948A5DA796802576005F676BBFB7526E520EB decimals = 6 +[USOMM] +peggy_denom = ibc/748882D770862C95C8826D958F225F8458604A0776AA03952C97E05C2DB00F01 +decimals = 0 + [UST] peggy_denom = ibc/B448C0CA358B958301D328CCDC5D5AD642FC30A6D3AE106FF721DB315F3DDE5C decimals = 18 -[UTK] -peggy_denom = peggy0xdc9Ac3C20D1ed0B540dF9b1feDC10039Df13F99c +[USTRD] +peggy_denom = ibc/CACFB6FEEC434B66254E2E27B2ABAD991171212EC8F67C566024D90490B7A079 +decimals = 0 + +[UTIA] +peggy_denom = ibc/056FEA49A8266ECD3EEF407A17EDC3FCEED144BE5EEF3A09ED6BC33F7118009F +decimals = 0 + +[UTK] +peggy_denom = peggy0xdc9Ac3C20D1ed0B540dF9b1feDC10039Df13F99c decimals = 18 +[UUMEE] +peggy_denom = ibc/EE0EC814EF89AFCA8C9CB385F5A69CFF52FAAD00879BEA44DE78F9AABFFCCE42 +decimals = 0 + +[UUSD] +peggy_denom = ibc/4A0647EB49CC3170676F5A6016042B78292BCD0DF7F3AE906254901EE49FCFF8 +decimals = 0 + +[UUSDC] +peggy_denom = ibc/02FF79280203E6BF0E7EAF70C5D0396B81B3CC95BA309354A539511387161AA5 +decimals = 0 + +[UUSDT] +peggy_denom = ibc/63ADE20D7FF880975E9EC5FEBE87DB7CFCE6E85AB7F8E5097952052583C237EC +decimals = 0 + +[UWHALE] +peggy_denom = ibc/08E058987E0EB7A4ABEF68956D4AB2247447BA95EF06E6B43CB7D128E2924355 +decimals = 0 + +[UXPRT] +peggy_denom = ibc/A1D2A5E125114E63EE6E19FBA05E0949A14B5A51BB91D6193EEAE771C76C91E6 +decimals = 0 + [Ulp] peggy_denom = inj1ynqtgucs3z20n80c0zammyqd7skfgc7kyanc2j decimals = 18 @@ -8492,6 +9046,10 @@ decimals = 18 peggy_denom = ibc/48E69ED9995415D94BEA06BE70E4A6C2BEA0F5E83996D1E17AF95126770E06B2 decimals = 8 +[WBTC-SATOSHI] +peggy_denom = ibc/A4D4E73A15DD9C815C039C0648111FDC83C3B63089E358565EA0AFB78C024E57 +decimals = 0 + [WDDG] peggy_denom = factory/inj1hse75gfje5jllds5t9gnzdwyp3cdc3cvdt7gpw/wddg decimals = 6 @@ -8512,6 +9070,10 @@ decimals = 18 peggy_denom = ibc/4AC4A819B0BFCB25497E83B92A7D124F24C4E8B32B0E4B45704CC4D224A085A0 decimals = 8 +[WETH-WEI] +peggy_denom = ibc/69097262E36DBD83A39DF92161A4FD7D104462BC8C9D9C2A4CD65488080CBBB0 +decimals = 0 + [WFTM] peggy_denom = ibc/31E8DDA49D53535F358B29CFCBED1B9224DAAFE82788C0477930DCDE231DA878 decimals = 18 @@ -8520,6 +9082,10 @@ decimals = 18 peggy_denom = ibc/8FF72FB47F07B4AFA8649500A168683BEFCB9EE164BD331FA597D26224D51055 decimals = 18 +[WGLMR-WEI] +peggy_denom = ibc/0C8737145CF8CAE5DC1007450882E251744B57119600E1A2DACE72C8C272849D +decimals = 0 + [WGMI] peggy_denom = factory/inj1rmjzj9fn47kdmfk4f3z39qr6czexxe0yjyc546/WGMI decimals = 6 @@ -8576,6 +9142,10 @@ decimals = 8 peggy_denom = ibc/4DEFEB42BAAB2788723759D95B7550BCE460855563ED977036248F5B94C842FC decimals = 8 +[WMATIC-WEI] +peggy_denom = ibc/8042DF9D0B312FE068D0336E5E9AFFE408839DA15643D83CA9AB005D0A2E38D8 +decimals = 0 + [WMATIClegacy] peggy_denom = factory/inj14ejqjyq8um4p3xfqj74yld5waqljf88f9eneuk/inj1dxv423h8ygzgxmxnvrf33ws3k94aedfdevxd8h decimals = 8 @@ -8756,6 +9326,10 @@ decimals = 18 peggy_denom = factory/inj1maeyvxfamtn8lfyxpjca8kuvauuf2qeu6gtxm3/xTalis decimals = 6 +[XTRUMP] +peggy_denom = ibc/5339B0D20986A7C20C2548ED9D6B8DE47BB64E03ABFD051B7792E713036EA20C +decimals = 6 + [XUPS] peggy_denom = inj1f3ppu7jgputk3qr833f4hsl8n3sm3k88zw6um0 decimals = 8 @@ -8900,10 +9474,6 @@ decimals = 6 peggy_denom = inj1p3nrwgm9u3dtln6rwdvrsmjt5fwlhhhq3ugckd decimals = 18 -[aevmos] -peggy_denom = ibc/295BF44E68BDD1B0D32A28C2084D89D63EDA3A01612789B01B62B8F07254D04C -decimals = 0 - [allBTC] peggy_denom = ibc/2D805BFDFB164DE4CE69514BF2CD203C07BF79DF52EF1971763DCBD325917CC5 decimals = 8 @@ -8968,10 +9538,6 @@ decimals = 6 peggy_denom = factory/inj1rhaefktcnhe3y73e82x4edcsn9h5y99gwmud6v/ape decimals = 6 -[aplanq] -peggy_denom = ibc/ABC34F1F9C95DAB3AD3DAFD5228FAB5CDEA67B6BD126BC545D6D25B15E57F527 -decimals = 0 - [ashLAB] peggy_denom = ibc/D3D5FB034E9CAA6922BB9D7D52D909116B7FFF7BD73299F686C972643B4767B9 decimals = 6 @@ -9132,6 +9698,10 @@ decimals = 6 peggy_denom = factory/inj1nhswhqrgfu3hpauvyeycz7pfealx4ack2c5hfp/babyspuun decimals = 6 +[babySYN] +peggy_denom = inj1m6jtz6kh6ezysempdy0juzsv5e2xew2y2j6f7q +decimals = 18 + [babyYAKUZA] peggy_denom = inj1rep4p2x86avty00qvgcu4vfhywmsznf42jdpzs decimals = 6 @@ -9244,10 +9814,6 @@ decimals = 6 peggy_denom = inj19w5ntlx023v9rnecjuy7yem7s5lrg5gxlfrxfj decimals = 18 -[cw20:terra1nsuqsk6kh58ulczatwev87ttq2z6r3pusulg9r24mfj2fvtzd4uq3exn26] -peggy_denom = ibc/1966FE142949F3878ED8438FBDDE8620F4E0584D6605D2201E53388CF4CEAF41 -decimals = 0 - [dINJ] peggy_denom = factory/inj14ejqjyq8um4p3xfqj74yld5waqljf88f9eneuk/inj134wfjutywny9qnyux2xgdmm0hfj7mwpl39r3r9 decimals = 18 @@ -9336,14 +9902,6 @@ decimals = 12 peggy_denom = inj1x0km562rxugpvxq8nucy7pdmefguv6xxumng27 decimals = 18 -[erc20/0x655ecB57432CC1370f65e5dc2309588b71b473A9] -peggy_denom = ibc/9A7A2B6433CFA1CA5D93AF75D568D614456EA4FEBC39F0BE1BE9ECBD420FB36F -decimals = 0 - -[erc20/tether/usdt] -peggy_denom = ibc/9D592A0F3E812505C6B3F7860458B7AC4DBDECACC04A2602FC13ED0AB6C762B6 -decimals = 0 - [estamina] peggy_denom = inj1sklu3me2d8e2e0k6eu83t4pzcnleczal7d2zra decimals = 18 @@ -9360,10 +9918,6 @@ decimals = 18 peggy_denom = peggy0x81994b9607e06ab3d5cF3AffF9a67374f05F27d7 decimals = 8 -[factory/chihuahua1x4q2vkrz4dfgd9hcw0p5m2f2nuv2uqmt9xr8k2/achihuahuawifhat] -peggy_denom = ibc/F8AB96FFB2BF8F69AA42481D43B24E9121FF7403A4E95673D9135128CA769577 -decimals = 0 - [factory/inj102jhts2dfqh80nygmzx8hzxl9nm282vnstf5w6/position] peggy_denom = factory/inj102jhts2dfqh80nygmzx8hzxl9nm282vnstf5w6/position decimals = 0 @@ -9376,10 +9930,6 @@ decimals = 6 peggy_denom = factory/inj105ujajd95znwjvcy3hwcz80pgy8tc6v77spur0/LILKRYSTAL decimals = 6 -[factory/inj106etgay573e32ksysc9dpdrynxhk7kkmaclhfc/stark] -peggy_denom = ibc/81B0CF8BB06F95247E3680844D0CB3889ACB2662B3AE2458C2370985BF4BD00B -decimals = 0 - [factory/inj107grqcr0ugrx8jt8rdyru2ywmfngz5lrermw8q/INJ] peggy_denom = factory/inj107grqcr0ugrx8jt8rdyru2ywmfngz5lrermw8q/INJ decimals = 6 @@ -9912,10 +10462,6 @@ decimals = 0 peggy_denom = factory/inj14ejqjyq8um4p3xfqj74yld5waqljf88f9eneuk/inj1sqc9jap0yye84dx5uyqyvepg83p7hvqke5sjvk decimals = 0 -[factory/inj14ejqjyq8um4p3xfqj74yld5waqljf88f9eneuk/inj1sthrn5ep8ls5vzz8f9gp89khhmedahhdkqa8z3] -peggy_denom = ibc/884A8507A762D0F1DE350C4E640ECA6EDD6F25617F39AD57BC6F5B7EC8DF7181 -decimals = 0 - [factory/inj14ejqjyq8um4p3xfqj74yld5waqljf88f9eneuk/inj1ta03vxka8mpgem44xvhewekg89wxel8leyvugw] peggy_denom = factory/inj14ejqjyq8um4p3xfqj74yld5waqljf88f9eneuk/inj1ta03vxka8mpgem44xvhewekg89wxel8leyvugw decimals = 0 @@ -10056,6 +10602,10 @@ decimals = 0 peggy_denom = factory/inj169rj69y0td97a0gvz3jthr63ml79h0ez2sc0rm/position decimals = 0 +[factory/inj16dz5cway50f6sv0l4hus2wg84mltfs7c6zwggs/position] +peggy_denom = factory/inj16dz5cway50f6sv0l4hus2wg84mltfs7c6zwggs/position +decimals = 0 + [factory/inj16hsmv4grd5ru3axtvgc8c0dygc0skpfct837dv/position] peggy_denom = factory/inj16hsmv4grd5ru3axtvgc8c0dygc0skpfct837dv/position decimals = 0 @@ -10104,6 +10654,10 @@ decimals = 0 peggy_denom = factory/inj18prwk9vqw82x86lx9d8kmymmzl9vzuznzye3l0/INJ decimals = 6 +[factory/inj19a6vl3srten0csmjgeek26vkppxtpy4veyh6wj/position] +peggy_denom = factory/inj19a6vl3srten0csmjgeek26vkppxtpy4veyh6wj/position +decimals = 0 + [factory/inj19fa4pmpnxysawtps7aq7nhh7k2x8wvvqwxv7kl/position] peggy_denom = factory/inj19fa4pmpnxysawtps7aq7nhh7k2x8wvvqwxv7kl/position decimals = 0 @@ -10700,6 +11254,18 @@ decimals = 0 peggy_denom = factory/inj1cs57nurqssdy09a0tuzqetxn6nyzphj5w220jh/1722259395InjUsdt28d1.18C decimals = 0 +[factory/inj1cs57nurqssdy09a0tuzqetxn6nyzphj5w220jh/1722607035InjUsdt16d0.82P] +peggy_denom = factory/inj1cs57nurqssdy09a0tuzqetxn6nyzphj5w220jh/1722607035InjUsdt16d0.82P +decimals = 0 + +[factory/inj1cs57nurqssdy09a0tuzqetxn6nyzphj5w220jh/1722607164InjUsdt24d1.25C] +peggy_denom = factory/inj1cs57nurqssdy09a0tuzqetxn6nyzphj5w220jh/1722607164InjUsdt24d1.25C +decimals = 0 + +[factory/inj1cs57nurqssdy09a0tuzqetxn6nyzphj5w220jh/1722607245InjUsdt28d1.18C] +peggy_denom = factory/inj1cs57nurqssdy09a0tuzqetxn6nyzphj5w220jh/1722607245InjUsdt28d1.18C +decimals = 0 + [factory/inj1csmzuxsp5vp2ng5cue7wdknudk8m69wlr62rq5/uLP] peggy_denom = factory/inj1csmzuxsp5vp2ng5cue7wdknudk8m69wlr62rq5/uLP decimals = 0 @@ -11128,6 +11694,10 @@ decimals = 6 peggy_denom = factory/inj1lnvtsm9avzyqs67syzakg0mncq6naldlw6eqek/ELON decimals = 6 +[factory/inj1lszpzvlcvjg60x0ndqj98mct28m5j8resxs9de/position] +peggy_denom = factory/inj1lszpzvlcvjg60x0ndqj98mct28m5j8resxs9de/position +decimals = 0 + [factory/inj1m3cvaumsw5l9mnhu53g2s7nd8pwqhsgm0r7zc5/position] peggy_denom = factory/inj1m3cvaumsw5l9mnhu53g2s7nd8pwqhsgm0r7zc5/position decimals = 0 @@ -11908,146 +12478,6 @@ decimals = 0 peggy_denom = factory/inj1zy0r4d9s4zmssym0u46j5vxqatt5k5phfxt6rf/bonk decimals = 18 -[factory/neutron133xakkrfksq39wxy575unve2nyehg5npx75nph/GOP] -peggy_denom = ibc/B6DEF77F4106DE5F5E1D5C7AA857392A8B5CE766733BA23589AD4760AF953819 -decimals = 0 - -[factory/neutron133xakkrfksq39wxy575unve2nyehg5npx75nph/MOO] -peggy_denom = ibc/572EB1D6454B3BF6474A30B06D56597D1DEE758569CC695FF628D4EA235EFD5D -decimals = 0 - -[factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO] -peggy_denom = ibc/1B47F9D980CBB32A87022E1381C15005DE942A71CB61C1B498DBC2A18F43A8FE -decimals = 0 - -[factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/djjtga] -peggy_denom = ibc/50DC83F6AD408BC81CE04004C86BF457F9ED9BF70839F8E6BA6A3903228948D7 -decimals = 0 - -[factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/test] -peggy_denom = ibc/40C510742D7CE7F5EB2EF894AA9AD5056183D80628A73A04B48708A660FD088D -decimals = 0 - -[factory/sei189adguawugk3e55zn63z8r9ll29xrjwca636ra7v7gxuzn98sxyqwzt47l/9fELvUhFo6yWL34ZaLgPbCPzdk9MD1tAzMycgH45qShH] -peggy_denom = ibc/8A8AA255C5C0C1C58A35D74FE992620E10292BDCE1D2C7F8C7C439D642C42040 -decimals = 0 - -[factory/sei189adguawugk3e55zn63z8r9ll29xrjwca636ra7v7gxuzn98sxyqwzt47l/Hq4tuDzhRBnxw3tFA5n6M52NVMVcC19XggbyDiJKCD6H] -peggy_denom = ibc/247FF5EB358DA07AE08BC0E975E1AD955494A51B6C11452271A216E67AF1E4D1 -decimals = 0 - -[factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/2Wb6ueMFc9WLc2eyYVha6qnwHKbwzUXdooXsg6XXVvos] -peggy_denom = ibc/8D59D4FCFE77CA4F11F9FD9E9ACA645197E9BFFE48B05ADA172D750D3C5F47E7 -decimals = 0 - -[factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/3wftBtqKjWFXFWhtsG6fjaLTbpnaLhN3bhfSMdvEVdXT] -peggy_denom = ibc/6C1F980F3D295DA21EC3AFD71008CC7674BA580EBEDBD76FD5E25E481067AF09 -decimals = 0 - -[factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/576uQXyQrjFdqzDRvBnXihn467ipuc12a5yN8v8H99f8] -peggy_denom = ibc/0F18C33D7C2C28E24A67BEFA2689A1552DCE9856E1BB3A16259403D5398EB23C -decimals = 0 - -[factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5MeVz64BbVszQaCqCTQ2zfWTmnQ5uKwNMaDDSJDRuqTY] -peggy_denom = ibc/B7936BF07D9035C66C83B81B61672A05F30DE4196BE0A016A6CD4EDD20CB8F24 -decimals = 0 - -[factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5cKyTGhoHu1VFNPd6iXdKYTm3CkTtz1MeCdYLUGgF4zt] -peggy_denom = ibc/3C2EEA34EAF26698EE47A58FA2142369CE42E105E8452E1C074A32D34431484B -decimals = 0 - -[factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/6wMmXNYNi8tYB32cCAGPoPrr6nHLKx4j9kpGv5moBnuT] -peggy_denom = ibc/13055E6ECA7C05091DD7B93DF81F0BB12479779DE3B9410CF445CC34B8361664 -decimals = 0 - -[factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/7KQX8bVDa8W4EdpED8oHqhSfJsgF79XDcxcd8ELUws7G] -peggy_denom = ibc/0A44483A7AFF7C096B2A4FB00A12E912BE717CD7703CF7F33ED99DB35230D404 -decimals = 0 - -[factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/8iuAc6DSeLvi2JDUtwJxLytsZT8R19itXebZsNReLLNi] -peggy_denom = ibc/6D434846D1535247426AA917BBEC53BE1A881D49A010BF7EDACBFCD84DE4A5B8 -decimals = 0 - -[factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/8sYgCzLRJC3J7qPn2bNbx6PiGcarhyx8rBhVaNnfvHCA] -peggy_denom = ibc/1E4DACCD788219206F93485352B39DF83F6268F389997141498FAFB5BA06493B -decimals = 0 - -[factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/9weDXCi5EPvG2xk6VTiKKxhijYuq79U6UzPwBniF1cET] -peggy_denom = ibc/C2C022DC63E598614F39C575BC5EF4EC54E5D081365D9BE090D75F743364E54D -decimals = 0 - -[factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/AsSyBMk2D3FmntrGtd539XWDGwmJ7Uv8vVXQTwTjyqBw] -peggy_denom = ibc/7A39488A287BF7DBC4A33DDA2BE3DDAC0F281FBCFF23934B7194893C136AAA99 -decimals = 0 - -[factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/BSWyXu2ZJFGaSau3aLDwNZMCDwenWhwPfWALpYna7WzV] -peggy_denom = ibc/CB8E08B5C734BDA8344DDCFE5C9CCCC91521763BA1BC9F61CADE6E8F0B556E3D -decimals = 0 - -[factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/BjqmpMWFUphe7Qr3v8rLCZh8aoH2qfi2S1z8649b62TY] -peggy_denom = ibc/4F72D2F3EAFB61D8615566B3C80AEF2778BB14B648929607568C79CD90416188 -decimals = 0 - -[factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/CroEB5zf21ea42ezHnpcv1jj1jANLY4A1sQL6y4UsHGR] -peggy_denom = ibc/8E7F71072C97C5D8D19978C7E38AE90C0FBCCE551AF95FEB000EA9EBBFD6396B -decimals = 0 - -[factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/Cv4gKZrfUhNZtcjUDgdodrup397e9Nm7hMaqFwSCPVjj] -peggy_denom = ibc/44EC7BD858EC12CE9C2F882119F522937264B50DD26DE73270CA219242E9C1B2 -decimals = 0 - -[factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/EfeMLPMU8BcwMbzNy5DfbYCzRDvDVdo7nLZt7GZG4a8Y] -peggy_denom = ibc/366870891D57A5076D117307C42F597A000EB757793A9AB58019660B896292AA -decimals = 0 - -[factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/Eh6t4Hgff8mveKYH5Csa7zyoq5hgKNnLF8qq9YhSsu7j] -peggy_denom = ibc/AA2394D484EADAC0B982A8979B18109FAEDD5D47E36D8153955369FEC16D027B -decimals = 0 - -[factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/Ej6p2SmCeEnkLsZR2pwSCK9L1LUQWgKsMd3iVdYMFaJq] -peggy_denom = ibc/6912080A54CAB152D10CED28050E6DBE87B49E4F77D6BA6D54A05DBF4C3CCA88 -decimals = 0 - -[factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/F6QdZRjBTFmK1BNMrws1D9uPqQkHE25qqR2bMpeTuLjb] -peggy_denom = ibc/473D128E740A340B0663BD09CFC9799A0254564448B62CAA557D65DB23D0FCCD -decimals = 0 - -[factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/FrbRcKDffWhKiHimzrWBpQRyM65uJkYDSf4J3QksasJ9] -peggy_denom = ibc/E2C56B24C032D2C54CF12EAD43432D65FDF22C64E819F97AAD3B141829EF3E60 -decimals = 0 - -[factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/G4b8zJq7EUqVTwgbokQiHyYa5PzhQ1bLiyAeK3Yw9en8] -peggy_denom = ibc/683CD81C466CF3678E78B5E822FA07F0C23107B1F8FA06E80EAD32D569C4CF84 -decimals = 0 - -[factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/G8PQ2heLLT8uBjoCfkkD3pNmTGZo6hNtSEEuJUGn9daJ] -peggy_denom = ibc/65CF217605B92B4CD37AC22955C5C59DE39CFD2A7A2E667861CCAFC810C4F5BD -decimals = 0 - -[factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/GGh9Ufn1SeDGrhzEkMyRKt5568VbbxZK2yvWNsd6PbXt] -peggy_denom = ibc/389982EAC0D365D49FABD2DA625B9EB2C5D4369EFC09FA05D7D324055A9B2FE7 -decimals = 0 - -[factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/HJk1XMDRNUbRrpKkNZYui7SwWDMjXZAsySzqgyNcQoU3] -peggy_denom = ibc/126D6F24002F098804B70C133E0BBCEE40EE2ED489373C648805FEA4FF206333 -decimals = 0 - -[factory:kujira13ryry75s34y4sl5st7g5mhk0he8rc2nn7ah6sl:SPERM] -peggy_denom = ibc/EBC2F00888A965121201A6150B7C55E0941E49438BC7F02385A632D6C4E68E2A -decimals = 0 - -[factory:kujira1e224c8ry0nuun5expxm00hmssl8qnsjkd02ft94p3m2a33xked2qypgys3:urcpt] -peggy_denom = ibc/49994E6147933B46B83CCEDE3528C6B3E5960ECE5A85548C2A519CF3B812E8B9 -decimals = 0 - -[factory:kujira1jelmu9tdmr6hqg0d6qw4g6c9mwrexrzuryh50fwcavcpthp5m0uq20853h:urcpt] -peggy_denom = ibc/E970A80269F0867B0E9C914004AB991E6AF94F3EF2D4E1DFC92E140ACB6BBD5C -decimals = 0 - -[factory:kujira1yntegc5v3tvl0xfrde0rupnt9kfnx0sy9lytge9g2mryjknudk6qg4zyw9:urcpt] -peggy_denom = ibc/D4D75686C76511349744536403E94B31AC010EB6EA1B579C01B2D64B6888E068 -decimals = 0 - [faot] peggy_denom = inj1vnhhrcnnnr6tq96eaa8gcsuaz55ugnhs3dmfqq decimals = 18 @@ -12112,22 +12542,6 @@ decimals = 6 peggy_denom = factory/inj1nhswhqrgfu3hpauvyeycz7pfealx4ack2c5hfp/godzilla decimals = 6 -[gravity0xA0b73E1Ff0B80914AB6fe0444E65848C4C34450b] -peggy_denom = ibc/FF8F4C5D1664F946E88654921D6C1E81D5C167B8A58A4E75B559BAA2DBBF0101 -decimals = 0 - -[gravity0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48] -peggy_denom = ibc/7C2AA3086423029B3E915B5563975DB87EF2E552A40F996C7F6D19FFBD5B2AEA -decimals = 0 - -[gravity0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2] -peggy_denom = ibc/E7C0089E196DB00A88D6EA6D1CD87D80C320D721ACFAEFF4342CEF15AE9EDAE0 -decimals = 0 - -[gravity0xe28b3B32B6c345A34Ff64674606124Dd5Aceca30] -peggy_denom = ibc/57E7FEFD5872F89EB1C792C4B06B51EA565AC644EA2F64B88F8FC40704F8E9C4 -decimals = 0 - [gto] peggy_denom = inj1ehnt0lcek8wdf0xj7y5mmz7nzr8j7ytjgk6l7g decimals = 18 @@ -12152,6 +12566,14 @@ decimals = 18 peggy_denom = ibc/02683677B1A58ECF74FFF25711E09735C44153FE9490BE5EF9FD21DE82BCB542 decimals = 6 +[ibc/052AF4B0650990067B8FC5345A39206497BCC12F0ABE94F15415413739B93B26] +peggy_denom = ibc/052AF4B0650990067B8FC5345A39206497BCC12F0ABE94F15415413739B93B26 +decimals = 0 + +[ibc/05B7984C0122CB535968FDDF78A78511727E2B08F4053B4E4DB4A653D1993309] +peggy_denom = ibc/05B7984C0122CB535968FDDF78A78511727E2B08F4053B4E4DB4A653D1993309 +decimals = 0 + [ibc/063F4461F7317CFF10F50AB044E44932D22AAD84FA7107082744946E6DB7B7A8] peggy_denom = ibc/063F4461F7317CFF10F50AB044E44932D22AAD84FA7107082744946E6DB7B7A8 decimals = 6 @@ -12172,22 +12594,86 @@ decimals = 0 peggy_denom = ibc/10E1BF4C7142E07AA8CE7C91292E89B806F31263FCE48E966385FD47B53C1FFA decimals = 0 +[ibc/13978F693E2022E3D945147D29A5B233058B3F4378C3A48AD207BF1154309F8D] +peggy_denom = ibc/13978F693E2022E3D945147D29A5B233058B3F4378C3A48AD207BF1154309F8D +decimals = 0 + +[ibc/14B6264C363DA101C1E09CB308EFF6678EDEB8EB6AB6996C37E44CCEE4B365DD] +peggy_denom = ibc/14B6264C363DA101C1E09CB308EFF6678EDEB8EB6AB6996C37E44CCEE4B365DD +decimals = 0 + [ibc/15FE2BB9D596F81B40D72E95953E0CB6E2280813799AED7058D499E0C2B561C6] peggy_denom = ibc/15FE2BB9D596F81B40D72E95953E0CB6E2280813799AED7058D499E0C2B561C6 decimals = 0 +[ibc/18F1A8BF7084DCF2AD647F741A7B611EB790C3DC0B0C8AE58D0B18F4D0E2DE51] +peggy_denom = ibc/18F1A8BF7084DCF2AD647F741A7B611EB790C3DC0B0C8AE58D0B18F4D0E2DE51 +decimals = 0 + +[ibc/1C829D8C4EB420F185270BEF8F4F1F24F4F69DF097AB02B9E982E78F3D7F6BC6] +peggy_denom = ibc/1C829D8C4EB420F185270BEF8F4F1F24F4F69DF097AB02B9E982E78F3D7F6BC6 +decimals = 0 + [ibc/1D4FB764C95C003A2E274D52EBDA0590DE2CD5DF21BA56C06E285BC1167E5073] peggy_denom = ibc/1D4FB764C95C003A2E274D52EBDA0590DE2CD5DF21BA56C06E285BC1167E5073 decimals = 0 +[ibc/1E4DACCD788219206F93485352B39DF83F6268F389997141498FAFB5BA06493B] +peggy_denom = ibc/1E4DACCD788219206F93485352B39DF83F6268F389997141498FAFB5BA06493B +decimals = 0 + +[ibc/1F375E1B09D8021284732C55B321D772A3E4A3E959309405455F980EE630EABF] +peggy_denom = ibc/1F375E1B09D8021284732C55B321D772A3E4A3E959309405455F980EE630EABF +decimals = 0 + +[ibc/1FAB6A21584C2618581B83475D4F88773EB04A434336D971CFA421C6396E3B7A] +peggy_denom = ibc/1FAB6A21584C2618581B83475D4F88773EB04A434336D971CFA421C6396E3B7A +decimals = 0 + [ibc/2138C4EA63EFD757D42F75B90177FE34A9508DC0046DC48844CFF26659AE7A9D] peggy_denom = ibc/2138C4EA63EFD757D42F75B90177FE34A9508DC0046DC48844CFF26659AE7A9D decimals = 5 +[ibc/247FF5EB358DA07AE08BC0E975E1AD955494A51B6C11452271A216E67AF1E4D1] +peggy_denom = ibc/247FF5EB358DA07AE08BC0E975E1AD955494A51B6C11452271A216E67AF1E4D1 +decimals = 0 + +[ibc/24EF0F2C4115CF69E8CCFD205842A52008094893C33C24F5F4A36BDED9772C6A] +peggy_denom = ibc/24EF0F2C4115CF69E8CCFD205842A52008094893C33C24F5F4A36BDED9772C6A +decimals = 0 + +[ibc/28D8F5AB133E1E66EE24901B2BBAAAD73AFFE4DBBD46A72091FC86D08FE60566] +peggy_denom = ibc/28D8F5AB133E1E66EE24901B2BBAAAD73AFFE4DBBD46A72091FC86D08FE60566 +decimals = 0 + +[ibc/295BF44E68BDD1B0D32A28C2084D89D63EDA3A01612789B01B62B8F07254D04C] +peggy_denom = ibc/295BF44E68BDD1B0D32A28C2084D89D63EDA3A01612789B01B62B8F07254D04C +decimals = 0 + +[ibc/2BC6772AA534CE7DB68E43FC0DE08F74CA4C0AE6B0C0395AC3D7D6D91BEAB4E5] +peggy_denom = ibc/2BC6772AA534CE7DB68E43FC0DE08F74CA4C0AE6B0C0395AC3D7D6D91BEAB4E5 +decimals = 0 + +[ibc/2E2D915C43EEA931B4177A0C5935448CADBE397E35F9118B88725A8833C8E3E4] +peggy_denom = ibc/2E2D915C43EEA931B4177A0C5935448CADBE397E35F9118B88725A8833C8E3E4 +decimals = 0 + +[ibc/31861069CB177FFF7F11D4949F3AA8E7335CB545CC09B6E71258BA0EBCAC2857] +peggy_denom = ibc/31861069CB177FFF7F11D4949F3AA8E7335CB545CC09B6E71258BA0EBCAC2857 +decimals = 0 + +[ibc/328DC071BB445FF5C9B6A08D34674A9A3AFF2AF6FD66414A7A326C83863E7B03] +peggy_denom = ibc/328DC071BB445FF5C9B6A08D34674A9A3AFF2AF6FD66414A7A326C83863E7B03 +decimals = 0 + [ibc/334B68D79945DEE86E2F8E20D8C744E98C87D0FED274D9684AA35ABD5F661699] peggy_denom = ibc/334B68D79945DEE86E2F8E20D8C744E98C87D0FED274D9684AA35ABD5F661699 decimals = 0 +[ibc/34F18EB4E3CAA9786F86CEA5E73E1B369B4A23501B4B272FA68BEE5450EFFFB8] +peggy_denom = ibc/34F18EB4E3CAA9786F86CEA5E73E1B369B4A23501B4B272FA68BEE5450EFFFB8 +decimals = 0 + [ibc/359EA1E69EF84A02FD453B9FC462F985287F51310FF2E3ECEDABFDF7D3EAC91A] peggy_denom = ibc/359EA1E69EF84A02FD453B9FC462F985287F51310FF2E3ECEDABFDF7D3EAC91A decimals = 0 @@ -12200,6 +12686,18 @@ decimals = 0 peggy_denom = ibc/377F82FD1E4F6408B1CB7C8BFF9134A1F2C5D5E5CC2760BAD972AF0F7F6D4675 decimals = 6 +[ibc/41A7E6B1E7EF8EE04BAFD95C59875743D2F4512F378E0BC00EA29B00787283F0] +peggy_denom = ibc/41A7E6B1E7EF8EE04BAFD95C59875743D2F4512F378E0BC00EA29B00787283F0 +decimals = 0 + +[ibc/41E3AFFDAED4578F4D7BFCF2106545AAF9CBCA904BF3E9FD5343DCC1DADBC00F] +peggy_denom = ibc/41E3AFFDAED4578F4D7BFCF2106545AAF9CBCA904BF3E9FD5343DCC1DADBC00F +decimals = 0 + +[ibc/4208C5321C958B6AEC0AA609DC513B7564BC7CCF94CF76021A95020A794B1BC6] +peggy_denom = ibc/4208C5321C958B6AEC0AA609DC513B7564BC7CCF94CF76021A95020A794B1BC6 +decimals = 0 + [ibc/433133545CF68587777A01C3EFCF720EFE1B42F14AB2153D349DC4559984F2E8] peggy_denom = ibc/433133545CF68587777A01C3EFCF720EFE1B42F14AB2153D349DC4559984F2E8 decimals = 6 @@ -12224,10 +12722,18 @@ decimals = 0 peggy_denom = ibc/4A1CC41B019E6D412E3A337A1E5C1F301E9D2CAE8EA8EF449538CBA4BED6E2FA decimals = 0 +[ibc/4BC12869ADD45404F2A31FB2BCF0BC0FF8B8D8042C8CC294EAF511DD972AE2FF] +peggy_denom = ibc/4BC12869ADD45404F2A31FB2BCF0BC0FF8B8D8042C8CC294EAF511DD972AE2FF +decimals = 0 + [ibc/4C8A332AE4FDE42709649B5F9A2A336192158C4465DF74B4513F5AD0C583EA6F] peggy_denom = ibc/4C8A332AE4FDE42709649B5F9A2A336192158C4465DF74B4513F5AD0C583EA6F decimals = 8 +[ibc/4CCAF2B1D5957477C726FA2ADD4313981A6D6A7FBA1B3A12A2D22C7EE60EA1B0] +peggy_denom = ibc/4CCAF2B1D5957477C726FA2ADD4313981A6D6A7FBA1B3A12A2D22C7EE60EA1B0 +decimals = 0 + [ibc/4CE2DDC2BE301B92DD08ECBBF39910A4F055DC68156132B222B8CEF651941D31] peggy_denom = ibc/4CE2DDC2BE301B92DD08ECBBF39910A4F055DC68156132B222B8CEF651941D31 decimals = 0 @@ -12240,10 +12746,38 @@ decimals = 6 peggy_denom = ibc/4D5A68067A682C1EFEAE08E2355A2DE229E62145943E53CAC97EF5E1DE430072 decimals = 0 +[ibc/4F58C072D9654E7A8A71BAE92F1919FB49D0311B48759805EE197852BF2B8146] +peggy_denom = ibc/4F58C072D9654E7A8A71BAE92F1919FB49D0311B48759805EE197852BF2B8146 +decimals = 0 + +[ibc/508C2B3CB4795DC85E5E8883AE2D4672EBAE1312D80F702C2B1E69D15B4028A7] +peggy_denom = ibc/508C2B3CB4795DC85E5E8883AE2D4672EBAE1312D80F702C2B1E69D15B4028A7 +decimals = 0 + +[ibc/51A7B673746D4DACE599D47E1F308AD2C12DAF10AD8D4E1DC6A0C95B974FA0D8] +peggy_denom = ibc/51A7B673746D4DACE599D47E1F308AD2C12DAF10AD8D4E1DC6A0C95B974FA0D8 +decimals = 0 + [ibc/557C8BDED38445765DAEBEB4EBBFC88F8ACBD9C414F95A1795AB45017F4A1786] peggy_denom = ibc/557C8BDED38445765DAEBEB4EBBFC88F8ACBD9C414F95A1795AB45017F4A1786 decimals = 0 +[ibc/566A39FE0AAC7E9A738DEE74130A161D029C2F0CBC3D2EDBEE0DD967BC288793] +peggy_denom = ibc/566A39FE0AAC7E9A738DEE74130A161D029C2F0CBC3D2EDBEE0DD967BC288793 +decimals = 0 + +[ibc/585092355C3CAC6A5C28637C0FF4EF09D2D113C3BC87D31D0317AC0CA83D0E05] +peggy_denom = ibc/585092355C3CAC6A5C28637C0FF4EF09D2D113C3BC87D31D0317AC0CA83D0E05 +decimals = 0 + +[ibc/5AC3EB515892B130EA995D4B13BEA8B4C4BC063AEB95CAE6A0A49DC16B4B3578] +peggy_denom = ibc/5AC3EB515892B130EA995D4B13BEA8B4C4BC063AEB95CAE6A0A49DC16B4B3578 +decimals = 0 + +[ibc/5B7757EBBB8774473017EE65A71D992D6B9E6A66859EC076EA63CD7D46883B4E] +peggy_denom = ibc/5B7757EBBB8774473017EE65A71D992D6B9E6A66859EC076EA63CD7D46883B4E +decimals = 0 + [ibc/5B8F90B1E3A33B45FF7AE086621456E8C2C162CABCC95406001322818AE92B63] peggy_denom = ibc/5B8F90B1E3A33B45FF7AE086621456E8C2C162CABCC95406001322818AE92B63 decimals = 0 @@ -12252,10 +12786,22 @@ decimals = 0 peggy_denom = ibc/5B9385ABA4F72BD0CD5D014BBF58C48B103C3FAF82A6283AA689AC76F5A80F66 decimals = 0 +[ibc/602F1E52AEDF8579AACDF98415E518CC0C7E0769E8F11434E6C448FD3A88B477] +peggy_denom = ibc/602F1E52AEDF8579AACDF98415E518CC0C7E0769E8F11434E6C448FD3A88B477 +decimals = 0 + [ibc/60DC18B7771F14C0069205E538C0758FED60E92077F19C9485203743BC174C77] peggy_denom = ibc/60DC18B7771F14C0069205E538C0758FED60E92077F19C9485203743BC174C77 decimals = 0 +[ibc/614B331A02D24E2AE4A4768EE6EE65A35A4800547F6E3AE65B1A5FA621E0F4D0] +peggy_denom = ibc/614B331A02D24E2AE4A4768EE6EE65A35A4800547F6E3AE65B1A5FA621E0F4D0 +decimals = 0 + +[ibc/63DBAA3362F15873B8038C3CE12F58CB66A5CACF8665ED176E7D942E8D81FF3B] +peggy_denom = ibc/63DBAA3362F15873B8038C3CE12F58CB66A5CACF8665ED176E7D942E8D81FF3B +decimals = 0 + [ibc/63F1FCA502ADCA376A83257828085E542A10CD5CF3CF7FB3CFB33E055958EAB9] peggy_denom = ibc/63F1FCA502ADCA376A83257828085E542A10CD5CF3CF7FB3CFB33E055958EAB9 decimals = 0 @@ -12272,14 +12818,26 @@ decimals = 0 peggy_denom = ibc/64D95807CA13CD9EC5BEF9D3709138A14295DDBDFBC9EF58A9FFE34B911545E6 decimals = 6 +[ibc/651C663A245EC969FCD5BC0F11ABE4AE6D09BF42FAFB981A8B73C1123DD85547] +peggy_denom = ibc/651C663A245EC969FCD5BC0F11ABE4AE6D09BF42FAFB981A8B73C1123DD85547 +decimals = 0 + [ibc/66DB244867B50966FCD71C0457A9C0E239AB8228EFF2E60216A83B8710B23EBE] peggy_denom = ibc/66DB244867B50966FCD71C0457A9C0E239AB8228EFF2E60216A83B8710B23EBE decimals = 0 +[ibc/67E598A1480B588111C68FC0DFB074F3E109007B405A27C08EBAA2129B42EF18] +peggy_denom = ibc/67E598A1480B588111C68FC0DFB074F3E109007B405A27C08EBAA2129B42EF18 +decimals = 0 + [ibc/69C979B0833FC4B34A9FCF6B75F2EAA4B93507E7F8629C69C03081C21837D038] peggy_denom = ibc/69C979B0833FC4B34A9FCF6B75F2EAA4B93507E7F8629C69C03081C21837D038 decimals = 0 +[ibc/6A90DF53BE8CE3407DAF424FE119340075B821F25D26B5B7A0F2ACC5EB8D15B7] +peggy_denom = ibc/6A90DF53BE8CE3407DAF424FE119340075B821F25D26B5B7A0F2ACC5EB8D15B7 +decimals = 0 + [ibc/6BBCFE43BE414294606BF4B05BB9EB18D685A9183DF5FD8CC5154879B8279C8D] peggy_denom = ibc/6BBCFE43BE414294606BF4B05BB9EB18D685A9183DF5FD8CC5154879B8279C8D decimals = 0 @@ -12288,14 +12846,30 @@ decimals = 0 peggy_denom = ibc/6C55598A43348E41BCE1CE3C9313208CB953A036955869C47C3265A3BE2BB8D4 decimals = 18 +[ibc/6D4B54A1D40939390FB1DD0953C95A0E9DE34451C4E5AD68D052224601C7F138] +peggy_denom = ibc/6D4B54A1D40939390FB1DD0953C95A0E9DE34451C4E5AD68D052224601C7F138 +decimals = 0 + [ibc/6E2FE0B25FE6DE428D16B25D42832D13B8A6DF65B40844EA4AB49C94896BB932] peggy_denom = ibc/6E2FE0B25FE6DE428D16B25D42832D13B8A6DF65B40844EA4AB49C94896BB932 decimals = 0 +[ibc/6EBC38FBA72747ABD6641E8B00DD5F717E5E0B21366460213D2A378A0DEDEED7] +peggy_denom = ibc/6EBC38FBA72747ABD6641E8B00DD5F717E5E0B21366460213D2A378A0DEDEED7 +decimals = 0 + +[ibc/6F8BB0716C7C8A4D8489749D9F86668D65B28270AD1BD4E04FF0F79FAE568AC6] +peggy_denom = ibc/6F8BB0716C7C8A4D8489749D9F86668D65B28270AD1BD4E04FF0F79FAE568AC6 +decimals = 0 + [ibc/705B1CA519312502768926783464F5E1581D8626A837C55BD62B21ED121FB68F] peggy_denom = ibc/705B1CA519312502768926783464F5E1581D8626A837C55BD62B21ED121FB68F decimals = 0 +[ibc/708E88A154130E672462B0E5BE3F8C3CC8B5716D618C77FF03B8B6F3E6278F0B] +peggy_denom = ibc/708E88A154130E672462B0E5BE3F8C3CC8B5716D618C77FF03B8B6F3E6278F0B +decimals = 0 + [ibc/710DA81083B469FE562770EE16DCA2DB088D5796937BCB548DF27DA87156C5B3] peggy_denom = ibc/710DA81083B469FE562770EE16DCA2DB088D5796937BCB548DF27DA87156C5B3 decimals = 0 @@ -12312,10 +12886,26 @@ decimals = 0 peggy_denom = ibc/74BFF6BAC652D00C8F3382B1D1CFF086A91F1AF281E84F849A28358D6B81915B decimals = 0 +[ibc/75DCE6CD83EFF5A64187ECFCEE4F568A57C6C0B3854FB158EB706D9140E07FB0] +peggy_denom = ibc/75DCE6CD83EFF5A64187ECFCEE4F568A57C6C0B3854FB158EB706D9140E07FB0 +decimals = 0 + +[ibc/75F5D4A64938A16BCAEB5E8F103BD1E8F3A5FE3547C7F5F9FE3E51036FA814E6] +peggy_denom = ibc/75F5D4A64938A16BCAEB5E8F103BD1E8F3A5FE3547C7F5F9FE3E51036FA814E6 +decimals = 0 + [ibc/7965483148018AFAA12DC569959897E7A5E474F4B41A87FFC5513B552C108DB5] peggy_denom = ibc/7965483148018AFAA12DC569959897E7A5E474F4B41A87FFC5513B552C108DB5 decimals = 6 +[ibc/79AAED90BC8A3025E4CC344DF8F89D0DBAC646E5E2FD6B60783981BF1FE06DCA] +peggy_denom = ibc/79AAED90BC8A3025E4CC344DF8F89D0DBAC646E5E2FD6B60783981BF1FE06DCA +decimals = 0 + +[ibc/79FA72A2E7596298CD4CD7F79BDA0E9627D4B6A27150B43058CB0D1231C54F8C] +peggy_denom = ibc/79FA72A2E7596298CD4CD7F79BDA0E9627D4B6A27150B43058CB0D1231C54F8C +decimals = 0 + [ibc/7A007AE05C3DDE189E554697450A2BF8FFF380E88F7BA6DC7DF39E329E80A49D] peggy_denom = ibc/7A007AE05C3DDE189E554697450A2BF8FFF380E88F7BA6DC7DF39E329E80A49D decimals = 0 @@ -12328,6 +12918,10 @@ decimals = 0 peggy_denom = ibc/7A2FE4D6F3156F60E38623C684C21A9F4684B730F035D75712928F71B0DB08B5 decimals = 0 +[ibc/7C2AA3086423029B3E915B5563975DB87EF2E552A40F996C7F6D19FFBD5B2AEA] +peggy_denom = ibc/7C2AA3086423029B3E915B5563975DB87EF2E552A40F996C7F6D19FFBD5B2AEA +decimals = 0 + [ibc/7C4A4847D6898FA8744A8F2A4FC287E98CA5A95E05842B897B3FB301103C8AB6] peggy_denom = ibc/7C4A4847D6898FA8744A8F2A4FC287E98CA5A95E05842B897B3FB301103C8AB6 decimals = 6 @@ -12336,10 +12930,22 @@ decimals = 6 peggy_denom = ibc/7CF12F727C8C8A6589016D8565830B6DE0D87F70ED1A2C80270B2ABC77426DE7 decimals = 0 +[ibc/7D655739C7AE81A4FD2D21744654767E6721894969985588EC330C6396BA1C28] +peggy_denom = ibc/7D655739C7AE81A4FD2D21744654767E6721894969985588EC330C6396BA1C28 +decimals = 0 + +[ibc/7FF5CED7EF2ED6DFBC5B1278B5BE9ECBFB5939CC04218AC244A5E51D64ED50C8] +peggy_denom = ibc/7FF5CED7EF2ED6DFBC5B1278B5BE9ECBFB5939CC04218AC244A5E51D64ED50C8 +decimals = 0 + [ibc/819B5FB8FA371CC26976CAF8CDF54F3B146060400AD55591B5F1BE3036E915D8] peggy_denom = ibc/819B5FB8FA371CC26976CAF8CDF54F3B146060400AD55591B5F1BE3036E915D8 decimals = 0 +[ibc/81B756469E88FBB424E039018AC5BDEEA6C7A01B8794ECF176DA8C9C5B95FA78] +peggy_denom = ibc/81B756469E88FBB424E039018AC5BDEEA6C7A01B8794ECF176DA8C9C5B95FA78 +decimals = 0 + [ibc/81B7F37966A8066DFAF1B2F07A3D3AFBBA2AAC479B1F0D4135AD85725592D7B1] peggy_denom = ibc/81B7F37966A8066DFAF1B2F07A3D3AFBBA2AAC479B1F0D4135AD85725592D7B1 decimals = 0 @@ -12348,6 +12954,10 @@ decimals = 0 peggy_denom = ibc/83601F79992DCDF21ECCE0D876C6E1E9578AB97D77CD3E975B92B715CA851F19 decimals = 0 +[ibc/85409B5CEC4C363C224D6E1042116A19CEF76F8D35823B4664E71A467B475F44] +peggy_denom = ibc/85409B5CEC4C363C224D6E1042116A19CEF76F8D35823B4664E71A467B475F44 +decimals = 0 + [ibc/85C83BD4F9557A367AA5D890D58CA60E6691833679167ED1E65A00268E480287] peggy_denom = ibc/85C83BD4F9557A367AA5D890D58CA60E6691833679167ED1E65A00268E480287 decimals = 0 @@ -12360,6 +12970,10 @@ decimals = 0 peggy_denom = ibc/8B42C90767030357E99BE35BB5BCBD5A69F6E9E20F4A9FD0498823FD10FF86F9 decimals = 0 +[ibc/8CE12C919F662B1563782DC4CF3696E5CED5287B82A59BBE17F3D65CE6A651AE] +peggy_denom = ibc/8CE12C919F662B1563782DC4CF3696E5CED5287B82A59BBE17F3D65CE6A651AE +decimals = 0 + [ibc/8D0DA5929A6E7B901319D05D5434FB4BEB28459D72470A3A1C593A813FE461C8] peggy_denom = ibc/8D0DA5929A6E7B901319D05D5434FB4BEB28459D72470A3A1C593A813FE461C8 decimals = 0 @@ -12368,6 +12982,26 @@ decimals = 0 peggy_denom = ibc/8D311D92BCD4E87F145DEB9DDA339416DEF7E13571D92A3521CAB0BF62760FBE decimals = 6 +[ibc/8D90E5706C22B488F4FA45CD81FEAC91112B35510A72FEB45DB561A8CAF7D775] +peggy_denom = ibc/8D90E5706C22B488F4FA45CD81FEAC91112B35510A72FEB45DB561A8CAF7D775 +decimals = 0 + +[ibc/8E1E49E35305C7002752F0C947B4118C23D1DFF1FB972363EB6F078567262CAC] +peggy_denom = ibc/8E1E49E35305C7002752F0C947B4118C23D1DFF1FB972363EB6F078567262CAC +decimals = 0 + +[ibc/8E29C07E81FDE94D898868F9EF92EE805B6D5902B75F2F90C9DE48E5BE6A2AFA] +peggy_denom = ibc/8E29C07E81FDE94D898868F9EF92EE805B6D5902B75F2F90C9DE48E5BE6A2AFA +decimals = 0 + +[ibc/8FB87BBB7E7B2A963A6F40A655F611F5F8DB30797E2B2CA1A0BAC856E58CA8F6] +peggy_denom = ibc/8FB87BBB7E7B2A963A6F40A655F611F5F8DB30797E2B2CA1A0BAC856E58CA8F6 +decimals = 0 + +[ibc/92F62B238D6C73A5CAA0930CEDE3781CEF41B6EED7A205129D69F4F3D77F392A] +peggy_denom = ibc/92F62B238D6C73A5CAA0930CEDE3781CEF41B6EED7A205129D69F4F3D77F392A +decimals = 0 + [ibc/948D16A08718820A10DE8F7B35CE60409E7B5DC61043E88BB368C776147E70E8] peggy_denom = ibc/948D16A08718820A10DE8F7B35CE60409E7B5DC61043E88BB368C776147E70E8 decimals = 0 @@ -12388,14 +13022,30 @@ decimals = 0 peggy_denom = ibc/999FD9811C895A63FE1A2FCDDA24DEC6AF7D70D907BD97E9C455BDFD57B373CA decimals = 0 +[ibc/9A8083F8E50E5CAE85393E9BD52A3A5E2404B7CF9D2FCCD87A81BFADD38001E5] +peggy_denom = ibc/9A8083F8E50E5CAE85393E9BD52A3A5E2404B7CF9D2FCCD87A81BFADD38001E5 +decimals = 0 + [ibc/9CAF108FCC3EB3815E029462100828461FFAA829002C4366716437F8C07F5F9C] peggy_denom = ibc/9CAF108FCC3EB3815E029462100828461FFAA829002C4366716437F8C07F5F9C decimals = 0 +[ibc/9D592A0F3E812505C6B3F7860458B7AC4DBDECACC04A2602FC13ED0AB6C762B6] +peggy_denom = ibc/9D592A0F3E812505C6B3F7860458B7AC4DBDECACC04A2602FC13ED0AB6C762B6 +decimals = 0 + +[ibc/9D8B31B800A606CE820FC7604A5E85A15898630DDAFEB2733530594643119D4C] +peggy_denom = ibc/9D8B31B800A606CE820FC7604A5E85A15898630DDAFEB2733530594643119D4C +decimals = 0 + [ibc/9D9B59CA222E54842555DBD81B22EEABE61796D4C6EC8AB47A97C388333AC340] peggy_denom = ibc/9D9B59CA222E54842555DBD81B22EEABE61796D4C6EC8AB47A97C388333AC340 decimals = 6 +[ibc/9FF2D5FE9CBF1B6D51197FF2C94F84B842438136F4586B42DA06CEA8921CCEFA] +peggy_denom = ibc/9FF2D5FE9CBF1B6D51197FF2C94F84B842438136F4586B42DA06CEA8921CCEFA +decimals = 0 + [ibc/A07BB73539F556DA5238F1B7E9471B34DD19897B1EE7050B959989F13EFE73B3] peggy_denom = ibc/A07BB73539F556DA5238F1B7E9471B34DD19897B1EE7050B959989F13EFE73B3 decimals = 8 @@ -12408,10 +13058,26 @@ decimals = 0 peggy_denom = ibc/A2C433944E7989D2B32565DDF6B6C2806B2AF4500675AA39D3C3A061D37CE576 decimals = 0 +[ibc/A2CF2B2B577769B7E025A21A24B28E443163E12987AA1A150AD9B6B58BFDF0D9] +peggy_denom = ibc/A2CF2B2B577769B7E025A21A24B28E443163E12987AA1A150AD9B6B58BFDF0D9 +decimals = 0 + +[ibc/A3B566239B955DEA9718EAB29B8FAB152ABE746E6040A9EA7B5CDE12FF912551] +peggy_denom = ibc/A3B566239B955DEA9718EAB29B8FAB152ABE746E6040A9EA7B5CDE12FF912551 +decimals = 0 + +[ibc/A55FFAE2F7E96F6E3D92F9E837350D47D2A2C3F6BD9584D55CCA39EC6949D598] +peggy_denom = ibc/A55FFAE2F7E96F6E3D92F9E837350D47D2A2C3F6BD9584D55CCA39EC6949D598 +decimals = 0 + [ibc/A83851234A83F3FE51CDB44FF1A4435472A197C096EF9E7312B69E67C16B7FB7] peggy_denom = ibc/A83851234A83F3FE51CDB44FF1A4435472A197C096EF9E7312B69E67C16B7FB7 decimals = 6 +[ibc/A96304F1680B9FB1705F3368320E4430D4A1E87CBAA5E8CFFC404B2A7AA8D83A] +peggy_denom = ibc/A96304F1680B9FB1705F3368320E4430D4A1E87CBAA5E8CFFC404B2A7AA8D83A +decimals = 0 + [ibc/AB1E9C841105F28E9B70ED5EF1239B2D5E567F6E16818D87EFFA75E62778C8E4] peggy_denom = ibc/AB1E9C841105F28E9B70ED5EF1239B2D5E567F6E16818D87EFFA75E62778C8E4 decimals = 0 @@ -12428,22 +13094,58 @@ decimals = 0 peggy_denom = ibc/AC8181FE5ECAC9A01FBC5C4A3A681537A01A95007C32C2FAF3CF7101E9DAE081 decimals = 0 +[ibc/AD39C30C73231FCBE2ECF944E2D924ACE367D0F948FC7CAC1C9CEF6075574735] +peggy_denom = ibc/AD39C30C73231FCBE2ECF944E2D924ACE367D0F948FC7CAC1C9CEF6075574735 +decimals = 0 + [ibc/AE198193A04103DD1AE4C8698E25DEDCA81396A4C484DA19E4221B3C3A3D2F2A] peggy_denom = ibc/AE198193A04103DD1AE4C8698E25DEDCA81396A4C484DA19E4221B3C3A3D2F2A decimals = 0 +[ibc/AE3CE60389C8B666AEA33330C954A64C39EB25B60C5521631A1B605DBE575280] +peggy_denom = ibc/AE3CE60389C8B666AEA33330C954A64C39EB25B60C5521631A1B605DBE575280 +decimals = 0 + [ibc/AE6D267A64EEFE1430D11221D579C91CFC6D7B0E7F885874AE1BC715FE8753E1] peggy_denom = ibc/AE6D267A64EEFE1430D11221D579C91CFC6D7B0E7F885874AE1BC715FE8753E1 decimals = 0 +[ibc/AFE72652B9CF5954AD0EF11FA5A83D4E2B93631001D9E384B03BE1CEFBCDB458] +peggy_denom = ibc/AFE72652B9CF5954AD0EF11FA5A83D4E2B93631001D9E384B03BE1CEFBCDB458 +decimals = 0 + [ibc/B024EC4AE846F690CB46C1CE886BE7DCE27CBBB6CE1E4EFBA4AA764E07B81A69] peggy_denom = ibc/B024EC4AE846F690CB46C1CE886BE7DCE27CBBB6CE1E4EFBA4AA764E07B81A69 decimals = 6 +[ibc/B20C5AB7FC7D54DE3832F91A00002EE1A830F4ADE6CDD9F02378CDA79415E8B3] +peggy_denom = ibc/B20C5AB7FC7D54DE3832F91A00002EE1A830F4ADE6CDD9F02378CDA79415E8B3 +decimals = 0 + +[ibc/B2D7620D827D6AC87B4EB2757C1144E3B1EF2A31A84968C2720A4353BD856E69] +peggy_denom = ibc/B2D7620D827D6AC87B4EB2757C1144E3B1EF2A31A84968C2720A4353BD856E69 +decimals = 0 + +[ibc/B3D547DD7B46DE371F312F2970C2D9E2ABD7164F4A37836CA2282762B78E04D6] +peggy_denom = ibc/B3D547DD7B46DE371F312F2970C2D9E2ABD7164F4A37836CA2282762B78E04D6 +decimals = 0 + +[ibc/B4524C4C8F51F77C94D4E901AA26DF4F0E530F44E285D5D777E1634907E94CBD] +peggy_denom = ibc/B4524C4C8F51F77C94D4E901AA26DF4F0E530F44E285D5D777E1634907E94CBD +decimals = 0 + [ibc/B5BB79AC621108184E03AD6B82456EBC96041B877A1652445CF32619CC9DA5C1] peggy_denom = ibc/B5BB79AC621108184E03AD6B82456EBC96041B877A1652445CF32619CC9DA5C1 decimals = 0 +[ibc/B61DB68037EA3B6E9A1833093616CDFD8233EB014C1EA4C2D06E6A62B1FF2A64] +peggy_denom = ibc/B61DB68037EA3B6E9A1833093616CDFD8233EB014C1EA4C2D06E6A62B1FF2A64 +decimals = 0 + +[ibc/B8F80D51444F6DD4BD06A0B3C4A05C4F4AC13AA4AB7966A55BF2024A82D1FDD6] +peggy_denom = ibc/B8F80D51444F6DD4BD06A0B3C4A05C4F4AC13AA4AB7966A55BF2024A82D1FDD6 +decimals = 0 + [ibc/B99CCD408EB17CBC3D295647F0D3A035576B109648ED833D4039B42C09DB4BDB] peggy_denom = ibc/B99CCD408EB17CBC3D295647F0D3A035576B109648ED833D4039B42C09DB4BDB decimals = 0 @@ -12452,10 +13154,18 @@ decimals = 0 peggy_denom = ibc/BA26BE85B9D5F046FC7071ED0F77053662A4B2F5B7552B3834A3F1B2DD3BD18F decimals = 0 +[ibc/BC8CCC6DE74A32C83BADC2B984295F78074375075610D8198E1AD64FBA780AA5] +peggy_denom = ibc/BC8CCC6DE74A32C83BADC2B984295F78074375075610D8198E1AD64FBA780AA5 +decimals = 0 + [ibc/BCE43BA530FBE35282B62C1E1EA4AD1F51522C61D40FB761005E1A02F18E0E58] peggy_denom = ibc/BCE43BA530FBE35282B62C1E1EA4AD1F51522C61D40FB761005E1A02F18E0E58 decimals = 6 +[ibc/BD1F347E40AEE5E7499E63B6D39F9AA783AC7003519933D3F88E83154A40FAD2] +peggy_denom = ibc/BD1F347E40AEE5E7499E63B6D39F9AA783AC7003519933D3F88E83154A40FAD2 +decimals = 0 + [ibc/BDDF86413BCEAD3660A60F2B5B5C1D95635FA76B3E510924FEE2F6890CBD7E14] peggy_denom = ibc/BDDF86413BCEAD3660A60F2B5B5C1D95635FA76B3E510924FEE2F6890CBD7E14 decimals = 0 @@ -12468,10 +13178,18 @@ decimals = 0 peggy_denom = ibc/BE749147EF2813020A5A77D29183336CFAA1A53B67E522EF103D6803DE0E084B decimals = 0 +[ibc/BE7AB5AEDF88351CF4E1AAE8EC00EC9EE36CD39AEE83D95A1555418E15FC88AD] +peggy_denom = ibc/BE7AB5AEDF88351CF4E1AAE8EC00EC9EE36CD39AEE83D95A1555418E15FC88AD +decimals = 0 + [ibc/BE8166C09385A65A64366092FA14CEAD171EBB8E2464400196A1B19B4DC3AD50] peggy_denom = ibc/BE8166C09385A65A64366092FA14CEAD171EBB8E2464400196A1B19B4DC3AD50 decimals = 0 +[ibc/BEF3E88134523FFB8ABB5A6D063071E96AF194B09BCA91A39FF67CC753C6A827] +peggy_denom = ibc/BEF3E88134523FFB8ABB5A6D063071E96AF194B09BCA91A39FF67CC753C6A827 +decimals = 0 + [ibc/C2025C1D34ED74CD6F9DF86CD650D92219AF645E9D0ADFFACF4E2CBECE649536] peggy_denom = ibc/C2025C1D34ED74CD6F9DF86CD650D92219AF645E9D0ADFFACF4E2CBECE649536 decimals = 6 @@ -12484,6 +13202,10 @@ decimals = 6 peggy_denom = ibc/C3BD5051E685B9A447352FB2D5773F8E4A015521CBD0A534B3F514FCA17C9030 decimals = 0 +[ibc/C41000F89C71FB771148BDE5DA2EB8A77CF8DB65FF7A276C54B7BEB270DA17EF] +peggy_denom = ibc/C41000F89C71FB771148BDE5DA2EB8A77CF8DB65FF7A276C54B7BEB270DA17EF +decimals = 0 + [ibc/C443ADA9C3388000268B8B892A07AB6838A904E1CCA2A1F084CB9572CA66F0E2] peggy_denom = ibc/C443ADA9C3388000268B8B892A07AB6838A904E1CCA2A1F084CB9572CA66F0E2 decimals = 0 @@ -12496,6 +13218,10 @@ decimals = 0 peggy_denom = ibc/C508488741426E40AAE98E374F6D8DEA733A391D3388EBEC055F1C2A6845CBCA decimals = 0 +[ibc/C51E233EC915CCBF69FAC3FE7F177F26526BDF92EDC3F22CF0AAED7008CEA3A6] +peggy_denom = ibc/C51E233EC915CCBF69FAC3FE7F177F26526BDF92EDC3F22CF0AAED7008CEA3A6 +decimals = 0 + [ibc/C7132831617D38D152402A1F0E3B98A719C8288423A5116167E03A51D9B8B6D0] peggy_denom = ibc/C7132831617D38D152402A1F0E3B98A719C8288423A5116167E03A51D9B8B6D0 decimals = 0 @@ -12508,6 +13234,10 @@ decimals = 0 peggy_denom = ibc/C8099767548EA68F722AD0F8A8C807A5E6B6A8CA0A6FD7B8BD9B1AE96D19AC3E decimals = 0 +[ibc/C8245C403E8D7E15B4B306AD690669B0BB54F851E69316CAD464212D2772FBBA] +peggy_denom = ibc/C8245C403E8D7E15B4B306AD690669B0BB54F851E69316CAD464212D2772FBBA +decimals = 0 + [ibc/C9EC3080B046D49949239E1704522EE8B7BE0A668027028059A7FE7BC20B0976] peggy_denom = ibc/C9EC3080B046D49949239E1704522EE8B7BE0A668027028059A7FE7BC20B0976 decimals = 6 @@ -12516,6 +13246,10 @@ decimals = 6 peggy_denom = ibc/CA0B808874A9890C171944FA44B35287E9701402C732FE5B2C6371BA8113462C decimals = 6 +[ibc/CA5D0BBEC26DECB072BA6E73F61E827ADB8154DFE22EC87E44BAED3E15D0E02B] +peggy_denom = ibc/CA5D0BBEC26DECB072BA6E73F61E827ADB8154DFE22EC87E44BAED3E15D0E02B +decimals = 0 + [ibc/CB9BA999A7CDA4CE00784BFF705A1D0BDB95AD80334FD0F95A5BA306078C96E9] peggy_denom = ibc/CB9BA999A7CDA4CE00784BFF705A1D0BDB95AD80334FD0F95A5BA306078C96E9 decimals = 0 @@ -12528,6 +13262,10 @@ decimals = 0 peggy_denom = ibc/CDA55861E9E491479CB52D5C89F942F5EAF221F80B7CDDBBA8EE94D3658B03B4 decimals = 6 +[ibc/CDDEE42F2BF083A267EB3A007C0593BF7D043F13D5F5C380EBE2F523B3FDEFEB] +peggy_denom = ibc/CDDEE42F2BF083A267EB3A007C0593BF7D043F13D5F5C380EBE2F523B3FDEFEB +decimals = 0 + [ibc/CFD97474BEB91453470ABF422E94B4C55ACF2CBA300B1FE7ED494DB5F5E012B1] peggy_denom = ibc/CFD97474BEB91453470ABF422E94B4C55ACF2CBA300B1FE7ED494DB5F5E012B1 decimals = 6 @@ -12540,6 +13278,10 @@ decimals = 0 peggy_denom = ibc/D18907CCF379EEA71AE2C3725A135AE678A67A35B7C6556A77A4E0B3520F7854 decimals = 0 +[ibc/D1EE9803C518B2DC07A23BE78E8817065E48BF264EBE29C3447571ACDFDEA4E2] +peggy_denom = ibc/D1EE9803C518B2DC07A23BE78E8817065E48BF264EBE29C3447571ACDFDEA4E2 +decimals = 0 + [ibc/D208E775E677BAC87EB85C359E7A6BD123C7E6F0709D34DD4D8A1650CED77A77] peggy_denom = ibc/D208E775E677BAC87EB85C359E7A6BD123C7E6F0709D34DD4D8A1650CED77A77 decimals = 0 @@ -12568,6 +13310,10 @@ decimals = 0 peggy_denom = ibc/D4ED143E25535EBF6374A1A077BE205A687B69872484DF064ED2BAD6E5C3D762 decimals = 0 +[ibc/D505AA838A7BB7D22166DE53F4104BC86951E37B4D3B437B1FEB5F3468FF8DB5] +peggy_denom = ibc/D505AA838A7BB7D22166DE53F4104BC86951E37B4D3B437B1FEB5F3468FF8DB5 +decimals = 0 + [ibc/D5AF5FAEA92918A24ACBF0DEB61C674C8951A97D13CFBF7F6617280E82ECB1E6] peggy_denom = ibc/D5AF5FAEA92918A24ACBF0DEB61C674C8951A97D13CFBF7F6617280E82ECB1E6 decimals = 0 @@ -12576,6 +13322,10 @@ decimals = 0 peggy_denom = ibc/D64620F915AD2D3B93C958996CD0BD099DC5837490706FDE15E79440CF77CB36 decimals = 0 +[ibc/D671DB6A024C3DCF36E5E44E0FA3AD8E9A379F07C0E746695F7E5994CCAD5746] +peggy_denom = ibc/D671DB6A024C3DCF36E5E44E0FA3AD8E9A379F07C0E746695F7E5994CCAD5746 +decimals = 0 + [ibc/DC9E276D4E80CD04F8A8C681842A3A16C59F85963FB262E34BBB6CB4F5BFDB14] peggy_denom = ibc/DC9E276D4E80CD04F8A8C681842A3A16C59F85963FB262E34BBB6CB4F5BFDB14 decimals = 0 @@ -12588,6 +13338,10 @@ decimals = 6 peggy_denom = ibc/DF32F083238097AD2CA5444BFB8F338534C32865EFE0696C5AF89AFB3A0144D6 decimals = 6 +[ibc/DFA6A6ADEDFFD00CAE5C2A3E3A87CEE28B51711762EE2985DFEDA81AF76298D8] +peggy_denom = ibc/DFA6A6ADEDFFD00CAE5C2A3E3A87CEE28B51711762EE2985DFEDA81AF76298D8 +decimals = 0 + [ibc/E01C45463D148F2B469F17DB0497DFA70A746D0CFF6A90EE82825590ADE5F752] peggy_denom = ibc/E01C45463D148F2B469F17DB0497DFA70A746D0CFF6A90EE82825590ADE5F752 decimals = 0 @@ -12604,10 +13358,26 @@ decimals = 0 peggy_denom = ibc/E43E4F1FD4B84EE30EDB8E0BE6F03E0A5596B292EAA0F198789DDF0C1301FB85 decimals = 0 +[ibc/E49728A25824EC0FF858A76975834DA11E3A2021285A6D62835D10829B4034F7] +peggy_denom = ibc/E49728A25824EC0FF858A76975834DA11E3A2021285A6D62835D10829B4034F7 +decimals = 0 + [ibc/E4BDC3A9935959C715961FFC6C12159EAD8FA4A5955D069EE19D0423FF810C6E] peggy_denom = ibc/E4BDC3A9935959C715961FFC6C12159EAD8FA4A5955D069EE19D0423FF810C6E decimals = 18 +[ibc/E53178A4F7B6492F01B5719D9C7AF89056DA3E50EE542403D8BA8E0657F02FE1] +peggy_denom = ibc/E53178A4F7B6492F01B5719D9C7AF89056DA3E50EE542403D8BA8E0657F02FE1 +decimals = 0 + +[ibc/E78F8AE12F4271904CBA6CF8262525C723DF42EBD2B74A34F33862BF5652C769] +peggy_denom = ibc/E78F8AE12F4271904CBA6CF8262525C723DF42EBD2B74A34F33862BF5652C769 +decimals = 0 + +[ibc/E7C0089E196DB00A88D6EA6D1CD87D80C320D721ACFAEFF4342CEF15AE9EDAE0] +peggy_denom = ibc/E7C0089E196DB00A88D6EA6D1CD87D80C320D721ACFAEFF4342CEF15AE9EDAE0 +decimals = 0 + [ibc/E801CF19C7B3FFC5FD81A1C9662BCFAE08F4976B054923BC0DA377F1863D3E56] peggy_denom = ibc/E801CF19C7B3FFC5FD81A1C9662BCFAE08F4976B054923BC0DA377F1863D3E56 decimals = 0 @@ -12616,6 +13386,10 @@ decimals = 0 peggy_denom = ibc/E8E84092B9063AAC97846712D43D6555928073B8A0BFFCC2549E55EE224F1610 decimals = 6 +[ibc/E9BBE9BBF0925155892D6E47553E83B8476C880F65DEB33859E751C0B107B0B1] +peggy_denom = ibc/E9BBE9BBF0925155892D6E47553E83B8476C880F65DEB33859E751C0B107B0B1 +decimals = 0 + [ibc/EA180E422271F35D66E7B9B57AFF072DABEE97EDA4522DAB91F97AE6DD45426D] peggy_denom = ibc/EA180E422271F35D66E7B9B57AFF072DABEE97EDA4522DAB91F97AE6DD45426D decimals = 0 @@ -12632,6 +13406,10 @@ decimals = 0 peggy_denom = ibc/EEB2EB2A678B5788DB413B5A7EC81085B34F33DA9750C1C790CE8E1EDC8282B5 decimals = 0 +[ibc/EEC5E6CD97C728108D4352DFF1D67328055AD0DC25859F1F06F4AE4F2524987B] +peggy_denom = ibc/EEC5E6CD97C728108D4352DFF1D67328055AD0DC25859F1F06F4AE4F2524987B +decimals = 0 + [ibc/EED40547772504DF629EFEC08892E689CD14498B1C0AD766CD5075BBBEE3D808] peggy_denom = ibc/EED40547772504DF629EFEC08892E689CD14498B1C0AD766CD5075BBBEE3D808 decimals = 6 @@ -12648,6 +13426,10 @@ decimals = 18 peggy_denom = ibc/F433CC4D2A46173B47A691E8C432F11E47E8C06C574CEF798F6F7BA116EACCAC decimals = 0 +[ibc/F643EAA961DF49F00CF53DA101C09837DE7945955CBD98C51B80E0BF6FA329E9] +peggy_denom = ibc/F643EAA961DF49F00CF53DA101C09837DE7945955CBD98C51B80E0BF6FA329E9 +decimals = 0 + [ibc/F72F979601BD2FCF748C2E93092E9CB55A8BDB738567AB42C19D403A7C636110] peggy_denom = ibc/F72F979601BD2FCF748C2E93092E9CB55A8BDB738567AB42C19D403A7C636110 decimals = 0 @@ -12668,10 +13450,6 @@ decimals = 0 peggy_denom = ibc/FECCDCFA89278B117C76A11A946A7991A68E5DD12DED6EB938ADC1B1286AC591 decimals = 6 -[inj] -peggy_denom = ibc/052AF4B0650990067B8FC5345A39206497BCC12F0ABE94F15415413739B93B26 -decimals = 0 - [inj104y5dpcdtga79tczv6rg3rsekx4hasw2k83h5s] peggy_denom = inj104y5dpcdtga79tczv6rg3rsekx4hasw2k83h5s decimals = 18 @@ -13308,6 +14086,10 @@ decimals = 0 peggy_denom = inj1t9r3s40sr3jjd20kp2w8dunff2466zwr89n2xr decimals = 18 +[inj1tamr3fy4cyj6ezyppmeywxd4jz5knat8uqz0d6] +peggy_denom = inj1tamr3fy4cyj6ezyppmeywxd4jz5knat8uqz0d6 +decimals = 18 + [inj1tcgye8ekwd0fcnrwncdtt7k9r7eg7k824c0pdg] peggy_denom = inj1tcgye8ekwd0fcnrwncdtt7k9r7eg7k824c0pdg decimals = 18 @@ -13556,10 +14338,6 @@ decimals = 6 peggy_denom = inj17auxme00fj267ccyhx9y9ue4tuwwuadgxshl7x decimals = 18 -[loki] -peggy_denom = ibc/28325391B9F257ABED965813D29AE67D1FE5C58E40AB6D753250CD83306EC7A3 -decimals = 0 - [lootbox1] peggy_denom = factory/inj1llr45x92t7jrqtxvc02gpkcqhqr82dvyzkr4mz/lootbox1 decimals = 0 @@ -13584,6 +14362,10 @@ decimals = 18 peggy_denom = factory/inj1056f9jwmdxjmc3xf3urpka00gjfsnna7ct3gy3/mcNINJA decimals = 6 +[meme2] +peggy_denom = factory/inj1v5vml3038t0expy7vf5vkwj7t9xly9kudtjdg5/meme2 +decimals = 6 + [memegod] peggy_denom = factory/inj18fql07frqe0lkvk6ajmpq4smk3q6c0f0qa5yfw/memegod decimals = 6 @@ -13692,10 +14474,6 @@ decimals = 18 peggy_denom = inj1wazl9873fqgs4p7rjvn6a4qgqfdafacz9jzzjd decimals = 18 -[orai] -peggy_denom = ibc/7FF5CED7EF2ED6DFBC5B1278B5BE9ECBFB5939CC04218AC244A5E51D64ED50C8 -decimals = 0 - [paam] peggy_denom = factory/inj1hg6n7nfhtevnxq87y2zj4xf28n4p38te6q56vx/paam decimals = 6 @@ -13732,10 +14510,6 @@ decimals = 10 peggy_denom = peggy0xbC0899E527007f1B8Ced694508FCb7a2b9a46F53 decimals = 5 -[peggy0xdAC17F958D2ee523a2206206994597C13D831ec7] -peggy_denom = ibc/13EF490ADD26F95B3FEFBA0C8BC74345358B4C5A8D431AAE92CDB691CF8796FF -decimals = 0 - [peggy0xe28b3b32b6c345a34ff64674606124dd5aceca30] peggy_denom = peggy0xe28b3b32b6c345a34ff64674606124dd5aceca30 decimals = 18 @@ -13756,18 +14530,10 @@ decimals = 18 peggy_denom = factory/inj1prp8jk9fvxjzdgv8n2qlgrdfgxpq7t6k6rkmc7/PIGS decimals = 6 -[poolDFB8434D5A80B4EAFA94B6878BD5B85265AC6C5D37204AB899B1C3C52543DA7E] -peggy_denom = ibc/9E9FFBF2C6921D1DFB3326DF5A140D1F802E336FE0BF38C0D708B62492A7326D -decimals = 0 - [popINJay] peggy_denom = factory/inj1rn2snthhvdt4m62uakp7snzk7melj2x8nfqkx5/popINJay decimals = 6 -[ppica] -peggy_denom = ibc/455C0229DFEB1ADCA527BAE29F4F5B30EE50F282DBEB7124D2836D2DD31514C8 -decimals = 0 - [pumping] peggy_denom = inj1rts275s729dqcf7htz4hulrerpz85leufsh8xl decimals = 8 @@ -14192,10 +14958,6 @@ decimals = 6 peggy_denom = ibc/FC8E98DF998AE88129183094E49383F94B3E5F1844C939D380AF18061FEF41EB decimals = 6 -[stinj] -peggy_denom = ibc/E9BBE9BBF0925155892D6E47553E83B8476C880F65DEB33859E751C0B107B0B1 -decimals = 0 - [stkATOM] peggy_denom = ibc/B8E30AECB0FB5BA1B02747BE003E55934A9E42488495412C7E9934FBEC06B201 decimals = 6 @@ -14368,58 +15130,6 @@ decimals = 18 peggy_denom = factory/inj1dewkg7z8vffqxk7jcer6sf9ttnx54z0c6gfjw6/uLP decimals = 6 -[uakt] -peggy_denom = ibc/3BADB97E59D4BB8A26AD5E5485EF0AF123982363D1174AA1C6DEA9BE9C7E934D -decimals = 0 - -[uatom] -peggy_denom = ibc/057B70A05AFF2A38C082ACE15A260080D29627CCBF1655EA38B043275AFAADCE -decimals = 0 - -[uaxl] -peggy_denom = ibc/2FB8CEA9180069DD4DB8883CA8E263D9879F446D6895CDAA90487ABCCFB4A45C -decimals = 0 - -[ubld] -peggy_denom = ibc/40AE872789CC2B160222CC4301CA9B097493BD858EAD84218E2EC29C64F0BBAB -decimals = 0 - -[ubtsg] -peggy_denom = ibc/861CA7EF82BD341F2EB80C6F47730908E14A4E569099C510C0DAD8DA07F6DCC6 -decimals = 0 - -[ucmdx] -peggy_denom = ibc/2609F5ECC10691FE306DE1B99E4F6AF18F689ED328969F93186F28BE1173EEED -decimals = 0 - -[ucore] -peggy_denom = ibc/478A95ED132D071603C8AD0FC5E1A74717653880144E0D9B2508A230820921EF -decimals = 0 - -[ucrbrus] -peggy_denom = ibc/617A276F35F40221C033B0662301374A225A9784653C30184F9305398054525D -decimals = 0 - -[ucre] -peggy_denom = ibc/021FDD63F6D8DA6998A93DD25A72BD18421604A50819D01932136E934F9A26C4 -decimals = 0 - -[udoki] -peggy_denom = ibc/80A2109FA720FF39E302876F885039D7378B3FC7B9FAF22E05E29EFB8F7B3306 -decimals = 0 - -[uhuahua] -peggy_denom = ibc/613786F0A8E01B0436DE4EBC2F922672063D8348AE5C7FEBA5CB22CD2B12E1D6 -decimals = 0 - -[ukuji] -peggy_denom = ibc/B4524C4C8F51F77C94D4E901AA26DF4F0E530F44E285D5D777E1634907E94CBD -decimals = 0 - -[uluna] -peggy_denom = ibc/2B3FA34CE2779629F4CBDD4D52EFF1FED8AD78EBA63786E946C7CE6D06034D0D -decimals = 0 - [ulvn] peggy_denom = factory/osmo1mlng7pz4pnyxtpq0akfwall37czyk9lukaucsrn30ameplhhshtqdvfm5c/ulvn decimals = 6 @@ -14428,58 +15138,6 @@ decimals = 6 peggy_denom = unknown decimals = 0 -[unois] -peggy_denom = ibc/D2C7259861170E5EE7B21DBEC44D4720EC6C97293F1CAA79B0A0FF84B508C012 -decimals = 0 - -[untrn] -peggy_denom = ibc/6E512756C29F76C31032D456A4C957309E377827A443F1267D19DE551EB76048 -decimals = 0 - -[uosmo] -peggy_denom = ibc/49CE7E3072FB1C70C1B2DE9AD1E74D15E2AC2AFD62949DB82EC653EB3E2B0A84 -decimals = 0 - -[uscrt] -peggy_denom = ibc/3C38B741DF7CD6CAC484343A4994CFC74BC002D1840AAFD5416D9DAC61E37F10 -decimals = 0 - -[usei] -peggy_denom = ibc/262300516331DBB83707BF21D485454F5608610B74F9232FB2503ABA3363BD59 -decimals = 0 - -[ustrd] -peggy_denom = ibc/CACFB6FEEC434B66254E2E27B2ABAD991171212EC8F67C566024D90490B7A079 -decimals = 0 - -[utia] -peggy_denom = ibc/056FEA49A8266ECD3EEF407A17EDC3FCEED144BE5EEF3A09ED6BC33F7118009F -decimals = 0 - -[uumee] -peggy_denom = ibc/EE0EC814EF89AFCA8C9CB385F5A69CFF52FAAD00879BEA44DE78F9AABFFCCE42 -decimals = 0 - -[uusd] -peggy_denom = ibc/B61DB68037EA3B6E9A1833093616CDFD8233EB014C1EA4C2D06E6A62B1FF2A64 -decimals = 0 - -[uusdc] -peggy_denom = ibc/02FF79280203E6BF0E7EAF70C5D0396B81B3CC95BA309354A539511387161AA5 -decimals = 0 - -[uusdt] -peggy_denom = ibc/63ADE20D7FF880975E9EC5FEBE87DB7CFCE6E85AB7F8E5097952052583C237EC -decimals = 0 - -[uwhale] -peggy_denom = ibc/08E058987E0EB7A4ABEF68956D4AB2247447BA95EF06E6B43CB7D128E2924355 -decimals = 0 - -[uxprt] -peggy_denom = ibc/A1D2A5E125114E63EE6E19FBA05E0949A14B5A51BB91D6193EEAE771C76C91E6 -decimals = 0 - [wBTC] peggy_denom = inj14au322k9munkmx5wrchz9q30juf5wjgz2cfqku decimals = 18 @@ -14504,10 +15162,6 @@ decimals = 6 peggy_denom = factory/inj1j3c89aqgw9g4sqwtxzldslqxla4d5a7csgaxgq/wera decimals = 6 -[wglmr-wei] -peggy_denom = ibc/0C8737145CF8CAE5DC1007450882E251744B57119600E1A2DACE72C8C272849D -decimals = 0 - [wif] peggy_denom = wif decimals = 6 @@ -14516,10 +15170,6 @@ decimals = 6 peggy_denom = inj128kf4kufhd0w4zwpz4ug5x9qd7pa4hqyhm3re4 decimals = 6 -[wmatic-wei] -peggy_denom = ibc/8042DF9D0B312FE068D0336E5E9AFFE408839DA15643D83CA9AB005D0A2E38D8 -decimals = 0 - [wstETH] peggy_denom = ibc/1E0FC59FB8495BF927B10E9D515661494B1BBEDAA15D80E52FE2BADA64656D16 decimals = 18 diff --git a/pyinjective/denoms_testnet.ini b/pyinjective/denoms_testnet.ini index 4eba7b4d..2e6632d5 100644 --- a/pyinjective/denoms_testnet.ini +++ b/pyinjective/denoms_testnet.ini @@ -6,6 +6,7 @@ min_price_tick_size = 0.000000000000001 min_display_price_tick_size = 0.001 min_quantity_tick_size = 1000000000000000 min_display_quantity_tick_size = 0.001 +min_notional = 0 [0x7a57e705bb4e09c88aecfc295569481dbf2fe1d5efe364651fbe72385938e9b0] description = 'Testnet Spot APE/USDT' @@ -15,6 +16,7 @@ min_price_tick_size = 0.000000000000001 min_display_price_tick_size = 0.000000000000000000001 min_quantity_tick_size = 1000000000000000 min_display_quantity_tick_size = 1000000000000000 +min_notional = 0 [0xabed4a28baf4617bd4e04e4d71157c45ff6f95f181dee557aae59b4d1009aa97] description = 'Testnet Spot INJ/APE' @@ -24,6 +26,7 @@ min_price_tick_size = 0.000000000000001 min_display_price_tick_size = 1000 min_quantity_tick_size = 1000000000000000000 min_display_quantity_tick_size = 1 +min_notional = 0 [0xa97182f11f1aa5339c7f4c3fe3cc1c69b39079f11b864c86d912956c5c2db75c] description = 'Testnet Spot WETH/USDT' @@ -33,6 +36,7 @@ min_price_tick_size = 0.00001 min_display_price_tick_size = 0.001 min_quantity_tick_size = 100000 min_display_quantity_tick_size = 0.001 +min_notional = 0 [0x1c315bd2cfcc769a8d8eca49ce7b1bc5fb0353bfcb9fa82895fe0c1c2a62306e] description = 'Testnet Spot WBTC/USDT' @@ -42,6 +46,7 @@ min_price_tick_size = 0.00001 min_display_price_tick_size = 0.001 min_quantity_tick_size = 100000 min_display_quantity_tick_size = 0.001 +min_notional = 0 [0x491ee4fae7956dd72b6a97805046ffef65892e1d3254c559c18056a519b2ca15] description = 'Testnet Spot ATOM/USDT' @@ -51,6 +56,7 @@ min_price_tick_size = 0.00001 min_display_price_tick_size = 0.001 min_quantity_tick_size = 100000 min_display_quantity_tick_size = 0.001 +min_notional = 0 [0xf88816466c4bdd77b3ac5d0eaf6c1d2547b2aa48a0ab5bffe81502d642209262] description = 'Testnet Spot WBTC/USDC' @@ -60,6 +66,7 @@ min_price_tick_size = 0.000001 min_display_price_tick_size = 0.0001 min_quantity_tick_size = 10000000 min_display_quantity_tick_size = 0.1 +min_notional = 0 [0x5fbd22eb44d9db413513f99ceb9a5ac4cc5b5e6893d5882877391d6927927e6d] description = 'Testnet Spot USDC/USDT' @@ -69,6 +76,7 @@ min_price_tick_size = 0.0001 min_display_price_tick_size = 0.0001 min_quantity_tick_size = 100 min_display_quantity_tick_size = 0.0001 +min_notional = 0 [0x37c5ffe6d1c2318a7b9efde1e82c1186d688c1c4a1ad41da9a0878d353f1c88b] description = 'Testnet Spot USDT/USDC' @@ -78,6 +86,7 @@ min_price_tick_size = 0.0001 min_display_price_tick_size = 0.0001 min_quantity_tick_size = 1000 min_display_quantity_tick_size = 0.001 +min_notional = 0 [0x9354b951718f87e1ffcc11800ee5890eef45a7f05884e9a604722eb8a907d07d] description = 'Testnet Spot INJ/wBTC' @@ -87,6 +96,7 @@ min_price_tick_size = 0.000000000000001 min_display_price_tick_size = 0.00001 min_quantity_tick_size = 10000000000000 min_display_quantity_tick_size = 0.00001 +min_notional = 0 [0x2d92a74f1526c600c0913edd2c38e3ec2ffc5e458842f2cf83545528d5e51d0d] description = 'Testnet Spot INJ/wETH' @@ -96,6 +106,7 @@ min_price_tick_size = 0.00000000000001 min_display_price_tick_size = 0.0001 min_quantity_tick_size = 100000000000000 min_display_quantity_tick_size = 0.0001 +min_notional = 0 [0xab5811fe4fa18b221216f01891775313310cfe85ea749f31bd0d2c58754710f4] description = 'Testnet Spot INJ/wETH' @@ -105,6 +116,7 @@ min_price_tick_size = 0.0001 min_display_price_tick_size = 0.0001 min_quantity_tick_size = 10000 min_display_quantity_tick_size = 0.0001 +min_notional = 0 [0x4ca031b7c8504fa2a8ee2fe6a47b78c7a8e01975c8c28e05029e07b2c5ec9ef5] description = 'Testnet Spot INJ/USDC' @@ -114,6 +126,7 @@ min_price_tick_size = 0.0000000000000001 min_display_price_tick_size = 0.0001 min_quantity_tick_size = 100000000000000 min_display_quantity_tick_size = 0.0001 +min_notional = 0 [0xf3298cc12f12945c9da877766d320e4056e5dfd7d3c38208a0ef2f525f7ca0a2] description = 'Testnet Spot APE/INJ' @@ -123,6 +136,7 @@ min_price_tick_size = 0.001 min_display_price_tick_size = 0.000000000000000000001 min_quantity_tick_size = 1000000000000000 min_display_quantity_tick_size = 1000000000000000 +min_notional = 0 [0x263f7922659fa5b0ecb756a2dd8bf8e2aab9fe8d9ce375f7075d6e6d87b6f95d] description = 'Testnet Spot INJ' @@ -132,6 +146,7 @@ min_price_tick_size = 100000000 min_display_price_tick_size = 0.01 min_quantity_tick_size = 10000000 min_display_quantity_tick_size = 0.1 +min_notional = 0 [0xba7096c2c49b845e6bfc8317e88831c15786bee3149836dde55481abd5ef040b] description = 'Testnet Spot MITOTEST1/INJ' @@ -141,6 +156,7 @@ min_price_tick_size = 0.001 min_display_price_tick_size = 0.001 min_quantity_tick_size = 10000000000000 min_display_quantity_tick_size = 0.00001 +min_notional = 0 [0x21d4ee074f37f2a310929425e58f69850fca9f734d292bfc5ee48d3c28ea1c09] description = 'Testnet Spot TEST2/INJ' @@ -150,6 +166,7 @@ min_price_tick_size = 100000000 min_display_price_tick_size = 0.0001 min_quantity_tick_size = 1000 min_display_quantity_tick_size = 0.001 +min_notional = 0 [0xf2ced33ef12a73962be92686503450cc4966feeb9cf6c809f4dc43acad5d7efb] description = 'Testnet Spot TEST2/USDT' @@ -159,6 +176,7 @@ min_price_tick_size = 0.0001 min_display_price_tick_size = 0.0001 min_quantity_tick_size = 1000 min_display_quantity_tick_size = 0.001 +min_notional = 0 [0xf02752c2c87728af7fd10a298a8a645261859eafd0295dcda7e2c5b45c8412cf] description = 'Testnet Spot stINJ/INJ' @@ -168,6 +186,7 @@ min_price_tick_size = 0.001 min_display_price_tick_size = 0.001 min_quantity_tick_size = 10000000000000 min_display_quantity_tick_size = 0.00001 +min_notional = 0 [0xd7a9fbff264246244d6e4afd7ec926aedc4c8f49118967f241126f47c5b44177] description = 'Testnet Spot PROJ/INJ' @@ -177,6 +196,7 @@ min_price_tick_size = 0.001 min_display_price_tick_size = 0.001 min_quantity_tick_size = 10000000000000 min_display_quantity_tick_size = 0.00001 +min_notional = 0 [0x686d143de4268cac00ff6a7e9cb713484dadf40a5c993e166f260ca8081bc942] description = 'Testnet Spot MT1/USDT' @@ -186,6 +206,7 @@ min_price_tick_size = 0.000000000000001 min_display_price_tick_size = 0.001 min_quantity_tick_size = 1000000000000000 min_display_quantity_tick_size = 0.001 +min_notional = 0 [0x5777730c1ab6f6b1e465d41778562ada8c136c0f11ffbbdb2faa7a5bbde5d5a5] description = 'Testnet Spot PROJX/INJ' @@ -195,6 +216,7 @@ min_price_tick_size = 0.001 min_display_price_tick_size = 0.001 min_quantity_tick_size = 10000000000000 min_display_quantity_tick_size = 0.00001 +min_notional = 0 [0x876a81e382dc7a4b0acbae38fddd66a8fd53f7064f008c3716a13ad857bcf013] description = 'Testnet Spot PROJX/INJ' @@ -204,6 +226,7 @@ min_price_tick_size = 0.001 min_display_price_tick_size = 0.001 min_quantity_tick_size = 10000000000000 min_display_quantity_tick_size = 0.00001 +min_notional = 0 [0x382a1cf37bcdbccd5698753154335fa56651d64b88b054691648710c8dcf43e0] description = 'Testnet Spot ZEN/INJ' @@ -213,6 +236,7 @@ min_price_tick_size = 0.001 min_display_price_tick_size = 0.000000000000000000001 min_quantity_tick_size = 10000000000000 min_display_quantity_tick_size = 10000000000000 +min_notional = 0 [0x40c7fcb089fc603f26c38a5a5bc71f27b0e33a92c2b76801bd9b2ac592d86305] description = 'Testnet Spot ATOM/INJ' @@ -222,6 +246,7 @@ min_price_tick_size = 0.00001 min_display_price_tick_size = 0.001 min_quantity_tick_size = 100000 min_display_quantity_tick_size = 0.001 +min_notional = 0 [0xe93f09f7a06d507ff8b66f2969e1af931c9eb9ec3f640a6f87dbcd3456258466] description = 'Testnet Spot Inj' @@ -231,6 +256,7 @@ min_price_tick_size = 0.0000000000001 min_display_price_tick_size = 0.001 min_quantity_tick_size = 1000000000000000 min_display_quantity_tick_size = 0.001 +min_notional = 0 [0xed865fd44f1bc9d46d978db415ed00444fac4f6aef7e09e2d0235f8d140b219f] description = 'Testnet Spot MT/INJ' @@ -240,6 +266,7 @@ min_price_tick_size = 10000 min_display_price_tick_size = 0.00000001 min_quantity_tick_size = 1000000000 min_display_quantity_tick_size = 1000 +min_notional = 0 [0x215970bfdea5c94d8e964a759d3ce6eae1d113900129cc8428267db5ccdb3d1a] description = 'Testnet Spot INJ/USDC' @@ -249,6 +276,7 @@ min_price_tick_size = 0.000000000000001 min_display_price_tick_size = 0.001 min_quantity_tick_size = 10000000000000000 min_display_quantity_tick_size = 0.01 +min_notional = 0 [0xd8e9ea042ac67990134d8e024a251809b1b76c5f7df49f511858e040a285efca] description = 'Testnet Spot HDRO/INJ' @@ -258,6 +286,7 @@ min_price_tick_size = 1000000 min_display_price_tick_size = 0.000001 min_quantity_tick_size = 1000000 min_display_quantity_tick_size = 1 +min_notional = 0 [0x2d7f47811527bd721ce2e4e0ff27b0f3a281f65abcd41758baf157c8ddfcd910] description = 'Testnet Spot hINJ/INJ' @@ -267,6 +296,7 @@ min_price_tick_size = 0.0001 min_display_price_tick_size = 0.0001 min_quantity_tick_size = 1000000000000000 min_display_quantity_tick_size = 0.001 +min_notional = 0 [0xe4b31c0112c89e0963b2db6884b416c17101a899e0ce6dc9f5dde79e6a01b52b] description = 'Testnet Spot TEST1/INJ' @@ -276,6 +306,7 @@ min_price_tick_size = 1000000 min_display_price_tick_size = 0.000001 min_quantity_tick_size = 1000000 min_display_quantity_tick_size = 1 +min_notional = 0 [0x2e94326a421c3f66c15a3b663c7b1ab7fb6a5298b3a57759ecf07f0036793fc9] description = 'Testnet Derivative BTC/USDT PERP Pyth' @@ -285,6 +316,7 @@ min_price_tick_size = 10000 min_display_price_tick_size = 0.01 min_quantity_tick_size = 0.01 min_display_quantity_tick_size = 0.01 +min_notional = 0 [0x95698a9d8ba11660f44d7001d8c6fb191552ece5d9141a05c5d9128711cdc2e0] description = 'Testnet Derivative SOL/USDT PERP' @@ -294,6 +326,7 @@ min_price_tick_size = 10000 min_display_price_tick_size = 0.01 min_quantity_tick_size = 0.01 min_display_quantity_tick_size = 0.01 +min_notional = 0 [0x820bad0e0cbee65bb0eea5a99c78720c97b7b2217c47dcc0e0875e1ebb35e546] description = 'Testnet Derivative ARB/USDT PERP' @@ -303,6 +336,7 @@ min_price_tick_size = 100 min_display_price_tick_size = 0.0001 min_quantity_tick_size = 0.1 min_display_quantity_tick_size = 0.1 +min_notional = 0 [0x155576f660b3b6116c1ab7a42fbf58a95adf11b3061f88f81bc8df228e7ac934] description = 'Testnet Derivative XAU/USDT PERP' @@ -312,6 +346,7 @@ min_price_tick_size = 100 min_display_price_tick_size = 0.0001 min_quantity_tick_size = 0.0001 min_display_quantity_tick_size = 0.0001 +min_notional = 0 [0xb6fd8f78b97238eb67146e9b097c131e94730c10170cbcafa82ea2fd14ff62c7] description = 'Testnet Derivative EUR/USDT PERP' @@ -321,6 +356,7 @@ min_price_tick_size = 100 min_display_price_tick_size = 0.0001 min_quantity_tick_size = 0.0001 min_display_quantity_tick_size = 0.0001 +min_notional = 0 [0xba9c96a1a9cc226cfe6bd9bca3a433e396569d1955393f38f2ee728cfda7ec58] description = 'Testnet Derivative JPY/USDT PERP' @@ -330,6 +366,7 @@ min_price_tick_size = 100 min_display_price_tick_size = 0.0001 min_quantity_tick_size = 0.0001 min_display_quantity_tick_size = 0.0001 +min_notional = 0 [0xe185b08a7ccd830a94060edd5e457d30f429aa6f0757f75a8b93aa611780cfac] description = 'Testnet Derivative GBP/USDT PERP' @@ -339,6 +376,7 @@ min_price_tick_size = 100 min_display_price_tick_size = 0.0001 min_quantity_tick_size = 0.0001 min_display_quantity_tick_size = 0.0001 +min_notional = 0 [0x0f03542809143c7e5d3c22f56bc6e51eb2c8bab5009161b58f6f468432dfa196] description = 'Testnet Derivative XAG/USDT PERP' @@ -348,6 +386,7 @@ min_price_tick_size = 100 min_display_price_tick_size = 0.0001 min_quantity_tick_size = 0.0001 min_display_quantity_tick_size = 0.0001 +min_notional = 0 [0x70bc8d7feab38b23d5fdfb12b9c3726e400c265edbcbf449b6c80c31d63d3a02] description = 'Testnet Derivative ETH/USDT PERP' @@ -357,6 +396,7 @@ min_price_tick_size = 100 min_display_price_tick_size = 0.0001 min_quantity_tick_size = 0.0001 min_display_quantity_tick_size = 0.0001 +min_notional = 0 [0xd97d0da6f6c11710ef06315971250e4e9aed4b7d4cd02059c9477ec8cf243782] description = 'Testnet Derivative ATOM/USDT PERP' @@ -366,6 +406,7 @@ min_price_tick_size = 100 min_display_price_tick_size = 0.0001 min_quantity_tick_size = 0.0001 min_display_quantity_tick_size = 0.0001 +min_notional = 0 [0x17ef48032cb24375ba7c2e39f384e56433bcab20cbee9a7357e4cba2eb00abe6] description = 'Testnet Derivative INJ/USDT PERP' @@ -375,6 +416,7 @@ min_price_tick_size = 100 min_display_price_tick_size = 0.0001 min_quantity_tick_size = 0.0001 min_display_quantity_tick_size = 0.0001 +min_notional = 0 [0xc10e8b25979a1620a6e088ce4c141f5fd2841e2089d4c99b6e5cd8f85986dcd3] description = 'Testnet Derivative PEPE/USDT PERP' @@ -384,6 +426,7 @@ min_price_tick_size = 1 min_display_price_tick_size = 0.000001 min_quantity_tick_size = 1000 min_display_quantity_tick_size = 1000 +min_notional = 0 [0x27f586c9911507c75bf604df00735b871119c5234f8e52bc54fbd54729588a0e] description = 'Testnet Derivative 1000PEPE/USDT PERP' @@ -393,6 +436,7 @@ min_price_tick_size = 1 min_display_price_tick_size = 0.000001 min_quantity_tick_size = 1000 min_display_quantity_tick_size = 1000 +min_notional = 0 [0x14f82598b92674598af196770a45e1b808a4ef3aa86eb9ca09aff1aeab33ac46] description = 'Testnet Derivative 1MPEPE/USDT PERP' @@ -402,6 +446,7 @@ min_price_tick_size = 100 min_display_price_tick_size = 0.0001 min_quantity_tick_size = 1 min_display_quantity_tick_size = 1 +min_notional = 0 [0xa12df259e07f9194389362153b42d8eb12368de5e22668d5f9fc3ac34dd43d18] description = 'Testnet Derivative 1MPEPE/USDT' @@ -411,6 +456,7 @@ min_price_tick_size = 1 min_display_price_tick_size = 0.000001 min_quantity_tick_size = 1000 min_display_quantity_tick_size = 1000 +min_notional = 0 [0x8f002b45cb287a4c3ecb89174ee42a7e933178d89c7eea94dbed8dc5dfd35d23] description = 'Testnet Derivative GOLD/USDT PERP' @@ -420,6 +466,7 @@ min_price_tick_size = 100000 min_display_price_tick_size = 0.1 min_quantity_tick_size = 0.0001 min_display_quantity_tick_size = 0.0001 +min_notional = 0 [0x707fb74431a16c71e54d5cd2301daff1a464e1a854c0fef4bca3fe6c0a5b47d1] description = 'Testnet Derivative TRUCPI/USDT PERP' @@ -429,6 +476,7 @@ min_price_tick_size = 1000 min_display_price_tick_size = 0.001 min_quantity_tick_size = 0.1 min_display_quantity_tick_size = 0.1 +min_notional = 0 [0xdfbb038abf614c59decdaaa02c0446bbebcd16327bd4e9d0350a1e3b691a38ef] description = 'Testnet Derivative EVINDEX/USDT PERP' @@ -438,6 +486,7 @@ min_price_tick_size = 1000 min_display_price_tick_size = 0.001 min_quantity_tick_size = 0.1 min_display_quantity_tick_size = 0.1 +min_notional = 0 [0xf97a740538e10845e0c3db9ea94c6eaf8a570aeebe3e3511e2e387501a40e4bb] description = 'Testnet Derivative TIA/USDT-01NOV2023' @@ -447,6 +496,7 @@ min_price_tick_size = 0.0001 min_display_price_tick_size = 0.0000000001 min_quantity_tick_size = 0.001 min_display_quantity_tick_size = 0.001 +min_notional = 0 [0xc90e8ea048b8fe5c3174d4d0386191765db699d2bf83d0cbaf07e15462115a15] description = 'Testnet Derivative TIA/USDT PERP' @@ -456,6 +506,7 @@ min_price_tick_size = 1000 min_display_price_tick_size = 0.001 min_quantity_tick_size = 0.1 min_display_quantity_tick_size = 0.1 +min_notional = 0 [$ALIEN] peggy_denom = factory/inj1mly2ykhf6f9tdj58pvndjf4q8dzdl4myjqm9t6/$alien @@ -3309,6 +3360,10 @@ decimals = 0 peggy_denom = factory/inj1wd3xjvya2tdvh3zscdu8sewdys4zv0ruqld06f/abcefz decimals = 0 +[abv] +peggy_denom = factory/inj1wrg096y69grgf8yg6tqxnh0tdwx4x47rsj8rs3/abv +decimals = 18 + [adfadf] peggy_denom = factory/inj1r2nhkxpuk8kna036rud4kqz2357dptqs2gcjll/fadsf decimals = 6 @@ -4429,6 +4484,10 @@ decimals = 0 peggy_denom = factory/inj17sjuxy3nsh3ytrckknztzl6gg0mmuyphmxp3pg/position decimals = 0 +[factory/inj17tuwsezzee35e2yacte7rnfl529pneuxt6q4h9/auction.0] +peggy_denom = factory/inj17tuwsezzee35e2yacte7rnfl529pneuxt6q4h9/auction.0 +decimals = 0 + [factory/inj17u7w6x9upf8j4f98x4ftptkkwj8lumah0zhvy7/position] peggy_denom = factory/inj17u7w6x9upf8j4f98x4ftptkkwj8lumah0zhvy7/position decimals = 0 @@ -7573,6 +7632,10 @@ decimals = 0 peggy_denom = factory/inj1dlfft5qkmmyhgvsrhalg5ncrxtsek4uggtsqcm/position decimals = 0 +[factory/inj1dlyumvy7rfmq534hnh8et2ft58zpm0d84vjkfd/auction.0] +peggy_denom = factory/inj1dlyumvy7rfmq534hnh8et2ft58zpm0d84vjkfd/auction.0 +decimals = 0 + [factory/inj1dmfq9frxl7p3ym4w6lu8jj73ev7l35r5fwp2mu/position] peggy_denom = factory/inj1dmfq9frxl7p3ym4w6lu8jj73ev7l35r5fwp2mu/position decimals = 0 @@ -8077,6 +8140,10 @@ decimals = 0 peggy_denom = factory/inj1gg3uw8u22f3223m7yryu8k9tgvgkwfr6pj630h/position decimals = 0 +[factory/inj1ghtvh6juxudspvrh9tdlz0p4d4u6k8xxd6jkgx/auction.0] +peggy_denom = factory/inj1ghtvh6juxudspvrh9tdlz0p4d4u6k8xxd6jkgx/auction.0 +decimals = 0 + [factory/inj1ghuveva04c5ev9q20w4swt362n4sh49wya0fxl/position] peggy_denom = factory/inj1ghuveva04c5ev9q20w4swt362n4sh49wya0fxl/position decimals = 0 @@ -8141,6 +8208,10 @@ decimals = 0 peggy_denom = factory/inj1gy6kakuaatzkd4hw6urjx05t73pr6mc9zngqn5/position decimals = 0 +[factory/inj1h8ahs9d035fxp0gmyyq84rqjy4kgjydk3wvhdn/position] +peggy_denom = factory/inj1h8ahs9d035fxp0gmyyq84rqjy4kgjydk3wvhdn/position +decimals = 0 + [factory/inj1hadwz2rpsccxdpyv04nmqevtrss35lenmz8dzw/position] peggy_denom = factory/inj1hadwz2rpsccxdpyv04nmqevtrss35lenmz8dzw/position decimals = 0 @@ -8305,6 +8376,10 @@ decimals = 0 peggy_denom = factory/inj1heah64yarps3u85jyml4ter53h4lyrag4shfzp/inj1z0whhrxkg38lcrj7lv2eetsfhwztpfntfkc636 decimals = 0 +[factory/inj1hg36aw2pm9988jxd0pu8lnfwg533vcs5weakx6/position] +peggy_denom = factory/inj1hg36aw2pm9988jxd0pu8lnfwg533vcs5weakx6/position +decimals = 0 + [factory/inj1hh4ngvv0l7tlt5gcpwwauzuthrmzwyutxkxq0x/position] peggy_denom = factory/inj1hh4ngvv0l7tlt5gcpwwauzuthrmzwyutxkxq0x/position decimals = 0 @@ -8605,6 +8680,10 @@ decimals = 0 peggy_denom = factory/inj1kagzsefacxy5p765q8upkjj9fwkjczlhe580ar/position decimals = 0 +[factory/inj1kar690fes35rm0dx5zcjwt5pjhtvcf572w3ffe/auction.0] +peggy_denom = factory/inj1kar690fes35rm0dx5zcjwt5pjhtvcf572w3ffe/auction.0 +decimals = 0 + [factory/inj1kchw3uh70ujhmvrkx7phjayaswnpf7sde67uzw/position] peggy_denom = factory/inj1kchw3uh70ujhmvrkx7phjayaswnpf7sde67uzw/position decimals = 0 @@ -9437,6 +9516,10 @@ decimals = 0 peggy_denom = factory/inj1q4z7jjxdk7whwmkt39x7krc49xaqapuswhjhkn/COCK decimals = 0 +[factory/inj1q68d59g49swmem50c9p4dzywc9claeymts3sns/auction.0] +peggy_denom = factory/inj1q68d59g49swmem50c9p4dzywc9claeymts3sns/auction.0 +decimals = 0 + [factory/inj1qau4ax7mlyxam8f4xrz02tqydus4h8n5pt0zue/position] peggy_denom = factory/inj1qau4ax7mlyxam8f4xrz02tqydus4h8n5pt0zue/position decimals = 0 @@ -9801,6 +9884,10 @@ decimals = 6 peggy_denom = factory/inj1sq839juq97296mumt84hzfjpc2nf7h2u774g59/Vader decimals = 0 +[factory/inj1sr2xzh29g9uf5qdsd4ksdr62z2dfhu2nz4a9gp/auction.0] +peggy_denom = factory/inj1sr2xzh29g9uf5qdsd4ksdr62z2dfhu2nz4a9gp/auction.0 +decimals = 0 + [factory/inj1sr4jakhjmur7hc3j9n3tv72uu9dwv9756sgpwq/position] peggy_denom = factory/inj1sr4jakhjmur7hc3j9n3tv72uu9dwv9756sgpwq/position decimals = 0 @@ -9989,6 +10076,14 @@ decimals = 0 peggy_denom = factory/inj1ss7rm7yde55dyddg7532dmdjy3gzvrjthxmqtd/1721737329InjUsdt28d1.2C decimals = 0 +[factory/inj1ss7rm7yde55dyddg7532dmdjy3gzvrjthxmqtd/1722499668InjUsdt28d1.2C] +peggy_denom = factory/inj1ss7rm7yde55dyddg7532dmdjy3gzvrjthxmqtd/1722499668InjUsdt28d1.2C +decimals = 0 + +[factory/inj1ss7rm7yde55dyddg7532dmdjy3gzvrjthxmqtd/1722499668InjUsdt2d0.95P] +peggy_denom = factory/inj1ss7rm7yde55dyddg7532dmdjy3gzvrjthxmqtd/1722499668InjUsdt2d0.95P +decimals = 0 + [factory/inj1ssysf4uhqa4nndser07cvgfzlqtvsg3l0y8vvn/position] peggy_denom = factory/inj1ssysf4uhqa4nndser07cvgfzlqtvsg3l0y8vvn/position decimals = 0 @@ -12305,6 +12400,10 @@ decimals = 6 peggy_denom = factory/inj1yuaz9qw8m75w7gxn3j7p9ph9pcsp8krpune70q/testtttt decimals = 6 +[testy] +peggy_denom = factory/inj1d86g3stvh4jhypce4wfdl6gwa0zr9emq4445c5/test +decimals = 6 + [tet] peggy_denom = factory/inj1e5yundzcqr77d8nkswgxn9qyrhmr4hdk6qq9pl/tet decimals = 6 diff --git a/pyinjective/proto/amino/amino_pb2.py b/pyinjective/proto/amino/amino_pb2.py index e124d7da..f4d639e0 100644 --- a/pyinjective/proto/amino/amino_pb2.py +++ b/pyinjective/proto/amino/amino_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: amino/amino.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'amino/amino.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/capability/v1/capability_pb2.py b/pyinjective/proto/capability/v1/capability_pb2.py index 3c2927f9..bcb76116 100644 --- a/pyinjective/proto/capability/v1/capability_pb2.py +++ b/pyinjective/proto/capability/v1/capability_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: capability/v1/capability.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'capability/v1/capability.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/capability/v1/genesis_pb2.py b/pyinjective/proto/capability/v1/genesis_pb2.py index adc56dc6..5504049e 100644 --- a/pyinjective/proto/capability/v1/genesis_pb2.py +++ b/pyinjective/proto/capability/v1/genesis_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: capability/v1/genesis.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'capability/v1/genesis.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/app/runtime/v1alpha1/module_pb2.py b/pyinjective/proto/cosmos/app/runtime/v1alpha1/module_pb2.py index 46cffe9d..cd567873 100644 --- a/pyinjective/proto/cosmos/app/runtime/v1alpha1/module_pb2.py +++ b/pyinjective/proto/cosmos/app/runtime/v1alpha1/module_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/app/runtime/v1alpha1/module.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/app/runtime/v1alpha1/module.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/app/v1alpha1/config_pb2.py b/pyinjective/proto/cosmos/app/v1alpha1/config_pb2.py index 8d6f0828..a86065bd 100644 --- a/pyinjective/proto/cosmos/app/v1alpha1/config_pb2.py +++ b/pyinjective/proto/cosmos/app/v1alpha1/config_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/app/v1alpha1/config.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/app/v1alpha1/config.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/app/v1alpha1/module_pb2.py b/pyinjective/proto/cosmos/app/v1alpha1/module_pb2.py index 549e0008..05c39db9 100644 --- a/pyinjective/proto/cosmos/app/v1alpha1/module_pb2.py +++ b/pyinjective/proto/cosmos/app/v1alpha1/module_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/app/v1alpha1/module.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/app/v1alpha1/module.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/app/v1alpha1/query_pb2.py b/pyinjective/proto/cosmos/app/v1alpha1/query_pb2.py index 340fb9f1..448ab7c7 100644 --- a/pyinjective/proto/cosmos/app/v1alpha1/query_pb2.py +++ b/pyinjective/proto/cosmos/app/v1alpha1/query_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/app/v1alpha1/query.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/app/v1alpha1/query.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/auth/module/v1/module_pb2.py b/pyinjective/proto/cosmos/auth/module/v1/module_pb2.py index 9137cf8b..15c313d5 100644 --- a/pyinjective/proto/cosmos/auth/module/v1/module_pb2.py +++ b/pyinjective/proto/cosmos/auth/module/v1/module_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/auth/module/v1/module.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/auth/module/v1/module.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/auth/v1beta1/auth_pb2.py b/pyinjective/proto/cosmos/auth/v1beta1/auth_pb2.py index 53e6c826..ab1b8bbc 100644 --- a/pyinjective/proto/cosmos/auth/v1beta1/auth_pb2.py +++ b/pyinjective/proto/cosmos/auth/v1beta1/auth_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/auth/v1beta1/auth.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/auth/v1beta1/auth.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/auth/v1beta1/genesis_pb2.py b/pyinjective/proto/cosmos/auth/v1beta1/genesis_pb2.py index b7d53db9..4d0f61bb 100644 --- a/pyinjective/proto/cosmos/auth/v1beta1/genesis_pb2.py +++ b/pyinjective/proto/cosmos/auth/v1beta1/genesis_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/auth/v1beta1/genesis.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/auth/v1beta1/genesis.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/auth/v1beta1/query_pb2.py b/pyinjective/proto/cosmos/auth/v1beta1/query_pb2.py index 4c424a32..940dd371 100644 --- a/pyinjective/proto/cosmos/auth/v1beta1/query_pb2.py +++ b/pyinjective/proto/cosmos/auth/v1beta1/query_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/auth/v1beta1/query.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/auth/v1beta1/query.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/auth/v1beta1/tx_pb2.py b/pyinjective/proto/cosmos/auth/v1beta1/tx_pb2.py index ff98f9d2..c6c92e0a 100644 --- a/pyinjective/proto/cosmos/auth/v1beta1/tx_pb2.py +++ b/pyinjective/proto/cosmos/auth/v1beta1/tx_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/auth/v1beta1/tx.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/auth/v1beta1/tx.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/authz/module/v1/module_pb2.py b/pyinjective/proto/cosmos/authz/module/v1/module_pb2.py index 0580bc6f..8a638957 100644 --- a/pyinjective/proto/cosmos/authz/module/v1/module_pb2.py +++ b/pyinjective/proto/cosmos/authz/module/v1/module_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/authz/module/v1/module.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/authz/module/v1/module.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/authz/v1beta1/authz_pb2.py b/pyinjective/proto/cosmos/authz/v1beta1/authz_pb2.py index 17d9d0c1..8a24339f 100644 --- a/pyinjective/proto/cosmos/authz/v1beta1/authz_pb2.py +++ b/pyinjective/proto/cosmos/authz/v1beta1/authz_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/authz/v1beta1/authz.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/authz/v1beta1/authz.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/authz/v1beta1/event_pb2.py b/pyinjective/proto/cosmos/authz/v1beta1/event_pb2.py index 1de7da43..7034cc15 100644 --- a/pyinjective/proto/cosmos/authz/v1beta1/event_pb2.py +++ b/pyinjective/proto/cosmos/authz/v1beta1/event_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/authz/v1beta1/event.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/authz/v1beta1/event.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/authz/v1beta1/genesis_pb2.py b/pyinjective/proto/cosmos/authz/v1beta1/genesis_pb2.py index fb90ceaa..e287132a 100644 --- a/pyinjective/proto/cosmos/authz/v1beta1/genesis_pb2.py +++ b/pyinjective/proto/cosmos/authz/v1beta1/genesis_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/authz/v1beta1/genesis.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/authz/v1beta1/genesis.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/authz/v1beta1/query_pb2.py b/pyinjective/proto/cosmos/authz/v1beta1/query_pb2.py index 4dea0553..50596cb8 100644 --- a/pyinjective/proto/cosmos/authz/v1beta1/query_pb2.py +++ b/pyinjective/proto/cosmos/authz/v1beta1/query_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/authz/v1beta1/query.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/authz/v1beta1/query.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/authz/v1beta1/tx_pb2.py b/pyinjective/proto/cosmos/authz/v1beta1/tx_pb2.py index 82e56e9b..b9448c92 100644 --- a/pyinjective/proto/cosmos/authz/v1beta1/tx_pb2.py +++ b/pyinjective/proto/cosmos/authz/v1beta1/tx_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/authz/v1beta1/tx.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/authz/v1beta1/tx.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/autocli/v1/options_pb2.py b/pyinjective/proto/cosmos/autocli/v1/options_pb2.py index a0073817..aa7f36c8 100644 --- a/pyinjective/proto/cosmos/autocli/v1/options_pb2.py +++ b/pyinjective/proto/cosmos/autocli/v1/options_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/autocli/v1/options.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/autocli/v1/options.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/autocli/v1/query_pb2.py b/pyinjective/proto/cosmos/autocli/v1/query_pb2.py index 55328c6c..f0971981 100644 --- a/pyinjective/proto/cosmos/autocli/v1/query_pb2.py +++ b/pyinjective/proto/cosmos/autocli/v1/query_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/autocli/v1/query.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/autocli/v1/query.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/bank/module/v1/module_pb2.py b/pyinjective/proto/cosmos/bank/module/v1/module_pb2.py index 46a5bc04..5032c046 100644 --- a/pyinjective/proto/cosmos/bank/module/v1/module_pb2.py +++ b/pyinjective/proto/cosmos/bank/module/v1/module_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/bank/module/v1/module.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/bank/module/v1/module.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/bank/v1beta1/authz_pb2.py b/pyinjective/proto/cosmos/bank/v1beta1/authz_pb2.py index 170105bb..328fbbfb 100644 --- a/pyinjective/proto/cosmos/bank/v1beta1/authz_pb2.py +++ b/pyinjective/proto/cosmos/bank/v1beta1/authz_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/bank/v1beta1/authz.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/bank/v1beta1/authz.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/bank/v1beta1/bank_pb2.py b/pyinjective/proto/cosmos/bank/v1beta1/bank_pb2.py index 6848ee8e..2e124c79 100644 --- a/pyinjective/proto/cosmos/bank/v1beta1/bank_pb2.py +++ b/pyinjective/proto/cosmos/bank/v1beta1/bank_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/bank/v1beta1/bank.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/bank/v1beta1/bank.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/bank/v1beta1/events_pb2.py b/pyinjective/proto/cosmos/bank/v1beta1/events_pb2.py index 60554edb..3dfa3a71 100644 --- a/pyinjective/proto/cosmos/bank/v1beta1/events_pb2.py +++ b/pyinjective/proto/cosmos/bank/v1beta1/events_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/bank/v1beta1/events.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/bank/v1beta1/events.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/bank/v1beta1/genesis_pb2.py b/pyinjective/proto/cosmos/bank/v1beta1/genesis_pb2.py index 1d5abb1a..9aae86fc 100644 --- a/pyinjective/proto/cosmos/bank/v1beta1/genesis_pb2.py +++ b/pyinjective/proto/cosmos/bank/v1beta1/genesis_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/bank/v1beta1/genesis.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/bank/v1beta1/genesis.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/bank/v1beta1/query_pb2.py b/pyinjective/proto/cosmos/bank/v1beta1/query_pb2.py index 5c680753..774ce07c 100644 --- a/pyinjective/proto/cosmos/bank/v1beta1/query_pb2.py +++ b/pyinjective/proto/cosmos/bank/v1beta1/query_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/bank/v1beta1/query.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/bank/v1beta1/query.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/bank/v1beta1/tx_pb2.py b/pyinjective/proto/cosmos/bank/v1beta1/tx_pb2.py index b9d6e8ac..eafe67c8 100644 --- a/pyinjective/proto/cosmos/bank/v1beta1/tx_pb2.py +++ b/pyinjective/proto/cosmos/bank/v1beta1/tx_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/bank/v1beta1/tx.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/bank/v1beta1/tx.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/base/abci/v1beta1/abci_pb2.py b/pyinjective/proto/cosmos/base/abci/v1beta1/abci_pb2.py index 962bd199..c1104257 100644 --- a/pyinjective/proto/cosmos/base/abci/v1beta1/abci_pb2.py +++ b/pyinjective/proto/cosmos/base/abci/v1beta1/abci_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/base/abci/v1beta1/abci.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/base/abci/v1beta1/abci.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/base/node/v1beta1/query_pb2.py b/pyinjective/proto/cosmos/base/node/v1beta1/query_pb2.py index 21b31f2e..4c3aa7b6 100644 --- a/pyinjective/proto/cosmos/base/node/v1beta1/query_pb2.py +++ b/pyinjective/proto/cosmos/base/node/v1beta1/query_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/base/node/v1beta1/query.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/base/node/v1beta1/query.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/base/query/v1beta1/pagination_pb2.py b/pyinjective/proto/cosmos/base/query/v1beta1/pagination_pb2.py index e6595278..82ad6736 100644 --- a/pyinjective/proto/cosmos/base/query/v1beta1/pagination_pb2.py +++ b/pyinjective/proto/cosmos/base/query/v1beta1/pagination_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/base/query/v1beta1/pagination.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/base/query/v1beta1/pagination.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/base/reflection/v1beta1/reflection_pb2.py b/pyinjective/proto/cosmos/base/reflection/v1beta1/reflection_pb2.py index 6561ecd3..4a29ceba 100644 --- a/pyinjective/proto/cosmos/base/reflection/v1beta1/reflection_pb2.py +++ b/pyinjective/proto/cosmos/base/reflection/v1beta1/reflection_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/base/reflection/v1beta1/reflection.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/base/reflection/v1beta1/reflection.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/base/reflection/v2alpha1/reflection_pb2.py b/pyinjective/proto/cosmos/base/reflection/v2alpha1/reflection_pb2.py index de74b429..9b23a168 100644 --- a/pyinjective/proto/cosmos/base/reflection/v2alpha1/reflection_pb2.py +++ b/pyinjective/proto/cosmos/base/reflection/v2alpha1/reflection_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/base/reflection/v2alpha1/reflection.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/base/reflection/v2alpha1/reflection.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/base/tendermint/v1beta1/query_pb2.py b/pyinjective/proto/cosmos/base/tendermint/v1beta1/query_pb2.py index 765377c1..17d870f8 100644 --- a/pyinjective/proto/cosmos/base/tendermint/v1beta1/query_pb2.py +++ b/pyinjective/proto/cosmos/base/tendermint/v1beta1/query_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/base/tendermint/v1beta1/query.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/base/tendermint/v1beta1/query.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/base/tendermint/v1beta1/types_pb2.py b/pyinjective/proto/cosmos/base/tendermint/v1beta1/types_pb2.py index b548ca73..ebfc1954 100644 --- a/pyinjective/proto/cosmos/base/tendermint/v1beta1/types_pb2.py +++ b/pyinjective/proto/cosmos/base/tendermint/v1beta1/types_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/base/tendermint/v1beta1/types.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/base/tendermint/v1beta1/types.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/base/v1beta1/coin_pb2.py b/pyinjective/proto/cosmos/base/v1beta1/coin_pb2.py index ccd5f885..59353c09 100644 --- a/pyinjective/proto/cosmos/base/v1beta1/coin_pb2.py +++ b/pyinjective/proto/cosmos/base/v1beta1/coin_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/base/v1beta1/coin.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/base/v1beta1/coin.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/circuit/module/v1/module_pb2.py b/pyinjective/proto/cosmos/circuit/module/v1/module_pb2.py index 9baafd7c..da033cd6 100644 --- a/pyinjective/proto/cosmos/circuit/module/v1/module_pb2.py +++ b/pyinjective/proto/cosmos/circuit/module/v1/module_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/circuit/module/v1/module.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/circuit/module/v1/module.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/circuit/v1/query_pb2.py b/pyinjective/proto/cosmos/circuit/v1/query_pb2.py index dc14d131..a4b77b8b 100644 --- a/pyinjective/proto/cosmos/circuit/v1/query_pb2.py +++ b/pyinjective/proto/cosmos/circuit/v1/query_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/circuit/v1/query.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/circuit/v1/query.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/circuit/v1/tx_pb2.py b/pyinjective/proto/cosmos/circuit/v1/tx_pb2.py index d7a146b3..931bde0e 100644 --- a/pyinjective/proto/cosmos/circuit/v1/tx_pb2.py +++ b/pyinjective/proto/cosmos/circuit/v1/tx_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/circuit/v1/tx.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/circuit/v1/tx.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/circuit/v1/types_pb2.py b/pyinjective/proto/cosmos/circuit/v1/types_pb2.py index 49649103..53f8703e 100644 --- a/pyinjective/proto/cosmos/circuit/v1/types_pb2.py +++ b/pyinjective/proto/cosmos/circuit/v1/types_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/circuit/v1/types.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/circuit/v1/types.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/consensus/module/v1/module_pb2.py b/pyinjective/proto/cosmos/consensus/module/v1/module_pb2.py index ff0a26c0..723e1ebf 100644 --- a/pyinjective/proto/cosmos/consensus/module/v1/module_pb2.py +++ b/pyinjective/proto/cosmos/consensus/module/v1/module_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/consensus/module/v1/module.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/consensus/module/v1/module.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/consensus/v1/query_pb2.py b/pyinjective/proto/cosmos/consensus/v1/query_pb2.py index f02228b1..32464859 100644 --- a/pyinjective/proto/cosmos/consensus/v1/query_pb2.py +++ b/pyinjective/proto/cosmos/consensus/v1/query_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/consensus/v1/query.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/consensus/v1/query.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/consensus/v1/tx_pb2.py b/pyinjective/proto/cosmos/consensus/v1/tx_pb2.py index e7a4b451..584d4c38 100644 --- a/pyinjective/proto/cosmos/consensus/v1/tx_pb2.py +++ b/pyinjective/proto/cosmos/consensus/v1/tx_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/consensus/v1/tx.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/consensus/v1/tx.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/crisis/module/v1/module_pb2.py b/pyinjective/proto/cosmos/crisis/module/v1/module_pb2.py index 0bb8e588..2f26f291 100644 --- a/pyinjective/proto/cosmos/crisis/module/v1/module_pb2.py +++ b/pyinjective/proto/cosmos/crisis/module/v1/module_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/crisis/module/v1/module.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/crisis/module/v1/module.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/crisis/v1beta1/genesis_pb2.py b/pyinjective/proto/cosmos/crisis/v1beta1/genesis_pb2.py index 86e8cc40..e2a3ae8e 100644 --- a/pyinjective/proto/cosmos/crisis/v1beta1/genesis_pb2.py +++ b/pyinjective/proto/cosmos/crisis/v1beta1/genesis_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/crisis/v1beta1/genesis.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/crisis/v1beta1/genesis.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/crisis/v1beta1/tx_pb2.py b/pyinjective/proto/cosmos/crisis/v1beta1/tx_pb2.py index 945df17b..534ad09d 100644 --- a/pyinjective/proto/cosmos/crisis/v1beta1/tx_pb2.py +++ b/pyinjective/proto/cosmos/crisis/v1beta1/tx_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/crisis/v1beta1/tx.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/crisis/v1beta1/tx.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/crypto/ed25519/keys_pb2.py b/pyinjective/proto/cosmos/crypto/ed25519/keys_pb2.py index 7e0c1e81..2855e3ba 100644 --- a/pyinjective/proto/cosmos/crypto/ed25519/keys_pb2.py +++ b/pyinjective/proto/cosmos/crypto/ed25519/keys_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/crypto/ed25519/keys.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/crypto/ed25519/keys.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/crypto/hd/v1/hd_pb2.py b/pyinjective/proto/cosmos/crypto/hd/v1/hd_pb2.py index 57b80472..f6d78427 100644 --- a/pyinjective/proto/cosmos/crypto/hd/v1/hd_pb2.py +++ b/pyinjective/proto/cosmos/crypto/hd/v1/hd_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/crypto/hd/v1/hd.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/crypto/hd/v1/hd.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/crypto/keyring/v1/record_pb2.py b/pyinjective/proto/cosmos/crypto/keyring/v1/record_pb2.py index c1b8a4a2..3d06ef24 100644 --- a/pyinjective/proto/cosmos/crypto/keyring/v1/record_pb2.py +++ b/pyinjective/proto/cosmos/crypto/keyring/v1/record_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/crypto/keyring/v1/record.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/crypto/keyring/v1/record.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/crypto/multisig/keys_pb2.py b/pyinjective/proto/cosmos/crypto/multisig/keys_pb2.py index 3d93637a..05f8c8e4 100644 --- a/pyinjective/proto/cosmos/crypto/multisig/keys_pb2.py +++ b/pyinjective/proto/cosmos/crypto/multisig/keys_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/crypto/multisig/keys.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/crypto/multisig/keys.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/crypto/multisig/v1beta1/multisig_pb2.py b/pyinjective/proto/cosmos/crypto/multisig/v1beta1/multisig_pb2.py index 2963ad03..510661bf 100644 --- a/pyinjective/proto/cosmos/crypto/multisig/v1beta1/multisig_pb2.py +++ b/pyinjective/proto/cosmos/crypto/multisig/v1beta1/multisig_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/crypto/multisig/v1beta1/multisig.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/crypto/multisig/v1beta1/multisig.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/crypto/secp256k1/keys_pb2.py b/pyinjective/proto/cosmos/crypto/secp256k1/keys_pb2.py index 06e7d31b..2b2cf7e6 100644 --- a/pyinjective/proto/cosmos/crypto/secp256k1/keys_pb2.py +++ b/pyinjective/proto/cosmos/crypto/secp256k1/keys_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/crypto/secp256k1/keys.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/crypto/secp256k1/keys.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/crypto/secp256r1/keys_pb2.py b/pyinjective/proto/cosmos/crypto/secp256r1/keys_pb2.py index 6cecc3ba..b708fc50 100644 --- a/pyinjective/proto/cosmos/crypto/secp256r1/keys_pb2.py +++ b/pyinjective/proto/cosmos/crypto/secp256r1/keys_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/crypto/secp256r1/keys.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/crypto/secp256r1/keys.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/distribution/module/v1/module_pb2.py b/pyinjective/proto/cosmos/distribution/module/v1/module_pb2.py index c02c6ad2..98e66656 100644 --- a/pyinjective/proto/cosmos/distribution/module/v1/module_pb2.py +++ b/pyinjective/proto/cosmos/distribution/module/v1/module_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/distribution/module/v1/module.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/distribution/module/v1/module.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/distribution/v1beta1/distribution_pb2.py b/pyinjective/proto/cosmos/distribution/v1beta1/distribution_pb2.py index 9d3d74fe..db366a29 100644 --- a/pyinjective/proto/cosmos/distribution/v1beta1/distribution_pb2.py +++ b/pyinjective/proto/cosmos/distribution/v1beta1/distribution_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/distribution/v1beta1/distribution.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/distribution/v1beta1/distribution.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/distribution/v1beta1/genesis_pb2.py b/pyinjective/proto/cosmos/distribution/v1beta1/genesis_pb2.py index 844e3704..49aaa896 100644 --- a/pyinjective/proto/cosmos/distribution/v1beta1/genesis_pb2.py +++ b/pyinjective/proto/cosmos/distribution/v1beta1/genesis_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/distribution/v1beta1/genesis.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/distribution/v1beta1/genesis.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/distribution/v1beta1/query_pb2.py b/pyinjective/proto/cosmos/distribution/v1beta1/query_pb2.py index d56a1f10..0344a05c 100644 --- a/pyinjective/proto/cosmos/distribution/v1beta1/query_pb2.py +++ b/pyinjective/proto/cosmos/distribution/v1beta1/query_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/distribution/v1beta1/query.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/distribution/v1beta1/query.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/distribution/v1beta1/tx_pb2.py b/pyinjective/proto/cosmos/distribution/v1beta1/tx_pb2.py index fd76fc3e..fc830db8 100644 --- a/pyinjective/proto/cosmos/distribution/v1beta1/tx_pb2.py +++ b/pyinjective/proto/cosmos/distribution/v1beta1/tx_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/distribution/v1beta1/tx.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/distribution/v1beta1/tx.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/evidence/module/v1/module_pb2.py b/pyinjective/proto/cosmos/evidence/module/v1/module_pb2.py index dce0bbfc..8cf95a40 100644 --- a/pyinjective/proto/cosmos/evidence/module/v1/module_pb2.py +++ b/pyinjective/proto/cosmos/evidence/module/v1/module_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/evidence/module/v1/module.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/evidence/module/v1/module.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/evidence/v1beta1/evidence_pb2.py b/pyinjective/proto/cosmos/evidence/v1beta1/evidence_pb2.py index 7e4f86fa..69b76c34 100644 --- a/pyinjective/proto/cosmos/evidence/v1beta1/evidence_pb2.py +++ b/pyinjective/proto/cosmos/evidence/v1beta1/evidence_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/evidence/v1beta1/evidence.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/evidence/v1beta1/evidence.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/evidence/v1beta1/genesis_pb2.py b/pyinjective/proto/cosmos/evidence/v1beta1/genesis_pb2.py index 5fd0a437..8e90b025 100644 --- a/pyinjective/proto/cosmos/evidence/v1beta1/genesis_pb2.py +++ b/pyinjective/proto/cosmos/evidence/v1beta1/genesis_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/evidence/v1beta1/genesis.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/evidence/v1beta1/genesis.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/evidence/v1beta1/query_pb2.py b/pyinjective/proto/cosmos/evidence/v1beta1/query_pb2.py index 6e6d9714..1879ef40 100644 --- a/pyinjective/proto/cosmos/evidence/v1beta1/query_pb2.py +++ b/pyinjective/proto/cosmos/evidence/v1beta1/query_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/evidence/v1beta1/query.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/evidence/v1beta1/query.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/evidence/v1beta1/tx_pb2.py b/pyinjective/proto/cosmos/evidence/v1beta1/tx_pb2.py index 1f547b3b..41809b0f 100644 --- a/pyinjective/proto/cosmos/evidence/v1beta1/tx_pb2.py +++ b/pyinjective/proto/cosmos/evidence/v1beta1/tx_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/evidence/v1beta1/tx.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/evidence/v1beta1/tx.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/feegrant/module/v1/module_pb2.py b/pyinjective/proto/cosmos/feegrant/module/v1/module_pb2.py index d765557d..ea894938 100644 --- a/pyinjective/proto/cosmos/feegrant/module/v1/module_pb2.py +++ b/pyinjective/proto/cosmos/feegrant/module/v1/module_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/feegrant/module/v1/module.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/feegrant/module/v1/module.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/feegrant/v1beta1/feegrant_pb2.py b/pyinjective/proto/cosmos/feegrant/v1beta1/feegrant_pb2.py index 6cf5161d..66be48b5 100644 --- a/pyinjective/proto/cosmos/feegrant/v1beta1/feegrant_pb2.py +++ b/pyinjective/proto/cosmos/feegrant/v1beta1/feegrant_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/feegrant/v1beta1/feegrant.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/feegrant/v1beta1/feegrant.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/feegrant/v1beta1/genesis_pb2.py b/pyinjective/proto/cosmos/feegrant/v1beta1/genesis_pb2.py index 2f43b1fc..29d7e2ff 100644 --- a/pyinjective/proto/cosmos/feegrant/v1beta1/genesis_pb2.py +++ b/pyinjective/proto/cosmos/feegrant/v1beta1/genesis_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/feegrant/v1beta1/genesis.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/feegrant/v1beta1/genesis.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/feegrant/v1beta1/query_pb2.py b/pyinjective/proto/cosmos/feegrant/v1beta1/query_pb2.py index f2866373..c81182e8 100644 --- a/pyinjective/proto/cosmos/feegrant/v1beta1/query_pb2.py +++ b/pyinjective/proto/cosmos/feegrant/v1beta1/query_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/feegrant/v1beta1/query.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/feegrant/v1beta1/query.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/feegrant/v1beta1/tx_pb2.py b/pyinjective/proto/cosmos/feegrant/v1beta1/tx_pb2.py index 9696a2a3..d6d08cb8 100644 --- a/pyinjective/proto/cosmos/feegrant/v1beta1/tx_pb2.py +++ b/pyinjective/proto/cosmos/feegrant/v1beta1/tx_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/feegrant/v1beta1/tx.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/feegrant/v1beta1/tx.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/genutil/module/v1/module_pb2.py b/pyinjective/proto/cosmos/genutil/module/v1/module_pb2.py index 91b72910..35d5b23f 100644 --- a/pyinjective/proto/cosmos/genutil/module/v1/module_pb2.py +++ b/pyinjective/proto/cosmos/genutil/module/v1/module_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/genutil/module/v1/module.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/genutil/module/v1/module.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/genutil/v1beta1/genesis_pb2.py b/pyinjective/proto/cosmos/genutil/v1beta1/genesis_pb2.py index fe6ce1f3..c9247007 100644 --- a/pyinjective/proto/cosmos/genutil/v1beta1/genesis_pb2.py +++ b/pyinjective/proto/cosmos/genutil/v1beta1/genesis_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/genutil/v1beta1/genesis.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/genutil/v1beta1/genesis.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/gov/module/v1/module_pb2.py b/pyinjective/proto/cosmos/gov/module/v1/module_pb2.py index a55065e7..114e7982 100644 --- a/pyinjective/proto/cosmos/gov/module/v1/module_pb2.py +++ b/pyinjective/proto/cosmos/gov/module/v1/module_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/gov/module/v1/module.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/gov/module/v1/module.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/gov/v1/genesis_pb2.py b/pyinjective/proto/cosmos/gov/v1/genesis_pb2.py index 407cadf9..72ccf1db 100644 --- a/pyinjective/proto/cosmos/gov/v1/genesis_pb2.py +++ b/pyinjective/proto/cosmos/gov/v1/genesis_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/gov/v1/genesis.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/gov/v1/genesis.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/gov/v1/gov_pb2.py b/pyinjective/proto/cosmos/gov/v1/gov_pb2.py index 1e7b0a24..fe84d91f 100644 --- a/pyinjective/proto/cosmos/gov/v1/gov_pb2.py +++ b/pyinjective/proto/cosmos/gov/v1/gov_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/gov/v1/gov.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/gov/v1/gov.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/gov/v1/query_pb2.py b/pyinjective/proto/cosmos/gov/v1/query_pb2.py index 691957f7..81093e6d 100644 --- a/pyinjective/proto/cosmos/gov/v1/query_pb2.py +++ b/pyinjective/proto/cosmos/gov/v1/query_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/gov/v1/query.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/gov/v1/query.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/gov/v1/tx_pb2.py b/pyinjective/proto/cosmos/gov/v1/tx_pb2.py index be5fce64..c2858275 100644 --- a/pyinjective/proto/cosmos/gov/v1/tx_pb2.py +++ b/pyinjective/proto/cosmos/gov/v1/tx_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/gov/v1/tx.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/gov/v1/tx.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/gov/v1beta1/genesis_pb2.py b/pyinjective/proto/cosmos/gov/v1beta1/genesis_pb2.py index 9107f741..6b20275e 100644 --- a/pyinjective/proto/cosmos/gov/v1beta1/genesis_pb2.py +++ b/pyinjective/proto/cosmos/gov/v1beta1/genesis_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/gov/v1beta1/genesis.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/gov/v1beta1/genesis.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/gov/v1beta1/gov_pb2.py b/pyinjective/proto/cosmos/gov/v1beta1/gov_pb2.py index a1fadb6e..100d1d14 100644 --- a/pyinjective/proto/cosmos/gov/v1beta1/gov_pb2.py +++ b/pyinjective/proto/cosmos/gov/v1beta1/gov_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/gov/v1beta1/gov.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/gov/v1beta1/gov.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/gov/v1beta1/query_pb2.py b/pyinjective/proto/cosmos/gov/v1beta1/query_pb2.py index 5c3bcdea..9435f6f4 100644 --- a/pyinjective/proto/cosmos/gov/v1beta1/query_pb2.py +++ b/pyinjective/proto/cosmos/gov/v1beta1/query_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/gov/v1beta1/query.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/gov/v1beta1/query.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/gov/v1beta1/tx_pb2.py b/pyinjective/proto/cosmos/gov/v1beta1/tx_pb2.py index 8d394d98..9845faf0 100644 --- a/pyinjective/proto/cosmos/gov/v1beta1/tx_pb2.py +++ b/pyinjective/proto/cosmos/gov/v1beta1/tx_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/gov/v1beta1/tx.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/gov/v1beta1/tx.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/group/module/v1/module_pb2.py b/pyinjective/proto/cosmos/group/module/v1/module_pb2.py index fc34209d..163f5e86 100644 --- a/pyinjective/proto/cosmos/group/module/v1/module_pb2.py +++ b/pyinjective/proto/cosmos/group/module/v1/module_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/group/module/v1/module.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/group/module/v1/module.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/group/v1/events_pb2.py b/pyinjective/proto/cosmos/group/v1/events_pb2.py index bd6945b0..3d5129a1 100644 --- a/pyinjective/proto/cosmos/group/v1/events_pb2.py +++ b/pyinjective/proto/cosmos/group/v1/events_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/group/v1/events.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/group/v1/events.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/group/v1/genesis_pb2.py b/pyinjective/proto/cosmos/group/v1/genesis_pb2.py index d688d4cc..1ebf5b48 100644 --- a/pyinjective/proto/cosmos/group/v1/genesis_pb2.py +++ b/pyinjective/proto/cosmos/group/v1/genesis_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/group/v1/genesis.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/group/v1/genesis.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/group/v1/query_pb2.py b/pyinjective/proto/cosmos/group/v1/query_pb2.py index 92ab48cc..a18e3520 100644 --- a/pyinjective/proto/cosmos/group/v1/query_pb2.py +++ b/pyinjective/proto/cosmos/group/v1/query_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/group/v1/query.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/group/v1/query.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/group/v1/tx_pb2.py b/pyinjective/proto/cosmos/group/v1/tx_pb2.py index 1dae82e7..be5d27d0 100644 --- a/pyinjective/proto/cosmos/group/v1/tx_pb2.py +++ b/pyinjective/proto/cosmos/group/v1/tx_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/group/v1/tx.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/group/v1/tx.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/group/v1/types_pb2.py b/pyinjective/proto/cosmos/group/v1/types_pb2.py index dbad3d6b..103112b7 100644 --- a/pyinjective/proto/cosmos/group/v1/types_pb2.py +++ b/pyinjective/proto/cosmos/group/v1/types_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/group/v1/types.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/group/v1/types.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/ics23/v1/proofs_pb2.py b/pyinjective/proto/cosmos/ics23/v1/proofs_pb2.py index 0b1d7ea9..10a01ca2 100644 --- a/pyinjective/proto/cosmos/ics23/v1/proofs_pb2.py +++ b/pyinjective/proto/cosmos/ics23/v1/proofs_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/ics23/v1/proofs.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/ics23/v1/proofs.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/mint/module/v1/module_pb2.py b/pyinjective/proto/cosmos/mint/module/v1/module_pb2.py index b3176972..0931d8c3 100644 --- a/pyinjective/proto/cosmos/mint/module/v1/module_pb2.py +++ b/pyinjective/proto/cosmos/mint/module/v1/module_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/mint/module/v1/module.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/mint/module/v1/module.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/mint/v1beta1/genesis_pb2.py b/pyinjective/proto/cosmos/mint/v1beta1/genesis_pb2.py index c020f7eb..09f9289d 100644 --- a/pyinjective/proto/cosmos/mint/v1beta1/genesis_pb2.py +++ b/pyinjective/proto/cosmos/mint/v1beta1/genesis_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/mint/v1beta1/genesis.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/mint/v1beta1/genesis.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/mint/v1beta1/mint_pb2.py b/pyinjective/proto/cosmos/mint/v1beta1/mint_pb2.py index c6054776..0c564108 100644 --- a/pyinjective/proto/cosmos/mint/v1beta1/mint_pb2.py +++ b/pyinjective/proto/cosmos/mint/v1beta1/mint_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/mint/v1beta1/mint.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/mint/v1beta1/mint.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/mint/v1beta1/query_pb2.py b/pyinjective/proto/cosmos/mint/v1beta1/query_pb2.py index d2b1ce39..973b10f1 100644 --- a/pyinjective/proto/cosmos/mint/v1beta1/query_pb2.py +++ b/pyinjective/proto/cosmos/mint/v1beta1/query_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/mint/v1beta1/query.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/mint/v1beta1/query.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/mint/v1beta1/tx_pb2.py b/pyinjective/proto/cosmos/mint/v1beta1/tx_pb2.py index 45a3937c..63e46787 100644 --- a/pyinjective/proto/cosmos/mint/v1beta1/tx_pb2.py +++ b/pyinjective/proto/cosmos/mint/v1beta1/tx_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/mint/v1beta1/tx.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/mint/v1beta1/tx.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/msg/textual/v1/textual_pb2.py b/pyinjective/proto/cosmos/msg/textual/v1/textual_pb2.py index f49c3b0e..e85806b8 100644 --- a/pyinjective/proto/cosmos/msg/textual/v1/textual_pb2.py +++ b/pyinjective/proto/cosmos/msg/textual/v1/textual_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/msg/textual/v1/textual.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/msg/textual/v1/textual.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/msg/v1/msg_pb2.py b/pyinjective/proto/cosmos/msg/v1/msg_pb2.py index dd518c15..0964b24b 100644 --- a/pyinjective/proto/cosmos/msg/v1/msg_pb2.py +++ b/pyinjective/proto/cosmos/msg/v1/msg_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/msg/v1/msg.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/msg/v1/msg.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/nft/module/v1/module_pb2.py b/pyinjective/proto/cosmos/nft/module/v1/module_pb2.py index 4c40db0f..79a1d5ec 100644 --- a/pyinjective/proto/cosmos/nft/module/v1/module_pb2.py +++ b/pyinjective/proto/cosmos/nft/module/v1/module_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/nft/module/v1/module.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/nft/module/v1/module.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/nft/v1beta1/event_pb2.py b/pyinjective/proto/cosmos/nft/v1beta1/event_pb2.py index 9af5816f..b714d392 100644 --- a/pyinjective/proto/cosmos/nft/v1beta1/event_pb2.py +++ b/pyinjective/proto/cosmos/nft/v1beta1/event_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/nft/v1beta1/event.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/nft/v1beta1/event.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/nft/v1beta1/genesis_pb2.py b/pyinjective/proto/cosmos/nft/v1beta1/genesis_pb2.py index 1c599164..437eefb6 100644 --- a/pyinjective/proto/cosmos/nft/v1beta1/genesis_pb2.py +++ b/pyinjective/proto/cosmos/nft/v1beta1/genesis_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/nft/v1beta1/genesis.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/nft/v1beta1/genesis.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/nft/v1beta1/nft_pb2.py b/pyinjective/proto/cosmos/nft/v1beta1/nft_pb2.py index 697464e4..6eab1d6b 100644 --- a/pyinjective/proto/cosmos/nft/v1beta1/nft_pb2.py +++ b/pyinjective/proto/cosmos/nft/v1beta1/nft_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/nft/v1beta1/nft.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/nft/v1beta1/nft.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/nft/v1beta1/query_pb2.py b/pyinjective/proto/cosmos/nft/v1beta1/query_pb2.py index e9a1374a..d9559994 100644 --- a/pyinjective/proto/cosmos/nft/v1beta1/query_pb2.py +++ b/pyinjective/proto/cosmos/nft/v1beta1/query_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/nft/v1beta1/query.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/nft/v1beta1/query.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/nft/v1beta1/tx_pb2.py b/pyinjective/proto/cosmos/nft/v1beta1/tx_pb2.py index ca2833b1..d1cfee9b 100644 --- a/pyinjective/proto/cosmos/nft/v1beta1/tx_pb2.py +++ b/pyinjective/proto/cosmos/nft/v1beta1/tx_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/nft/v1beta1/tx.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/nft/v1beta1/tx.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/orm/module/v1alpha1/module_pb2.py b/pyinjective/proto/cosmos/orm/module/v1alpha1/module_pb2.py index 01fa977c..54f1b29a 100644 --- a/pyinjective/proto/cosmos/orm/module/v1alpha1/module_pb2.py +++ b/pyinjective/proto/cosmos/orm/module/v1alpha1/module_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/orm/module/v1alpha1/module.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/orm/module/v1alpha1/module.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/orm/query/v1alpha1/query_pb2.py b/pyinjective/proto/cosmos/orm/query/v1alpha1/query_pb2.py index 0ffda7ce..7765a8a1 100644 --- a/pyinjective/proto/cosmos/orm/query/v1alpha1/query_pb2.py +++ b/pyinjective/proto/cosmos/orm/query/v1alpha1/query_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/orm/query/v1alpha1/query.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/orm/query/v1alpha1/query.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/orm/v1/orm_pb2.py b/pyinjective/proto/cosmos/orm/v1/orm_pb2.py index b285b131..cae563a1 100644 --- a/pyinjective/proto/cosmos/orm/v1/orm_pb2.py +++ b/pyinjective/proto/cosmos/orm/v1/orm_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/orm/v1/orm.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/orm/v1/orm.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/orm/v1alpha1/schema_pb2.py b/pyinjective/proto/cosmos/orm/v1alpha1/schema_pb2.py index 06498708..4f6e6666 100644 --- a/pyinjective/proto/cosmos/orm/v1alpha1/schema_pb2.py +++ b/pyinjective/proto/cosmos/orm/v1alpha1/schema_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/orm/v1alpha1/schema.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/orm/v1alpha1/schema.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/params/module/v1/module_pb2.py b/pyinjective/proto/cosmos/params/module/v1/module_pb2.py index c3f25450..19e51257 100644 --- a/pyinjective/proto/cosmos/params/module/v1/module_pb2.py +++ b/pyinjective/proto/cosmos/params/module/v1/module_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/params/module/v1/module.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/params/module/v1/module.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/params/v1beta1/params_pb2.py b/pyinjective/proto/cosmos/params/v1beta1/params_pb2.py index 77a10b2b..b53d4ca7 100644 --- a/pyinjective/proto/cosmos/params/v1beta1/params_pb2.py +++ b/pyinjective/proto/cosmos/params/v1beta1/params_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/params/v1beta1/params.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/params/v1beta1/params.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/params/v1beta1/query_pb2.py b/pyinjective/proto/cosmos/params/v1beta1/query_pb2.py index be62e574..27bdcffa 100644 --- a/pyinjective/proto/cosmos/params/v1beta1/query_pb2.py +++ b/pyinjective/proto/cosmos/params/v1beta1/query_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/params/v1beta1/query.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/params/v1beta1/query.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/query/v1/query_pb2.py b/pyinjective/proto/cosmos/query/v1/query_pb2.py index 052f2e56..1911653d 100644 --- a/pyinjective/proto/cosmos/query/v1/query_pb2.py +++ b/pyinjective/proto/cosmos/query/v1/query_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/query/v1/query.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/query/v1/query.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/reflection/v1/reflection_pb2.py b/pyinjective/proto/cosmos/reflection/v1/reflection_pb2.py index 541cddee..9608c2f9 100644 --- a/pyinjective/proto/cosmos/reflection/v1/reflection_pb2.py +++ b/pyinjective/proto/cosmos/reflection/v1/reflection_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/reflection/v1/reflection.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/reflection/v1/reflection.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/slashing/module/v1/module_pb2.py b/pyinjective/proto/cosmos/slashing/module/v1/module_pb2.py index f9850969..3e5352da 100644 --- a/pyinjective/proto/cosmos/slashing/module/v1/module_pb2.py +++ b/pyinjective/proto/cosmos/slashing/module/v1/module_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/slashing/module/v1/module.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/slashing/module/v1/module.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/slashing/v1beta1/genesis_pb2.py b/pyinjective/proto/cosmos/slashing/v1beta1/genesis_pb2.py index b5a19521..76a206a8 100644 --- a/pyinjective/proto/cosmos/slashing/v1beta1/genesis_pb2.py +++ b/pyinjective/proto/cosmos/slashing/v1beta1/genesis_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/slashing/v1beta1/genesis.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/slashing/v1beta1/genesis.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/slashing/v1beta1/query_pb2.py b/pyinjective/proto/cosmos/slashing/v1beta1/query_pb2.py index adf14d29..6ada740b 100644 --- a/pyinjective/proto/cosmos/slashing/v1beta1/query_pb2.py +++ b/pyinjective/proto/cosmos/slashing/v1beta1/query_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/slashing/v1beta1/query.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/slashing/v1beta1/query.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/slashing/v1beta1/slashing_pb2.py b/pyinjective/proto/cosmos/slashing/v1beta1/slashing_pb2.py index e6461b91..112ce1a6 100644 --- a/pyinjective/proto/cosmos/slashing/v1beta1/slashing_pb2.py +++ b/pyinjective/proto/cosmos/slashing/v1beta1/slashing_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/slashing/v1beta1/slashing.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/slashing/v1beta1/slashing.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/slashing/v1beta1/tx_pb2.py b/pyinjective/proto/cosmos/slashing/v1beta1/tx_pb2.py index 8e978f9e..2e825073 100644 --- a/pyinjective/proto/cosmos/slashing/v1beta1/tx_pb2.py +++ b/pyinjective/proto/cosmos/slashing/v1beta1/tx_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/slashing/v1beta1/tx.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/slashing/v1beta1/tx.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/staking/module/v1/module_pb2.py b/pyinjective/proto/cosmos/staking/module/v1/module_pb2.py index a7b48ea8..6abb3c62 100644 --- a/pyinjective/proto/cosmos/staking/module/v1/module_pb2.py +++ b/pyinjective/proto/cosmos/staking/module/v1/module_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/staking/module/v1/module.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/staking/module/v1/module.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/staking/v1beta1/authz_pb2.py b/pyinjective/proto/cosmos/staking/v1beta1/authz_pb2.py index 6f048828..444597ee 100644 --- a/pyinjective/proto/cosmos/staking/v1beta1/authz_pb2.py +++ b/pyinjective/proto/cosmos/staking/v1beta1/authz_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/staking/v1beta1/authz.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/staking/v1beta1/authz.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/staking/v1beta1/genesis_pb2.py b/pyinjective/proto/cosmos/staking/v1beta1/genesis_pb2.py index bae112d1..4186446e 100644 --- a/pyinjective/proto/cosmos/staking/v1beta1/genesis_pb2.py +++ b/pyinjective/proto/cosmos/staking/v1beta1/genesis_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/staking/v1beta1/genesis.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/staking/v1beta1/genesis.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/staking/v1beta1/query_pb2.py b/pyinjective/proto/cosmos/staking/v1beta1/query_pb2.py index 1184e931..971db76b 100644 --- a/pyinjective/proto/cosmos/staking/v1beta1/query_pb2.py +++ b/pyinjective/proto/cosmos/staking/v1beta1/query_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/staking/v1beta1/query.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/staking/v1beta1/query.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/staking/v1beta1/staking_pb2.py b/pyinjective/proto/cosmos/staking/v1beta1/staking_pb2.py index fe6561ff..0183a45a 100644 --- a/pyinjective/proto/cosmos/staking/v1beta1/staking_pb2.py +++ b/pyinjective/proto/cosmos/staking/v1beta1/staking_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/staking/v1beta1/staking.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/staking/v1beta1/staking.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/staking/v1beta1/tx_pb2.py b/pyinjective/proto/cosmos/staking/v1beta1/tx_pb2.py index 37cb3f9b..ecf2a7aa 100644 --- a/pyinjective/proto/cosmos/staking/v1beta1/tx_pb2.py +++ b/pyinjective/proto/cosmos/staking/v1beta1/tx_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/staking/v1beta1/tx.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/staking/v1beta1/tx.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/store/internal/kv/v1beta1/kv_pb2.py b/pyinjective/proto/cosmos/store/internal/kv/v1beta1/kv_pb2.py index a37e7a1d..38edb1c1 100644 --- a/pyinjective/proto/cosmos/store/internal/kv/v1beta1/kv_pb2.py +++ b/pyinjective/proto/cosmos/store/internal/kv/v1beta1/kv_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/store/internal/kv/v1beta1/kv.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/store/internal/kv/v1beta1/kv.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/store/snapshots/v1/snapshot_pb2.py b/pyinjective/proto/cosmos/store/snapshots/v1/snapshot_pb2.py index fde48a20..82ec32df 100644 --- a/pyinjective/proto/cosmos/store/snapshots/v1/snapshot_pb2.py +++ b/pyinjective/proto/cosmos/store/snapshots/v1/snapshot_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/store/snapshots/v1/snapshot.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/store/snapshots/v1/snapshot.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/store/streaming/abci/grpc_pb2.py b/pyinjective/proto/cosmos/store/streaming/abci/grpc_pb2.py index 95cb15a0..c1d7ec5c 100644 --- a/pyinjective/proto/cosmos/store/streaming/abci/grpc_pb2.py +++ b/pyinjective/proto/cosmos/store/streaming/abci/grpc_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/store/streaming/abci/grpc.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/store/streaming/abci/grpc.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/store/v1beta1/commit_info_pb2.py b/pyinjective/proto/cosmos/store/v1beta1/commit_info_pb2.py index 24c85955..d6612ccd 100644 --- a/pyinjective/proto/cosmos/store/v1beta1/commit_info_pb2.py +++ b/pyinjective/proto/cosmos/store/v1beta1/commit_info_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/store/v1beta1/commit_info.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/store/v1beta1/commit_info.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/store/v1beta1/listening_pb2.py b/pyinjective/proto/cosmos/store/v1beta1/listening_pb2.py index fc9bd848..2234f381 100644 --- a/pyinjective/proto/cosmos/store/v1beta1/listening_pb2.py +++ b/pyinjective/proto/cosmos/store/v1beta1/listening_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/store/v1beta1/listening.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/store/v1beta1/listening.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/tx/config/v1/config_pb2.py b/pyinjective/proto/cosmos/tx/config/v1/config_pb2.py index b5a0ac3f..c255f1db 100644 --- a/pyinjective/proto/cosmos/tx/config/v1/config_pb2.py +++ b/pyinjective/proto/cosmos/tx/config/v1/config_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/tx/config/v1/config.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/tx/config/v1/config.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/tx/signing/v1beta1/signing_pb2.py b/pyinjective/proto/cosmos/tx/signing/v1beta1/signing_pb2.py index f4597c3b..cf473ea7 100644 --- a/pyinjective/proto/cosmos/tx/signing/v1beta1/signing_pb2.py +++ b/pyinjective/proto/cosmos/tx/signing/v1beta1/signing_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/tx/signing/v1beta1/signing.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/tx/signing/v1beta1/signing.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/tx/v1beta1/service_pb2.py b/pyinjective/proto/cosmos/tx/v1beta1/service_pb2.py index 56cf0f23..e2512d9e 100644 --- a/pyinjective/proto/cosmos/tx/v1beta1/service_pb2.py +++ b/pyinjective/proto/cosmos/tx/v1beta1/service_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/tx/v1beta1/service.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/tx/v1beta1/service.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/tx/v1beta1/tx_pb2.py b/pyinjective/proto/cosmos/tx/v1beta1/tx_pb2.py index b039573a..00abd56e 100644 --- a/pyinjective/proto/cosmos/tx/v1beta1/tx_pb2.py +++ b/pyinjective/proto/cosmos/tx/v1beta1/tx_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/tx/v1beta1/tx.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/tx/v1beta1/tx.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/upgrade/module/v1/module_pb2.py b/pyinjective/proto/cosmos/upgrade/module/v1/module_pb2.py index 5f8ad033..5104a264 100644 --- a/pyinjective/proto/cosmos/upgrade/module/v1/module_pb2.py +++ b/pyinjective/proto/cosmos/upgrade/module/v1/module_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/upgrade/module/v1/module.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/upgrade/module/v1/module.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/upgrade/v1beta1/query_pb2.py b/pyinjective/proto/cosmos/upgrade/v1beta1/query_pb2.py index 3dcf27be..bd1e46f1 100644 --- a/pyinjective/proto/cosmos/upgrade/v1beta1/query_pb2.py +++ b/pyinjective/proto/cosmos/upgrade/v1beta1/query_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/upgrade/v1beta1/query.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/upgrade/v1beta1/query.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/upgrade/v1beta1/tx_pb2.py b/pyinjective/proto/cosmos/upgrade/v1beta1/tx_pb2.py index e19a86c2..7fdd9d6e 100644 --- a/pyinjective/proto/cosmos/upgrade/v1beta1/tx_pb2.py +++ b/pyinjective/proto/cosmos/upgrade/v1beta1/tx_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/upgrade/v1beta1/tx.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/upgrade/v1beta1/tx.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/upgrade/v1beta1/upgrade_pb2.py b/pyinjective/proto/cosmos/upgrade/v1beta1/upgrade_pb2.py index 2a97d175..1b9f1627 100644 --- a/pyinjective/proto/cosmos/upgrade/v1beta1/upgrade_pb2.py +++ b/pyinjective/proto/cosmos/upgrade/v1beta1/upgrade_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/upgrade/v1beta1/upgrade.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/upgrade/v1beta1/upgrade.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/vesting/module/v1/module_pb2.py b/pyinjective/proto/cosmos/vesting/module/v1/module_pb2.py index 61c60ff3..d1a70ea6 100644 --- a/pyinjective/proto/cosmos/vesting/module/v1/module_pb2.py +++ b/pyinjective/proto/cosmos/vesting/module/v1/module_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/vesting/module/v1/module.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/vesting/module/v1/module.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/vesting/v1beta1/tx_pb2.py b/pyinjective/proto/cosmos/vesting/v1beta1/tx_pb2.py index 34b222fe..0aa7baa2 100644 --- a/pyinjective/proto/cosmos/vesting/v1beta1/tx_pb2.py +++ b/pyinjective/proto/cosmos/vesting/v1beta1/tx_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/vesting/v1beta1/tx.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/vesting/v1beta1/tx.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos/vesting/v1beta1/vesting_pb2.py b/pyinjective/proto/cosmos/vesting/v1beta1/vesting_pb2.py index f268eea0..4972c18c 100644 --- a/pyinjective/proto/cosmos/vesting/v1beta1/vesting_pb2.py +++ b/pyinjective/proto/cosmos/vesting/v1beta1/vesting_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos/vesting/v1beta1/vesting.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos/vesting/v1beta1/vesting.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmos_proto/cosmos_pb2.py b/pyinjective/proto/cosmos_proto/cosmos_pb2.py index ea79b1c3..e9f88646 100644 --- a/pyinjective/proto/cosmos_proto/cosmos_pb2.py +++ b/pyinjective/proto/cosmos_proto/cosmos_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmos_proto/cosmos.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmos_proto/cosmos.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmwasm/wasm/v1/authz_pb2.py b/pyinjective/proto/cosmwasm/wasm/v1/authz_pb2.py index dc1f9779..2f350a08 100644 --- a/pyinjective/proto/cosmwasm/wasm/v1/authz_pb2.py +++ b/pyinjective/proto/cosmwasm/wasm/v1/authz_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmwasm/wasm/v1/authz.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmwasm/wasm/v1/authz.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmwasm/wasm/v1/genesis_pb2.py b/pyinjective/proto/cosmwasm/wasm/v1/genesis_pb2.py index a1dd4068..535084e8 100644 --- a/pyinjective/proto/cosmwasm/wasm/v1/genesis_pb2.py +++ b/pyinjective/proto/cosmwasm/wasm/v1/genesis_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmwasm/wasm/v1/genesis.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmwasm/wasm/v1/genesis.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmwasm/wasm/v1/ibc_pb2.py b/pyinjective/proto/cosmwasm/wasm/v1/ibc_pb2.py index 29b30528..a0548a24 100644 --- a/pyinjective/proto/cosmwasm/wasm/v1/ibc_pb2.py +++ b/pyinjective/proto/cosmwasm/wasm/v1/ibc_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmwasm/wasm/v1/ibc.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmwasm/wasm/v1/ibc.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmwasm/wasm/v1/proposal_legacy_pb2.py b/pyinjective/proto/cosmwasm/wasm/v1/proposal_legacy_pb2.py index b17192d8..7a284f58 100644 --- a/pyinjective/proto/cosmwasm/wasm/v1/proposal_legacy_pb2.py +++ b/pyinjective/proto/cosmwasm/wasm/v1/proposal_legacy_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmwasm/wasm/v1/proposal_legacy.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmwasm/wasm/v1/proposal_legacy.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmwasm/wasm/v1/query_pb2.py b/pyinjective/proto/cosmwasm/wasm/v1/query_pb2.py index 66e6e7f1..6defc46e 100644 --- a/pyinjective/proto/cosmwasm/wasm/v1/query_pb2.py +++ b/pyinjective/proto/cosmwasm/wasm/v1/query_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmwasm/wasm/v1/query.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmwasm/wasm/v1/query.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmwasm/wasm/v1/tx_pb2.py b/pyinjective/proto/cosmwasm/wasm/v1/tx_pb2.py index 819f5e81..96079c0b 100644 --- a/pyinjective/proto/cosmwasm/wasm/v1/tx_pb2.py +++ b/pyinjective/proto/cosmwasm/wasm/v1/tx_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmwasm/wasm/v1/tx.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmwasm/wasm/v1/tx.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/cosmwasm/wasm/v1/types_pb2.py b/pyinjective/proto/cosmwasm/wasm/v1/types_pb2.py index e8785138..4c48f996 100644 --- a/pyinjective/proto/cosmwasm/wasm/v1/types_pb2.py +++ b/pyinjective/proto/cosmwasm/wasm/v1/types_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: cosmwasm/wasm/v1/types.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'cosmwasm/wasm/v1/types.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/exchange/event_provider_api_pb2.py b/pyinjective/proto/exchange/event_provider_api_pb2.py index d1af1fff..5e0afd0b 100644 --- a/pyinjective/proto/exchange/event_provider_api_pb2.py +++ b/pyinjective/proto/exchange/event_provider_api_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: exchange/event_provider_api.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'exchange/event_provider_api.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/exchange/health_pb2.py b/pyinjective/proto/exchange/health_pb2.py index e0a403b4..3f98a12d 100644 --- a/pyinjective/proto/exchange/health_pb2.py +++ b/pyinjective/proto/exchange/health_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: exchange/health.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'exchange/health.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/exchange/injective_accounts_rpc_pb2.py b/pyinjective/proto/exchange/injective_accounts_rpc_pb2.py index a3426046..c393e7af 100644 --- a/pyinjective/proto/exchange/injective_accounts_rpc_pb2.py +++ b/pyinjective/proto/exchange/injective_accounts_rpc_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: exchange/injective_accounts_rpc.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'exchange/injective_accounts_rpc.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/exchange/injective_archiver_rpc_pb2.py b/pyinjective/proto/exchange/injective_archiver_rpc_pb2.py index 1b9ca3c8..73c52b43 100644 --- a/pyinjective/proto/exchange/injective_archiver_rpc_pb2.py +++ b/pyinjective/proto/exchange/injective_archiver_rpc_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: exchange/injective_archiver_rpc.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'exchange/injective_archiver_rpc.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/exchange/injective_auction_rpc_pb2.py b/pyinjective/proto/exchange/injective_auction_rpc_pb2.py index cea8324c..0ec3dabb 100644 --- a/pyinjective/proto/exchange/injective_auction_rpc_pb2.py +++ b/pyinjective/proto/exchange/injective_auction_rpc_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: exchange/injective_auction_rpc.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'exchange/injective_auction_rpc.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/exchange/injective_campaign_rpc_pb2.py b/pyinjective/proto/exchange/injective_campaign_rpc_pb2.py index 96750677..05bc4062 100644 --- a/pyinjective/proto/exchange/injective_campaign_rpc_pb2.py +++ b/pyinjective/proto/exchange/injective_campaign_rpc_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: exchange/injective_campaign_rpc.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'exchange/injective_campaign_rpc.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/exchange/injective_derivative_exchange_rpc_pb2.py b/pyinjective/proto/exchange/injective_derivative_exchange_rpc_pb2.py index a4dac3b7..9d4e58e9 100644 --- a/pyinjective/proto/exchange/injective_derivative_exchange_rpc_pb2.py +++ b/pyinjective/proto/exchange/injective_derivative_exchange_rpc_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: exchange/injective_derivative_exchange_rpc.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'exchange/injective_derivative_exchange_rpc.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/exchange/injective_exchange_rpc_pb2.py b/pyinjective/proto/exchange/injective_exchange_rpc_pb2.py index e4cdef0b..8d515faa 100644 --- a/pyinjective/proto/exchange/injective_exchange_rpc_pb2.py +++ b/pyinjective/proto/exchange/injective_exchange_rpc_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: exchange/injective_exchange_rpc.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'exchange/injective_exchange_rpc.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/exchange/injective_explorer_rpc_pb2.py b/pyinjective/proto/exchange/injective_explorer_rpc_pb2.py index 85d828f5..7066998d 100644 --- a/pyinjective/proto/exchange/injective_explorer_rpc_pb2.py +++ b/pyinjective/proto/exchange/injective_explorer_rpc_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: exchange/injective_explorer_rpc.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'exchange/injective_explorer_rpc.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/exchange/injective_insurance_rpc_pb2.py b/pyinjective/proto/exchange/injective_insurance_rpc_pb2.py index d4b9a9c9..4aace939 100644 --- a/pyinjective/proto/exchange/injective_insurance_rpc_pb2.py +++ b/pyinjective/proto/exchange/injective_insurance_rpc_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: exchange/injective_insurance_rpc.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'exchange/injective_insurance_rpc.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/exchange/injective_meta_rpc_pb2.py b/pyinjective/proto/exchange/injective_meta_rpc_pb2.py index b44a0888..18ef3908 100644 --- a/pyinjective/proto/exchange/injective_meta_rpc_pb2.py +++ b/pyinjective/proto/exchange/injective_meta_rpc_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: exchange/injective_meta_rpc.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'exchange/injective_meta_rpc.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/exchange/injective_oracle_rpc_pb2.py b/pyinjective/proto/exchange/injective_oracle_rpc_pb2.py index 60a3dbdb..1858d94e 100644 --- a/pyinjective/proto/exchange/injective_oracle_rpc_pb2.py +++ b/pyinjective/proto/exchange/injective_oracle_rpc_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: exchange/injective_oracle_rpc.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'exchange/injective_oracle_rpc.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/exchange/injective_portfolio_rpc_pb2.py b/pyinjective/proto/exchange/injective_portfolio_rpc_pb2.py index 210ef870..37dcb8f9 100644 --- a/pyinjective/proto/exchange/injective_portfolio_rpc_pb2.py +++ b/pyinjective/proto/exchange/injective_portfolio_rpc_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: exchange/injective_portfolio_rpc.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'exchange/injective_portfolio_rpc.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/exchange/injective_spot_exchange_rpc_pb2.py b/pyinjective/proto/exchange/injective_spot_exchange_rpc_pb2.py index 1179eb15..69db7106 100644 --- a/pyinjective/proto/exchange/injective_spot_exchange_rpc_pb2.py +++ b/pyinjective/proto/exchange/injective_spot_exchange_rpc_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: exchange/injective_spot_exchange_rpc.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'exchange/injective_spot_exchange_rpc.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/exchange/injective_trading_rpc_pb2.py b/pyinjective/proto/exchange/injective_trading_rpc_pb2.py index 14c01ce6..833b12d5 100644 --- a/pyinjective/proto/exchange/injective_trading_rpc_pb2.py +++ b/pyinjective/proto/exchange/injective_trading_rpc_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: exchange/injective_trading_rpc.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'exchange/injective_trading_rpc.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/gogoproto/gogo_pb2.py b/pyinjective/proto/gogoproto/gogo_pb2.py index daec3358..7ba03436 100644 --- a/pyinjective/proto/gogoproto/gogo_pb2.py +++ b/pyinjective/proto/gogoproto/gogo_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: gogoproto/gogo.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'gogoproto/gogo.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/google/api/annotations_pb2.py b/pyinjective/proto/google/api/annotations_pb2.py index 99063bdc..e746af34 100644 --- a/pyinjective/proto/google/api/annotations_pb2.py +++ b/pyinjective/proto/google/api/annotations_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: google/api/annotations.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'google/api/annotations.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/google/api/client_pb2.py b/pyinjective/proto/google/api/client_pb2.py index a0968355..7e88ad65 100644 --- a/pyinjective/proto/google/api/client_pb2.py +++ b/pyinjective/proto/google/api/client_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: google/api/client.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'google/api/client.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/google/api/expr/v1alpha1/checked_pb2.py b/pyinjective/proto/google/api/expr/v1alpha1/checked_pb2.py index 89e8ef79..1aef2660 100644 --- a/pyinjective/proto/google/api/expr/v1alpha1/checked_pb2.py +++ b/pyinjective/proto/google/api/expr/v1alpha1/checked_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: google/api/expr/v1alpha1/checked.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'google/api/expr/v1alpha1/checked.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/google/api/expr/v1alpha1/eval_pb2.py b/pyinjective/proto/google/api/expr/v1alpha1/eval_pb2.py index 0e00d8e2..aac8f1d4 100644 --- a/pyinjective/proto/google/api/expr/v1alpha1/eval_pb2.py +++ b/pyinjective/proto/google/api/expr/v1alpha1/eval_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: google/api/expr/v1alpha1/eval.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'google/api/expr/v1alpha1/eval.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/google/api/expr/v1alpha1/explain_pb2.py b/pyinjective/proto/google/api/expr/v1alpha1/explain_pb2.py index 9dd92580..8bc899e7 100644 --- a/pyinjective/proto/google/api/expr/v1alpha1/explain_pb2.py +++ b/pyinjective/proto/google/api/expr/v1alpha1/explain_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: google/api/expr/v1alpha1/explain.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'google/api/expr/v1alpha1/explain.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() diff --git a/pyinjective/proto/google/api/expr/v1alpha1/syntax_pb2.py b/pyinjective/proto/google/api/expr/v1alpha1/syntax_pb2.py index 0a1809d3..7c0a2f0a 100644 --- a/pyinjective/proto/google/api/expr/v1alpha1/syntax_pb2.py +++ b/pyinjective/proto/google/api/expr/v1alpha1/syntax_pb2.py @@ -1,22 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! -# NO CHECKED-IN PROTOBUF GENCODE # source: google/api/expr/v1alpha1/syntax.proto -# Protobuf Python Version: 5.27.2 +# Protobuf Python Version: 5.26.1 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool -from google.protobuf import runtime_version as _runtime_version from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder -_runtime_version.ValidateProtobufRuntimeVersion( - _runtime_version.Domain.PUBLIC, - 5, - 27, - 2, - '', - 'google/api/expr/v1alpha1/syntax.proto' -) # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() @@ -27,7 +17,7 @@ from google.protobuf import timestamp_pb2 as google_dot_protobuf_dot_timestamp__pb2 -DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n%google/api/expr/v1alpha1/syntax.proto\x12\x18google.api.expr.v1alpha1\x1a\x1egoogle/protobuf/duration.proto\x1a\x1cgoogle/protobuf/struct.proto\x1a\x1fgoogle/protobuf/timestamp.proto\"\x87\x01\n\nParsedExpr\x12\x32\n\x04\x65xpr\x18\x02 \x01(\x0b\x32\x1e.google.api.expr.v1alpha1.ExprR\x04\x65xpr\x12\x45\n\x0bsource_info\x18\x03 \x01(\x0b\x32$.google.api.expr.v1alpha1.SourceInfoR\nsourceInfo\"\xae\r\n\x04\x45xpr\x12\x0e\n\x02id\x18\x02 \x01(\x03R\x02id\x12\x43\n\nconst_expr\x18\x03 \x01(\x0b\x32\".google.api.expr.v1alpha1.ConstantH\x00R\tconstExpr\x12\x45\n\nident_expr\x18\x04 \x01(\x0b\x32$.google.api.expr.v1alpha1.Expr.IdentH\x00R\tidentExpr\x12H\n\x0bselect_expr\x18\x05 \x01(\x0b\x32%.google.api.expr.v1alpha1.Expr.SelectH\x00R\nselectExpr\x12\x42\n\tcall_expr\x18\x06 \x01(\x0b\x32#.google.api.expr.v1alpha1.Expr.CallH\x00R\x08\x63\x61llExpr\x12H\n\tlist_expr\x18\x07 \x01(\x0b\x32).google.api.expr.v1alpha1.Expr.CreateListH\x00R\x08listExpr\x12N\n\x0bstruct_expr\x18\x08 \x01(\x0b\x32+.google.api.expr.v1alpha1.Expr.CreateStructH\x00R\nstructExpr\x12]\n\x12\x63omprehension_expr\x18\t \x01(\x0b\x32,.google.api.expr.v1alpha1.Expr.ComprehensionH\x00R\x11\x63omprehensionExpr\x1a\x1b\n\x05Ident\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x1au\n\x06Select\x12\x38\n\x07operand\x18\x01 \x01(\x0b\x32\x1e.google.api.expr.v1alpha1.ExprR\x07operand\x12\x14\n\x05\x66ield\x18\x02 \x01(\tR\x05\x66ield\x12\x1b\n\ttest_only\x18\x03 \x01(\x08R\x08testOnly\x1a\x8e\x01\n\x04\x43\x61ll\x12\x36\n\x06target\x18\x01 \x01(\x0b\x32\x1e.google.api.expr.v1alpha1.ExprR\x06target\x12\x1a\n\x08\x66unction\x18\x02 \x01(\tR\x08\x66unction\x12\x32\n\x04\x61rgs\x18\x03 \x03(\x0b\x32\x1e.google.api.expr.v1alpha1.ExprR\x04\x61rgs\x1as\n\nCreateList\x12:\n\x08\x65lements\x18\x01 \x03(\x0b\x32\x1e.google.api.expr.v1alpha1.ExprR\x08\x65lements\x12)\n\x10optional_indices\x18\x02 \x03(\x05R\x0foptionalIndices\x1a\xdb\x02\n\x0c\x43reateStruct\x12!\n\x0cmessage_name\x18\x01 \x01(\tR\x0bmessageName\x12K\n\x07\x65ntries\x18\x02 \x03(\x0b\x32\x31.google.api.expr.v1alpha1.Expr.CreateStruct.EntryR\x07\x65ntries\x1a\xda\x01\n\x05\x45ntry\x12\x0e\n\x02id\x18\x01 \x01(\x03R\x02id\x12\x1d\n\tfield_key\x18\x02 \x01(\tH\x00R\x08\x66ieldKey\x12\x39\n\x07map_key\x18\x03 \x01(\x0b\x32\x1e.google.api.expr.v1alpha1.ExprH\x00R\x06mapKey\x12\x34\n\x05value\x18\x04 \x01(\x0b\x32\x1e.google.api.expr.v1alpha1.ExprR\x05value\x12%\n\x0eoptional_entry\x18\x05 \x01(\x08R\roptionalEntryB\n\n\x08key_kind\x1a\xfd\x02\n\rComprehension\x12\x19\n\x08iter_var\x18\x01 \x01(\tR\x07iterVar\x12=\n\niter_range\x18\x02 \x01(\x0b\x32\x1e.google.api.expr.v1alpha1.ExprR\titerRange\x12\x19\n\x08\x61\x63\x63u_var\x18\x03 \x01(\tR\x07\x61\x63\x63uVar\x12;\n\taccu_init\x18\x04 \x01(\x0b\x32\x1e.google.api.expr.v1alpha1.ExprR\x08\x61\x63\x63uInit\x12\x45\n\x0eloop_condition\x18\x05 \x01(\x0b\x32\x1e.google.api.expr.v1alpha1.ExprR\rloopCondition\x12;\n\tloop_step\x18\x06 \x01(\x0b\x32\x1e.google.api.expr.v1alpha1.ExprR\x08loopStep\x12\x36\n\x06result\x18\x07 \x01(\x0b\x32\x1e.google.api.expr.v1alpha1.ExprR\x06resultB\x0b\n\texpr_kind\"\xc1\x03\n\x08\x43onstant\x12;\n\nnull_value\x18\x01 \x01(\x0e\x32\x1a.google.protobuf.NullValueH\x00R\tnullValue\x12\x1f\n\nbool_value\x18\x02 \x01(\x08H\x00R\tboolValue\x12!\n\x0bint64_value\x18\x03 \x01(\x03H\x00R\nint64Value\x12#\n\x0cuint64_value\x18\x04 \x01(\x04H\x00R\x0buint64Value\x12#\n\x0c\x64ouble_value\x18\x05 \x01(\x01H\x00R\x0b\x64oubleValue\x12#\n\x0cstring_value\x18\x06 \x01(\tH\x00R\x0bstringValue\x12!\n\x0b\x62ytes_value\x18\x07 \x01(\x0cH\x00R\nbytesValue\x12\x46\n\x0e\x64uration_value\x18\x08 \x01(\x0b\x32\x19.google.protobuf.DurationB\x02\x18\x01H\x00R\rdurationValue\x12I\n\x0ftimestamp_value\x18\t \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x02\x18\x01H\x00R\x0etimestampValueB\x0f\n\rconstant_kind\"\x8c\x07\n\nSourceInfo\x12%\n\x0esyntax_version\x18\x01 \x01(\tR\rsyntaxVersion\x12\x1a\n\x08location\x18\x02 \x01(\tR\x08location\x12!\n\x0cline_offsets\x18\x03 \x03(\x05R\x0blineOffsets\x12Q\n\tpositions\x18\x04 \x03(\x0b\x32\x33.google.api.expr.v1alpha1.SourceInfo.PositionsEntryR\tpositions\x12U\n\x0bmacro_calls\x18\x05 \x03(\x0b\x32\x34.google.api.expr.v1alpha1.SourceInfo.MacroCallsEntryR\nmacroCalls\x12N\n\nextensions\x18\x06 \x03(\x0b\x32..google.api.expr.v1alpha1.SourceInfo.ExtensionR\nextensions\x1a\x80\x03\n\tExtension\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x12i\n\x13\x61\x66\x66\x65\x63ted_components\x18\x02 \x03(\x0e\x32\x38.google.api.expr.v1alpha1.SourceInfo.Extension.ComponentR\x12\x61\x66\x66\x65\x63tedComponents\x12P\n\x07version\x18\x03 \x01(\x0b\x32\x36.google.api.expr.v1alpha1.SourceInfo.Extension.VersionR\x07version\x1a\x35\n\x07Version\x12\x14\n\x05major\x18\x01 \x01(\x03R\x05major\x12\x14\n\x05minor\x18\x02 \x01(\x03R\x05minor\"o\n\tComponent\x12\x19\n\x15\x43OMPONENT_UNSPECIFIED\x10\x00\x12\x14\n\x10\x43OMPONENT_PARSER\x10\x01\x12\x1a\n\x16\x43OMPONENT_TYPE_CHECKER\x10\x02\x12\x15\n\x11\x43OMPONENT_RUNTIME\x10\x03\x1a<\n\x0ePositionsEntry\x12\x10\n\x03key\x18\x01 \x01(\x03R\x03key\x12\x14\n\x05value\x18\x02 \x01(\x05R\x05value:\x02\x38\x01\x1a]\n\x0fMacroCallsEntry\x12\x10\n\x03key\x18\x01 \x01(\x03R\x03key\x12\x34\n\x05value\x18\x02 \x01(\x0b\x32\x1e.google.api.expr.v1alpha1.ExprR\x05value:\x02\x38\x01\"p\n\x0eSourcePosition\x12\x1a\n\x08location\x18\x01 \x01(\tR\x08location\x12\x16\n\x06offset\x18\x02 \x01(\x05R\x06offset\x12\x12\n\x04line\x18\x03 \x01(\x05R\x04line\x12\x16\n\x06\x63olumn\x18\x04 \x01(\x05R\x06\x63olumnB\xef\x01\n\x1c\x63om.google.api.expr.v1alpha1B\x0bSyntaxProtoP\x01Z str: f"{min_display_price_tick_size.normalize():f}", f"{market.min_quantity_tick_size.normalize():f}", f"{min_display_quantity_tick_size.normalize():f}", + f"{market.min_notional.normalize():f}", ) denom_output += config @@ -66,6 +68,7 @@ async def fetch_denom(network) -> str: f"{min_display_price_tick_size.normalize():f}", f"{market.min_quantity_tick_size.normalize():f}", f"{market.min_quantity_tick_size.normalize():f}", + f"{market.min_notional.normalize():f}", ) denom_output += config diff --git a/pyinjective/utils/metadata_validation.py b/pyinjective/utils/metadata_validation.py index 4c913315..772d84fb 100644 --- a/pyinjective/utils/metadata_validation.py +++ b/pyinjective/utils/metadata_validation.py @@ -33,6 +33,7 @@ def find_metadata_inconsistencies(network: Network) -> Tuple[List[Any]]: or market.quote_token.decimals != denom.quote or market.min_price_tick_size != Decimal(str(denom.min_price_tick_size)) or market.min_quantity_tick_size != Decimal(str(denom.min_quantity_tick_size)) + or market.min_notional != Decimal(str(denom.min_notional)) ): markets_with_diffs.append( [ @@ -42,6 +43,7 @@ def find_metadata_inconsistencies(network: Network) -> Tuple[List[Any]]: "quote_decimals": denom.quote, "min_quantity_tick_size": denom.min_quantity_tick_size, "min_price_tick_size": denom.min_price_tick_size, + "min_notional": denom.min_notional, }, { "newer-market": market.id, @@ -49,6 +51,7 @@ def find_metadata_inconsistencies(network: Network) -> Tuple[List[Any]]: "quote_decimals": market.quote_token.decimals, "min_quantity_tick_size": float(market.min_quantity_tick_size), "min_price_tick_size": float(market.min_price_tick_size), + "min_notional": float(market.min_notional), "ticker": market.ticker, }, ] @@ -59,6 +62,7 @@ def find_metadata_inconsistencies(network: Network) -> Tuple[List[Any]]: market.quote_token.decimals != denom.quote or market.min_price_tick_size != Decimal(str(denom.min_price_tick_size)) or market.min_quantity_tick_size != Decimal(str(denom.min_quantity_tick_size)) + or market.min_notional != Decimal(str(denom.min_notional)) ): markets_with_diffs.append( [ @@ -67,12 +71,14 @@ def find_metadata_inconsistencies(network: Network) -> Tuple[List[Any]]: "quote_decimals": denom.quote, "min_quantity_tick_size": denom.min_quantity_tick_size, "min_price_tick_size": denom.min_price_tick_size, + "min_notional": denom.min_notional, }, { "newer-market": market.id, "quote_decimals": market.quote_token.decimals, "min_quantity_tick_size": float(market.min_quantity_tick_size), "min_price_tick_size": float(market.min_price_tick_size), + "min_notional": float(market.min_notional), "ticker": market.ticker, }, ] @@ -83,6 +89,7 @@ def find_metadata_inconsistencies(network: Network) -> Tuple[List[Any]]: market.quote_token.decimals != denom.quote or market.min_price_tick_size != Decimal(str(denom.min_price_tick_size)) or market.min_quantity_tick_size != Decimal(str(denom.min_quantity_tick_size)) + or market.min_notional != Decimal(str(denom.min_notional)) ): markets_with_diffs.append( [ @@ -91,12 +98,14 @@ def find_metadata_inconsistencies(network: Network) -> Tuple[List[Any]]: "quote_decimals": denom.quote, "min_quantity_tick_size": denom.min_quantity_tick_size, "min_price_tick_size": denom.min_price_tick_size, + "min_notional": denom.min_notional, }, { "newer-market": market.id, "quote_decimals": market.quote_token.decimals, "min_quantity_tick_size": float(market.min_quantity_tick_size), "min_price_tick_size": float(market.min_price_tick_size), + "min_notional": float(market.min_notional), "ticker": market.ticker, }, ] diff --git a/pyproject.toml b/pyproject.toml index ee970d96..20eb0112 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "injective-py" -version = "1.6.0" +version = "1.6.1" description = "Injective Python SDK, with Exchange API Client" authors = ["Injective Labs "] license = "Apache-2.0" diff --git a/tests/core/test_gas_limit_estimator.py b/tests/core/test_gas_limit_estimator.py index b4a5657c..60054430 100644 --- a/tests/core/test_gas_limit_estimator.py +++ b/tests/core/test_gas_limit_estimator.py @@ -227,6 +227,7 @@ def test_estimation_for_batch_update_orders_to_create_binary_orders(self, usdt_t service_provider_fee=Decimal("0.4"), min_price_tick_size=Decimal("10000"), min_quantity_tick_size=Decimal("1"), + min_notional=Decimal(0), ) composer.binary_option_markets[market.id] = market orders = [ diff --git a/tests/core/test_market.py b/tests/core/test_market.py index 48c2f5e5..514e6256 100644 --- a/tests/core/test_market.py +++ b/tests/core/test_market.py @@ -33,10 +33,20 @@ def test_convert_price_to_chain_format(self, inj_usdt_spot_market: SpotMarket): quantized_value = ( expected_value // inj_usdt_spot_market.min_price_tick_size ) * inj_usdt_spot_market.min_price_tick_size - quantized_chain_format_value = quantized_value * Decimal("1e18") + quantized_chain_format_value = quantized_value * Decimal(f"1e{ADDITIONAL_CHAIN_FORMAT_DECIMALS}") assert quantized_chain_format_value == chain_value + def test_convert_notional_to_chain_format(self, inj_usdt_spot_market: SpotMarket): + original_notional = Decimal("123.456789") + + chain_value = inj_usdt_spot_market.notional_to_chain_format(human_readable_value=original_notional) + notional_decimals = inj_usdt_spot_market.quote_token.decimals + expected_value = original_notional * Decimal(f"1e{notional_decimals}") + expected_chain_format_value = expected_value * Decimal(f"1e{ADDITIONAL_CHAIN_FORMAT_DECIMALS}") + + assert expected_chain_format_value == chain_value + def test_convert_quantity_from_chain_format(self, inj_usdt_spot_market: SpotMarket): expected_quantity = Decimal("123.456") @@ -54,6 +64,15 @@ def test_convert_price_from_chain_format(self, inj_usdt_spot_market: SpotMarket) assert expected_price == human_readable_price + def test_convert_notional_from_chain_format(self, inj_usdt_spot_market: SpotMarket): + expected_notional = Decimal("123.456") + + notional_decimals = inj_usdt_spot_market.quote_token.decimals + chain_format_notional = expected_notional * Decimal(f"1e{notional_decimals}") + human_readable_notional = inj_usdt_spot_market.notional_from_chain_format(chain_value=chain_format_notional) + + assert expected_notional == human_readable_notional + def test_convert_quantity_from_extended_chain_format(self, inj_usdt_spot_market: SpotMarket): expected_quantity = Decimal("123.456") @@ -79,6 +98,19 @@ def test_convert_price_from_extended_chain_format(self, inj_usdt_spot_market: Sp assert expected_price == human_readable_price + def test_convert_notional_from_extended_chain_format(self, inj_usdt_spot_market: SpotMarket): + expected_notional = Decimal("123.456") + + notional_decimals = inj_usdt_spot_market.quote_token.decimals + chain_format_notional = ( + expected_notional * Decimal(f"1e{notional_decimals}") * Decimal(f"1e{ADDITIONAL_CHAIN_FORMAT_DECIMALS}") + ) + human_readable_notional = inj_usdt_spot_market.notional_from_extended_chain_format( + chain_value=chain_format_notional + ) + + assert expected_notional == human_readable_notional + class TestDerivativeMarket: def test_convert_quantity_to_chain_format(self, btc_usdt_perp_market: DerivativeMarket): @@ -88,7 +120,7 @@ def test_convert_quantity_to_chain_format(self, btc_usdt_perp_market: Derivative quantized_value = ( original_quantity // btc_usdt_perp_market.min_quantity_tick_size ) * btc_usdt_perp_market.min_quantity_tick_size - quantized_chain_format_value = quantized_value * Decimal("1e18") + quantized_chain_format_value = quantized_value * Decimal(f"1e{ADDITIONAL_CHAIN_FORMAT_DECIMALS}") assert quantized_chain_format_value == chain_value @@ -101,7 +133,7 @@ def test_convert_price_to_chain_format(self, btc_usdt_perp_market: DerivativeMar quantized_value = ( expected_value // btc_usdt_perp_market.min_price_tick_size ) * btc_usdt_perp_market.min_price_tick_size - quantized_chain_format_value = quantized_value * Decimal("1e18") + quantized_chain_format_value = quantized_value * Decimal(f"1e{ADDITIONAL_CHAIN_FORMAT_DECIMALS}") assert quantized_chain_format_value == chain_value @@ -114,10 +146,20 @@ def test_convert_margin_to_chain_format(self, btc_usdt_perp_market: DerivativeMa quantized_value = ( expected_value // btc_usdt_perp_market.min_quantity_tick_size ) * btc_usdt_perp_market.min_quantity_tick_size - quantized_chain_format_value = quantized_value * Decimal("1e18") + quantized_chain_format_value = quantized_value * Decimal(f"1e{ADDITIONAL_CHAIN_FORMAT_DECIMALS}") assert quantized_chain_format_value == chain_value + def test_convert_notional_to_chain_format(self, btc_usdt_perp_market: DerivativeMarket): + original_notional = Decimal("123.456789") + + chain_value = btc_usdt_perp_market.notional_to_chain_format(human_readable_value=original_notional) + notional_decimals = btc_usdt_perp_market.quote_token.decimals + expected_value = original_notional * Decimal(f"1e{notional_decimals}") + expected_chain_format_value = expected_value * Decimal(f"1e{ADDITIONAL_CHAIN_FORMAT_DECIMALS}") + + assert expected_chain_format_value == chain_value + def test_convert_quantity_from_chain_format(self, btc_usdt_perp_market: DerivativeMarket): expected_quantity = Decimal("123.456") @@ -144,6 +186,15 @@ def test_convert_margin_from_chain_format(self, btc_usdt_perp_market: Derivative assert expected_margin == human_readable_margin + def test_convert_notional_from_chain_format(self, btc_usdt_perp_market: DerivativeMarket): + expected_notional = Decimal("123.456") + + notional_decimals = btc_usdt_perp_market.quote_token.decimals + chain_format_notional = expected_notional * Decimal(f"1e{notional_decimals}") + human_readable_notional = btc_usdt_perp_market.notional_from_chain_format(chain_value=chain_format_notional) + + assert expected_notional == human_readable_notional + def test_convert_quantity_from_extended_chain_format(self, btc_usdt_perp_market: DerivativeMarket): expected_quantity = Decimal("123.456") @@ -176,6 +227,19 @@ def test_convert_margin_from_extended_chain_format(self, btc_usdt_perp_market: D assert expected_margin == human_readable_margin + def test_convert_notional_from_extended_chain_format(self, btc_usdt_perp_market: DerivativeMarket): + expected_notional = Decimal("123.456") + + notional_decimals = btc_usdt_perp_market.quote_token.decimals + chain_format_notional = ( + expected_notional * Decimal(f"1e{notional_decimals}") * Decimal(f"1e{ADDITIONAL_CHAIN_FORMAT_DECIMALS}") + ) + human_readable_notional = btc_usdt_perp_market.notional_from_extended_chain_format( + chain_value=chain_format_notional + ) + + assert expected_notional == human_readable_notional + class TestBinaryOptionMarket: def test_convert_quantity_to_chain_format_with_fixed_denom(self, first_match_bet_market: BinaryOptionMarket): @@ -186,6 +250,7 @@ def test_convert_quantity_to_chain_format_with_fixed_denom(self, first_match_bet quote=4, min_quantity_tick_size=100, min_price_tick_size=10000, + min_notional=0, ) chain_value = first_match_bet_market.quantity_to_chain_format( @@ -195,7 +260,7 @@ def test_convert_quantity_to_chain_format_with_fixed_denom(self, first_match_bet quantized_value = (chain_formatted_quantity // Decimal(str(fixed_denom.min_quantity_tick_size))) * Decimal( str(fixed_denom.min_quantity_tick_size) ) - quantized_chain_format_value = quantized_value * Decimal("1e18") + quantized_chain_format_value = quantized_value * Decimal(f"1e{ADDITIONAL_CHAIN_FORMAT_DECIMALS}") assert quantized_chain_format_value == chain_value @@ -208,7 +273,7 @@ def test_convert_quantity_to_chain_format_without_fixed_denom(self, first_match_ quantized_value = ( original_quantity // first_match_bet_market.min_quantity_tick_size ) * first_match_bet_market.min_quantity_tick_size - quantized_chain_format_value = quantized_value * Decimal("1e18") + quantized_chain_format_value = quantized_value * Decimal(f"1e{ADDITIONAL_CHAIN_FORMAT_DECIMALS}") assert quantized_chain_format_value == chain_value @@ -220,6 +285,7 @@ def test_convert_price_to_chain_format_with_fixed_denom(self, first_match_bet_ma quote=4, min_quantity_tick_size=100, min_price_tick_size=10000, + min_notional=0, ) chain_value = first_match_bet_market.price_to_chain_format( @@ -231,7 +297,7 @@ def test_convert_price_to_chain_format_with_fixed_denom(self, first_match_bet_ma quantized_value = (expected_value // Decimal(str(fixed_denom.min_price_tick_size))) * Decimal( str(fixed_denom.min_price_tick_size) ) - quantized_chain_format_value = quantized_value * Decimal("1e18") + quantized_chain_format_value = quantized_value * Decimal(f"1e{ADDITIONAL_CHAIN_FORMAT_DECIMALS}") assert quantized_chain_format_value == chain_value @@ -244,7 +310,7 @@ def test_convert_price_to_chain_format_without_fixed_denom(self, first_match_bet quantized_value = ( expected_value // first_match_bet_market.min_price_tick_size ) * first_match_bet_market.min_price_tick_size - quantized_chain_format_value = quantized_value * Decimal("1e18") + quantized_chain_format_value = quantized_value * Decimal(f"1e{ADDITIONAL_CHAIN_FORMAT_DECIMALS}") assert quantized_chain_format_value == chain_value @@ -256,6 +322,7 @@ def test_convert_margin_to_chain_format_with_fixed_denom(self, first_match_bet_m quote=4, min_quantity_tick_size=100, min_price_tick_size=10000, + min_notional=0, ) chain_value = first_match_bet_market.margin_to_chain_format( @@ -267,7 +334,7 @@ def test_convert_margin_to_chain_format_with_fixed_denom(self, first_match_bet_m quantized_value = (expected_value // Decimal(str(fixed_denom.min_quantity_tick_size))) * Decimal( str(fixed_denom.min_quantity_tick_size) ) - quantized_chain_format_value = quantized_value * Decimal("1e18") + quantized_chain_format_value = quantized_value * Decimal(f"1e{ADDITIONAL_CHAIN_FORMAT_DECIMALS}") assert quantized_chain_format_value == chain_value @@ -280,7 +347,7 @@ def test_convert_margin_to_chain_format_without_fixed_denom(self, first_match_be quantized_value = ( expected_value // first_match_bet_market.min_quantity_tick_size ) * first_match_bet_market.min_quantity_tick_size - quantized_chain_format_value = quantized_value * Decimal("1e18") + quantized_chain_format_value = quantized_value * Decimal(f"1e{ADDITIONAL_CHAIN_FORMAT_DECIMALS}") assert quantized_chain_format_value == chain_value @@ -293,6 +360,7 @@ def test_calculate_margin_for_buy_with_fixed_denom(self, first_match_bet_market: quote=4, min_quantity_tick_size=100, min_price_tick_size=10000, + min_notional=0, ) chain_value = first_match_bet_market.calculate_margin_in_chain_format( @@ -310,7 +378,7 @@ def test_calculate_margin_for_buy_with_fixed_denom(self, first_match_bet_market: quantized_margin = (expected_margin // Decimal(str(fixed_denom.min_quantity_tick_size))) * Decimal( str(fixed_denom.min_quantity_tick_size) ) - quantized_chain_format_margin = quantized_margin * Decimal("1e18") + quantized_chain_format_margin = quantized_margin * Decimal(f"1e{ADDITIONAL_CHAIN_FORMAT_DECIMALS}") assert quantized_chain_format_margin == chain_value @@ -330,7 +398,7 @@ def test_calculate_margin_for_buy_without_fixed_denom(self, first_match_bet_mark quantized_margin = (expected_margin // Decimal(str(first_match_bet_market.min_quantity_tick_size))) * Decimal( str(first_match_bet_market.min_quantity_tick_size) ) - quantized_chain_format_margin = quantized_margin * Decimal("1e18") + quantized_chain_format_margin = quantized_margin * Decimal(f"1e{ADDITIONAL_CHAIN_FORMAT_DECIMALS}") assert quantized_chain_format_margin == chain_value @@ -350,10 +418,20 @@ def test_calculate_margin_for_sell_without_fixed_denom(self, first_match_bet_mar quantized_margin = (expected_margin // Decimal(str(first_match_bet_market.min_quantity_tick_size))) * Decimal( str(first_match_bet_market.min_quantity_tick_size) ) - quantized_chain_format_margin = quantized_margin * Decimal("1e18") + quantized_chain_format_margin = quantized_margin * Decimal(f"1e{ADDITIONAL_CHAIN_FORMAT_DECIMALS}") assert quantized_chain_format_margin == chain_value + def test_convert_notional_to_chain_format(self, first_match_bet_market: BinaryOptionMarket): + original_notional = Decimal("123.456789") + + chain_value = first_match_bet_market.notional_to_chain_format(human_readable_value=original_notional) + notional_decimals = first_match_bet_market.quote_token.decimals + expected_value = original_notional * Decimal(f"1e{notional_decimals}") + expected_chain_format_value = expected_value * Decimal(f"1e{ADDITIONAL_CHAIN_FORMAT_DECIMALS}") + + assert expected_chain_format_value == chain_value + def test_convert_quantity_from_chain_format_with_fixed_denom(self, first_match_bet_market: BinaryOptionMarket): original_quantity = Decimal("123.456789") fixed_denom = Denom( @@ -362,6 +440,7 @@ def test_convert_quantity_from_chain_format_with_fixed_denom(self, first_match_b quote=4, min_quantity_tick_size=100, min_price_tick_size=10000, + min_notional=0, ) chain_formatted_quantity = original_quantity * Decimal(f"1e{fixed_denom.base}") @@ -391,6 +470,7 @@ def test_convert_price_from_chain_format_with_fixed_denom(self, first_match_bet_ quote=4, min_quantity_tick_size=100, min_price_tick_size=10000, + min_notional=0, ) chain_formatted_price = original_price * Decimal(f"1e{fixed_denom.quote}") @@ -409,6 +489,15 @@ def test_convert_price_from_chain_format_without_fixed_denom(self, first_match_b assert original_price == human_readable_price + def test_convert_notional_from_chain_format(self, first_match_bet_market: BinaryOptionMarket): + expected_notional = Decimal("123.456") + + notional_decimals = first_match_bet_market.quote_token.decimals + chain_format_notional = expected_notional * Decimal(f"1e{notional_decimals}") + human_readable_notional = first_match_bet_market.notional_from_chain_format(chain_value=chain_format_notional) + + assert expected_notional == human_readable_notional + def test_convert_quantity_from_extended_chain_format_with_fixed_denom( self, first_match_bet_market: BinaryOptionMarket ): @@ -419,6 +508,7 @@ def test_convert_quantity_from_extended_chain_format_with_fixed_denom( quote=4, min_quantity_tick_size=100, min_price_tick_size=10000, + min_notional=0, ) chain_formatted_quantity = ( @@ -454,6 +544,7 @@ def test_convert_price_from_extended_chain_format_with_fixed_denom( quote=4, min_quantity_tick_size=100, min_price_tick_size=10000, + min_notional=0, ) chain_formatted_price = ( @@ -481,3 +572,16 @@ def test_convert_price_from_extended_chain_format_without_fixed_denom( ) assert original_price == human_readable_price + + def test_convert_notional_from_extended_chain_format(self, first_match_bet_market: BinaryOptionMarket): + expected_notional = Decimal("123.456") + + notional_decimals = first_match_bet_market.quote_token.decimals + chain_format_notional = ( + expected_notional * Decimal(f"1e{notional_decimals}") * Decimal(f"1e{ADDITIONAL_CHAIN_FORMAT_DECIMALS}") + ) + human_readable_notional = first_match_bet_market.notional_from_extended_chain_format( + chain_value=chain_format_notional + ) + + assert expected_notional == human_readable_notional diff --git a/tests/model_fixtures/markets_fixtures.py b/tests/model_fixtures/markets_fixtures.py index 47c0bd4f..bdfa1d2a 100644 --- a/tests/model_fixtures/markets_fixtures.py +++ b/tests/model_fixtures/markets_fixtures.py @@ -64,6 +64,7 @@ def inj_usdt_spot_market(inj_token, usdt_token): service_provider_fee=Decimal("0.4"), min_price_tick_size=Decimal("0.000000000000001"), min_quantity_tick_size=Decimal("1000000000000000"), + min_notional=Decimal("0.000000000001"), ) return market @@ -87,6 +88,7 @@ def btc_usdt_perp_market(usdt_perp_token): service_provider_fee=Decimal("0.4"), min_price_tick_size=Decimal("1000000"), min_quantity_tick_size=Decimal("0.0001"), + min_notional=Decimal("0.000001"), ) return market @@ -110,6 +112,7 @@ def first_match_bet_market(usdt_token): service_provider_fee=Decimal("0.4"), min_price_tick_size=Decimal("10000"), min_quantity_tick_size=Decimal("1"), + min_notional=Decimal("0.000001"), ) return market diff --git a/tests/rpc_fixtures/markets_fixtures.py b/tests/rpc_fixtures/markets_fixtures.py index 7672d6e3..2b14bb63 100644 --- a/tests/rpc_fixtures/markets_fixtures.py +++ b/tests/rpc_fixtures/markets_fixtures.py @@ -124,6 +124,7 @@ def ape_usdt_spot_market_meta(ape_token_meta, usdt_token_meta_second_denom): service_provider_fee="0.4", min_price_tick_size="0.000000000000001", min_quantity_tick_size="1000000000000000", + min_notional="0.000000000001", ) return market @@ -146,6 +147,7 @@ def inj_usdt_spot_market_meta(inj_token_meta, usdt_token_meta): service_provider_fee="0.4", min_price_tick_size="0.000000000000001", min_quantity_tick_size="1000000000000000", + min_notional="0.000000000001", ) return market @@ -187,6 +189,7 @@ def btc_usdt_perp_market_meta(usdt_perp_token_meta): min_quantity_tick_size="0.0001", perpetual_market_info=perpetual_market_info, perpetual_market_funding=perpetual_market_funding, + min_notional="0.000001", ) return market @@ -212,6 +215,7 @@ def first_match_bet_market_meta(inj_usdt_spot_market_meta): service_provider_fee="0.4", min_price_tick_size="10000", min_quantity_tick_size="1", + min_notional="0", ) return market diff --git a/tests/test_composer.py b/tests/test_composer.py index e65a872b..b3dd1fda 100644 --- a/tests/test_composer.py +++ b/tests/test_composer.py @@ -5,7 +5,7 @@ from google.protobuf import json_format from pyinjective.composer import Composer -from pyinjective.constant import ADDITIONAL_CHAIN_FORMAT_DECIMALS +from pyinjective.constant import ADDITIONAL_CHAIN_FORMAT_DECIMALS, INJ_DECIMALS from pyinjective.core.network import Network from tests.model_fixtures.markets_fixtures import btc_usdt_perp_market # noqa: F401 from tests.model_fixtures.markets_fixtures import first_match_bet_market # noqa: F401 @@ -321,9 +321,7 @@ def test_msg_instant_spot_market_launch(self, basic_composer): expected_min_quantity_tick_size = min_quantity_tick_size * Decimal( f"1e{base_token.decimals + ADDITIONAL_CHAIN_FORMAT_DECIMALS}" ) - expected_min_notional = min_notional * Decimal( - f"1e{quote_token.decimals - base_token.decimals + ADDITIONAL_CHAIN_FORMAT_DECIMALS}" - ) + expected_min_notional = min_notional * Decimal(f"1e{quote_token.decimals + ADDITIONAL_CHAIN_FORMAT_DECIMALS}") message = basic_composer.msg_instant_spot_market_launch( sender=sender, @@ -1440,7 +1438,7 @@ def test_msg_emergency_settle_market(self, basic_composer): ) assert dict_message == expected_message - def test_msg_external_transfer(self, basic_composer): + def test_msg_increase_position_margin(self, basic_composer): market = list(basic_composer.derivative_markets.values())[0] sender = "inj1apmvarl2xyv6kecx2ukkeymddw3we4zkygjyc0" source_subaccount_id = "0x893f2abf8034627e50cbc63923120b1122503ce0000000000000000000000001" @@ -1470,6 +1468,36 @@ def test_msg_external_transfer(self, basic_composer): ) assert dict_message == expected_message + def test_msg_decrease_position_margin(self, basic_composer): + market = list(basic_composer.derivative_markets.values())[0] + sender = "inj1apmvarl2xyv6kecx2ukkeymddw3we4zkygjyc0" + source_subaccount_id = "0x893f2abf8034627e50cbc63923120b1122503ce0000000000000000000000001" + destination_subaccount_id = "0xc6fe5d33615a1c52c08018c47e8bc53646a0e101000000000000000000000000" + amount = Decimal(100) + + expected_amount = market.margin_to_chain_format(human_readable_value=amount) + + message = basic_composer.msg_decrease_position_margin( + sender=sender, + source_subaccount_id=source_subaccount_id, + destination_subaccount_id=destination_subaccount_id, + market_id=market.id, + amount=amount, + ) + + expected_message = { + "sender": sender, + "sourceSubaccountId": source_subaccount_id, + "destinationSubaccountId": destination_subaccount_id, + "marketId": market.id, + "amount": f"{expected_amount.normalize():f}", + } + dict_message = json_format.MessageToDict( + message=message, + always_print_fields_with_no_presence=True, + ) + assert dict_message == expected_message + def test_msg_rewards_opt_out(self, basic_composer): sender = "inj1apmvarl2xyv6kecx2ukkeymddw3we4zkygjyc0" @@ -1519,6 +1547,142 @@ def test_msg_admin_update_binary_options_market(self, basic_composer): ) assert dict_message == expected_message + def test_msg_update_spot_market(self, basic_composer): + market = list(basic_composer.spot_markets.values())[0] + sender = "inj1apmvarl2xyv6kecx2ukkeymddw3we4zkygjyc0" + new_ticker = "NEW/TICKER" + min_price_tick_size = Decimal("0.0009") + min_quantity_tick_size = Decimal("10") + min_notional = Decimal("5") + + expected_min_price_tick_size = min_price_tick_size * Decimal( + f"1e{market.quote_token.decimals - market.base_token.decimals + ADDITIONAL_CHAIN_FORMAT_DECIMALS}" + ) + expected_min_quantity_tick_size = min_quantity_tick_size * Decimal( + f"1e{market.base_token.decimals + ADDITIONAL_CHAIN_FORMAT_DECIMALS}" + ) + expected_min_notional = min_notional * Decimal( + f"1e{market.quote_token.decimals + ADDITIONAL_CHAIN_FORMAT_DECIMALS}" + ) + + message = basic_composer.msg_update_spot_market( + admin=sender, + market_id=market.id, + new_ticker=new_ticker, + new_min_price_tick_size=min_price_tick_size, + new_min_quantity_tick_size=min_quantity_tick_size, + new_min_notional=min_notional, + ) + + expected_message = { + "admin": sender, + "marketId": market.id, + "newTicker": new_ticker, + "newMinPriceTickSize": f"{expected_min_price_tick_size.normalize():f}", + "newMinQuantityTickSize": f"{expected_min_quantity_tick_size.normalize():f}", + "newMinNotional": f"{expected_min_notional.normalize():f}", + } + dict_message = json_format.MessageToDict( + message=message, + always_print_fields_with_no_presence=True, + ) + assert dict_message == expected_message + + def test_msg_update_derivative_market(self, basic_composer): + market = list(basic_composer.derivative_markets.values())[0] + sender = "inj1apmvarl2xyv6kecx2ukkeymddw3we4zkygjyc0" + new_ticker = "NEW/TICKER" + min_price_tick_size = Decimal("0.0009") + min_quantity_tick_size = Decimal("10") + min_notional = Decimal("5") + initial_margin_ratio = Decimal("0.05") + maintenance_margin_ratio = Decimal("0.009") + + expected_min_price_tick_size = min_price_tick_size * Decimal( + f"1e{market.quote_token.decimals + ADDITIONAL_CHAIN_FORMAT_DECIMALS}" + ) + expected_min_quantity_tick_size = min_quantity_tick_size * Decimal(f"1e{ADDITIONAL_CHAIN_FORMAT_DECIMALS}") + expected_min_notional = min_notional * Decimal( + f"1e{market.quote_token.decimals + ADDITIONAL_CHAIN_FORMAT_DECIMALS}" + ) + expected_initial_margin_ratio = initial_margin_ratio * Decimal(f"1e{ADDITIONAL_CHAIN_FORMAT_DECIMALS}") + expected_maintenance_margin_ratio = maintenance_margin_ratio * Decimal(f"1e{ADDITIONAL_CHAIN_FORMAT_DECIMALS}") + + message = basic_composer.msg_update_derivative_market( + admin=sender, + market_id=market.id, + new_ticker=new_ticker, + new_min_price_tick_size=min_price_tick_size, + new_min_quantity_tick_size=min_quantity_tick_size, + new_min_notional=min_notional, + new_initial_margin_ratio=initial_margin_ratio, + new_maintenance_margin_ratio=maintenance_margin_ratio, + ) + + expected_message = { + "admin": sender, + "marketId": market.id, + "newTicker": new_ticker, + "newMinPriceTickSize": f"{expected_min_price_tick_size.normalize():f}", + "newMinQuantityTickSize": f"{expected_min_quantity_tick_size.normalize():f}", + "newMinNotional": f"{expected_min_notional.normalize():f}", + "newInitialMarginRatio": f"{expected_initial_margin_ratio.normalize():f}", + "newMaintenanceMarginRatio": f"{expected_maintenance_margin_ratio.normalize():f}", + } + dict_message = json_format.MessageToDict( + message=message, + always_print_fields_with_no_presence=True, + ) + assert dict_message == expected_message + + def test_msg_authorize_stake_grants(self, basic_composer): + sender = "inj1apmvarl2xyv6kecx2ukkeymddw3we4zkygjyc0" + amount = Decimal("100") + grant_authorization = basic_composer.create_grant_authorization( + grantee="inj1hkhdaj2a2clmq5jq6mspsggqs32vynpk228q3r", + amount=amount, + ) + + message = basic_composer.msg_authorize_stake_grants( + sender=sender, + grants=[grant_authorization], + ) + + expected_amount = amount * Decimal(f"1e{INJ_DECIMALS}") + expected_message = { + "sender": sender, + "grants": [ + { + "grantee": grant_authorization.grantee, + "amount": str(int(expected_amount)), + } + ], + } + dict_message = json_format.MessageToDict( + message=message, + always_print_fields_with_no_presence=True, + ) + assert dict_message == expected_message + + def test_msg_activate_stake_grant(self, basic_composer): + sender = "inj1hkhdaj2a2clmq5jq6mspsggqs32vynpk228q3r" + granter = "inj1apmvarl2xyv6kecx2ukkeymddw3we4zkygjyc0" + + message = basic_composer.msg_activate_stake_grant( + sender=sender, + granter=granter, + ) + + expected_message = { + "sender": sender, + "granter": granter, + } + dict_message = json_format.MessageToDict( + message=message, + always_print_fields_with_no_presence=True, + ) + assert dict_message == expected_message + def test_msg_ibc_transfer(self, basic_composer): sender = "inj1apmvarl2xyv6kecx2ukkeymddw3we4zkygjyc0" source_port = "transfer"