From fc8c0cbe804f533ce96f7ec9f1e93a4a998a657d Mon Sep 17 00:00:00 2001 From: Rani Date: Sat, 7 Sep 2024 14:24:40 +0200 Subject: [PATCH 1/3] docs: update sequencer endpoint --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a8d6b5e..3aae7f5 100644 --- a/README.md +++ b/README.md @@ -85,7 +85,7 @@ export async function handle(state, action) { ## Lambda Sequencer -#### Testnet sequencer endpoint: https://wvm-lambda-0755acbdae90.herokuapp.com/ +#### Testnet sequencer endpoint: https://lambda.pink ### Methods From 6a5e286e2401811f98f4ed526e254c7b3ebde833 Mon Sep 17 00:00:00 2001 From: Rani Date: Fri, 20 Sep 2024 23:04:37 +0200 Subject: [PATCH 2/3] perf: update LatestState column type to LONGTEXT --- init.sql | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/init.sql b/init.sql index 3b54541..8cd2a6a 100644 --- a/init.sql +++ b/init.sql @@ -14,5 +14,5 @@ CREATE TABLE IF NOT EXISTS Contracts ( ContractId VARCHAR(66) UNIQUE, SourceCode TEXT, InitState TEXT, - LatestState TEXT -); \ No newline at end of file + LatestState LONGTEXT +); From ea50d85a99f5062a4b2b7c99981cf7b64543670d Mon Sep 17 00:00:00 2001 From: Rani Date: Wed, 15 Jan 2025 10:17:05 +0100 Subject: [PATCH 3/3] chore: change sequencer address --- sequencer/utils/constants.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sequencer/utils/constants.js b/sequencer/utils/constants.js index 3ceeae1..836582b 100644 --- a/sequencer/utils/constants.js +++ b/sequencer/utils/constants.js @@ -1,4 +1,4 @@ export const WVM_RPC_URL = "https://testnet-rpc.wvm.dev"; export const IRYS_EVM_RPC_URL = "https://ethereum-sepolia-rpc.publicnode.com"; -export const SEQUENCER_ADDRESS = "0x197f818c1313DC58b32D88078ecdfB40EA822614"; -export const MEM_SIMULATE_ENDPOINT = "https://mem-testnet-bfdc8ff3530f.herokuapp.com/"; \ No newline at end of file +export const SEQUENCER_ADDRESS = "0x0000000000000000000000000000000000000000"; +export const MEM_SIMULATE_ENDPOINT = "https://mem-testnet-bfdc8ff3530f.herokuapp.com/";