strideutils 0.2.5__tar.gz → 0.2.7__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: strideutils
3
- Version: 0.2.5
3
+ Version: 0.2.7
4
4
  Summary:
5
5
  Author: Your Name
6
6
  Author-email: you@example.com
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "strideutils"
3
- version = "0.2.5"
3
+ version = "0.2.7"
4
4
  description = ""
5
5
  authors = ["Your Name <you@example.com>"]
6
6
  readme = "README.md"
@@ -94,6 +94,7 @@ class HostZoneChainConfig(ConfigObj):
94
94
  comdex: ChainConfig = field(default_factory=ChainConfig)
95
95
  sommelier: ChainConfig = field(default_factory=ChainConfig)
96
96
  dydx: ChainConfig = field(default_factory=ChainConfig)
97
+ saga: ChainConfig = field(default_factory=ChainConfig)
97
98
 
98
99
 
99
100
  @dataclass(repr=False)
@@ -23,6 +23,10 @@ ACCOUNT_UNBONDINGS_QUERY = "cosmos/staking/v1beta1/delegators/{delegator_address
23
23
  MODULE_ACCOUNTS_QUERY = "cosmos/auth/v1beta1/module_accounts"
24
24
  SUPPLY_QUERY = "cosmos/bank/v1beta1/supply/by_denom"
25
25
 
26
+ CONNECTION_QUERY = "ibc/core/connection/v1/connections/{connection_id}"
27
+ CHANNELS_QUERY = "ibc/core/channel/v1/connections/{connection_id}/channels"
28
+ CHANNEL_QUERY = "ibc/core/channel/v1/channels/{channel_id}/ports/{port_id}"
29
+
26
30
  TXS_QUERY = "cosmos/tx/v1beta1/txs"
27
31
  TX_BY_ACCOUNT_EVENT = "tx.acc_seq='{address}/{sequence}'"
28
32
 
File without changes