Skip to content

Commit 5bbac76

Browse files
committed
and start and end block
1 parent 97c1494 commit 5bbac76

File tree

6 files changed

+186
-133
lines changed

6 files changed

+186
-133
lines changed

gen/api-ts/eigenlayer/sidecar/v1/protocol/protocol.pb.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,8 @@ export type GetStakerSharesRequest = BaseGetStakerSharesRequest
8080
& OneOf<{ blockHeight: string }>
8181
& OneOf<{ strategy: string }>
8282
& OneOf<{ showHistorical: boolean }>
83+
& OneOf<{ startBlock: string }>
84+
& OneOf<{ endBlock: string }>
8385

8486
export type GetStakerSharesResponse = {
8587
shares?: EigenlayerSidecarV1ProtocolCommon.StakerShare[]

gen/openapi/api.public.swagger.json

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1929,20 +1929,30 @@
19291929
"type": "integer",
19301930
"format": "uint64"
19311931
},
1932+
"endBlock": {
1933+
"type": "integer",
1934+
"format": "uint64"
1935+
},
19321936
"showHistorical": {
19331937
"type": "boolean"
19341938
},
19351939
"stakerAddress": {
19361940
"type": "string"
19371941
},
1942+
"startBlock": {
1943+
"type": "integer",
1944+
"format": "uint64"
1945+
},
19381946
"strategy": {
19391947
"type": "string"
19401948
}
19411949
},
19421950
"required": [
19431951
"block_height",
19441952
"strategy",
1945-
"show_historical"
1953+
"show_historical",
1954+
"start_block",
1955+
"end_block"
19461956
]
19471957
},
19481958
"GetStakerSharesResponse": {

gen/openapi/api.swagger.json

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2940,20 +2940,30 @@
29402940
"type": "integer",
29412941
"format": "uint64"
29422942
},
2943+
"endBlock": {
2944+
"type": "integer",
2945+
"format": "uint64"
2946+
},
29432947
"showHistorical": {
29442948
"type": "boolean"
29452949
},
29462950
"stakerAddress": {
29472951
"type": "string"
29482952
},
2953+
"startBlock": {
2954+
"type": "integer",
2955+
"format": "uint64"
2956+
},
29492957
"strategy": {
29502958
"type": "string"
29512959
}
29522960
},
29532961
"required": [
29542962
"block_height",
29552963
"strategy",
2956-
"show_historical"
2964+
"show_historical",
2965+
"start_block",
2966+
"end_block"
29572967
]
29582968
},
29592969
"GetStakerSharesResponse": {

0 commit comments

Comments
 (0)