From 9f067d05b19238abdd1848fb1ca8736d79b1360d Mon Sep 17 00:00:00 2001 From: nambrot Date: Mon, 31 Oct 2022 16:31:36 -0700 Subject: [PATCH] Adjust Goerli finality from 7 to 2 --- rust/config/testnet2/alfajores_config.json | 2 +- rust/config/testnet2/arbitrumgoerli_config.json | 2 +- rust/config/testnet2/bsctestnet_config.json | 2 +- rust/config/testnet2/fuji_config.json | 2 +- rust/config/testnet2/goerli_config.json | 2 +- rust/config/testnet2/moonbasealpha_config.json | 2 +- rust/config/testnet2/mumbai_config.json | 2 +- rust/config/testnet2/optimismgoerli_config.json | 2 +- rust/config/testnet2/scraper_config.json | 4 ++-- typescript/sdk/src/consts/chainMetadata.ts | 2 +- 10 files changed, 11 insertions(+), 11 deletions(-) diff --git a/rust/config/testnet2/alfajores_config.json b/rust/config/testnet2/alfajores_config.json index 3a5a27f847..8c42a1d896 100644 --- a/rust/config/testnet2/alfajores_config.json +++ b/rust/config/testnet2/alfajores_config.json @@ -48,7 +48,7 @@ "domain": "5", "name": "goerli", "rpcStyle": "ethereum", - "finalityBlocks": "7", + "finalityBlocks": "2", "connection": { "type": "http", "url": "" diff --git a/rust/config/testnet2/arbitrumgoerli_config.json b/rust/config/testnet2/arbitrumgoerli_config.json index 8e07650a60..c030a0a897 100644 --- a/rust/config/testnet2/arbitrumgoerli_config.json +++ b/rust/config/testnet2/arbitrumgoerli_config.json @@ -62,7 +62,7 @@ "domain": "5", "name": "goerli", "rpcStyle": "ethereum", - "finalityBlocks": "7", + "finalityBlocks": "2", "connection": { "type": "http", "url": "" diff --git a/rust/config/testnet2/bsctestnet_config.json b/rust/config/testnet2/bsctestnet_config.json index 78d5e6beeb..18e9e44f07 100644 --- a/rust/config/testnet2/bsctestnet_config.json +++ b/rust/config/testnet2/bsctestnet_config.json @@ -48,7 +48,7 @@ "domain": "5", "name": "goerli", "rpcStyle": "ethereum", - "finalityBlocks": "7", + "finalityBlocks": "2", "connection": { "type": "http", "url": "" diff --git a/rust/config/testnet2/fuji_config.json b/rust/config/testnet2/fuji_config.json index a29698b634..1af3650d49 100644 --- a/rust/config/testnet2/fuji_config.json +++ b/rust/config/testnet2/fuji_config.json @@ -48,7 +48,7 @@ "domain": "5", "name": "goerli", "rpcStyle": "ethereum", - "finalityBlocks": "7", + "finalityBlocks": "2", "connection": { "type": "http", "url": "" diff --git a/rust/config/testnet2/goerli_config.json b/rust/config/testnet2/goerli_config.json index 467d07bdea..c630981326 100644 --- a/rust/config/testnet2/goerli_config.json +++ b/rust/config/testnet2/goerli_config.json @@ -109,7 +109,7 @@ "domain": "5", "name": "goerli", "rpcStyle": "ethereum", - "finalityBlocks": "7", + "finalityBlocks": "2", "connection": { "type": "http", "url": "" diff --git a/rust/config/testnet2/moonbasealpha_config.json b/rust/config/testnet2/moonbasealpha_config.json index 119d6f4cc9..71f4c2e665 100644 --- a/rust/config/testnet2/moonbasealpha_config.json +++ b/rust/config/testnet2/moonbasealpha_config.json @@ -62,7 +62,7 @@ "domain": "5", "name": "goerli", "rpcStyle": "ethereum", - "finalityBlocks": "7", + "finalityBlocks": "2", "connection": { "type": "http", "url": "" diff --git a/rust/config/testnet2/mumbai_config.json b/rust/config/testnet2/mumbai_config.json index 432366fa35..cf096a98c3 100644 --- a/rust/config/testnet2/mumbai_config.json +++ b/rust/config/testnet2/mumbai_config.json @@ -48,7 +48,7 @@ "domain": "5", "name": "goerli", "rpcStyle": "ethereum", - "finalityBlocks": "7", + "finalityBlocks": "2", "connection": { "type": "http", "url": "" diff --git a/rust/config/testnet2/optimismgoerli_config.json b/rust/config/testnet2/optimismgoerli_config.json index 1dca3cc92f..c48df662ed 100644 --- a/rust/config/testnet2/optimismgoerli_config.json +++ b/rust/config/testnet2/optimismgoerli_config.json @@ -62,7 +62,7 @@ "domain": "5", "name": "goerli", "rpcStyle": "ethereum", - "finalityBlocks": "7", + "finalityBlocks": "2", "connection": { "type": "http", "url": "" diff --git a/rust/config/testnet2/scraper_config.json b/rust/config/testnet2/scraper_config.json index 9046f5da10..b0fe09ecfb 100644 --- a/rust/config/testnet2/scraper_config.json +++ b/rust/config/testnet2/scraper_config.json @@ -62,7 +62,7 @@ "domain": "5", "name": "goerli", "rpcStyle": "ethereum", - "finalityBlocks": "7", + "finalityBlocks": "2", "connection": { "type": "http", "url": "" @@ -152,7 +152,7 @@ "domain": "5", "name": "goerli", "rpcStyle": "ethereum", - "finalityBlocks": "7", + "finalityBlocks": "2", "connection": { "type": "http", "url": "" diff --git a/typescript/sdk/src/consts/chainMetadata.ts b/typescript/sdk/src/consts/chainMetadata.ts index 969dc8f809..c9b530e114 100644 --- a/typescript/sdk/src/consts/chainMetadata.ts +++ b/typescript/sdk/src/consts/chainMetadata.ts @@ -107,7 +107,7 @@ export const fuji: ChainMetadata = { export const goerli: ChainMetadata = { id: 5, - finalityBlocks: 7, + finalityBlocks: 2, }; export const optimismgoerli: ChainMetadata = {