Skip to content

Commit

Permalink
feat: updated changelog and version number for v1.9.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
aarmoa committed Feb 13, 2025
1 parent f7ba353 commit 68759f3
Show file tree
Hide file tree
Showing 13 changed files with 284 additions and 185 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

All notable changes to this project will be documented in this file.

## [1.9.0] - 9999-99-99
## [1.9.0] - 2025-02-13
### Added
- Added support for all new queries and messages from the new Permissions module

Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ clean-all:
$(call clean_repos)

clone-injective-indexer:
git clone https://github.com/InjectiveLabs/injective-indexer.git -b v1.13.117_RC1 --depth 1 --single-branch
git clone https://github.com/InjectiveLabs/injective-indexer.git -b v1.14.1-RC.6 --depth 1 --single-branch

clone-all: clone-injective-indexer

Expand Down
8 changes: 4 additions & 4 deletions buf.gen.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ inputs:
tag: v0.53.2-inj-1
# - git_repo: https://github.com/InjectiveLabs/wasmd
# branch: v0.51.x-inj
# subdir: proto
# - git_repo: https://github.com/InjectiveLabs/injective-core
# tag: v1.13.0
# subdir: proto
- git_repo: https://github.com/InjectiveLabs/injective-core
branch: testnet
tag: v1.14.0
subdir: proto
# - git_repo: https://github.com/InjectiveLabs/injective-core
# branch: testnet
# subdir: proto
- directory: proto
1 change: 1 addition & 0 deletions pyinjective/ofac.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
"0x178169b423a011fff22b9e3f3abea13414ddd0f1",
"0x179f48c78f57a3a78f0608cc9197b8972921d1d2",
"0x1967d8af5bd86a497fb3dd7899a020e47560daaf",
"0x1999ef52700c34de7ec2b68a28aafb37db0c5ade",
"0x19aa5fe80d33a56d56c78e82ea5e50e5d80b4dff",
"0x19f8f2b0915daa12a3f5c9cf01df9e24d53794f7",
"0x1da5821544e25c636c1417ba96ade4cf6d2f9b5a",
Expand Down
28 changes: 14 additions & 14 deletions pyinjective/proto/exchange/injective_archiver_rpc_pb2.py

Large diffs are not rendered by default.

16 changes: 8 additions & 8 deletions pyinjective/proto/exchange/injective_chart_rpc_pb2.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

256 changes: 133 additions & 123 deletions pyinjective/proto/exchange/injective_explorer_rpc_pb2.py

Large diffs are not rendered by default.

