Skip to content

Commit 46cbbea

Browse files
committed
sunset bera-test
1 parent 42eec3a commit 46cbbea

5 files changed

Lines changed: 1 addition & 29 deletions

File tree

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "vertex-protocol"
3-
version = "3.2.0"
3+
version = "3.2.1"
44
description = "Vertex Protocol SDK"
55
authors = ["Jeury Mejia <jeury@vertexprotocol.com>"]
66
homepage = "https://vertexprotocol.com/"

vertex_protocol/client/__init__.py

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@ class VertexClientMode(StrEnum):
4040
BASE_TESTNET: For operating in Vertex's testnet environment deployed on Base Testnet.
4141
SONIC_TESTNET: For operating in Vertex's testnet environment deployed on Sonic Testnet.
4242
ABSTRACT_TESTNET: For operating in Vertex's testnet environment deployed on Abstract Testnet.
43-
BERA_TESTNET: For operating in Vertex's testnet environment deployed on Bera Testnet.
4443
4544
DEVNET: For local development.
4645
@@ -65,7 +64,6 @@ class VertexClientMode(StrEnum):
6564
BASE_TESTNET = "base-testnet"
6665
SONIC_TESTNET = "sonic-testnet"
6766
ABSTRACT_TESTNET = "abstract-testnet"
68-
BERA_TESTNET = "bera-testnet"
6967

7068
# dev
7169
DEVNET = "devnet"
@@ -304,12 +302,6 @@ def client_mode_to_setup(
304302
VertexBackendURL.ABSTRACT_TESTNET_TRIGGER.value,
305303
VertexNetwork.ABSTRACT_TESTNET.value,
306304
),
307-
VertexClientMode.BERA_TESTNET: (
308-
VertexBackendURL.BERA_TESTNET_GATEWAY.value,
309-
VertexBackendURL.BERA_TESTNET_INDEXER.value,
310-
VertexBackendURL.BERA_TESTNET_TRIGGER.value,
311-
VertexNetwork.BERA_TESTNET.value,
312-
),
313305
VertexClientMode.DEVNET: (
314306
VertexBackendURL.DEVNET_GATEWAY.value,
315307
VertexBackendURL.DEVNET_INDEXER.value,

vertex_protocol/contracts/deployments/deployment.beraTestnet.json

Lines changed: 0 additions & 15 deletions
This file was deleted.

vertex_protocol/contracts/types.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ class VertexNetwork(StrEnum):
2828
BASE_TESTNET = "baseTestnet"
2929
SONIC_TESTNET = "sonicTestnet"
3030
ABSTRACT_TESTNET = "abstractTestnet"
31-
BERA_TESTNET = "beraTestnet"
3231

3332
# dev
3433
HARDHAT = "localhost"

vertex_protocol/utils/backend.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -70,10 +70,6 @@ class VertexBackendURL(StrEnum):
7070
ABSTRACT_TESTNET_INDEXER = "https://archive.abstract-test.vertexprotocol.com/v1"
7171
ABSTRACT_TESTNET_TRIGGER = "https://trigger.abstract-test.vertexprotocol.com/v1"
7272

73-
BERA_TESTNET_GATEWAY = "https://gateway.bera-test.vertexprotocol.com/v1"
74-
BERA_TESTNET_INDEXER = "https://archive.bera-test.vertexprotocol.com/v1"
75-
BERA_TESTNET_TRIGGER = "https://trigger.bera-test.vertexprotocol.com/v1"
76-
7773
# dev
7874
DEVNET_GATEWAY = "http://localhost:80"
7975
DEVNET_INDEXER = "http://localhost:8000"

0 commit comments

Comments
 (0)