From aff8b777c53d122cbcd5e94f7cef4ee5e0c1e9a5 Mon Sep 17 00:00:00 2001 From: Kirill Fedoseev Date: Tue, 6 Oct 2020 21:35:30 +0300 Subject: [PATCH] Add requiredBlockConfirmations ABI to the NATIVE_TO_ERC_V1 bridge mode (#468) --- commons/v1Abis.js | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/commons/v1Abis.js b/commons/v1Abis.js index 9f9e866c..815b630a 100644 --- a/commons/v1Abis.js +++ b/commons/v1Abis.js @@ -65,6 +65,20 @@ const homeV1Abi = [ payable: false, stateMutability: 'view', type: 'function' + }, + { + constant: true, + inputs: [], + name: 'requiredBlockConfirmations', + outputs: [ + { + name: '', + type: 'uint256' + } + ], + payable: false, + stateMutability: 'view', + type: 'function' } ] @@ -154,6 +168,20 @@ const foreignViAbi = [ payable: false, stateMutability: 'view', type: 'function' + }, + { + constant: true, + inputs: [], + name: 'requiredBlockConfirmations', + outputs: [ + { + name: '', + type: 'uint256' + } + ], + payable: false, + stateMutability: 'view', + type: 'function' } ]