From 5ee9a07062cd67a162ab0b962760d40c92c10981 Mon Sep 17 00:00:00 2001 From: Antonio Pancorbo <48168255+apancorb@users.noreply.github.com> Date: Wed, 25 Sep 2024 08:56:19 +0000 Subject: [PATCH] feat(abis): add getStateForSvpClient Bridge function --- abis/bridge.json | 12 ++++++++++++ tests/bridge.test.js | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/abis/bridge.json b/abis/bridge.json index 93bb740..3c21edd 100644 --- a/abis/bridge.json +++ b/abis/bridge.json @@ -23,6 +23,18 @@ } ] }, + { + "name": "getStateForSvpClient", + "type": "function", + "constant": "true", + "inputs": [], + "outputs": [ + { + "name": "", + "type": "bytes" + } + ] + }, { "name": "getStateForDebugging", "type": "function", diff --git a/tests/bridge.test.js b/tests/bridge.test.js index 6c2f6d1..d17495c 100644 --- a/tests/bridge.test.js +++ b/tests/bridge.test.js @@ -8,7 +8,7 @@ describe('Bridge', () => { }); it('has all the expected signatures', () => { - assert.equal(bridge.abi.length, 76); + assert.equal(bridge.abi.length, 77); }); it('builds a valid contract', () => {