Skip to content

Commit 68759f3

Browse files
committed
feat: updated changelog and version number for v1.9.0 release
1 parent f7ba353 commit 68759f3

13 files changed

+284
-185
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

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

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

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ clean-all:
3131
$(call clean_repos)
3232

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

3636
clone-all: clone-injective-indexer
3737

buf.gen.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ inputs:
1919
tag: v0.53.2-inj-1
2020
# - git_repo: https://github.com/InjectiveLabs/wasmd
2121
# branch: v0.51.x-inj
22-
# subdir: proto
23-
# - git_repo: https://github.com/InjectiveLabs/injective-core
24-
# tag: v1.13.0
2522
# subdir: proto
2623
- git_repo: https://github.com/InjectiveLabs/injective-core
27-
branch: testnet
24+
tag: v1.14.0
2825
subdir: proto
26+
# - git_repo: https://github.com/InjectiveLabs/injective-core
27+
# branch: testnet
28+
# subdir: proto
2929
- directory: proto

pyinjective/ofac.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
"0x178169b423a011fff22b9e3f3abea13414ddd0f1",
2020
"0x179f48c78f57a3a78f0608cc9197b8972921d1d2",
2121
"0x1967d8af5bd86a497fb3dd7899a020e47560daaf",
22+
"0x1999ef52700c34de7ec2b68a28aafb37db0c5ade",
2223
"0x19aa5fe80d33a56d56c78e82ea5e50e5d80b4dff",
2324
"0x19f8f2b0915daa12a3f5c9cf01df9e24d53794f7",
2425
"0x1da5821544e25c636c1417ba96ade4cf6d2f9b5a",

pyinjective/proto/exchange/injective_archiver_rpc_pb2.py

Lines changed: 14 additions & 14 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyinjective/proto/exchange/injective_chart_rpc_pb2.py

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyinjective/proto/exchange/injective_explorer_rpc_pb2.py

Lines changed: 133 additions & 123 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyinjective/proto/exchange/injective_explorer_rpc_pb2_grpc.py