88 changes: 88 additions & 0 deletions pyinjective/proto/exchange/injective_explorer_rpc_pb2_grpc.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,11 @@ def __init__(self, channel):
request_serializer=exchange_dot_injective__explorer__rpc__pb2.GetBlocksRequest.SerializeToString,
response_deserializer=exchange_dot_injective__explorer__rpc__pb2.GetBlocksResponse.FromString,
_registered_method=True)
self.GetBlocksV2 = channel.unary_unary(
'/injective_explorer_rpc.InjectiveExplorerRPC/GetBlocksV2',
request_serializer=exchange_dot_injective__explorer__rpc__pb2.GetBlocksV2Request.SerializeToString,
response_deserializer=exchange_dot_injective__explorer__rpc__pb2.GetBlocksV2Response.FromString,
_registered_method=True)
self.GetBlock = channel.unary_unary(
'/injective_explorer_rpc.InjectiveExplorerRPC/GetBlock',
request_serializer=exchange_dot_injective__explorer__rpc__pb2.GetBlockRequest.SerializeToString,
Expand All @@ -60,6 +65,11 @@ def __init__(self, channel):
request_serializer=exchange_dot_injective__explorer__rpc__pb2.GetTxsRequest.SerializeToString,
response_deserializer=exchange_dot_injective__explorer__rpc__pb2.GetTxsResponse.FromString,
_registered_method=True)
self.GetTxsV2 = channel.unary_unary(
'/injective_explorer_rpc.InjectiveExplorerRPC/GetTxsV2',
request_serializer=exchange_dot_injective__explorer__rpc__pb2.GetTxsV2Request.SerializeToString,
response_deserializer=exchange_dot_injective__explorer__rpc__pb2.GetTxsV2Response.FromString,
_registered_method=True)
self.GetTxByTxHash = channel.unary_unary(
'/injective_explorer_rpc.InjectiveExplorerRPC/GetTxByTxHash',
request_serializer=exchange_dot_injective__explorer__rpc__pb2.GetTxByTxHashRequest.SerializeToString,
Expand Down Expand Up @@ -164,6 +174,13 @@ def GetBlocks(self, request, context):
context.set_details('Method not implemented!')
raise NotImplementedError('Method not implemented!')

def GetBlocksV2(self, request, context):
"""GetBlocks returns blocks based upon the request params
"""
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
context.set_details('Method not implemented!')
raise NotImplementedError('Method not implemented!')

def GetBlock(self, request, context):
"""GetBlock returns block based upon the height or hash
"""
Expand Down Expand Up @@ -199,6 +216,13 @@ def GetTxs(self, request, context):
context.set_details('Method not implemented!')
raise NotImplementedError('Method not implemented!')

def GetTxsV2(self, request, context):
"""GetTxs returns transactions based upon the request params
"""
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
context.set_details('Method not implemented!')
raise NotImplementedError('Method not implemented!')

def GetTxByTxHash(self, request, context):
"""GetTxByTxHash returns certain transaction information by its tx hash.
"""
Expand Down Expand Up @@ -324,6 +348,11 @@ def add_InjectiveExplorerRPCServicer_to_server(servicer, server):
request_deserializer=exchange_dot_injective__explorer__rpc__pb2.GetBlocksRequest.FromString,
response_serializer=exchange_dot_injective__explorer__rpc__pb2.GetBlocksResponse.SerializeToString,
),
'GetBlocksV2': grpc.unary_unary_rpc_method_handler(
servicer.GetBlocksV2,
request_deserializer=exchange_dot_injective__explorer__rpc__pb2.GetBlocksV2Request.FromString,
response_serializer=exchange_dot_injective__explorer__rpc__pb2.GetBlocksV2Response.SerializeToString,
),
'GetBlock': grpc.unary_unary_rpc_method_handler(
servicer.GetBlock,
request_deserializer=exchange_dot_injective__explorer__rpc__pb2.GetBlockRequest.FromString,
Expand All @@ -349,6 +378,11 @@ def add_InjectiveExplorerRPCServicer_to_server(servicer, server):
request_deserializer=exchange_dot_injective__explorer__rpc__pb2.GetTxsRequest.FromString,
response_serializer=exchange_dot_injective__explorer__rpc__pb2.GetTxsResponse.SerializeToString,
),
'GetTxsV2': grpc.unary_unary_rpc_method_handler(
servicer.GetTxsV2,
request_deserializer=exchange_dot_injective__explorer__rpc__pb2.GetTxsV2Request.FromString,
response_serializer=exchange_dot_injective__explorer__rpc__pb2.GetTxsV2Response.SerializeToString,
),
'GetTxByTxHash': grpc.unary_unary_rpc_method_handler(
servicer.GetTxByTxHash,
request_deserializer=exchange_dot_injective__explorer__rpc__pb2.GetTxByTxHashRequest.FromString,
Expand Down Expand Up @@ -539,6 +573,33 @@ def GetBlocks(request,
metadata,
_registered_method=True)

@staticmethod
def GetBlocksV2(request,
target,
options=(),
channel_credentials=None,
call_credentials=None,
insecure=False,
compression=None,
wait_for_ready=None,
timeout=None,
metadata=None):
return grpc.experimental.unary_unary(
request,
target,
'/injective_explorer_rpc.InjectiveExplorerRPC/GetBlocksV2',
exchange_dot_injective__explorer__rpc__pb2.GetBlocksV2Request.SerializeToString,
exchange_dot_injective__explorer__rpc__pb2.GetBlocksV2Response.FromString,
options,
channel_credentials,
insecure,
call_credentials,
compression,
wait_for_ready,
timeout,
metadata,
_registered_method=True)

@staticmethod
def GetBlock(request,
target,
Expand Down Expand Up @@ -674,6 +735,33 @@ def GetTxs(request,
metadata,
_registered_method=True)

@staticmethod
def GetTxsV2(request,
target,
options=(),
channel_credentials=None,
call_credentials=None,
insecure=False,
compression=None,
wait_for_ready=None,
timeout=None,
metadata=None):
return grpc.experimental.unary_unary(
request,
target,
'/injective_explorer_rpc.InjectiveExplorerRPC/GetTxsV2',
exchange_dot_injective__explorer__rpc__pb2.GetTxsV2Request.SerializeToString,
exchange_dot_injective__explorer__rpc__pb2.GetTxsV2Response.FromString,
options,
channel_credentials,
insecure,
call_credentials,
compression,
wait_for_ready,
timeout,
metadata,
_registered_method=True)

@staticmethod
def GetTxByTxHash(request,
target,
Expand Down
Loading

0 comments on commit 68759f3

Please sign in to comment.