Skip to content

Commit

Permalink
chore: bump vega version
Browse files Browse the repository at this point in the history
  • Loading branch information
cdummett committed Oct 7, 2024
1 parent 12bdf88 commit 07099b6
Show file tree
Hide file tree
Showing 19 changed files with 1,969 additions and 1,631 deletions.
2 changes: 1 addition & 1 deletion .env
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VEGA_SIM_VEGA_TAG=v0.78.0-preview.4
VEGA_SIM_VEGA_TAG=v0.79.0-preview.2
VEGA_SIM_CONSOLE_TAG=develop
VEGA_DEFAULT_KEY_NAME='Key 1'
VEGA_SIM_NETWORKS_INTERNAL_TAG=main
Expand Down
2 changes: 1 addition & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ pipeline {
disableConcurrentBuilds(abortPrevious: true)
}
parameters {
string( name: 'VEGA_VERSION', defaultValue: 'v0.78.0-preview.4',
string( name: 'VEGA_VERSION', defaultValue: 'v0.79.0-preview.2',
description: 'Git branch, tag or hash of the vegaprotocol/vega repository')
string( name: 'VEGACAPSULE_VERSION', defaultValue: 'main',
description: 'Git branch, tag or hash of the vegaprotocol/vegacapsule repository')
Expand Down
4 changes: 2 additions & 2 deletions vega_protos/protos/blockexplorer/api/v1/blockexplorer_pb2.py

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

1,608 changes: 804 additions & 804 deletions vega_protos/protos/data_node/api/v2/trading_data_pb2.py

Large diffs are not rendered by default.

32 changes: 29 additions & 3 deletions vega_protos/protos/data_node/api/v2/trading_data_pb2.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -741,15 +741,18 @@ class ListPositionsResponse(_message.Message):
) -> None: ...

class PositionsFilter(_message.Message):
__slots__ = ("party_ids", "market_ids")
__slots__ = ("party_ids", "market_ids", "include_derived_parties")
PARTY_IDS_FIELD_NUMBER: _ClassVar[int]
MARKET_IDS_FIELD_NUMBER: _ClassVar[int]
INCLUDE_DERIVED_PARTIES_FIELD_NUMBER: _ClassVar[int]
party_ids: _containers.RepeatedScalarFieldContainer[str]
market_ids: _containers.RepeatedScalarFieldContainer[str]
include_derived_parties: bool
def __init__(
self,
party_ids: _Optional[_Iterable[str]] = ...,
market_ids: _Optional[_Iterable[str]] = ...,
include_derived_parties: bool = ...,
) -> None: ...

class ListAllPositionsRequest(_message.Message):
Expand Down Expand Up @@ -3119,6 +3122,7 @@ class ListGovernanceDataRequest(_message.Message):
TYPE_UPDATE_MARKET_STATE: _ClassVar[ListGovernanceDataRequest.Type]
TYPE_UPDATE_REFERRAL_PROGRAM: _ClassVar[ListGovernanceDataRequest.Type]
TYPE_UPDATE_VOLUME_DISCOUNT_PROGRAM: _ClassVar[ListGovernanceDataRequest.Type]
TYPE_NEW_AUTOMATED_PURCHASE: _ClassVar[ListGovernanceDataRequest.Type]

TYPE_UNSPECIFIED: ListGovernanceDataRequest.Type
TYPE_ALL: ListGovernanceDataRequest.Type
Expand All @@ -3135,6 +3139,7 @@ class ListGovernanceDataRequest(_message.Message):
TYPE_UPDATE_MARKET_STATE: ListGovernanceDataRequest.Type
TYPE_UPDATE_REFERRAL_PROGRAM: ListGovernanceDataRequest.Type
TYPE_UPDATE_VOLUME_DISCOUNT_PROGRAM: ListGovernanceDataRequest.Type
TYPE_NEW_AUTOMATED_PURCHASE: ListGovernanceDataRequest.Type
PROPOSAL_STATE_FIELD_NUMBER: _ClassVar[int]
PROPOSAL_TYPE_FIELD_NUMBER: _ClassVar[int]
PROPOSER_PARTY_ID_FIELD_NUMBER: _ClassVar[int]
Expand Down Expand Up @@ -4233,24 +4238,34 @@ class GetPartyActivityStreakResponse(_message.Message):
) -> None: ...

class FundingPayment(_message.Message):
__slots__ = ("party_id", "market_id", "funding_period_seq", "timestamp", "amount")
__slots__ = (
"party_id",
"market_id",
"funding_period_seq",
"timestamp",
"amount",
"loss_amount",
)
PARTY_ID_FIELD_NUMBER: _ClassVar[int]
MARKET_ID_FIELD_NUMBER: _ClassVar[int]
FUNDING_PERIOD_SEQ_FIELD_NUMBER: _ClassVar[int]
TIMESTAMP_FIELD_NUMBER: _ClassVar[int]
AMOUNT_FIELD_NUMBER: _ClassVar[int]
LOSS_AMOUNT_FIELD_NUMBER: _ClassVar[int]
party_id: str
market_id: str
funding_period_seq: int
timestamp: int
amount: str
loss_amount: str
def __init__(
self,
party_id: _Optional[str] = ...,
market_id: _Optional[str] = ...,
funding_period_seq: _Optional[int] = ...,
timestamp: _Optional[int] = ...,
amount: _Optional[str] = ...,
loss_amount: _Optional[str] = ...,
) -> None: ...

class ListFundingPaymentsRequest(_message.Message):
Expand Down Expand Up @@ -5943,19 +5958,29 @@ class GetTimeWeightedNotionalPositionResponse(_message.Message):
) -> None: ...

class ListAMMsRequest(_message.Message):
__slots__ = ("id", "party_id", "market_id", "amm_party_id", "status", "pagination")
__slots__ = (
"id",
"party_id",
"market_id",
"amm_party_id",
"status",
"pagination",
"live_only",
)
ID_FIELD_NUMBER: _ClassVar[int]
PARTY_ID_FIELD_NUMBER: _ClassVar[int]
MARKET_ID_FIELD_NUMBER: _ClassVar[int]
AMM_PARTY_ID_FIELD_NUMBER: _ClassVar[int]
STATUS_FIELD_NUMBER: _ClassVar[int]
PAGINATION_FIELD_NUMBER: _ClassVar[int]
LIVE_ONLY_FIELD_NUMBER: _ClassVar[int]
id: str
party_id: str
market_id: str
amm_party_id: str
status: _events_pb2.AMM.Status
pagination: Pagination
live_only: bool
def __init__(
self,
id: _Optional[str] = ...,
Expand All @@ -5964,6 +5989,7 @@ class ListAMMsRequest(_message.Message):
amm_party_id: _Optional[str] = ...,
status: _Optional[_Union[_events_pb2.AMM.Status, str]] = ...,
pagination: _Optional[_Union[Pagination, _Mapping]] = ...,
live_only: bool = ...,
) -> None: ...

class ListAMMsResponse(_message.Message):
Expand Down
Loading

0 comments on commit 07099b6

Please sign in to comment.