add aztec networks (#785)

* add aztec networks

* fix linter errors & checkout from main (public)

* fix AztecLowerBoundService
This commit is contained in:
Artem Rootman
2026-01-30 18:04:05 +02:00
committed by GitHub
parent 116807054a
commit 4d4a2ed655
10 changed files with 321 additions and 3 deletions

View File

@@ -5,6 +5,7 @@ enum class BlockchainType(
) {
UNKNOWN(ApiType.JSON_RPC),
BITCOIN(ApiType.JSON_RPC),
AZTEC(ApiType.JSON_RPC),
ETHEREUM(ApiType.JSON_RPC),
STARKNET(ApiType.JSON_RPC),
POLKADOT(ApiType.JSON_RPC),
@@ -19,4 +20,4 @@ enum class BlockchainType(
enum class ApiType {
JSON_RPC, REST;
}
}