Lines changed: 88 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,11 @@ def __init__(self, channel):
3535
request_serializer=exchange_dot_injective__explorer__rpc__pb2.GetBlocksRequest.SerializeToString,
3636
response_deserializer=exchange_dot_injective__explorer__rpc__pb2.GetBlocksResponse.FromString,
3737
_registered_method=True)
38+
self.GetBlocksV2 = channel.unary_unary(
39+
'/injective_explorer_rpc.InjectiveExplorerRPC/GetBlocksV2',
40+
request_serializer=exchange_dot_injective__explorer__rpc__pb2.GetBlocksV2Request.SerializeToString,
41+
response_deserializer=exchange_dot_injective__explorer__rpc__pb2.GetBlocksV2Response.FromString,
42+
_registered_method=True)
3843
self.GetBlock = channel.unary_unary(
3944
'/injective_explorer_rpc.InjectiveExplorerRPC/GetBlock',
4045
request_serializer=exchange_dot_injective__explorer__rpc__pb2.GetBlockRequest.SerializeToString,
@@ -60,6 +65,11 @@ def __init__(self, channel):
6065
request_serializer=exchange_dot_injective__explorer__rpc__pb2.GetTxsRequest.SerializeToString,
6166
response_deserializer=exchange_dot_injective__explorer__rpc__pb2.GetTxsResponse.FromString,
6267
_registered_method=True)
68+
self.GetTxsV2 = channel.unary_unary(
69+
'/injective_explorer_rpc.InjectiveExplorerRPC/GetTxsV2',
70+
request_serializer=exchange_dot_injective__explorer__rpc__pb2.GetTxsV2Request.SerializeToString,
71+
response_deserializer=exchange_dot_injective__explorer__rpc__pb2.GetTxsV2Response.FromString,
72+
_registered_method=True)
6373
self.GetTxByTxHash = channel.unary_unary(
6474
'/injective_explorer_rpc.InjectiveExplorerRPC/GetTxByTxHash',
6575
request_serializer=exchange_dot_injective__explorer__rpc__pb2.GetTxByTxHashRequest.SerializeToString,
@@ -164,6 +174,13 @@ def GetBlocks(self, request, context):
164174
context.set_details('Method not implemented!')
165175
raise NotImplementedError('Method not implemented!')
166176

177+
def GetBlocksV2(self, request, context):
178+
"""GetBlocks returns blocks based upon the request params
179+
"""
180+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
181+
context.set_details('Method not implemented!')
182+
raise NotImplementedError('Method not implemented!')
183+
167184
def GetBlock(self, request, context):
168185
"""GetBlock returns block based upon the height or hash
169186
"""
@@ -199,6 +216,13 @@ def GetTxs(self, request, context):
199216
context.set_details('Method not implemented!')
200217
raise NotImplementedError('Method not implemented!')
201218

219+
def GetTxsV2(self, request, context):
220+
"""GetTxs returns transactions based upon the request params
221+
"""
222+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
223+
context.set_details('Method not implemented!')
224+
raise NotImplementedError('Method not implemented!')
225+
202226
def GetTxByTxHash(self, request, context):
203227
"""GetTxByTxHash returns certain transaction information by its tx hash.
204228
"""
@@ -324,6 +348,11 @@ def add_InjectiveExplorerRPCServicer_to_server(servicer, server):
324348
request_deserializer=exchange_dot_injective__explorer__rpc__pb2.GetBlocksRequest.FromString,
325349
response_serializer=exchange_dot_injective__explorer__rpc__pb2.GetBlocksResponse.SerializeToString,
326350
),
351+
'GetBlocksV2': grpc.unary_unary_rpc_method_handler(
352+
servicer.GetBlocksV2,
353+
request_deserializer=exchange_dot_injective__explorer__rpc__pb2.GetBlocksV2Request.FromString,
354+
response_serializer=exchange_dot_injective__explorer__rpc__pb2.GetBlocksV2Response.SerializeToString,
355+
),
327356
'GetBlock': grpc.unary_unary_rpc_method_handler(
328357
servicer.GetBlock,
329358
request_deserializer=exchange_dot_injective__explorer__rpc__pb2.GetBlockRequest.FromString,
@@ -349,6 +378,11 @@ def add_InjectiveExplorerRPCServicer_to_server(servicer, server):
349378
request_deserializer=exchange_dot_injective__explorer__rpc__pb2.GetTxsRequest.FromString,
350379
response_serializer=exchange_dot_injective__explorer__rpc__pb2.GetTxsResponse.SerializeToString,
351380
),
381+
'GetTxsV2': grpc.unary_unary_rpc_method_handler(
382+
servicer.GetTxsV2,
383+
request_deserializer=exchange_dot_injective__explorer__rpc__pb2.GetTxsV2Request.FromString,
384+
response_serializer=exchange_dot_injective__explorer__rpc__pb2.GetTxsV2Response.SerializeToString,
385+
),
352386
'GetTxByTxHash': grpc.unary_unary_rpc_method_handler(
353387
servicer.GetTxByTxHash,
354388
request_deserializer=exchange_dot_injective__explorer__rpc__pb2.GetTxByTxHashRequest.FromString,
@@ -539,6 +573,33 @@ def GetBlocks(request,
539573
metadata,
540574
_registered_method=True)
541575

576+
@staticmethod
577+
def GetBlocksV2(request,
578+
target,
579+
options=(),
580+
channel_credentials=None,
581+
call_credentials=None,
582+
insecure=False,
583+
compression=None,
584+
wait_for_ready=None,
585+
timeout=None,
586+
metadata=None):
587+
return grpc.experimental.unary_unary(
588+
request,
589+
target,
590+
'/injective_explorer_rpc.InjectiveExplorerRPC/GetBlocksV2',
591+
exchange_dot_injective__explorer__rpc__pb2.GetBlocksV2Request.SerializeToString,
592+
exchange_dot_injective__explorer__rpc__pb2.GetBlocksV2Response.FromString,
593+
options,
594+
channel_credentials,
595+
insecure,
596+
call_credentials,
597+
compression,
598+
wait_for_ready,
599+
timeout,
600+
metadata,
601+
_registered_method=True)
602+
542603
@staticmethod
543604
def GetBlock(request,
544605
target,
@@ -674,6 +735,33 @@ def GetTxs(request,
674735
metadata,
675736
_registered_method=True)
676737

738+
@staticmethod
739+
def GetTxsV2(request,
740+
target,
741+
options=(),
742+
channel_credentials=None,
743+
call_credentials=None,
744+
insecure=False,
745+
compression=None,
746+
wait_for_ready=None,
747+
timeout=None,
748+
metadata=None):
749+
return grpc.experimental.unary_unary(
750+
request,
751+
target,
752+
'/injective_explorer_rpc.InjectiveExplorerRPC/GetTxsV2',
753+
exchange_dot_injective__explorer__rpc__pb2.GetTxsV2Request.SerializeToString,
754+
exchange_dot_injective__explorer__rpc__pb2.GetTxsV2Response.FromString,
755+
options,
756+
channel_credentials,
757+
insecure,
758+
call_credentials,
759+
compression,
760+
wait_for_ready,
761+
timeout,
762+
metadata,
763+
_registered_method=True)
764+
677765
@staticmethod
678766
def GetTxByTxHash(request,
679767
target,

0 commit comments

Comments
 (0)