@@ -112,7 +119,7 @@
diff --git a/docs/ref/doxygen/resize.js b/docs/ref/doxygen/resize.js
index 2aef3a5..c11a522 100644
--- a/docs/ref/doxygen/resize.js
+++ b/docs/ref/doxygen/resize.js
@@ -22,61 +22,21 @@
@licend The above is the entire license notice for the JavaScript code in this file
*/
-var once=1;
-function initResizable()
-{
- var cookie_namespace = 'doxygen';
- var sidenav,navtree,content,header,barWidth=6,desktop_vp=768,titleHeight;
- function readSetting(cookie)
- {
- if (window.chrome) {
- var val = localStorage.getItem(cookie_namespace+'_width');
- if (val) return val;
- } else {
- var myCookie = cookie_namespace+"_"+cookie+"=";
- if (document.cookie) {
- var index = document.cookie.indexOf(myCookie);
- if (index != -1) {
- var valStart = index + myCookie.length;
- var valEnd = document.cookie.indexOf(";", valStart);
- if (valEnd == -1) {
- valEnd = document.cookie.length;
- }
- var val = document.cookie.substring(valStart, valEnd);
- return val;
- }
- }
- }
- return 350;
- }
-
- function writeSetting(cookie, val)
- {
- if (window.chrome) {
- localStorage.setItem(cookie_namespace+"_width",val);
- } else {
- var date = new Date();
- date.setTime(date.getTime()+(10*365*24*60*60*1000)); // default expiration is one week
- expiration = date.toGMTString();
- document.cookie = cookie_namespace + "_" + cookie + "=" + val + "; SameSite=Lax; expires=" + expiration+"; path=/";
- }
- }
+function initResizable(treeview) {
+ let sidenav,navtree,content,header,footer,barWidth=6;
+ const RESIZE_COOKIE_NAME = ''+'width';
- function resizeWidth()
- {
- var windowWidth = $(window).width() + "px";
- var sidenavWidth = $(sidenav).outerWidth();
+ function resizeWidth() {
+ const sidenavWidth = $(sidenav).outerWidth();
content.css({marginLeft:parseInt(sidenavWidth)+"px"});
if (typeof page_layout!=='undefined' && page_layout==1) {
footer.css({marginLeft:parseInt(sidenavWidth)+"px"});
}
- writeSetting('width',sidenavWidth-barWidth);
+ Cookie.writeSetting(RESIZE_COOKIE_NAME,sidenavWidth-barWidth);
}
- function restoreWidth(navWidth)
- {
- var windowWidth = $(window).width() + "px";
+ function restoreWidth(navWidth) {
content.css({marginLeft:parseInt(navWidth)+barWidth+"px"});
if (typeof page_layout!=='undefined' && page_layout==1) {
footer.css({marginLeft:parseInt(navWidth)+barWidth+"px"});
@@ -84,72 +44,104 @@ function initResizable()
sidenav.css({width:navWidth + "px"});
}
- function resizeHeight()
- {
- var headerHeight = header.outerHeight();
- var footerHeight = footer.outerHeight();
- var windowHeight = $(window).height();
- var contentHeight,navtreeHeight,sideNavHeight;
- if (typeof page_layout==='undefined' || page_layout==0) { /* DISABLE_INDEX=NO */
- contentHeight = windowHeight - headerHeight - footerHeight;
- navtreeHeight = contentHeight;
- sideNavHeight = contentHeight;
- } else if (page_layout==1) { /* DISABLE_INDEX=YES */
- contentHeight = windowHeight - footerHeight;
- navtreeHeight = windowHeight - headerHeight;
- sideNavHeight = windowHeight;
+ function resizeHeight(treeview) {
+ const headerHeight = header.outerHeight();
+ const windowHeight = $(window).height();
+ let contentHeight;
+ if (treeview)
+ {
+ const footerHeight = footer.outerHeight();
+ let navtreeHeight,sideNavHeight;
+ if (typeof page_layout==='undefined' || page_layout==0) { /* DISABLE_INDEX=NO */
+ contentHeight = windowHeight - headerHeight - footerHeight;
+ navtreeHeight = contentHeight;
+ sideNavHeight = contentHeight;
+ } else if (page_layout==1) { /* DISABLE_INDEX=YES */
+ contentHeight = windowHeight - footerHeight;
+ navtreeHeight = windowHeight - headerHeight;
+ sideNavHeight = windowHeight;
+ }
+ navtree.css({height:navtreeHeight + "px"});
+ sidenav.css({height:sideNavHeight + "px"});
+ }
+ else
+ {
+ contentHeight = windowHeight - headerHeight;
}
content.css({height:contentHeight + "px"});
- navtree.css({height:navtreeHeight + "px"});
- sidenav.css({height:sideNavHeight + "px"});
if (location.hash.slice(1)) {
(document.getElementById(location.hash.slice(1))||document.body).scrollIntoView();
}
}
- function collapseExpand()
- {
- var newWidth;
+ function collapseExpand() {
+ let newWidth;
if (sidenav.width()>0) {
newWidth=0;
- }
- else {
- var width = readSetting('width');
+ } else {
+ const width = Cookie.readSetting(RESIZE_COOKIE_NAME,350);
newWidth = (width>350 && width<$(window).width()) ? width : 350;
}
restoreWidth(newWidth);
- var sidenavWidth = $(sidenav).outerWidth();
- writeSetting('width',sidenavWidth-barWidth);
+ const sidenavWidth = $(sidenav).outerWidth();
+ Cookie.writeSetting(RESIZE_COOKIE_NAME,sidenavWidth-barWidth);
}
header = $("#top");
- sidenav = $("#side-nav");
content = $("#doc-content");
- navtree = $("#nav-tree");
footer = $("#nav-path");
- $(".side-nav-resizable").resizable({resize: function(e, ui) { resizeWidth(); } });
- $(sidenav).resizable({ minWidth: 0 });
- $(window).resize(function() { resizeHeight(); });
- var device = navigator.userAgent.toLowerCase();
- var touch_device = device.match(/(iphone|ipod|ipad|android)/);
- if (touch_device) { /* wider split bar for touch only devices */
- $(sidenav).css({ paddingRight:'20px' });
- $('.ui-resizable-e').css({ width:'20px' });
- $('#nav-sync').css({ right:'34px' });
- barWidth=20;
+ sidenav = $("#side-nav");
+ if (!treeview) {
+// title = $("#titlearea");
+// titleH = $(title).height();
+// let animating = false;
+// content.on("scroll", function() {
+// slideOpts = { duration: 200,
+// step: function() {
+// contentHeight = $(window).height() - header.outerHeight();
+// content.css({ height : contentHeight + "px" });
+// },
+// done: function() { animating=false; }
+// };
+// if (content.scrollTop()>titleH && title.css('display')!='none' && !animating) {
+// title.slideUp(slideOpts);
+// animating=true;
+// } else if (content.scrollTop()<=titleH && title.css('display')=='none' && !animating) {
+// title.slideDown(slideOpts);
+// animating=true;
+// }
+// });
+ } else {
+ navtree = $("#nav-tree");
+ $(".side-nav-resizable").resizable({resize: function(e, ui) { resizeWidth(); } });
+ $(sidenav).resizable({ minWidth: 0 });
+ }
+ $(window).resize(function() { resizeHeight(treeview); });
+ if (treeview)
+ {
+ const device = navigator.userAgent.toLowerCase();
+ const touch_device = device.match(/(iphone|ipod|ipad|android)/);
+ if (touch_device) { /* wider split bar for touch only devices */
+ $(sidenav).css({ paddingRight:'20px' });
+ $('.ui-resizable-e').css({ width:'20px' });
+ $('#nav-sync').css({ right:'34px' });
+ barWidth=20;
+ }
+ const width = Cookie.readSetting(RESIZE_COOKIE_NAME,350);
+ if (width) { restoreWidth(width); } else { resizeWidth(); }
}
- var width = readSetting('width');
- if (width) { restoreWidth(width); } else { resizeWidth(); }
- resizeHeight();
- var url = location.href;
- var i=url.indexOf("#");
+ resizeHeight(treeview);
+ const url = location.href;
+ const i=url.indexOf("#");
if (i>=0) window.location.hash=url.substr(i);
- var _preventDefault = function(evt) { evt.preventDefault(); };
- $("#splitbar").bind("dragstart", _preventDefault).bind("selectstart", _preventDefault);
- if (once) {
+ const _preventDefault = function(evt) { evt.preventDefault(); };
+ if (treeview)
+ {
+ $("#splitbar").bind("dragstart", _preventDefault).bind("selectstart", _preventDefault);
$(".ui-resizable-handle").dblclick(collapseExpand);
- once=0
+ // workaround for firefox
+ $("body").css({overflow: "hidden"});
}
- $(window).on('load',resizeHeight);
+ $(window).on('load',function() { resizeHeight(treeview); });
}
/* @license-end */
diff --git a/docs/ref/doxygen/search/all_0.js b/docs/ref/doxygen/search/all_0.js
index f34ce70..46ab41b 100644
--- a/docs/ref/doxygen/search/all_0.js
+++ b/docs/ref/doxygen/search/all_0.js
@@ -1,6 +1,6 @@
var searchData=
[
- ['_5f_5fconstruct_0',['__construct',['../classM8B_1_1EtherBinder_1_1Contract_1_1ABIGen.html#aad6aff3bbdd9bcdcdb98e4ae3d106229',1,'M8B\EtherBinder\Contract\ABIGen\__construct()'],['../classM8B_1_1EtherBinder_1_1Common_1_1SolidityFunction.html#a63742e4ee926643ad7932045ac33cdf1',1,'M8B\EtherBinder\Common\SolidityFunction\__construct()'],['../classM8B_1_1EtherBinder_1_1Wallet_1_1RawKeyWallet.html#af78fec855b2bee3e81afcef8eb8eeed6',1,'M8B\EtherBinder\Wallet\RawKeyWallet\__construct()'],['../classM8B_1_1EtherBinder_1_1Wallet_1_1MnemonicWallet.html#a7a22f953ff69d379033a21830f617e5d',1,'M8B\EtherBinder\Wallet\MnemonicWallet\__construct()'],['../classM8B_1_1EtherBinder_1_1Utils_1_1OOGmp.html#a3113152f9fcd7aae6fcdfd5abcced3aa',1,'M8B\EtherBinder\Utils\OOGmp\__construct()'],['../classM8B_1_1EtherBinder_1_1RPC_1_1RPCFilter.html#a958c3cd766397ae22772262faf20cf05',1,'M8B\EtherBinder\RPC\RPCFilter\__construct()'],['../classM8B_1_1EtherBinder_1_1RPC_1_1HttpRPC.html#a61d626dbb5829ddec2cb4f51550888ae',1,'M8B\EtherBinder\RPC\HttpRPC\__construct()'],['../classM8B_1_1EtherBinder_1_1Misc_1_1AbstractSigningMessage.html#a1af058d45dc44fdb50b1a1d34843639c',1,'M8B\EtherBinder\Misc\AbstractSigningMessage\__construct()'],['../classM8B_1_1EtherBinder_1_1Crypto_1_1Key.html#a6456ee5521dc72f86ace687b98c4c948',1,'M8B\EtherBinder\Crypto\Key\__construct()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbstractContract.html#a4c3ad343fda354fe625d0b4f930a595e',1,'M8B\EtherBinder\Contract\AbstractContract\__construct()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiUint.html#ad5efd38d1d22750a27aacc61f07da105',1,'M8B\EtherBinder\Contract\AbiTypes\AbiUint\__construct()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiInt.html#a5b33d9b675adf64c9d6433d7afd443c7',1,'M8B\EtherBinder\Contract\AbiTypes\AbiInt\__construct()']]],
+ ['_5f_5fconstruct_0',['__construct',['../classM8B_1_1EtherBinder_1_1Common_1_1SolidityFunction.html#a63742e4ee926643ad7932045ac33cdf1',1,'M8B\EtherBinder\Common\SolidityFunction\__construct()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1ABIGen.html#aad6aff3bbdd9bcdcdb98e4ae3d106229',1,'M8B\EtherBinder\Contract\ABIGen\__construct()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiInt.html#a5b33d9b675adf64c9d6433d7afd443c7',1,'M8B\EtherBinder\Contract\AbiTypes\AbiInt\__construct()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiUint.html#ad5efd38d1d22750a27aacc61f07da105',1,'M8B\EtherBinder\Contract\AbiTypes\AbiUint\__construct()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbstractContract.html#a4c3ad343fda354fe625d0b4f930a595e',1,'M8B\EtherBinder\Contract\AbstractContract\__construct()'],['../classM8B_1_1EtherBinder_1_1Crypto_1_1Key.html#a6456ee5521dc72f86ace687b98c4c948',1,'M8B\EtherBinder\Crypto\Key\__construct()'],['../classM8B_1_1EtherBinder_1_1Misc_1_1AbstractSigningMessage.html#a1af058d45dc44fdb50b1a1d34843639c',1,'M8B\EtherBinder\Misc\AbstractSigningMessage\__construct()'],['../classM8B_1_1EtherBinder_1_1RPC_1_1HttpRPC.html#a61d626dbb5829ddec2cb4f51550888ae',1,'M8B\EtherBinder\RPC\HttpRPC\__construct()'],['../classM8B_1_1EtherBinder_1_1RPC_1_1RPCFilter.html#a958c3cd766397ae22772262faf20cf05',1,'M8B\EtherBinder\RPC\RPCFilter\__construct()'],['../classM8B_1_1EtherBinder_1_1Utils_1_1OOGmp.html#a3113152f9fcd7aae6fcdfd5abcced3aa',1,'M8B\EtherBinder\Utils\OOGmp\__construct()'],['../classM8B_1_1EtherBinder_1_1Wallet_1_1MnemonicWallet.html#a7a22f953ff69d379033a21830f617e5d',1,'M8B\EtherBinder\Wallet\MnemonicWallet\__construct()'],['../classM8B_1_1EtherBinder_1_1Wallet_1_1RawKeyWallet.html#af78fec855b2bee3e81afcef8eb8eeed6',1,'M8B\EtherBinder\Wallet\RawKeyWallet\__construct()']]],
['_5f_5fdestruct_1',['__destruct',['../classM8B_1_1EtherBinder_1_1RPC_1_1HttpRPC.html#a004d66bad0d846206725e3bf135c93c1',1,'M8B::EtherBinder::RPC::HttpRPC']]],
- ['_5f_5ftostring_2',['__tostring',['../classM8B_1_1EtherBinder_1_1Misc_1_1AbstractSigningMessage.html#adcc9b540ddda3e73c100278fd4620017',1,'M8B\EtherBinder\Misc\AbstractSigningMessage\__toString()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbstractABIValue.html#a15399584b8f7b055781fc0b6e03da158',1,'M8B\EtherBinder\Contract\AbiTypes\AbstractABIValue\__toString()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiUint.html#a0b94bca1231c7a7d8c61d5e463117bfb',1,'M8B\EtherBinder\Contract\AbiTypes\AbiUint\__toString()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiTuple.html#a9de59fc6413489b2c0df5c1a051effb1',1,'M8B\EtherBinder\Contract\AbiTypes\AbiTuple\__toString()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiString.html#ab03ee833616d44c430978c042ef331d4',1,'M8B\EtherBinder\Contract\AbiTypes\AbiString\__toString()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiInt.html#a40a8f703977873490f218a0323faaa80',1,'M8B\EtherBinder\Contract\AbiTypes\AbiInt\__toString()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiFunction.html#a0a5a69ee239c0d4adf505017dc501736',1,'M8B\EtherBinder\Contract\AbiTypes\AbiFunction\__toString()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiBytes.html#a897131498abb7bfb7a035dcb6d6afe3d',1,'M8B\EtherBinder\Contract\AbiTypes\AbiBytes\__toString()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiBool.html#a7170021048e9dee91955fb58ceb08280',1,'M8B\EtherBinder\Contract\AbiTypes\AbiBool\__toString()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiArrayUnknownLength.html#a3afbc1643097e4693e5fa3a311023a4c',1,'M8B\EtherBinder\Contract\AbiTypes\AbiArrayUnknownLength\__toString()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiArrayKnownLength.html#aefb03a0d9047018988b6e02a90bc4bbc',1,'M8B\EtherBinder\Contract\AbiTypes\AbiArrayKnownLength\__toString()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiAddress.html#ae7806e670593e2f189c49b7f581cc56a',1,'M8B\EtherBinder\Contract\AbiTypes\AbiAddress\__toString()'],['../classM8B_1_1EtherBinder_1_1Common_1_1Address.html#aeb502dcfa16a0b8ab03ecf5b352a06ac',1,'M8B\EtherBinder\Common\Address\__toString()']]]
+ ['_5f_5ftostring_2',['__toString',['../classM8B_1_1EtherBinder_1_1Common_1_1Address.html#aeb502dcfa16a0b8ab03ecf5b352a06ac',1,'M8B\EtherBinder\Common\Address\__toString()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiAddress.html#ae7806e670593e2f189c49b7f581cc56a',1,'M8B\EtherBinder\Contract\AbiTypes\AbiAddress\__toString()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiArrayKnownLength.html#aefb03a0d9047018988b6e02a90bc4bbc',1,'M8B\EtherBinder\Contract\AbiTypes\AbiArrayKnownLength\__toString()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiArrayUnknownLength.html#a3afbc1643097e4693e5fa3a311023a4c',1,'M8B\EtherBinder\Contract\AbiTypes\AbiArrayUnknownLength\__toString()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiBool.html#a7170021048e9dee91955fb58ceb08280',1,'M8B\EtherBinder\Contract\AbiTypes\AbiBool\__toString()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiBytes.html#a897131498abb7bfb7a035dcb6d6afe3d',1,'M8B\EtherBinder\Contract\AbiTypes\AbiBytes\__toString()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiFunction.html#a0a5a69ee239c0d4adf505017dc501736',1,'M8B\EtherBinder\Contract\AbiTypes\AbiFunction\__toString()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiInt.html#a40a8f703977873490f218a0323faaa80',1,'M8B\EtherBinder\Contract\AbiTypes\AbiInt\__toString()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiString.html#ab03ee833616d44c430978c042ef331d4',1,'M8B\EtherBinder\Contract\AbiTypes\AbiString\__toString()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiTuple.html#a9de59fc6413489b2c0df5c1a051effb1',1,'M8B\EtherBinder\Contract\AbiTypes\AbiTuple\__toString()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiUint.html#a0b94bca1231c7a7d8c61d5e463117bfb',1,'M8B\EtherBinder\Contract\AbiTypes\AbiUint\__toString()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbstractABIValue.html#a15399584b8f7b055781fc0b6e03da158',1,'M8B\EtherBinder\Contract\AbiTypes\AbstractABIValue\__toString()'],['../classM8B_1_1EtherBinder_1_1Misc_1_1AbstractSigningMessage.html#adcc9b540ddda3e73c100278fd4620017',1,'M8B\EtherBinder\Misc\AbstractSigningMessage\__toString()']]]
];
diff --git a/docs/ref/doxygen/search/all_1.js b/docs/ref/doxygen/search/all_1.js
index 4ec5c96..c4f4d86 100644
--- a/docs/ref/doxygen/search/all_1.js
+++ b/docs/ref/doxygen/search/all_1.js
@@ -28,13 +28,14 @@ var searchData=
['abstractsigningmessage_25',['AbstractSigningMessage',['../classM8B_1_1EtherBinder_1_1Misc_1_1AbstractSigningMessage.html',1,'M8B::EtherBinder::Misc']]],
['abstracttuple_26',['AbstractTuple',['../classM8B_1_1EtherBinder_1_1Contract_1_1AbstractTuple.html',1,'M8B::EtherBinder::Contract']]],
['abstractwallet_27',['AbstractWallet',['../classM8B_1_1EtherBinder_1_1Wallet_1_1AbstractWallet.html',1,'M8B::EtherBinder::Wallet']]],
- ['accesslist_28',['accesslist',['../classM8B_1_1EtherBinder_1_1Common_1_1LondonTransaction.html#ae06f0f4f4d717577f0135261bddc00e8',1,'M8B\EtherBinder\Common\LondonTransaction\accessList()'],['../classM8B_1_1EtherBinder_1_1Common_1_1AccessListTransaction.html#abd3dc5004ffcd9d0c30c3ffdd00f22f7',1,'M8B\EtherBinder\Common\AccessListTransaction\accessList()']]],
+ ['accesslist_28',['accessList',['../classM8B_1_1EtherBinder_1_1Common_1_1AccessListTransaction.html#abd3dc5004ffcd9d0c30c3ffdd00f22f7',1,'M8B\EtherBinder\Common\AccessListTransaction\accessList()'],['../classM8B_1_1EtherBinder_1_1Common_1_1LondonTransaction.html#ae06f0f4f4d717577f0135261bddc00e8',1,'M8B\EtherBinder\Common\LondonTransaction\accessList()']]],
['accesslisttransaction_29',['AccessListTransaction',['../classM8B_1_1EtherBinder_1_1Common_1_1AccessListTransaction.html',1,'M8B::EtherBinder::Common']]],
['adding_20more_20supported_20protocols_30',['Adding more supported protocols',['../md_docs_2rpc.html#autotoc_md38',1,'']]],
- ['address_31',['address',['../classM8B_1_1EtherBinder_1_1Common_1_1Address.html',1,'M8B\EtherBinder\Common\Address'],['../md_docs_2types.html#autotoc_md49',1,'Address']]],
- ['already_20parsed_20data_32',['From already parsed data',['../md_docs_2messages.html#autotoc_md28',1,'']]],
- ['and_20encoding_33',['RLP Decoding and Encoding',['../md_docs_2transactions.html#autotoc_md44',1,'']]],
- ['arithmetic_20functions_3a_34',['Arithmetic Functions:',['../md_docs_2utils.html#autotoc_md58',1,'']]],
- ['assert_20hex_20size_35',['assert hex size',['../md_docs_2utils.html#autotoc_md65',1,'']]],
- ['asserttype_36',['assertType',['../classM8B_1_1EtherBinder_1_1Contract_1_1AbstractEventFilter.html#a632f808761161a94ee8e7c0e0c83cac2',1,'M8B::EtherBinder::Contract::AbstractEventFilter']]]
+ ['address_31',['Address',['../classM8B_1_1EtherBinder_1_1Common_1_1Address.html',1,'M8B\EtherBinder\Common\Address'],['../md_docs_2types.html#autotoc_md49',1,'Address']]],
+ ['addversionedhash_32',['addVersionedHash',['../classM8B_1_1EtherBinder_1_1Common_1_1CancunTransaction.html#aa83e8ba57e010fd165dc84115870687e',1,'M8B::EtherBinder::Common::CancunTransaction']]],
+ ['already_20parsed_20data_33',['From already parsed data',['../md_docs_2messages.html#autotoc_md28',1,'']]],
+ ['and_20encoding_34',['RLP Decoding and Encoding',['../md_docs_2transactions.html#autotoc_md44',1,'']]],
+ ['arithmetic_20functions_3a_35',['Arithmetic Functions:',['../md_docs_2utils.html#autotoc_md58',1,'']]],
+ ['assert_20hex_20size_36',['assert hex size',['../md_docs_2utils.html#autotoc_md65',1,'']]],
+ ['asserttype_37',['assertType',['../classM8B_1_1EtherBinder_1_1Contract_1_1AbstractEventFilter.html#a632f808761161a94ee8e7c0e0c83cac2',1,'M8B::EtherBinder::Contract::AbstractEventFilter']]]
];
diff --git a/docs/ref/doxygen/search/all_10.js b/docs/ref/doxygen/search/all_10.js
index 0e06183..f8db192 100644
--- a/docs/ref/doxygen/search/all_10.js
+++ b/docs/ref/doxygen/search/all_10.js
@@ -9,7 +9,7 @@ var searchData=
['parseoutput_6',['parseOutput',['../classM8B_1_1EtherBinder_1_1Contract_1_1AbstractContract.html#a7a5cf87a7f24e2810478b8d565cfe418',1,'M8B::EtherBinder::Contract::AbstractContract']]],
['parsevalue_7',['parseValue',['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbstractABIValue.html#a81826b95a118bc2a5a6aea3239f68b13',1,'M8B::EtherBinder::Contract::AbiTypes::AbstractABIValue']]],
['preparing_20transaction_8',['Preparing Transaction',['../md_docs_2transactions.html#autotoc_md43',1,'']]],
- ['preprocessmessage_9',['preprocessmessage',['../classM8B_1_1EtherBinder_1_1Misc_1_1AbstractSigningMessage.html#a356cf628e0f2b1c18d47feb8e4fa6f59',1,'M8B\EtherBinder\Misc\AbstractSigningMessage\preProcessMessage()'],['../classM8B_1_1EtherBinder_1_1Misc_1_1GethLikeMessage.html#a47631c3428e90f95f627a9e259112722',1,'M8B\EtherBinder\Misc\GethLikeMessage\preProcessMessage()'],['../classM8B_1_1EtherBinder_1_1Misc_1_1InnerHashedMessage.html#ab91253880a9f3dee01eecdd043405ad3',1,'M8B\EtherBinder\Misc\InnerHashedMessage\preProcessMessage()'],['../classM8B_1_1EtherBinder_1_1Misc_1_1UnFormattedSigningMessage.html#a8e55903077f4c0fe22fa654c533e21e9',1,'M8B\EtherBinder\Misc\UnFormattedSigningMessage\preProcessMessage()']]],
+ ['preprocessmessage_9',['preProcessMessage',['../classM8B_1_1EtherBinder_1_1Misc_1_1AbstractSigningMessage.html#a356cf628e0f2b1c18d47feb8e4fa6f59',1,'M8B\EtherBinder\Misc\AbstractSigningMessage\preProcessMessage()'],['../classM8B_1_1EtherBinder_1_1Misc_1_1GethLikeMessage.html#a47631c3428e90f95f627a9e259112722',1,'M8B\EtherBinder\Misc\GethLikeMessage\preProcessMessage()'],['../classM8B_1_1EtherBinder_1_1Misc_1_1InnerHashedMessage.html#ab91253880a9f3dee01eecdd043405ad3',1,'M8B\EtherBinder\Misc\InnerHashedMessage\preProcessMessage()'],['../classM8B_1_1EtherBinder_1_1Misc_1_1UnFormattedSigningMessage.html#a8e55903077f4c0fe22fa654c533e21e9',1,'M8B\EtherBinder\Misc\UnFormattedSigningMessage\preProcessMessage()']]],
['prices_20of_20binding_20s_20transactions_10',['Influencing gas prices of binding's transactions',['../md_docs_2contracts.html#autotoc_md18',1,'']]],
['protocols_11',['Adding more supported protocols',['../md_docs_2rpc.html#autotoc_md38',1,'']]]
];
diff --git a/docs/ref/doxygen/search/all_11.js b/docs/ref/doxygen/search/all_11.js
index f4589a8..160e372 100644
--- a/docs/ref/doxygen/search/all_11.js
+++ b/docs/ref/doxygen/search/all_11.js
@@ -1,11 +1,11 @@
var searchData=
[
['r_0',['r',['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#a0d0ac54c24b1f425d55d0f7a586c9ac0',1,'M8B::EtherBinder::Common::Transaction']]],
- ['raw_1',['raw',['../md_docs_2utils.html#autotoc_md61',1,'raw'],['../classM8B_1_1EtherBinder_1_1Utils_1_1OOGmp.html#a9f50e4da76480bad6232872b5cd14c1f',1,'M8B\EtherBinder\Utils\OOGmp\raw()'],['../classM8B_1_1EtherBinder_1_1RPC_1_1AbstractRPC.html#a228d138f4a70a444b1a916591d807974',1,'M8B\EtherBinder\RPC\AbstractRPC\raw()'],['../classM8B_1_1EtherBinder_1_1RPC_1_1HttpRPC.html#a4649a322e1cf7814d5cd3251b5b62511',1,'M8B\EtherBinder\RPC\HttpRPC\raw()']]],
+ ['raw_1',['raw',['../classM8B_1_1EtherBinder_1_1RPC_1_1AbstractRPC.html#a228d138f4a70a444b1a916591d807974',1,'M8B\EtherBinder\RPC\AbstractRPC\raw()'],['../classM8B_1_1EtherBinder_1_1RPC_1_1HttpRPC.html#a4649a322e1cf7814d5cd3251b5b62511',1,'M8B\EtherBinder\RPC\HttpRPC\raw()'],['../classM8B_1_1EtherBinder_1_1Utils_1_1OOGmp.html#a9f50e4da76480bad6232872b5cd14c1f',1,'M8B\EtherBinder\Utils\OOGmp\raw()'],['../md_docs_2utils.html#autotoc_md61',1,'raw']]],
['rawkeywallet_2',['RawKeyWallet',['../classM8B_1_1EtherBinder_1_1Wallet_1_1RawKeyWallet.html',1,'M8B::EtherBinder::Wallet']]],
['read_20functions_20on_20contract_3',['Using read functions on contract',['../md_docs_2contracts.html#autotoc_md15',1,'']]],
['reading_20events_4',['Reading events',['../md_docs_2contracts.html#autotoc_md17',1,'']]],
- ['receipt_5',['receipt',['../classM8B_1_1EtherBinder_1_1Common_1_1Receipt.html',1,'M8B\EtherBinder\Common\Receipt'],['../md_docs_2types.html#autotoc_md51',1,'Receipt']]],
+ ['receipt_5',['Receipt',['../classM8B_1_1EtherBinder_1_1Common_1_1Receipt.html',1,'M8B\EtherBinder\Common\Receipt'],['../md_docs_2types.html#autotoc_md51',1,'Receipt']]],
['recover_6',['Recover',['../classM8B_1_1EtherBinder_1_1Crypto_1_1EC.html#abeb524769276ccd6bdbb85e9cbb80da6',1,'M8B::EtherBinder::Crypto::EC']]],
['reference_7',['Endpoint specific reference',['../md_docs_2rpc.html#autotoc_md36',1,'']]],
['rlp_20decoding_8',['RLP Decoding',['../md_docs_2rlp.html#autotoc_md30',1,'']]],
@@ -19,5 +19,5 @@ var searchData=
['rpcnotfoundexception_16',['RPCNotFoundException',['../classM8B_1_1EtherBinder_1_1Exceptions_1_1RPCNotFoundException.html',1,'M8B::EtherBinder::Exceptions']]],
['runnonpayabledeploy_17',['runNonPayableDeploy',['../classM8B_1_1EtherBinder_1_1Contract_1_1AbstractContract.html#ae0735542171232f1838ee5425c0aefa8',1,'M8B::EtherBinder::Contract::AbstractContract']]],
['runpayabledeploy_18',['runPayableDeploy',['../classM8B_1_1EtherBinder_1_1Contract_1_1AbstractContract.html#abe0f7161fef3f6b8eaa9c17f9eb88b08',1,'M8B::EtherBinder::Contract::AbstractContract']]],
- ['runrpc_19',['runrpc',['../classM8B_1_1EtherBinder_1_1RPC_1_1AbstractRPC.html#a3556183a237ad374955625b3665c7bba',1,'M8B\EtherBinder\RPC\AbstractRPC\runRpc()'],['../classM8B_1_1EtherBinder_1_1RPC_1_1Modules_1_1AbstractModule.html#a60a827ad8d0ba615e85bf16973f899aa',1,'M8B\EtherBinder\RPC\Modules\AbstractModule\runRpc()']]]
+ ['runrpc_19',['runRpc',['../classM8B_1_1EtherBinder_1_1RPC_1_1AbstractRPC.html#a3556183a237ad374955625b3665c7bba',1,'M8B\EtherBinder\RPC\AbstractRPC\runRpc()'],['../classM8B_1_1EtherBinder_1_1RPC_1_1Modules_1_1AbstractModule.html#a60a827ad8d0ba615e85bf16973f899aa',1,'M8B\EtherBinder\RPC\Modules\AbstractModule\runRpc()']]]
];
diff --git a/docs/ref/doxygen/search/all_12.js b/docs/ref/doxygen/search/all_12.js
index a30d54f..0e79906 100644
--- a/docs/ref/doxygen/search/all_12.js
+++ b/docs/ref/doxygen/search/all_12.js
@@ -2,7 +2,7 @@ var searchData=
[
['s_0',['s',['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#af41ab5dfbad3fc7f6db3a598fd96bbb6',1,'M8B::EtherBinder::Common::Transaction']]],
['s_20transactions_1',['Influencing gas prices of binding's transactions',['../md_docs_2contracts.html#autotoc_md18',1,'']]],
- ['setaccesslist_2',['setaccesslist',['../classM8B_1_1EtherBinder_1_1Common_1_1AccessListTransaction.html#a2b7350b6dab7f979b277e6c2f4b05517',1,'M8B\EtherBinder\Common\AccessListTransaction\setAccessList()'],['../classM8B_1_1EtherBinder_1_1Common_1_1LondonTransaction.html#a01a19f03db65e45b452d547d3af1ebe8',1,'M8B\EtherBinder\Common\LondonTransaction\setAccessList(array $accessList)']]],
+ ['setaccesslist_2',['setAccessList',['../classM8B_1_1EtherBinder_1_1Common_1_1AccessListTransaction.html#a2b7350b6dab7f979b277e6c2f4b05517',1,'M8B\EtherBinder\Common\AccessListTransaction\setAccessList()'],['../classM8B_1_1EtherBinder_1_1Common_1_1LondonTransaction.html#a01a19f03db65e45b452d547d3af1ebe8',1,'M8B\EtherBinder\Common\LondonTransaction\setAccessList(array $accessList)']]],
['setbasefeecap_3',['setBaseFeeCap',['../classM8B_1_1EtherBinder_1_1Common_1_1LondonTransaction.html#aa12b058bc42edf5425193ba53f170418',1,'M8B::EtherBinder::Common::LondonTransaction']]],
['setchainid_4',['setChainId',['../classM8B_1_1EtherBinder_1_1Common_1_1LondonTransaction.html#a9dcacb648a69fe5dfd2d488443e087bc',1,'M8B::EtherBinder::Common::LondonTransaction']]],
['setdatabin_5',['setDataBin',['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#a1b156e2fcc83f01c9d8a08508273e71c',1,'M8B::EtherBinder::Common::Transaction']]],
@@ -12,25 +12,27 @@ var searchData=
['setgasfeetip_9',['setGasFeeTip',['../classM8B_1_1EtherBinder_1_1Common_1_1LondonTransaction.html#a9440e08c34fcec62f6aacd0496cea119',1,'M8B::EtherBinder::Common::LondonTransaction']]],
['setgaslimit_10',['setGasLimit',['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#a996e851363eef5d98019b1f1ab85a476',1,'M8B::EtherBinder::Common::Transaction']]],
['setgasprice_11',['setGasPrice',['../classM8B_1_1EtherBinder_1_1Common_1_1LegacyTransaction.html#acc2ad99c44db17959279fbd52d154cec',1,'M8B::EtherBinder::Common::LegacyTransaction']]],
- ['setinnerfromrlpvalues_12',['setinnerfromrlpvalues',['../classM8B_1_1EtherBinder_1_1Common_1_1AccessListTransaction.html#a3528d4aa1c828bc24c232bf6a69b9c2e',1,'M8B\EtherBinder\Common\AccessListTransaction\setInnerFromRLPValues()'],['../classM8B_1_1EtherBinder_1_1Common_1_1LegacyTransaction.html#a0123c70f28767dadedd66c7ad892ac8c',1,'M8B\EtherBinder\Common\LegacyTransaction\setInnerFromRLPValues()'],['../classM8B_1_1EtherBinder_1_1Common_1_1LondonTransaction.html#a9c9e1c64602af10093d66817cf779366',1,'M8B\EtherBinder\Common\LondonTransaction\setInnerFromRLPValues()'],['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#a33c38289e06eadc8c5b4e8936980cb96',1,'M8B\EtherBinder\Common\Transaction\setInnerFromRLPValues()']]],
- ['setmessage_13',['setMessage',['../classM8B_1_1EtherBinder_1_1Misc_1_1AbstractSigningMessage.html#a630f4c263d2eae5c436f3c3c1b2b0d42',1,'M8B::EtherBinder::Misc::AbstractSigningMessage']]],
- ['setnonce_14',['setNonce',['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#add7b4bb72eb7c508e2b4ac23bbf413ce',1,'M8B::EtherBinder::Common::Transaction']]],
- ['setsignature_15',['setSignature',['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#ac04fbe6e0bf0d982dfcf933b2034cd80',1,'M8B::EtherBinder::Common::Transaction']]],
- ['setto_16',['setTo',['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#a7e0a8fa23160f3ddf4eef776b9af4206',1,'M8B::EtherBinder::Common::Transaction']]],
- ['settoblock_17',['setToBlock',['../classM8B_1_1EtherBinder_1_1Contract_1_1AbstractEventFilter.html#a5ac2b1bb6a8617261b673de0c83e3701',1,'M8B::EtherBinder::Contract::AbstractEventFilter']]],
- ['setvalue_18',['setValue',['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#a5d315d8df7a8c9f003a2240d402ebde6',1,'M8B::EtherBinder::Common::Transaction']]],
- ['setvaluefmt_19',['setValueFmt',['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#a656dc02fac3abe216aa687b6bbe611de',1,'M8B::EtherBinder::Common::Transaction']]],
- ['sign_20',['sign',['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#a30ac5629b7f1669c3b2c01561a9b239a',1,'M8B\EtherBinder\Common\Transaction\sign()'],['../classM8B_1_1EtherBinder_1_1Crypto_1_1Key.html#adca1ca74d66d35193d39db6b6145ea26',1,'M8B\EtherBinder\Crypto\Key\sign()'],['../classM8B_1_1EtherBinder_1_1Misc_1_1AbstractSigningMessage.html#a04c25bb36d2d565aac9ec882f8e80f79',1,'M8B\EtherBinder\Misc\AbstractSigningMessage\sign()']]],
- ['signature_21',['signature',['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#a0c752777a40b7131b044b8f640748b5a',1,'M8B\EtherBinder\Common\Transaction\signature()'],['../classM8B_1_1EtherBinder_1_1Crypto_1_1Signature.html',1,'M8B\EtherBinder\Crypto\Signature']]],
- ['signing_22',['Signing',['../md_docs_2messages.html#autotoc_md25',1,'']]],
- ['size_23',['assert hex size',['../md_docs_2utils.html#autotoc_md65',1,'']]],
- ['solidity_20functions_24',['Solidity functions',['../md_docs_2types.html#autotoc_md53',1,'']]],
- ['solidityfunction_25',['SolidityFunction',['../classM8B_1_1EtherBinder_1_1Common_1_1SolidityFunction.html',1,'M8B::EtherBinder::Common']]],
- ['solidityfunction4bytessignature_26',['SolidityFunction4BytesSignature',['../classM8B_1_1EtherBinder_1_1Common_1_1SolidityFunction4BytesSignature.html',1,'M8B::EtherBinder::Common']]],
- ['specific_20reference_27',['Endpoint specific reference',['../md_docs_2rpc.html#autotoc_md36',1,'']]],
- ['splittypebits_28',['splitTypeBits',['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbstractABIValue.html#ac99dcf7add40bf1a2f0d9c379b20cb8e',1,'M8B::EtherBinder::Contract::AbiTypes::AbstractABIValue']]],
- ['string_29',['int <-> hex string',['../md_docs_2utils.html#autotoc_md67',1,'']]],
- ['structure_30',['Internal structure',['../md_docs_2rpc.html#autotoc_md39',1,'']]],
- ['supported_20protocols_31',['Adding more supported protocols',['../md_docs_2rpc.html#autotoc_md38',1,'']]],
- ['supported_20types_32',['Supported types',['../md_docs_2transactions.html#autotoc_md41',1,'']]]
+ ['setinnerfromrlpvalues_12',['setInnerFromRLPValues',['../classM8B_1_1EtherBinder_1_1Common_1_1AccessListTransaction.html#a3528d4aa1c828bc24c232bf6a69b9c2e',1,'M8B\EtherBinder\Common\AccessListTransaction\setInnerFromRLPValues()'],['../classM8B_1_1EtherBinder_1_1Common_1_1CancunTransaction.html#a4f5371f8efd6fe6c457f9f3b44d95802',1,'M8B\EtherBinder\Common\CancunTransaction\setInnerFromRLPValues()'],['../classM8B_1_1EtherBinder_1_1Common_1_1LegacyTransaction.html#a0123c70f28767dadedd66c7ad892ac8c',1,'M8B\EtherBinder\Common\LegacyTransaction\setInnerFromRLPValues()'],['../classM8B_1_1EtherBinder_1_1Common_1_1LondonTransaction.html#a9c9e1c64602af10093d66817cf779366',1,'M8B\EtherBinder\Common\LondonTransaction\setInnerFromRLPValues()'],['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#a33c38289e06eadc8c5b4e8936980cb96',1,'M8B\EtherBinder\Common\Transaction\setInnerFromRLPValues()']]],
+ ['setmaxfeeperblobgas_13',['setMaxFeePerBlobGas',['../classM8B_1_1EtherBinder_1_1Common_1_1CancunTransaction.html#acef613b63fdee14d54e1ef905e1a3637',1,'M8B::EtherBinder::Common::CancunTransaction']]],
+ ['setmessage_14',['setMessage',['../classM8B_1_1EtherBinder_1_1Misc_1_1AbstractSigningMessage.html#a630f4c263d2eae5c436f3c3c1b2b0d42',1,'M8B::EtherBinder::Misc::AbstractSigningMessage']]],
+ ['setnonce_15',['setNonce',['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#add7b4bb72eb7c508e2b4ac23bbf413ce',1,'M8B::EtherBinder::Common::Transaction']]],
+ ['setsignature_16',['setSignature',['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#ac04fbe6e0bf0d982dfcf933b2034cd80',1,'M8B::EtherBinder::Common::Transaction']]],
+ ['setto_17',['setTo',['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#a7e0a8fa23160f3ddf4eef776b9af4206',1,'M8B::EtherBinder::Common::Transaction']]],
+ ['settoblock_18',['setToBlock',['../classM8B_1_1EtherBinder_1_1Contract_1_1AbstractEventFilter.html#a5ac2b1bb6a8617261b673de0c83e3701',1,'M8B::EtherBinder::Contract::AbstractEventFilter']]],
+ ['setvalue_19',['setValue',['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#a5d315d8df7a8c9f003a2240d402ebde6',1,'M8B::EtherBinder::Common::Transaction']]],
+ ['setvaluefmt_20',['setValueFmt',['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#a656dc02fac3abe216aa687b6bbe611de',1,'M8B::EtherBinder::Common::Transaction']]],
+ ['sign_21',['sign',['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#a30ac5629b7f1669c3b2c01561a9b239a',1,'M8B\EtherBinder\Common\Transaction\sign()'],['../classM8B_1_1EtherBinder_1_1Crypto_1_1Key.html#adca1ca74d66d35193d39db6b6145ea26',1,'M8B\EtherBinder\Crypto\Key\sign()'],['../classM8B_1_1EtherBinder_1_1Misc_1_1AbstractSigningMessage.html#a04c25bb36d2d565aac9ec882f8e80f79',1,'M8B\EtherBinder\Misc\AbstractSigningMessage\sign()']]],
+ ['signature_22',['Signature',['../classM8B_1_1EtherBinder_1_1Crypto_1_1Signature.html',1,'M8B::EtherBinder::Crypto']]],
+ ['signature_23',['signature',['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#a0c752777a40b7131b044b8f640748b5a',1,'M8B::EtherBinder::Common::Transaction']]],
+ ['signing_24',['Signing',['../md_docs_2messages.html#autotoc_md25',1,'']]],
+ ['size_25',['assert hex size',['../md_docs_2utils.html#autotoc_md65',1,'']]],
+ ['solidity_20functions_26',['Solidity functions',['../md_docs_2types.html#autotoc_md53',1,'']]],
+ ['solidityfunction_27',['SolidityFunction',['../classM8B_1_1EtherBinder_1_1Common_1_1SolidityFunction.html',1,'M8B::EtherBinder::Common']]],
+ ['solidityfunction4bytessignature_28',['SolidityFunction4BytesSignature',['../classM8B_1_1EtherBinder_1_1Common_1_1SolidityFunction4BytesSignature.html',1,'M8B::EtherBinder::Common']]],
+ ['specific_20reference_29',['Endpoint specific reference',['../md_docs_2rpc.html#autotoc_md36',1,'']]],
+ ['splittypebits_30',['splitTypeBits',['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbstractABIValue.html#ac99dcf7add40bf1a2f0d9c379b20cb8e',1,'M8B::EtherBinder::Contract::AbiTypes::AbstractABIValue']]],
+ ['string_31',['int <-> hex string',['../md_docs_2utils.html#autotoc_md67',1,'']]],
+ ['structure_32',['Internal structure',['../md_docs_2rpc.html#autotoc_md39',1,'']]],
+ ['supported_20protocols_33',['Adding more supported protocols',['../md_docs_2rpc.html#autotoc_md38',1,'']]],
+ ['supported_20types_34',['Supported types',['../md_docs_2transactions.html#autotoc_md41',1,'']]]
];
diff --git a/docs/ref/doxygen/search/all_13.js b/docs/ref/doxygen/search/all_13.js
index 41a685c..46c34e0 100644
--- a/docs/ref/doxygen/search/all_13.js
+++ b/docs/ref/doxygen/search/all_13.js
@@ -5,20 +5,24 @@ var searchData=
['the_20tree_2',['Constructing the tree',['../md_docs_2abi-encoding-internals.html#autotoc_md5',1,'']]],
['to_3',['to',['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#a9d9844408e6bcfb55bd0890b063372fb',1,'M8B::EtherBinder::Common::Transaction']]],
['toaddress_4',['toAddress',['../classM8B_1_1EtherBinder_1_1Crypto_1_1Key.html#aa32f5c1c43dfaa47df05434a0891a6b5',1,'M8B::EtherBinder::Crypto::Key']]],
- ['tobin_5',['tobin',['../classM8B_1_1EtherBinder_1_1Common_1_1Hash.html#a8d44db6c04273244e3a88e1b781b6172',1,'M8B\EtherBinder\Common\Hash\toBin()'],['../classM8B_1_1EtherBinder_1_1Common_1_1SolidityFunction.html#a03178c3e4eeb79b0f98832712dcb556d',1,'M8B\EtherBinder\Common\SolidityFunction\toBin()'],['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#a648ffe433e5d7e20c34c53a33baace31',1,'M8B\EtherBinder\Common\Transaction\toBin()'],['../classM8B_1_1EtherBinder_1_1Crypto_1_1Key.html#ae4dbd0632938d20d51d37410aec92cb0',1,'M8B\EtherBinder\Crypto\Key\toBin()'],['../classM8B_1_1EtherBinder_1_1Crypto_1_1Signature.html#ae77172e5dd6158534903e34c75ee164f',1,'M8B\EtherBinder\Crypto\Signature\toBin()'],['../classM8B_1_1EtherBinder_1_1Utils_1_1OOGmp.html#a19ad41ead12ef80ea13e372f638b7f09',1,'M8B\EtherBinder\Utils\OOGmp\toBin()'],['../md_docs_2utils.html#autotoc_md63',1,'toBin']]],
- ['tohex_6',['tohex',['../classM8B_1_1EtherBinder_1_1Crypto_1_1Signature.html#af4fc1de190d3d2a1177d6ef51404991f',1,'M8B\EtherBinder\Crypto\Signature\toHex()'],['../classM8B_1_1EtherBinder_1_1Utils_1_1OOGmp.html#a8803fb24b9ed9b847e4cea61da09e6df',1,'M8B\EtherBinder\Utils\OOGmp\toHex()'],['../classM8B_1_1EtherBinder_1_1Crypto_1_1Key.html#a1717e506637a39c70b1b562b79b46dfd',1,'M8B\EtherBinder\Crypto\Key\toHex()'],['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#a3fb264dc2156b955c8b3545cbe9d0d1c',1,'M8B\EtherBinder\Common\Transaction\toHex()'],['../classM8B_1_1EtherBinder_1_1Common_1_1Hash.html#a23fe02d8f601ffede15771d223284e26',1,'M8B\EtherBinder\Common\Hash\toHex()']]],
+ ['tobin_5',['toBin',['../classM8B_1_1EtherBinder_1_1Common_1_1Hash.html#a8d44db6c04273244e3a88e1b781b6172',1,'M8B\EtherBinder\Common\Hash\toBin()'],['../classM8B_1_1EtherBinder_1_1Common_1_1SolidityFunction.html#a03178c3e4eeb79b0f98832712dcb556d',1,'M8B\EtherBinder\Common\SolidityFunction\toBin()'],['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#a648ffe433e5d7e20c34c53a33baace31',1,'M8B\EtherBinder\Common\Transaction\toBin()'],['../classM8B_1_1EtherBinder_1_1Crypto_1_1Key.html#ae4dbd0632938d20d51d37410aec92cb0',1,'M8B\EtherBinder\Crypto\Key\toBin()'],['../classM8B_1_1EtherBinder_1_1Crypto_1_1Signature.html#ae77172e5dd6158534903e34c75ee164f',1,'M8B\EtherBinder\Crypto\Signature\toBin()'],['../classM8B_1_1EtherBinder_1_1Utils_1_1OOGmp.html#a19ad41ead12ef80ea13e372f638b7f09',1,'M8B\EtherBinder\Utils\OOGmp\toBin()'],['../md_docs_2utils.html#autotoc_md63',1,'toBin']]],
+ ['tohex_6',['toHex',['../classM8B_1_1EtherBinder_1_1Common_1_1Hash.html#a23fe02d8f601ffede15771d223284e26',1,'M8B\EtherBinder\Common\Hash\toHex()'],['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#a3fb264dc2156b955c8b3545cbe9d0d1c',1,'M8B\EtherBinder\Common\Transaction\toHex()'],['../classM8B_1_1EtherBinder_1_1Crypto_1_1Key.html#a1717e506637a39c70b1b562b79b46dfd',1,'M8B\EtherBinder\Crypto\Key\toHex()'],['../classM8B_1_1EtherBinder_1_1Crypto_1_1Signature.html#af4fc1de190d3d2a1177d6ef51404991f',1,'M8B\EtherBinder\Crypto\Signature\toHex()'],['../classM8B_1_1EtherBinder_1_1Utils_1_1OOGmp.html#a8803fb24b9ed9b847e4cea61da09e6df',1,'M8B\EtherBinder\Utils\OOGmp\toHex()']]],
['toint_7',['toInt',['../classM8B_1_1EtherBinder_1_1Utils_1_1OOGmp.html#ac6cb24f1abf635684bb5f9ea153957cb',1,'M8B::EtherBinder::Utils::OOGmp']]],
['tojson_8',['toJson',['../classM8B_1_1EtherBinder_1_1Misc_1_1AbstractSigningMessage.html#a0e408b3eb78c2bdaa8e0b5647d3970be',1,'M8B::EtherBinder::Misc::AbstractSigningMessage']]],
- ['tostring_9',['tostring',['../classM8B_1_1EtherBinder_1_1Utils_1_1OOGmp.html#add4f75d5345851963153b033a1ca1f7d',1,'M8B\EtherBinder\Utils\OOGmp\toString()'],['../md_docs_2utils.html#autotoc_md62',1,'toString'],['../namespaceM8B_1_1EtherBinder_1_1RPC.html#ac72ce84203d64dd02d08ce7d9fb80eb2acb46968e097c1524d66bd2c30efd4885',1,'M8B\EtherBinder\RPC\toString'],['../namespaceM8B_1_1EtherBinder_1_1Wallet.html#a0abf23487af4088c3af3c367e6c58b6fad8f3bef277afdca2f831c48e8f025552',1,'M8B\EtherBinder\Wallet\toString']]],
- ['totalgasprice_10',['totalgasprice',['../classM8B_1_1EtherBinder_1_1Common_1_1LondonTransaction.html#a936897cad1b4f1f330d8bf0bd63fa906',1,'M8B\EtherBinder\Common\LondonTransaction\totalGasPrice()'],['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#adba90b5fec3b2930c6af49293560cd84',1,'M8B\EtherBinder\Common\Transaction\totalGasPrice()']]],
- ['transaction_11',['transaction',['../md_docs_2utils.html#autotoc_md69',1,'Blocking wait for transaction'],['../md_docs_2transactions.html#autotoc_md43',1,'Preparing Transaction'],['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html',1,'M8B\EtherBinder\Common\Transaction']]],
- ['transaction_20type_12',['Transaction Type',['../md_docs_2types.html#autotoc_md54',1,'']]],
- ['transaction_20types_13',['Transaction types',['../md_docs_2transactions.html#autotoc_md42',1,'']]],
- ['transactions_14',['transactions',['../md_docs_2contracts.html#autotoc_md18',1,'Influencing gas prices of binding's transactions'],['../md_docs_2transactions.html',1,'Transactions'],['../md_docs_2types.html#autotoc_md47',1,'Transactions']]],
- ['transactiontype_15',['transactiontype',['../namespaceM8B_1_1EtherBinder_1_1Common.html#a4018d8c98d886c6b48c406c99257e015',1,'M8B\EtherBinder\Common\TransactionType'],['../classM8B_1_1EtherBinder_1_1Common_1_1LegacyTransaction.html#ad35f651d45a8446c0a89123846b49fe8',1,'M8B\EtherBinder\Common\LegacyTransaction\transactionType()'],['../classM8B_1_1EtherBinder_1_1Common_1_1LondonTransaction.html#a7c3c0acac44bfb225e152dbfb36aa959',1,'M8B\EtherBinder\Common\LondonTransaction\transactionType()']]],
- ['tree_16',['tree',['../md_docs_2abi-encoding-internals.html#autotoc_md5',1,'Constructing the tree'],['../md_docs_2abi-encoding-internals.html#autotoc_md8',1,'Debugging tree'],['../md_docs_2abi-encoding-internals.html#autotoc_md4',1,'Manually constructing AbiTypes tree']]],
- ['tt_20abiencoder_20tt_17',['Using driver class <tt>ABIEncoder</tt>',['../md_docs_2abi-encoding-internals.html#autotoc_md1',1,'']]],
- ['tupler_20data_18',['Tupler Data',['../md_docs_2abi-encoding-internals.html#autotoc_md9',1,'']]],
- ['type_19',['Transaction Type',['../md_docs_2types.html#autotoc_md54',1,'']]],
- ['types_20',['types',['../md_docs_2types.html',1,'Ethereum friendly types'],['../md_docs_2transactions.html#autotoc_md41',1,'Supported types'],['../md_docs_2transactions.html#autotoc_md42',1,'Transaction types']]]
+ ['tostring_9',['toString',['../classM8B_1_1EtherBinder_1_1Utils_1_1OOGmp.html#add4f75d5345851963153b033a1ca1f7d',1,'M8B\EtherBinder\Utils\OOGmp\toString()'],['../namespaceM8B_1_1EtherBinder_1_1RPC.html#ac72ce84203d64dd02d08ce7d9fb80eb2acb46968e097c1524d66bd2c30efd4885',1,'M8B\EtherBinder\RPC\toString'],['../namespaceM8B_1_1EtherBinder_1_1Wallet.html#a0abf23487af4088c3af3c367e6c58b6fad8f3bef277afdca2f831c48e8f025552',1,'M8B\EtherBinder\Wallet\toString'],['../md_docs_2utils.html#autotoc_md62',1,'toString']]],
+ ['totalgasprice_10',['totalGasPrice',['../classM8B_1_1EtherBinder_1_1Common_1_1LondonTransaction.html#a936897cad1b4f1f330d8bf0bd63fa906',1,'M8B\EtherBinder\Common\LondonTransaction\totalGasPrice()'],['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#adba90b5fec3b2930c6af49293560cd84',1,'M8B\EtherBinder\Common\Transaction\totalGasPrice()']]],
+ ['transaction_11',['Transaction',['../md_docs_2transactions.html#autotoc_md43',1,'Preparing Transaction'],['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html',1,'M8B\EtherBinder\Common\Transaction']]],
+ ['transaction_12',['Blocking wait for transaction',['../md_docs_2utils.html#autotoc_md69',1,'']]],
+ ['transaction_20type_13',['Transaction Type',['../md_docs_2types.html#autotoc_md54',1,'']]],
+ ['transaction_20types_14',['Transaction types',['../md_docs_2transactions.html#autotoc_md42',1,'']]],
+ ['transactions_15',['Transactions',['../md_docs_2transactions.html',1,'Transactions'],['../md_docs_2types.html#autotoc_md47',1,'Transactions']]],
+ ['transactions_16',['Influencing gas prices of binding's transactions',['../md_docs_2contracts.html#autotoc_md18',1,'']]],
+ ['transactiontype_17',['TransactionType',['../namespaceM8B_1_1EtherBinder_1_1Common.html#a4018d8c98d886c6b48c406c99257e015',1,'M8B::EtherBinder::Common']]],
+ ['transactiontype_18',['transactionType',['../classM8B_1_1EtherBinder_1_1Common_1_1CancunTransaction.html#a66decde14f5e158b7e51fe65e6300c63',1,'M8B\EtherBinder\Common\CancunTransaction\transactionType()'],['../classM8B_1_1EtherBinder_1_1Common_1_1LegacyTransaction.html#ad35f651d45a8446c0a89123846b49fe8',1,'M8B\EtherBinder\Common\LegacyTransaction\transactionType()'],['../classM8B_1_1EtherBinder_1_1Common_1_1LondonTransaction.html#a7c3c0acac44bfb225e152dbfb36aa959',1,'M8B\EtherBinder\Common\LondonTransaction\transactionType()']]],
+ ['tree_19',['tree',['../md_docs_2abi-encoding-internals.html#autotoc_md5',1,'Constructing the tree'],['../md_docs_2abi-encoding-internals.html#autotoc_md8',1,'Debugging tree'],['../md_docs_2abi-encoding-internals.html#autotoc_md4',1,'Manually constructing AbiTypes tree']]],
+ ['tt_20',['Using driver class <tt>ABIEncoder</tt>',['../md_docs_2abi-encoding-internals.html#autotoc_md1',1,'']]],
+ ['tt_20abiencoder_20tt_21',['Using driver class <tt>ABIEncoder</tt>',['../md_docs_2abi-encoding-internals.html#autotoc_md1',1,'']]],
+ ['tupler_20data_22',['Tupler Data',['../md_docs_2abi-encoding-internals.html#autotoc_md9',1,'']]],
+ ['type_23',['Transaction Type',['../md_docs_2types.html#autotoc_md54',1,'']]],
+ ['types_24',['types',['../md_docs_2types.html',1,'Ethereum friendly types'],['../md_docs_2transactions.html#autotoc_md41',1,'Supported types'],['../md_docs_2transactions.html#autotoc_md42',1,'Transaction types']]]
];
diff --git a/docs/ref/doxygen/search/all_14.js b/docs/ref/doxygen/search/all_14.js
index 0703d1d..2f1c9ff 100644
--- a/docs/ref/doxygen/search/all_14.js
+++ b/docs/ref/doxygen/search/all_14.js
@@ -4,13 +4,14 @@ var searchData=
['unformattedsigningmessage_1',['UnFormattedSigningMessage',['../classM8B_1_1EtherBinder_1_1Misc_1_1UnFormattedSigningMessage.html',1,'M8B::EtherBinder::Misc']]],
['unloadprivk_2',['unloadPrivK',['../classM8B_1_1EtherBinder_1_1Contract_1_1AbstractContract.html#a80d502a9f474928790c97563296f2423',1,'M8B::EtherBinder::Contract::AbstractContract']]],
['unsetfallbackfrom_3',['unsetFallbackFrom',['../classM8B_1_1EtherBinder_1_1Contract_1_1AbstractContract.html#aec0b3e02c9416027b9bb3b7d711f2408',1,'M8B::EtherBinder::Contract::AbstractContract']]],
- ['unwraptophpfriendlyvals_4',['unwraptophpfriendlyvals',['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiAddress.html#af3cd12083a51e74afab959469b2bdf35',1,'M8B\EtherBinder\Contract\AbiTypes\AbiAddress\unwrapToPhpFriendlyVals()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiArrayKnownLength.html#a8eaa9b5f114d383be230ad89694b5179',1,'M8B\EtherBinder\Contract\AbiTypes\AbiArrayKnownLength\unwrapToPhpFriendlyVals()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiBool.html#a6bdd10402e6dbbc978378ada71150945',1,'M8B\EtherBinder\Contract\AbiTypes\AbiBool\unwrapToPhpFriendlyVals()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiBytes.html#a687bcc9cffe1b91be97e94f241a2445b',1,'M8B\EtherBinder\Contract\AbiTypes\AbiBytes\unwrapToPhpFriendlyVals()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiFunction.html#a56a078943d46d92bb86f3c8897d337d5',1,'M8B\EtherBinder\Contract\AbiTypes\AbiFunction\unwrapToPhpFriendlyVals()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiTuple.html#aa4a89643df97c371d963d28c371a0e9a',1,'M8B\EtherBinder\Contract\AbiTypes\AbiTuple\unwrapToPhpFriendlyVals()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiUint.html#a22ee029e497f73376bdae844a2e02c47',1,'M8B\EtherBinder\Contract\AbiTypes\AbiUint\unwrapToPhpFriendlyVals()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbstractABIValue.html#a2650874f97fd346a28b681cbaf54b3d5',1,'M8B\EtherBinder\Contract\AbiTypes\AbstractABIValue\unwrapToPhpFriendlyVals()']]],
- ['usage_5',['usage',['../md_docs_2rpc.html#autotoc_md33',1,'Usage'],['../md_docs_2messages.html#autotoc_md24',1,'Usage']]],
+ ['unwraptophpfriendlyvals_4',['unwrapToPhpFriendlyVals',['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiAddress.html#af3cd12083a51e74afab959469b2bdf35',1,'M8B\EtherBinder\Contract\AbiTypes\AbiAddress\unwrapToPhpFriendlyVals()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiArrayKnownLength.html#a8eaa9b5f114d383be230ad89694b5179',1,'M8B\EtherBinder\Contract\AbiTypes\AbiArrayKnownLength\unwrapToPhpFriendlyVals()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiBool.html#a6bdd10402e6dbbc978378ada71150945',1,'M8B\EtherBinder\Contract\AbiTypes\AbiBool\unwrapToPhpFriendlyVals()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiBytes.html#a687bcc9cffe1b91be97e94f241a2445b',1,'M8B\EtherBinder\Contract\AbiTypes\AbiBytes\unwrapToPhpFriendlyVals()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiFunction.html#a56a078943d46d92bb86f3c8897d337d5',1,'M8B\EtherBinder\Contract\AbiTypes\AbiFunction\unwrapToPhpFriendlyVals()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiTuple.html#aa4a89643df97c371d963d28c371a0e9a',1,'M8B\EtherBinder\Contract\AbiTypes\AbiTuple\unwrapToPhpFriendlyVals()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiUint.html#a22ee029e497f73376bdae844a2e02c47',1,'M8B\EtherBinder\Contract\AbiTypes\AbiUint\unwrapToPhpFriendlyVals()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbstractABIValue.html#a2650874f97fd346a28b681cbaf54b3d5',1,'M8B\EtherBinder\Contract\AbiTypes\AbstractABIValue\unwrapToPhpFriendlyVals()']]],
+ ['usage_5',['Usage',['../md_docs_2messages.html#autotoc_md24',1,'Usage'],['../md_docs_2rpc.html#autotoc_md33',1,'Usage']]],
['usage_20notes_6',['Usage notes',['../md_docs_2contracts.html#autotoc_md12',1,'']]],
['userpcestimates_7',['useRpcEstimates',['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#a46d1f37a0fdf003e3cc10426a608acb1',1,'M8B::EtherBinder::Common::Transaction']]],
- ['userpcestimateswithbump_8',['userpcestimateswithbump',['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#adb9b7f93e874977a5f07367a7c0b3abf',1,'M8B\EtherBinder\Common\Transaction\useRpcEstimatesWithBump()'],['../classM8B_1_1EtherBinder_1_1Common_1_1LondonTransaction.html#af6de86a187b5d9178927c4d5062dda58',1,'M8B\EtherBinder\Common\LondonTransaction\useRpcEstimatesWithBump()'],['../classM8B_1_1EtherBinder_1_1Common_1_1LegacyTransaction.html#a9d45d915d4c9f9a969b2f06d3475c230',1,'M8B\EtherBinder\Common\LegacyTransaction\useRpcEstimatesWithBump()']]],
+ ['userpcestimateswithbump_8',['useRpcEstimatesWithBump',['../classM8B_1_1EtherBinder_1_1Common_1_1LegacyTransaction.html#a9d45d915d4c9f9a969b2f06d3475c230',1,'M8B\EtherBinder\Common\LegacyTransaction\useRpcEstimatesWithBump()'],['../classM8B_1_1EtherBinder_1_1Common_1_1LondonTransaction.html#af6de86a187b5d9178927c4d5062dda58',1,'M8B\EtherBinder\Common\LondonTransaction\useRpcEstimatesWithBump()'],['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#adb9b7f93e874977a5f07367a7c0b3abf',1,'M8B\EtherBinder\Common\Transaction\useRpcEstimatesWithBump()']]],
['using_20driver_20class_20tt_20abiencoder_20tt_9',['Using driver class <tt>ABIEncoder</tt>',['../md_docs_2abi-encoding-internals.html#autotoc_md1',1,'']]],
['using_20read_20functions_20on_20contract_10',['Using read functions on contract',['../md_docs_2contracts.html#autotoc_md15',1,'']]],
['using_20write_20functions_11',['Using write functions',['../md_docs_2contracts.html#autotoc_md16',1,'']]],
- ['utilities_12',['utilities',['../md_docs_2transactions.html#autotoc_md45',1,'Other utilities'],['../md_docs_2utils.html',1,'Utilities']]]
+ ['utilities_12',['Utilities',['../md_docs_2utils.html',1,'']]],
+ ['utilities_13',['Other utilities',['../md_docs_2transactions.html#autotoc_md45',1,'']]]
];
diff --git a/docs/ref/doxygen/search/all_15.js b/docs/ref/doxygen/search/all_15.js
index 2870a7d..c55ab4b 100644
--- a/docs/ref/doxygen/search/all_15.js
+++ b/docs/ref/doxygen/search/all_15.js
@@ -7,5 +7,6 @@ var searchData=
['validator_20withdrawal_4',['Validator Withdrawal',['../md_docs_2types.html#autotoc_md52',1,'']]],
['validatorwithdrawal_5',['ValidatorWithdrawal',['../classM8B_1_1EtherBinder_1_1Common_1_1ValidatorWithdrawal.html',1,'M8B::EtherBinder::Common']]],
['value_6',['value',['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#a12b89999e1b260e2706fd5b5bb4a00eb',1,'M8B::EtherBinder::Common::Transaction']]],
- ['valuefmt_7',['valueFmt',['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#a4c043bf7ea4fd626c606655fef3be3df',1,'M8B::EtherBinder::Common::Transaction']]]
+ ['valuefmt_7',['valueFmt',['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#a4c043bf7ea4fd626c606655fef3be3df',1,'M8B::EtherBinder::Common::Transaction']]],
+ ['versionedhashes_8',['versionedHashes',['../classM8B_1_1EtherBinder_1_1Common_1_1CancunTransaction.html#aee078948da47ec0e7486baebf1720853',1,'M8B::EtherBinder::Common::CancunTransaction']]]
];
diff --git a/docs/ref/doxygen/search/all_16.js b/docs/ref/doxygen/search/all_16.js
index 70850a8..3c23f76 100644
--- a/docs/ref/doxygen/search/all_16.js
+++ b/docs/ref/doxygen/search/all_16.js
@@ -6,7 +6,7 @@ var searchData=
['web3clientversion_3',['web3ClientVersion',['../classM8B_1_1EtherBinder_1_1RPC_1_1Modules_1_1Web3.html#a1f3229748f5585bf2abeb54b5d6719e4',1,'M8B::EtherBinder::RPC::Modules::Web3']]],
['web3sha3keccak_4',['web3Sha3Keccak',['../classM8B_1_1EtherBinder_1_1RPC_1_1Modules_1_1Web3.html#af6d8aa410d24efaa48c49cb302a1ed42',1,'M8B::EtherBinder::RPC::Modules::Web3']]],
['web3sha3keccakbin_5',['web3Sha3KeccakBin',['../classM8B_1_1EtherBinder_1_1RPC_1_1Modules_1_1Web3.html#a2e3f48aee2db7eea68ecb78a031a9666',1,'M8B::EtherBinder::RPC::Modules::Web3']]],
- ['weiformatter_6',['weiformatter',['../classM8B_1_1EtherBinder_1_1Utils_1_1WeiFormatter.html',1,'M8B\EtherBinder\Utils\WeiFormatter'],['../md_docs_2utils.html#autotoc_md56',1,'WeiFormatter']]],
+ ['weiformatter_6',['WeiFormatter',['../classM8B_1_1EtherBinder_1_1Utils_1_1WeiFormatter.html',1,'M8B\EtherBinder\Utils\WeiFormatter'],['../md_docs_2utils.html#autotoc_md56',1,'WeiFormatter']]],
['withdrawal_7',['Validator Withdrawal',['../md_docs_2types.html#autotoc_md52',1,'']]],
['wrap_8',['wrap',['../classM8B_1_1EtherBinder_1_1Utils_1_1OOGmp.html#abe3bc1481b273e4993ce61957fbff254',1,'M8B::EtherBinder::Utils::OOGmp']]],
['write_20functions_9',['Using write functions',['../md_docs_2contracts.html#autotoc_md16',1,'']]],
diff --git a/docs/ref/doxygen/search/all_2.js b/docs/ref/doxygen/search/all_2.js
index c57dba5..3c01cbf 100644
--- a/docs/ref/doxygen/search/all_2.js
+++ b/docs/ref/doxygen/search/all_2.js
@@ -6,14 +6,16 @@ var searchData=
['binding_3',['Instantiating contract binding',['../md_docs_2contracts.html#autotoc_md14',1,'']]],
['binding_20s_20transactions_4',['Influencing gas prices of binding's transactions',['../md_docs_2contracts.html#autotoc_md18',1,'']]],
['bindings_5',['Generating bindings',['../md_docs_2contracts.html',1,'']]],
- ['block_6',['block',['../classM8B_1_1EtherBinder_1_1Common_1_1Block.html',1,'M8B\EtherBinder\Common\Block'],['../md_docs_2types.html#autotoc_md50',1,'Block']]],
- ['block_20fee_7',['next block fee',['../md_docs_2utils.html#autotoc_md68',1,'']]],
- ['block_20number_20param_8',['Block number param',['../md_docs_2rpc.html#autotoc_md35',1,'']]],
- ['blockhash_9',['blockHash',['../classM8B_1_1EtherBinder_1_1RPC_1_1Modules_1_1AbstractModule.html#a62000f22d6159155e7c7edb1ce50073d',1,'M8B::EtherBinder::RPC::Modules::AbstractModule']]],
- ['blocking_20wait_20for_20transaction_10',['Blocking wait for transaction',['../md_docs_2utils.html#autotoc_md69',1,'']]],
- ['blocknonce_11',['BlockNonce',['../classM8B_1_1EtherBinder_1_1Common_1_1BlockNonce.html',1,'M8B::EtherBinder::Common']]],
- ['blockparam_12',['blockparam',['../namespaceM8B_1_1EtherBinder_1_1RPC.html#ac72ce84203d64dd02d08ce7d9fb80eb2',1,'M8B\EtherBinder\RPC\BlockParam'],['../classM8B_1_1EtherBinder_1_1RPC_1_1Modules_1_1AbstractModule.html#a7bf386b03cc1b9ddee3126196de06cbf',1,'M8B\EtherBinder\RPC\Modules\AbstractModule\blockParam()']]],
- ['bloom_13',['Bloom',['../classM8B_1_1EtherBinder_1_1Common_1_1Bloom.html',1,'M8B::EtherBinder::Common']]],
- ['buildmethodparams_14',['buildMethodParams',['../classM8B_1_1EtherBinder_1_1Contract_1_1ABIGen.html#a6bfc5f7b4567ec91284b695651783ad8',1,'M8B::EtherBinder::Contract::ABIGen']]],
- ['bytecode_15',['bytecode',['../classM8B_1_1EtherBinder_1_1Contract_1_1AbstractContract.html#a79c62746ef40b15dfb715d6b1185acdb',1,'M8B::EtherBinder::Contract::AbstractContract']]]
+ ['blanksfromrpcarr_6',['blanksFromRPCArr',['../classM8B_1_1EtherBinder_1_1Common_1_1CancunTransaction.html#ab9abf0aa56d6cbdac5a02055f09b35d3',1,'M8B::EtherBinder::Common::CancunTransaction']]],
+ ['block_7',['Block',['../classM8B_1_1EtherBinder_1_1Common_1_1Block.html',1,'M8B\EtherBinder\Common\Block'],['../md_docs_2types.html#autotoc_md50',1,'Block']]],
+ ['block_20fee_8',['next block fee',['../md_docs_2utils.html#autotoc_md68',1,'']]],
+ ['block_20number_20param_9',['Block number param',['../md_docs_2rpc.html#autotoc_md35',1,'']]],
+ ['blockhash_10',['blockHash',['../classM8B_1_1EtherBinder_1_1RPC_1_1Modules_1_1AbstractModule.html#a62000f22d6159155e7c7edb1ce50073d',1,'M8B::EtherBinder::RPC::Modules::AbstractModule']]],
+ ['blocking_20wait_20for_20transaction_11',['Blocking wait for transaction',['../md_docs_2utils.html#autotoc_md69',1,'']]],
+ ['blocknonce_12',['BlockNonce',['../classM8B_1_1EtherBinder_1_1Common_1_1BlockNonce.html',1,'M8B::EtherBinder::Common']]],
+ ['blockparam_13',['BlockParam',['../namespaceM8B_1_1EtherBinder_1_1RPC.html#ac72ce84203d64dd02d08ce7d9fb80eb2',1,'M8B::EtherBinder::RPC']]],
+ ['blockparam_14',['blockParam',['../classM8B_1_1EtherBinder_1_1RPC_1_1Modules_1_1AbstractModule.html#a7bf386b03cc1b9ddee3126196de06cbf',1,'M8B::EtherBinder::RPC::Modules::AbstractModule']]],
+ ['bloom_15',['Bloom',['../classM8B_1_1EtherBinder_1_1Common_1_1Bloom.html',1,'M8B::EtherBinder::Common']]],
+ ['buildmethodparams_16',['buildMethodParams',['../classM8B_1_1EtherBinder_1_1Contract_1_1ABIGen.html#a6bfc5f7b4567ec91284b695651783ad8',1,'M8B::EtherBinder::Contract::ABIGen']]],
+ ['bytecode_17',['bytecode',['../classM8B_1_1EtherBinder_1_1Contract_1_1AbstractContract.html#a79c62746ef40b15dfb715d6b1185acdb',1,'M8B::EtherBinder::Contract::AbstractContract']]]
];
diff --git a/docs/ref/doxygen/search/all_3.js b/docs/ref/doxygen/search/all_3.js
index 8ff012a..86786b5 100644
--- a/docs/ref/doxygen/search/all_3.js
+++ b/docs/ref/doxygen/search/all_3.js
@@ -1,15 +1,16 @@
var searchData=
[
['calcavgtip_0',['calcAvgTip',['../classM8B_1_1EtherBinder_1_1RPC_1_1Compound.html#a2e125899e4ed94237c4a37eb4237e589',1,'M8B::EtherBinder::RPC::Compound']]],
- ['calculatev_1',['calculatev',['../classM8B_1_1EtherBinder_1_1Common_1_1AccessListTransaction.html#a6990d93f2d3116d3b673ab998ee601ef',1,'M8B\EtherBinder\Common\AccessListTransaction\calculateV()'],['../classM8B_1_1EtherBinder_1_1Common_1_1LondonTransaction.html#ad954d8db40900780ffdae1b74ad8c568',1,'M8B\EtherBinder\Common\LondonTransaction\calculateV()'],['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#a7725b5f40f4c65f62abb117ee5e1aa5b',1,'M8B\EtherBinder\Common\Transaction\calculateV()']]],
- ['chainid_2',['chainId',['../classM8B_1_1EtherBinder_1_1Common_1_1LondonTransaction.html#a90ba46b9cdb436df4a0f36b6897a15c8',1,'M8B::EtherBinder::Common::LondonTransaction']]],
- ['checksummed_3',['checksummed',['../classM8B_1_1EtherBinder_1_1Common_1_1Address.html#a4307c3e6f6e7f51d0fd44762f8ea3447',1,'M8B::EtherBinder::Common::Address']]],
- ['class_20tt_20abiencoder_20tt_4',['Using driver class <tt>ABIEncoder</tt>',['../md_docs_2abi-encoding-internals.html#autotoc_md1',1,'']]],
- ['client_5',['JSON RPC client',['../md_docs_2rpc.html',1,'']]],
- ['comparison_20functions_3a_6',['Comparison Functions:',['../md_docs_2utils.html#autotoc_md59',1,'']]],
- ['compound_7',['Compound',['../classM8B_1_1EtherBinder_1_1RPC_1_1Compound.html',1,'M8B::EtherBinder::RPC']]],
- ['constructing_20abitypes_20tree_8',['Manually constructing AbiTypes tree',['../md_docs_2abi-encoding-internals.html#autotoc_md4',1,'']]],
- ['constructing_20the_20tree_9',['Constructing the tree',['../md_docs_2abi-encoding-internals.html#autotoc_md5',1,'']]],
- ['contract_10',['contract',['../md_docs_2contracts.html#autotoc_md13',1,'Deploying contract'],['../md_docs_2contracts.html#autotoc_md15',1,'Using read functions on contract']]],
- ['contract_20binding_11',['Instantiating contract binding',['../md_docs_2contracts.html#autotoc_md14',1,'']]]
+ ['calculatev_1',['calculateV',['../classM8B_1_1EtherBinder_1_1Common_1_1AccessListTransaction.html#a6990d93f2d3116d3b673ab998ee601ef',1,'M8B\EtherBinder\Common\AccessListTransaction\calculateV()'],['../classM8B_1_1EtherBinder_1_1Common_1_1LondonTransaction.html#ad954d8db40900780ffdae1b74ad8c568',1,'M8B\EtherBinder\Common\LondonTransaction\calculateV()'],['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#a7725b5f40f4c65f62abb117ee5e1aa5b',1,'M8B\EtherBinder\Common\Transaction\calculateV()']]],
+ ['cancuntransaction_2',['CancunTransaction',['../classM8B_1_1EtherBinder_1_1Common_1_1CancunTransaction.html',1,'M8B::EtherBinder::Common']]],
+ ['chainid_3',['chainId',['../classM8B_1_1EtherBinder_1_1Common_1_1LondonTransaction.html#a90ba46b9cdb436df4a0f36b6897a15c8',1,'M8B::EtherBinder::Common::LondonTransaction']]],
+ ['checksummed_4',['checksummed',['../classM8B_1_1EtherBinder_1_1Common_1_1Address.html#a4307c3e6f6e7f51d0fd44762f8ea3447',1,'M8B::EtherBinder::Common::Address']]],
+ ['class_20tt_20abiencoder_20tt_5',['Using driver class <tt>ABIEncoder</tt>',['../md_docs_2abi-encoding-internals.html#autotoc_md1',1,'']]],
+ ['client_6',['JSON RPC client',['../md_docs_2rpc.html',1,'']]],
+ ['comparison_20functions_3a_7',['Comparison Functions:',['../md_docs_2utils.html#autotoc_md59',1,'']]],
+ ['compound_8',['Compound',['../classM8B_1_1EtherBinder_1_1RPC_1_1Compound.html',1,'M8B::EtherBinder::RPC']]],
+ ['constructing_20abitypes_20tree_9',['Manually constructing AbiTypes tree',['../md_docs_2abi-encoding-internals.html#autotoc_md4',1,'']]],
+ ['constructing_20the_20tree_10',['Constructing the tree',['../md_docs_2abi-encoding-internals.html#autotoc_md5',1,'']]],
+ ['contract_11',['contract',['../md_docs_2contracts.html#autotoc_md13',1,'Deploying contract'],['../md_docs_2contracts.html#autotoc_md15',1,'Using read functions on contract']]],
+ ['contract_20binding_12',['Instantiating contract binding',['../md_docs_2contracts.html#autotoc_md14',1,'']]]
];
diff --git a/docs/ref/doxygen/search/all_4.js b/docs/ref/doxygen/search/all_4.js
index d6c4752..59515e9 100644
--- a/docs/ref/doxygen/search/all_4.js
+++ b/docs/ref/doxygen/search/all_4.js
@@ -1,26 +1,27 @@
var searchData=
[
- ['data_0',['data',['../md_docs_2messages.html#autotoc_md28',1,'From already parsed data'],['../md_docs_2utils.html#autotoc_md60',1,'Getting data'],['../md_docs_2abi-encoding-internals.html#autotoc_md9',1,'Tupler Data']]],
- ['databin_1',['dataBin',['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#ad081e32d48389f1693368109946566e9',1,'M8B::EtherBinder::Common::Transaction']]],
- ['datahex_2',['dataHex',['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#a9bb8030949926e678edb73ba9009029f',1,'M8B::EtherBinder::Common::Transaction']]],
- ['debug_3',['Debug',['../classM8B_1_1EtherBinder_1_1RPC_1_1Modules_1_1Debug.html',1,'M8B::EtherBinder::RPC::Modules']]],
- ['debuggetrawblock_4',['debugGetRawBlock',['../classM8B_1_1EtherBinder_1_1RPC_1_1Modules_1_1Debug.html#a252459da9503129c98c7b19864556233',1,'M8B::EtherBinder::RPC::Modules::Debug']]],
- ['debuggetrawheader_5',['debugGetRawHeader',['../classM8B_1_1EtherBinder_1_1RPC_1_1Modules_1_1Debug.html#aab3ea12dcc77bc0f700f1f3e1676685f',1,'M8B::EtherBinder::RPC::Modules::Debug']]],
- ['debuggetrawreceipts_6',['debugGetRawReceipts',['../classM8B_1_1EtherBinder_1_1RPC_1_1Modules_1_1Debug.html#ad1cdf7f49402bd9da834039dcf9ee756',1,'M8B::EtherBinder::RPC::Modules::Debug']]],
- ['debuggetrawtransaction_7',['debugGetRawTransaction',['../classM8B_1_1EtherBinder_1_1RPC_1_1Modules_1_1Debug.html#a51fe23ccc614d81668702fc388691de8',1,'M8B::EtherBinder::RPC::Modules::Debug']]],
- ['debugging_20tree_8',['Debugging tree',['../md_docs_2abi-encoding-internals.html#autotoc_md8',1,'']]],
- ['decode_9',['decode',['../classM8B_1_1EtherBinder_1_1RLP_1_1Decoder.html#a993c850a232ee669e64e3187d19b0016',1,'M8B::EtherBinder::RLP::Decoder']]],
- ['decodearray_10',['decodeArray',['../classM8B_1_1EtherBinder_1_1RLP_1_1Decoder.html#a0f1639c8e2e6ce56bea0a6fae355add7',1,'M8B::EtherBinder::RLP::Decoder']]],
- ['decodebin_11',['decodebin',['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiUint.html#a2d3f4bf15337467b1332a94200488548',1,'M8B\EtherBinder\Contract\AbiTypes\AbiUint\decodeBin()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbstractABIValue.html#ab15a80cfd356de356777154e9ba47214',1,'M8B\EtherBinder\Contract\AbiTypes\AbstractABIValue\decodeBin()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiTuple.html#ac3961ba9548c60cf865780be523a8ba7',1,'M8B\EtherBinder\Contract\AbiTypes\AbiTuple\decodeBin()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiBytes.html#a9b84379f2727ee1963575c10505bdfdb',1,'M8B\EtherBinder\Contract\AbiTypes\AbiBytes\decodeBin()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiBool.html#a294f2794852680337debe6fdb1dbe0a6',1,'M8B\EtherBinder\Contract\AbiTypes\AbiBool\decodeBin()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiFunction.html#a92e8cdd8ed57e7e88174819836cea327',1,'M8B\EtherBinder\Contract\AbiTypes\AbiFunction\decodeBin()'],['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#ac1183eb683273189ad113946bfa9c185',1,'M8B\EtherBinder\Common\Transaction\decodeBin()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiAddress.html#a85d95e76793b6ac8d0e2321f4cd20d46',1,'M8B\EtherBinder\Contract\AbiTypes\AbiAddress\decodeBin()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiArrayUnknownLength.html#a6eea30a714281e1d909b7115154f5a5c',1,'M8B\EtherBinder\Contract\AbiTypes\AbiArrayUnknownLength\decodeBin()']]],
- ['decodeentry_12',['decodeEntry',['../classM8B_1_1EtherBinder_1_1RLP_1_1Decoder.html#a011cb10101cd4ef0d568206c8c6d31de',1,'M8B::EtherBinder::RLP::Decoder']]],
- ['decodehex_13',['decodeHex',['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#adf6bba0727461421ece29756ec458010',1,'M8B::EtherBinder::Common::Transaction']]],
- ['decoder_14',['Decoder',['../classM8B_1_1EtherBinder_1_1RLP_1_1Decoder.html',1,'M8B::EtherBinder::RLP']]],
- ['decoderlpbin_15',['decodeRLPBin',['../classM8B_1_1EtherBinder_1_1RLP_1_1Decoder.html#a17da9ed888b5b31a9dddc996cfa530ad',1,'M8B::EtherBinder::RLP::Decoder']]],
- ['decoderlphex_16',['decodeRLPHex',['../classM8B_1_1EtherBinder_1_1RLP_1_1Decoder.html#a45418fb21f70b5b4399bd2535e6efffc',1,'M8B::EtherBinder::RLP::Decoder']]],
- ['decoding_17',['decoding',['../md_docs_2abi-encoding-internals.html#autotoc_md3',1,'Decoding'],['../md_docs_2abi-encoding-internals.html#autotoc_md7',1,'Decoding'],['../md_docs_2rlp.html#autotoc_md30',1,'RLP Decoding']]],
- ['decoding_20and_20encoding_18',['RLP Decoding and Encoding',['../md_docs_2transactions.html#autotoc_md44',1,'']]],
- ['deployaddress_19',['deployAddress',['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#a2c23f6560a8aa5ac716ebdb2ed9750cb',1,'M8B::EtherBinder::Common::Transaction']]],
- ['deploying_20contract_20',['Deploying contract',['../md_docs_2contracts.html#autotoc_md13',1,'']]],
- ['dofetchnew_21',['doFetchNew',['../classM8B_1_1EtherBinder_1_1RPC_1_1RPCFilter.html#aa049a5519c5668c77c3737bd913053f5',1,'M8B::EtherBinder::RPC::RPCFilter']]],
- ['driver_20class_20tt_20abiencoder_20tt_22',['Using driver class <tt>ABIEncoder</tt>',['../md_docs_2abi-encoding-internals.html#autotoc_md1',1,'']]]
+ ['data_0',['Tupler Data',['../md_docs_2abi-encoding-internals.html#autotoc_md9',1,'']]],
+ ['data_1',['data',['../md_docs_2messages.html#autotoc_md28',1,'From already parsed data'],['../md_docs_2utils.html#autotoc_md60',1,'Getting data']]],
+ ['databin_2',['dataBin',['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#ad081e32d48389f1693368109946566e9',1,'M8B::EtherBinder::Common::Transaction']]],
+ ['datahex_3',['dataHex',['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#a9bb8030949926e678edb73ba9009029f',1,'M8B::EtherBinder::Common::Transaction']]],
+ ['debug_4',['Debug',['../classM8B_1_1EtherBinder_1_1RPC_1_1Modules_1_1Debug.html',1,'M8B::EtherBinder::RPC::Modules']]],
+ ['debuggetrawblock_5',['debugGetRawBlock',['../classM8B_1_1EtherBinder_1_1RPC_1_1Modules_1_1Debug.html#a252459da9503129c98c7b19864556233',1,'M8B::EtherBinder::RPC::Modules::Debug']]],
+ ['debuggetrawheader_6',['debugGetRawHeader',['../classM8B_1_1EtherBinder_1_1RPC_1_1Modules_1_1Debug.html#aab3ea12dcc77bc0f700f1f3e1676685f',1,'M8B::EtherBinder::RPC::Modules::Debug']]],
+ ['debuggetrawreceipts_7',['debugGetRawReceipts',['../classM8B_1_1EtherBinder_1_1RPC_1_1Modules_1_1Debug.html#ad1cdf7f49402bd9da834039dcf9ee756',1,'M8B::EtherBinder::RPC::Modules::Debug']]],
+ ['debuggetrawtransaction_8',['debugGetRawTransaction',['../classM8B_1_1EtherBinder_1_1RPC_1_1Modules_1_1Debug.html#a51fe23ccc614d81668702fc388691de8',1,'M8B::EtherBinder::RPC::Modules::Debug']]],
+ ['debugging_20tree_9',['Debugging tree',['../md_docs_2abi-encoding-internals.html#autotoc_md8',1,'']]],
+ ['decode_10',['decode',['../classM8B_1_1EtherBinder_1_1RLP_1_1Decoder.html#a993c850a232ee669e64e3187d19b0016',1,'M8B::EtherBinder::RLP::Decoder']]],
+ ['decodearray_11',['decodeArray',['../classM8B_1_1EtherBinder_1_1RLP_1_1Decoder.html#a0f1639c8e2e6ce56bea0a6fae355add7',1,'M8B::EtherBinder::RLP::Decoder']]],
+ ['decodebin_12',['decodeBin',['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#ac1183eb683273189ad113946bfa9c185',1,'M8B\EtherBinder\Common\Transaction\decodeBin()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiAddress.html#a85d95e76793b6ac8d0e2321f4cd20d46',1,'M8B\EtherBinder\Contract\AbiTypes\AbiAddress\decodeBin()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiArrayUnknownLength.html#a6eea30a714281e1d909b7115154f5a5c',1,'M8B\EtherBinder\Contract\AbiTypes\AbiArrayUnknownLength\decodeBin()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiBool.html#a294f2794852680337debe6fdb1dbe0a6',1,'M8B\EtherBinder\Contract\AbiTypes\AbiBool\decodeBin()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiBytes.html#a9b84379f2727ee1963575c10505bdfdb',1,'M8B\EtherBinder\Contract\AbiTypes\AbiBytes\decodeBin()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiFunction.html#a92e8cdd8ed57e7e88174819836cea327',1,'M8B\EtherBinder\Contract\AbiTypes\AbiFunction\decodeBin()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiTuple.html#ac3961ba9548c60cf865780be523a8ba7',1,'M8B\EtherBinder\Contract\AbiTypes\AbiTuple\decodeBin()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiUint.html#a2d3f4bf15337467b1332a94200488548',1,'M8B\EtherBinder\Contract\AbiTypes\AbiUint\decodeBin()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbstractABIValue.html#ab15a80cfd356de356777154e9ba47214',1,'M8B\EtherBinder\Contract\AbiTypes\AbstractABIValue\decodeBin()']]],
+ ['decodeentry_13',['decodeEntry',['../classM8B_1_1EtherBinder_1_1RLP_1_1Decoder.html#a011cb10101cd4ef0d568206c8c6d31de',1,'M8B::EtherBinder::RLP::Decoder']]],
+ ['decodehex_14',['decodeHex',['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#adf6bba0727461421ece29756ec458010',1,'M8B::EtherBinder::Common::Transaction']]],
+ ['decoder_15',['Decoder',['../classM8B_1_1EtherBinder_1_1RLP_1_1Decoder.html',1,'M8B::EtherBinder::RLP']]],
+ ['decoderlpbin_16',['decodeRLPBin',['../classM8B_1_1EtherBinder_1_1RLP_1_1Decoder.html#a17da9ed888b5b31a9dddc996cfa530ad',1,'M8B::EtherBinder::RLP::Decoder']]],
+ ['decoderlphex_17',['decodeRLPHex',['../classM8B_1_1EtherBinder_1_1RLP_1_1Decoder.html#a45418fb21f70b5b4399bd2535e6efffc',1,'M8B::EtherBinder::RLP::Decoder']]],
+ ['decoding_18',['Decoding',['../md_docs_2abi-encoding-internals.html#autotoc_md3',1,'Decoding'],['../md_docs_2abi-encoding-internals.html#autotoc_md7',1,'Decoding'],['../md_docs_2rlp.html#autotoc_md30',1,'RLP Decoding']]],
+ ['decoding_20and_20encoding_19',['RLP Decoding and Encoding',['../md_docs_2transactions.html#autotoc_md44',1,'']]],
+ ['deployaddress_20',['deployAddress',['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#a2c23f6560a8aa5ac716ebdb2ed9750cb',1,'M8B::EtherBinder::Common::Transaction']]],
+ ['deploying_20contract_21',['Deploying contract',['../md_docs_2contracts.html#autotoc_md13',1,'']]],
+ ['dofetchnew_22',['doFetchNew',['../classM8B_1_1EtherBinder_1_1RPC_1_1RPCFilter.html#aa049a5519c5668c77c3737bd913053f5',1,'M8B::EtherBinder::RPC::RPCFilter']]],
+ ['driver_20class_20tt_20abiencoder_20tt_23',['Using driver class <tt>ABIEncoder</tt>',['../md_docs_2abi-encoding-internals.html#autotoc_md1',1,'']]]
];
diff --git a/docs/ref/doxygen/search/all_5.js b/docs/ref/doxygen/search/all_5.js
index 5097d79..486e7e1 100644
--- a/docs/ref/doxygen/search/all_5.js
+++ b/docs/ref/doxygen/search/all_5.js
@@ -1,15 +1,15 @@
var searchData=
[
- ['ec_0',['ec',['../classM8B_1_1EtherBinder_1_1Crypto_1_1EC.html',1,'M8B\EtherBinder\Crypto\EC'],['../classM8B_1_1EtherBinder_1_1Crypto_1_1EC.html#af8d9295d54722fb86fda58d7c2fda537',1,'M8B\EtherBinder\Crypto\EC\EC()']]],
- ['ecrecover_1',['ecrecover',['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#a8254c668e643d247464ded266ede6e7a',1,'M8B\EtherBinder\Common\Transaction\ecRecover()'],['../classM8B_1_1EtherBinder_1_1Common_1_1LondonTransaction.html#a521863096b82976fce4a41e37d929d2d',1,'M8B\EtherBinder\Common\LondonTransaction\ecRecover()'],['../classM8B_1_1EtherBinder_1_1Common_1_1LegacyTransaction.html#a4aa0639e3d5105977e04ca2b157de454',1,'M8B\EtherBinder\Common\LegacyTransaction\ecRecover()'],['../classM8B_1_1EtherBinder_1_1Common_1_1AccessListTransaction.html#a32f6d8b3a4c95e1c1edc66c3642c9bfa',1,'M8B\EtherBinder\Common\AccessListTransaction\ecRecover()']]],
+ ['ec_0',['EC',['../classM8B_1_1EtherBinder_1_1Crypto_1_1EC.html',1,'M8B\EtherBinder\Crypto\EC'],['../classM8B_1_1EtherBinder_1_1Crypto_1_1EC.html#af8d9295d54722fb86fda58d7c2fda537',1,'M8B\EtherBinder\Crypto\EC\EC()']]],
+ ['ecrecover_1',['ecRecover',['../classM8B_1_1EtherBinder_1_1Common_1_1AccessListTransaction.html#a32f6d8b3a4c95e1c1edc66c3642c9bfa',1,'M8B\EtherBinder\Common\AccessListTransaction\ecRecover()'],['../classM8B_1_1EtherBinder_1_1Common_1_1LegacyTransaction.html#a4aa0639e3d5105977e04ca2b157de454',1,'M8B\EtherBinder\Common\LegacyTransaction\ecRecover()'],['../classM8B_1_1EtherBinder_1_1Common_1_1LondonTransaction.html#a521863096b82976fce4a41e37d929d2d',1,'M8B\EtherBinder\Common\LondonTransaction\ecRecover()'],['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#a8254c668e643d247464ded266ede6e7a',1,'M8B\EtherBinder\Common\Transaction\ecRecover()']]],
['eip1559config_2',['EIP1559Config',['../classM8B_1_1EtherBinder_1_1Misc_1_1EIP1559Config.html',1,'M8B::EtherBinder::Misc']]],
['encode_3',['encode',['../classM8B_1_1EtherBinder_1_1Contract_1_1ABIEncoder.html#a92f04906df6c5c1219d98ceeacc3a9eb',1,'M8B::EtherBinder::Contract::ABIEncoder']]],
- ['encodebin_4',['encodebin',['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiFunction.html#a52941ec6178c0b37628084693bb0eaaf',1,'M8B\EtherBinder\Contract\AbiTypes\AbiFunction\encodeBin()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiTuple.html#a45d1dd98e839837c9a4159420d41e25e',1,'M8B\EtherBinder\Contract\AbiTypes\AbiTuple\encodeBin()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiUint.html#a5aefd572211d1187beb6aa5fe2c69d84',1,'M8B\EtherBinder\Contract\AbiTypes\AbiUint\encodeBin()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbstractABIValue.html#a4d5f449e0d5cbc9b25cf22f8ece9cc4a',1,'M8B\EtherBinder\Contract\AbiTypes\AbstractABIValue\encodeBin()'],['../classM8B_1_1EtherBinder_1_1RLP_1_1Encoder.html#aef037d34d2d20083cd1a49f0ef77d8ff',1,'M8B\EtherBinder\RLP\Encoder\encodeBin()'],['../classM8B_1_1EtherBinder_1_1Common_1_1LondonTransaction.html#a284abf6fd1f1c812050e7fe58d3455d4',1,'M8B\EtherBinder\Common\LondonTransaction\encodeBin()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiBytes.html#ae817f586b6fa03240e1e810ddfc0a120',1,'M8B\EtherBinder\Contract\AbiTypes\AbiBytes\encodeBin()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiBool.html#a36755cf7d5b05875d7f48f06e7be6a40',1,'M8B\EtherBinder\Contract\AbiTypes\AbiBool\encodeBin()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiArrayUnknownLength.html#a24b7737b9faabf3dc1ae2797822fa523',1,'M8B\EtherBinder\Contract\AbiTypes\AbiArrayUnknownLength\encodeBin()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiAddress.html#a3527f4dc14f4ea94df2ec2ec150f47bc',1,'M8B\EtherBinder\Contract\AbiTypes\AbiAddress\encodeBin()'],['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#a61575e4ac3b7969aa1c31aef98e40380',1,'M8B\EtherBinder\Common\Transaction\encodeBin()'],['../classM8B_1_1EtherBinder_1_1Common_1_1LegacyTransaction.html#a2fff04021d2b1b55ac285534487ab9db',1,'M8B\EtherBinder\Common\LegacyTransaction\encodeBin()'],['../classM8B_1_1EtherBinder_1_1Common_1_1AccessListTransaction.html#ad90acc220f44e07ad3006febb002541a',1,'M8B\EtherBinder\Common\AccessListTransaction\encodeBin()']]],
- ['encodebinforsigning_5',['encodebinforsigning',['../classM8B_1_1EtherBinder_1_1Common_1_1AccessListTransaction.html#ada7a8df4f67032ffad693c2ea6c43a1e',1,'M8B\EtherBinder\Common\AccessListTransaction\encodeBinForSigning()'],['../classM8B_1_1EtherBinder_1_1Common_1_1LegacyTransaction.html#a527e913150d44401ffbbcbdeaad46e31',1,'M8B\EtherBinder\Common\LegacyTransaction\encodeBinForSigning()'],['../classM8B_1_1EtherBinder_1_1Common_1_1LondonTransaction.html#a391e8e1249f65c53997243af96348c56',1,'M8B\EtherBinder\Common\LondonTransaction\encodeBinForSigning()'],['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#adc50aadbc5767801c4aa9c827e181567',1,'M8B\EtherBinder\Common\Transaction\encodeBinForSigning(?int $chainId)']]],
- ['encodehex_6',['encodehex',['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#a7ba8465d33f22219f2336a09f836d170',1,'M8B\EtherBinder\Common\Transaction\encodeHex()'],['../classM8B_1_1EtherBinder_1_1RLP_1_1Encoder.html#a59f669be5cc1454601d152630ff1f9e1',1,'M8B\EtherBinder\RLP\Encoder\encodeHex()']]],
+ ['encodebin_4',['encodeBin',['../classM8B_1_1EtherBinder_1_1Common_1_1AccessListTransaction.html#ad90acc220f44e07ad3006febb002541a',1,'M8B\EtherBinder\Common\AccessListTransaction\encodeBin()'],['../classM8B_1_1EtherBinder_1_1Common_1_1LegacyTransaction.html#a2fff04021d2b1b55ac285534487ab9db',1,'M8B\EtherBinder\Common\LegacyTransaction\encodeBin()'],['../classM8B_1_1EtherBinder_1_1Common_1_1LondonTransaction.html#a284abf6fd1f1c812050e7fe58d3455d4',1,'M8B\EtherBinder\Common\LondonTransaction\encodeBin()'],['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#a61575e4ac3b7969aa1c31aef98e40380',1,'M8B\EtherBinder\Common\Transaction\encodeBin()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiAddress.html#a3527f4dc14f4ea94df2ec2ec150f47bc',1,'M8B\EtherBinder\Contract\AbiTypes\AbiAddress\encodeBin()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiArrayUnknownLength.html#a24b7737b9faabf3dc1ae2797822fa523',1,'M8B\EtherBinder\Contract\AbiTypes\AbiArrayUnknownLength\encodeBin()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiBool.html#a36755cf7d5b05875d7f48f06e7be6a40',1,'M8B\EtherBinder\Contract\AbiTypes\AbiBool\encodeBin()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiBytes.html#ae817f586b6fa03240e1e810ddfc0a120',1,'M8B\EtherBinder\Contract\AbiTypes\AbiBytes\encodeBin()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiFunction.html#a52941ec6178c0b37628084693bb0eaaf',1,'M8B\EtherBinder\Contract\AbiTypes\AbiFunction\encodeBin()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiTuple.html#a45d1dd98e839837c9a4159420d41e25e',1,'M8B\EtherBinder\Contract\AbiTypes\AbiTuple\encodeBin()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiUint.html#a5aefd572211d1187beb6aa5fe2c69d84',1,'M8B\EtherBinder\Contract\AbiTypes\AbiUint\encodeBin()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbstractABIValue.html#a4d5f449e0d5cbc9b25cf22f8ece9cc4a',1,'M8B\EtherBinder\Contract\AbiTypes\AbstractABIValue\encodeBin()'],['../classM8B_1_1EtherBinder_1_1RLP_1_1Encoder.html#aef037d34d2d20083cd1a49f0ef77d8ff',1,'M8B\EtherBinder\RLP\Encoder\encodeBin()']]],
+ ['encodebinforsigning_5',['encodeBinForSigning',['../classM8B_1_1EtherBinder_1_1Common_1_1AccessListTransaction.html#ada7a8df4f67032ffad693c2ea6c43a1e',1,'M8B\EtherBinder\Common\AccessListTransaction\encodeBinForSigning()'],['../classM8B_1_1EtherBinder_1_1Common_1_1LegacyTransaction.html#a527e913150d44401ffbbcbdeaad46e31',1,'M8B\EtherBinder\Common\LegacyTransaction\encodeBinForSigning()'],['../classM8B_1_1EtherBinder_1_1Common_1_1LondonTransaction.html#a391e8e1249f65c53997243af96348c56',1,'M8B\EtherBinder\Common\LondonTransaction\encodeBinForSigning()'],['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#adc50aadbc5767801c4aa9c827e181567',1,'M8B\EtherBinder\Common\Transaction\encodeBinForSigning(?int $chainId)']]],
+ ['encodehex_6',['encodeHex',['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#a7ba8465d33f22219f2336a09f836d170',1,'M8B\EtherBinder\Common\Transaction\encodeHex()'],['../classM8B_1_1EtherBinder_1_1RLP_1_1Encoder.html#a59f669be5cc1454601d152630ff1f9e1',1,'M8B\EtherBinder\RLP\Encoder\encodeHex()']]],
['encodehexforsigning_7',['encodeHexForSigning',['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#a307edf81998ed02371e12e1d92b89369',1,'M8B::EtherBinder::Common::Transaction']]],
['encoder_8',['Encoder',['../classM8B_1_1EtherBinder_1_1RLP_1_1Encoder.html',1,'M8B::EtherBinder::RLP']]],
- ['encoding_9',['encoding',['../md_docs_2abi-encoding-internals.html',1,'ABI Encoding'],['../md_docs_2abi-encoding-internals.html#autotoc_md2',1,'Encoding'],['../md_docs_2abi-encoding-internals.html#autotoc_md6',1,'Encoding'],['../md_docs_2transactions.html#autotoc_md44',1,'RLP Decoding and Encoding'],['../md_docs_2rlp.html',1,'RLP Encoding']]],
+ ['encoding_9',['Encoding',['../md_docs_2abi-encoding-internals.html',1,'ABI Encoding'],['../md_docs_2abi-encoding-internals.html#autotoc_md2',1,'Encoding'],['../md_docs_2abi-encoding-internals.html#autotoc_md6',1,'Encoding'],['../md_docs_2transactions.html#autotoc_md44',1,'RLP Decoding and Encoding'],['../md_docs_2rlp.html',1,'RLP Encoding']]],
['endpoint_20specific_20reference_10',['Endpoint specific reference',['../md_docs_2rpc.html#autotoc_md36',1,'']]],
['eq_11',['eq',['../classM8B_1_1EtherBinder_1_1Common_1_1Hash.html#a8cf0065018005780ba72dc2e1e335882',1,'M8B::EtherBinder::Common::Hash']]],
['eth_12',['Eth',['../classM8B_1_1EtherBinder_1_1RPC_1_1Modules_1_1Eth.html',1,'M8B::EtherBinder::RPC::Modules']]],
@@ -59,8 +59,8 @@ var searchData=
['events_56',['Reading events',['../md_docs_2contracts.html#autotoc_md17',1,'']]],
['events_20limitation_57',['Events limitation',['../md_docs_2contracts.html#autotoc_md11',1,'']]],
['exceptions_58',['Exceptions',['../md_docs_2exceptions.html',1,'']]],
- ['expectbinarysizenormalizestring_59',['expectBinarySizeNormalizeString',['../classM8B_1_1EtherBinder_1_1Contract_1_1AbstractContract.html#a328faee53d6bae777e0cecb87f87a8f8',1,'M8B::EtherBinder::Contract::AbstractContract']]],
- ['expectintarrofsize_60',['expectIntArrOfSize',['../classM8B_1_1EtherBinder_1_1Contract_1_1AbstractContract.html#ab63454ae289caad37603bc3a1d534824',1,'M8B::EtherBinder::Contract::AbstractContract']]],
- ['expectintofsize_61',['expectIntOfSize',['../classM8B_1_1EtherBinder_1_1Contract_1_1AbstractContract.html#a7f84ac2ef131d685918301e14a99421b',1,'M8B::EtherBinder::Contract::AbstractContract']]],
+ ['expectbinarysizenormalizestring_59',['expectBinarySizeNormalizeString',['../classM8B_1_1EtherBinder_1_1Contract_1_1AbstractContract.html#a555ee19d0c031b3e91f874daa66bec82',1,'M8B::EtherBinder::Contract::AbstractContract']]],
+ ['expectintarrofsize_60',['expectIntArrOfSize',['../classM8B_1_1EtherBinder_1_1Contract_1_1AbstractContract.html#a6369ba89755d3e137d0a4dab7fb85347',1,'M8B::EtherBinder::Contract::AbstractContract']]],
+ ['expectintofsize_61',['expectIntOfSize',['../classM8B_1_1EtherBinder_1_1Contract_1_1AbstractContract.html#ac51ea254e79d546d9ca57b308679c05f',1,'M8B::EtherBinder::Contract::AbstractContract']]],
['explodetuple_62',['explodeTuple',['../classM8B_1_1EtherBinder_1_1Contract_1_1ABIEncoder.html#ad57107222f3a5eac963f1b0913c426e2',1,'M8B::EtherBinder::Contract::ABIEncoder']]]
];
diff --git a/docs/ref/doxygen/search/all_6.js b/docs/ref/doxygen/search/all_6.js
index f347a54..e28212b 100644
--- a/docs/ref/doxygen/search/all_6.js
+++ b/docs/ref/doxygen/search/all_6.js
@@ -7,15 +7,16 @@ var searchData=
['friendly_20types_4',['Ethereum friendly types',['../md_docs_2types.html',1,'']]],
['from_20already_20parsed_20data_5',['From already parsed data',['../md_docs_2messages.html#autotoc_md28',1,'']]],
['from_20json_6',['From JSON',['../md_docs_2messages.html#autotoc_md27',1,'']]],
- ['frombin_7',['frombin',['../classM8B_1_1EtherBinder_1_1Crypto_1_1Key.html#a14c3258046c19c3311eb0362f779659f',1,'M8B\EtherBinder\Crypto\Key\fromBin()'],['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#a0cc0772f9d8dd36af5c737d36f6d5d11',1,'M8B\EtherBinder\Common\Transaction\fromBin()'],['../classM8B_1_1EtherBinder_1_1Common_1_1Hash.html#ac116496097669bb045e0b6fd1a93db12',1,'M8B\EtherBinder\Common\Hash\fromBin()'],['../classM8B_1_1EtherBinder_1_1Utils_1_1OOGmp.html#adf45cca04ec37965ff4867194df03492',1,'M8B\EtherBinder\Utils\OOGmp\fromBin()'],['../classM8B_1_1EtherBinder_1_1Crypto_1_1Signature.html#a510b36a682755aab586902b889a36ac9',1,'M8B\EtherBinder\Crypto\Signature\fromBin()']]],
- ['fromhex_8',['fromhex',['../classM8B_1_1EtherBinder_1_1Crypto_1_1Key.html#af0eef0d594cc7cc7a57c6cf66e168567',1,'M8B\EtherBinder\Crypto\Key\fromHex()'],['../classM8B_1_1EtherBinder_1_1Crypto_1_1Signature.html#a45cc842610818f91f25ff1bf731a6f5a',1,'M8B\EtherBinder\Crypto\Signature\fromHex()'],['../classM8B_1_1EtherBinder_1_1Utils_1_1OOGmp.html#ae0d99bd842794a98d8d6d1281da11f2d',1,'M8B\EtherBinder\Utils\OOGmp\fromHex()'],['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#ac45a56d6e0b0244f0f993a991142c3a7',1,'M8B\EtherBinder\Common\Transaction\fromHex()'],['../classM8B_1_1EtherBinder_1_1Common_1_1Hash.html#a143ad92c60d35682596d9380a8c6ebdd',1,'M8B\EtherBinder\Common\Hash\fromHex()'],['../classM8B_1_1EtherBinder_1_1Common_1_1Address.html#a03686cd56bd18af4f946a7f40493f27f',1,'M8B\EtherBinder\Common\Address\fromHex()']]],
+ ['frombin_7',['fromBin',['../classM8B_1_1EtherBinder_1_1Common_1_1Hash.html#ac116496097669bb045e0b6fd1a93db12',1,'M8B\EtherBinder\Common\Hash\fromBin()'],['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#a0cc0772f9d8dd36af5c737d36f6d5d11',1,'M8B\EtherBinder\Common\Transaction\fromBin()'],['../classM8B_1_1EtherBinder_1_1Crypto_1_1Key.html#a14c3258046c19c3311eb0362f779659f',1,'M8B\EtherBinder\Crypto\Key\fromBin()'],['../classM8B_1_1EtherBinder_1_1Crypto_1_1Signature.html#a510b36a682755aab586902b889a36ac9',1,'M8B\EtherBinder\Crypto\Signature\fromBin()'],['../classM8B_1_1EtherBinder_1_1Utils_1_1OOGmp.html#adf45cca04ec37965ff4867194df03492',1,'M8B\EtherBinder\Utils\OOGmp\fromBin()']]],
+ ['fromhex_8',['fromHex',['../classM8B_1_1EtherBinder_1_1Common_1_1Address.html#a03686cd56bd18af4f946a7f40493f27f',1,'M8B\EtherBinder\Common\Address\fromHex()'],['../classM8B_1_1EtherBinder_1_1Common_1_1Hash.html#a143ad92c60d35682596d9380a8c6ebdd',1,'M8B\EtherBinder\Common\Hash\fromHex()'],['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#ac45a56d6e0b0244f0f993a991142c3a7',1,'M8B\EtherBinder\Common\Transaction\fromHex()'],['../classM8B_1_1EtherBinder_1_1Crypto_1_1Key.html#af0eef0d594cc7cc7a57c6cf66e168567',1,'M8B\EtherBinder\Crypto\Key\fromHex()'],['../classM8B_1_1EtherBinder_1_1Crypto_1_1Signature.html#a45cc842610818f91f25ff1bf731a6f5a',1,'M8B\EtherBinder\Crypto\Signature\fromHex()'],['../classM8B_1_1EtherBinder_1_1Utils_1_1OOGmp.html#ae0d99bd842794a98d8d6d1281da11f2d',1,'M8B\EtherBinder\Utils\OOGmp\fromHex()']]],
['fromhuman_9',['fromHuman',['../classM8B_1_1EtherBinder_1_1Utils_1_1WeiFormatter.html#a54a8098d3e62cc94557bea4564f417e6',1,'M8B::EtherBinder::Utils::WeiFormatter']]],
['fromjson_10',['fromJSON',['../classM8B_1_1EtherBinder_1_1Misc_1_1AbstractSigningMessage.html#a70e0183c7e4beb0fb3d84cabfd194321',1,'M8B::EtherBinder::Misc::AbstractSigningMessage']]],
- ['fromrpcarr_11',['fromrpcarr',['../classM8B_1_1EtherBinder_1_1Common_1_1ValidatorWithdrawal.html#a3316e06345bb5ff08f6d59462074cffa',1,'M8B\EtherBinder\Common\ValidatorWithdrawal\fromRPCArr()'],['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#a691aa18395a78679a237195d1b3846cf',1,'M8B\EtherBinder\Common\Transaction\fromRPCArr()'],['../classM8B_1_1EtherBinder_1_1Common_1_1Receipt.html#ae762f414abbad72b76bd2bcbda50095a',1,'M8B\EtherBinder\Common\Receipt\fromRPCArr()'],['../classM8B_1_1EtherBinder_1_1Common_1_1Log.html#a1abf4e471fe121f13a9abfc3c2cec396',1,'M8B\EtherBinder\Common\Log\fromRPCArr()'],['../classM8B_1_1EtherBinder_1_1Common_1_1Block.html#a9db38261f2daf29433c7f42c527b6bb1',1,'M8B\EtherBinder\Common\Block\fromRPCArr()']]],
+ ['fromrpcarr_11',['fromRPCArr',['../classM8B_1_1EtherBinder_1_1Common_1_1Block.html#a9db38261f2daf29433c7f42c527b6bb1',1,'M8B\EtherBinder\Common\Block\fromRPCArr()'],['../classM8B_1_1EtherBinder_1_1Common_1_1Log.html#a1abf4e471fe121f13a9abfc3c2cec396',1,'M8B\EtherBinder\Common\Log\fromRPCArr()'],['../classM8B_1_1EtherBinder_1_1Common_1_1Receipt.html#ae762f414abbad72b76bd2bcbda50095a',1,'M8B\EtherBinder\Common\Receipt\fromRPCArr()'],['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#a691aa18395a78679a237195d1b3846cf',1,'M8B\EtherBinder\Common\Transaction\fromRPCArr()'],['../classM8B_1_1EtherBinder_1_1Common_1_1ValidatorWithdrawal.html#a3316e06345bb5ff08f6d59462074cffa',1,'M8B\EtherBinder\Common\ValidatorWithdrawal\fromRPCArr()']]],
['fromsignature_12',['fromSignature',['../classM8B_1_1EtherBinder_1_1Common_1_1SolidityFunction4BytesSignature.html#abaae8b56a545879d9fa643dff509dd70',1,'M8B::EtherBinder::Common::SolidityFunction4BytesSignature']]],
['fromstring_13',['fromString',['../namespaceM8B_1_1EtherBinder_1_1Utils.html#a0944afabf84a4a6d6cb4e0141c63e47ca375feedb8b8283b353346cfcf3dd5767',1,'M8B::EtherBinder::Utils']]],
['fromwei_14',['fromWei',['../classM8B_1_1EtherBinder_1_1Utils_1_1WeiFormatter.html#af588d58f4279298b3843d6f698634dbd',1,'M8B::EtherBinder::Utils::WeiFormatter']]],
- ['functions_15',['functions',['../md_docs_2utils.html#autotoc_md64',1,'Functions'],['../classM8B_1_1EtherBinder_1_1Utils_1_1Functions.html',1,'M8B\EtherBinder\Utils\Functions'],['../md_docs_2types.html#autotoc_md53',1,'Solidity functions'],['../md_docs_2contracts.html#autotoc_md16',1,'Using write functions']]],
- ['functions_20on_20contract_16',['Using read functions on contract',['../md_docs_2contracts.html#autotoc_md15',1,'']]],
- ['functions_3a_17',['functions:',['../md_docs_2utils.html#autotoc_md58',1,'Arithmetic Functions:'],['../md_docs_2utils.html#autotoc_md59',1,'Comparison Functions:']]]
+ ['functions_15',['Functions',['../classM8B_1_1EtherBinder_1_1Utils_1_1Functions.html',1,'M8B\EtherBinder\Utils\Functions'],['../md_docs_2utils.html#autotoc_md64',1,'Functions']]],
+ ['functions_16',['functions',['../md_docs_2types.html#autotoc_md53',1,'Solidity functions'],['../md_docs_2contracts.html#autotoc_md16',1,'Using write functions']]],
+ ['functions_20on_20contract_17',['Using read functions on contract',['../md_docs_2contracts.html#autotoc_md15',1,'']]],
+ ['functions_3a_18',['Functions:',['../md_docs_2utils.html#autotoc_md58',1,'Arithmetic Functions:'],['../md_docs_2utils.html#autotoc_md59',1,'Comparison Functions:']]]
];
diff --git a/docs/ref/doxygen/search/all_7.js b/docs/ref/doxygen/search/all_7.js
index 32e09aa..7e49e62 100644
--- a/docs/ref/doxygen/search/all_7.js
+++ b/docs/ref/doxygen/search/all_7.js
@@ -16,14 +16,15 @@ var searchData=
['getgasfeetip_13',['getGasFeeTip',['../classM8B_1_1EtherBinder_1_1Common_1_1LondonTransaction.html#aa6128212cbcaf5a7374ca800692f1c0d',1,'M8B::EtherBinder::Common::LondonTransaction']]],
['gethlikemessage_14',['GethLikeMessage',['../classM8B_1_1EtherBinder_1_1Misc_1_1GethLikeMessage.html',1,'M8B::EtherBinder::Misc']]],
['getkeyraw_15',['getKeyRaw',['../classM8B_1_1EtherBinder_1_1Wallet_1_1AbstractWallet.html#a55e7827eb2bf62c6a69b50160208f869',1,'M8B::EtherBinder::Wallet::AbstractWallet']]],
- ['getmessage_16',['getMessage',['../classM8B_1_1EtherBinder_1_1Misc_1_1AbstractSigningMessage.html#a26dbb0661f1de746238bd19361299414',1,'M8B::EtherBinder::Misc::AbstractSigningMessage']]],
- ['getnextblockbasefee_17',['getNextBlockBaseFee',['../classM8B_1_1EtherBinder_1_1Utils_1_1Functions.html#a6ce90d8912aa993d1811281345f8dcdd',1,'M8B::EtherBinder::Utils::Functions']]],
- ['getpessimisticblockbasefee_18',['getPessimisticBlockBaseFee',['../classM8B_1_1EtherBinder_1_1Utils_1_1Functions.html#abb26f3e22714df50264c030f841013e9',1,'M8B::EtherBinder::Utils::Functions']]],
- ['getphptypingfromoutputs_19',['getPhpTypingFromOutputs',['../classM8B_1_1EtherBinder_1_1Contract_1_1ABIGen.html#ae9e8e3f7955e69d79842e656ccbe1930',1,'M8B::EtherBinder::Contract::ABIGen']]],
- ['getphptypingfromtype_20',['getPhpTypingFromType',['../classM8B_1_1EtherBinder_1_1Contract_1_1ABIGen.html#a5740222a32cf81c6fbb45d26b0a7cd1e',1,'M8B::EtherBinder::Contract::ABIGen']]],
- ['getpublicbin_21',['getPublicBin',['../classM8B_1_1EtherBinder_1_1Crypto_1_1Key.html#aa54966a01850cfc0e366c215ff2ea306',1,'M8B::EtherBinder::Crypto::Key']]],
- ['getpublichex_22',['getPublicHex',['../classM8B_1_1EtherBinder_1_1Crypto_1_1Key.html#ae49a542b35c8b053776e4c5b42438c62',1,'M8B::EtherBinder::Crypto::Key']]],
- ['getsignature_23',['getSignature',['../classM8B_1_1EtherBinder_1_1Misc_1_1AbstractSigningMessage.html#a374aa3d2b2148429d2cab5d4a804f1c4',1,'M8B::EtherBinder::Misc::AbstractSigningMessage']]],
- ['getsigninghash_24',['getSigningHash',['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#acb41812fbb3f7ebb1fad576a368efc21',1,'M8B::EtherBinder::Common::Transaction']]],
- ['getting_20data_25',['Getting data',['../md_docs_2utils.html#autotoc_md60',1,'']]]
+ ['getmaxfeeperblobgas_16',['getMaxFeePerBlobGas',['../classM8B_1_1EtherBinder_1_1Common_1_1CancunTransaction.html#af7e983ed38f7b81dda45ce9b521b6cfe',1,'M8B::EtherBinder::Common::CancunTransaction']]],
+ ['getmessage_17',['getMessage',['../classM8B_1_1EtherBinder_1_1Misc_1_1AbstractSigningMessage.html#a26dbb0661f1de746238bd19361299414',1,'M8B::EtherBinder::Misc::AbstractSigningMessage']]],
+ ['getnextblockbasefee_18',['getNextBlockBaseFee',['../classM8B_1_1EtherBinder_1_1Utils_1_1Functions.html#a6ce90d8912aa993d1811281345f8dcdd',1,'M8B::EtherBinder::Utils::Functions']]],
+ ['getpessimisticblockbasefee_19',['getPessimisticBlockBaseFee',['../classM8B_1_1EtherBinder_1_1Utils_1_1Functions.html#abb26f3e22714df50264c030f841013e9',1,'M8B::EtherBinder::Utils::Functions']]],
+ ['getphptypingfromoutputs_20',['getPhpTypingFromOutputs',['../classM8B_1_1EtherBinder_1_1Contract_1_1ABIGen.html#ae9e8e3f7955e69d79842e656ccbe1930',1,'M8B::EtherBinder::Contract::ABIGen']]],
+ ['getphptypingfromtype_21',['getPhpTypingFromType',['../classM8B_1_1EtherBinder_1_1Contract_1_1ABIGen.html#a5740222a32cf81c6fbb45d26b0a7cd1e',1,'M8B::EtherBinder::Contract::ABIGen']]],
+ ['getpublicbin_22',['getPublicBin',['../classM8B_1_1EtherBinder_1_1Crypto_1_1Key.html#aa54966a01850cfc0e366c215ff2ea306',1,'M8B::EtherBinder::Crypto::Key']]],
+ ['getpublichex_23',['getPublicHex',['../classM8B_1_1EtherBinder_1_1Crypto_1_1Key.html#ae49a542b35c8b053776e4c5b42438c62',1,'M8B::EtherBinder::Crypto::Key']]],
+ ['getsignature_24',['getSignature',['../classM8B_1_1EtherBinder_1_1Misc_1_1AbstractSigningMessage.html#a374aa3d2b2148429d2cab5d4a804f1c4',1,'M8B::EtherBinder::Misc::AbstractSigningMessage']]],
+ ['getsigninghash_25',['getSigningHash',['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#acb41812fbb3f7ebb1fad576a368efc21',1,'M8B::EtherBinder::Common::Transaction']]],
+ ['getting_20data_26',['Getting data',['../md_docs_2utils.html#autotoc_md60',1,'']]]
];
diff --git a/docs/ref/doxygen/search/all_8.js b/docs/ref/doxygen/search/all_8.js
index 9d6354f..6748bfc 100644
--- a/docs/ref/doxygen/search/all_8.js
+++ b/docs/ref/doxygen/search/all_8.js
@@ -1,13 +1,14 @@
var searchData=
[
- ['hash_0',['hash',['../classM8B_1_1EtherBinder_1_1Common_1_1Hash.html',1,'M8B\EtherBinder\Common\Hash'],['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#aee98e25d412df13ce9984ff539bee415',1,'M8B\EtherBinder\Common\Transaction\hash()'],['../md_docs_2types.html#autotoc_md48',1,'Hash']]],
- ['hashserializable_1',['HashSerializable',['../interfaceM8B_1_1EtherBinder_1_1Common_1_1HashSerializable.html',1,'M8B::EtherBinder::Common']]],
- ['headlen_2',['headLen',['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiTuple.html#af01ae26403ecf69b7339b97ee23071e5',1,'M8B::EtherBinder::Contract::AbiTypes::AbiTuple']]],
- ['hex_3',['left pad hex',['../md_docs_2utils.html#autotoc_md66',1,'']]],
- ['hex_20size_4',['assert hex size',['../md_docs_2utils.html#autotoc_md65',1,'']]],
- ['hex_20string_5',['int <-> hex string',['../md_docs_2utils.html#autotoc_md67',1,'']]],
- ['hex2bin_6',['hex2bin',['../classM8B_1_1EtherBinder_1_1Utils_1_1Functions.html#abf8e122733c04aaf975d628f854cf50a',1,'M8B::EtherBinder::Utils::Functions']]],
- ['hex2int_7',['hex2int',['../classM8B_1_1EtherBinder_1_1Utils_1_1Functions.html#a42b82ea5a70724167864b0a83dfbf111',1,'M8B::EtherBinder::Utils::Functions']]],
- ['hexblobnotevenexception_8',['HexBlobNotEvenException',['../classM8B_1_1EtherBinder_1_1Exceptions_1_1HexBlobNotEvenException.html',1,'M8B::EtherBinder::Exceptions']]],
- ['httprpc_9',['HttpRPC',['../classM8B_1_1EtherBinder_1_1RPC_1_1HttpRPC.html',1,'M8B::EtherBinder::RPC']]]
+ ['hash_0',['Hash',['../classM8B_1_1EtherBinder_1_1Common_1_1Hash.html',1,'M8B\EtherBinder\Common\Hash'],['../md_docs_2types.html#autotoc_md48',1,'Hash']]],
+ ['hash_1',['hash',['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#aee98e25d412df13ce9984ff539bee415',1,'M8B::EtherBinder::Common::Transaction']]],
+ ['hashserializable_2',['HashSerializable',['../interfaceM8B_1_1EtherBinder_1_1Common_1_1HashSerializable.html',1,'M8B::EtherBinder::Common']]],
+ ['headlen_3',['headLen',['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiTuple.html#af01ae26403ecf69b7339b97ee23071e5',1,'M8B::EtherBinder::Contract::AbiTypes::AbiTuple']]],
+ ['hex_4',['left pad hex',['../md_docs_2utils.html#autotoc_md66',1,'']]],
+ ['hex_20size_5',['assert hex size',['../md_docs_2utils.html#autotoc_md65',1,'']]],
+ ['hex_20string_6',['int <-> hex string',['../md_docs_2utils.html#autotoc_md67',1,'']]],
+ ['hex2bin_7',['hex2bin',['../classM8B_1_1EtherBinder_1_1Utils_1_1Functions.html#abf8e122733c04aaf975d628f854cf50a',1,'M8B::EtherBinder::Utils::Functions']]],
+ ['hex2int_8',['hex2int',['../classM8B_1_1EtherBinder_1_1Utils_1_1Functions.html#a42b82ea5a70724167864b0a83dfbf111',1,'M8B::EtherBinder::Utils::Functions']]],
+ ['hexblobnotevenexception_9',['HexBlobNotEvenException',['../classM8B_1_1EtherBinder_1_1Exceptions_1_1HexBlobNotEvenException.html',1,'M8B::EtherBinder::Exceptions']]],
+ ['httprpc_10',['HttpRPC',['../classM8B_1_1EtherBinder_1_1RPC_1_1HttpRPC.html',1,'M8B::EtherBinder::RPC']]]
];
diff --git a/docs/ref/doxygen/search/all_9.js b/docs/ref/doxygen/search/all_9.js
index e5a683c..ea36e3b 100644
--- a/docs/ref/doxygen/search/all_9.js
+++ b/docs/ref/doxygen/search/all_9.js
@@ -8,16 +8,18 @@ var searchData=
['int_20hex_20string_5',['int <-> hex string',['../md_docs_2utils.html#autotoc_md67',1,'']]],
['int2hex_6',['int2hex',['../classM8B_1_1EtherBinder_1_1Utils_1_1Functions.html#a94e5060460f005ed7756d71d7a112205',1,'M8B::EtherBinder::Utils::Functions']]],
['internal_20structure_7',['Internal structure',['../md_docs_2rpc.html#autotoc_md39',1,'']]],
- ['invalidhexexception_8',['InvalidHexException',['../classM8B_1_1EtherBinder_1_1Exceptions_1_1InvalidHexException.html',1,'M8B::EtherBinder::Exceptions']]],
- ['invalidhexlengthexception_9',['InvalidHexLengthException',['../classM8B_1_1EtherBinder_1_1Exceptions_1_1InvalidHexLengthException.html',1,'M8B::EtherBinder::Exceptions']]],
- ['invalidlengthexception_10',['InvalidLengthException',['../classM8B_1_1EtherBinder_1_1Exceptions_1_1InvalidLengthException.html',1,'M8B::EtherBinder::Exceptions']]],
- ['invalidurlexception_11',['InvalidURLException',['../classM8B_1_1EtherBinder_1_1Exceptions_1_1InvalidURLException.html',1,'M8B::EtherBinder::Exceptions']]],
- ['isdone_12',['isDone',['../classM8B_1_1EtherBinder_1_1RPC_1_1RPCFilter.html#acffdd9d00685268835e3e3991b5f1142',1,'M8B::EtherBinder::RPC::RPCFilter']]],
- ['isdynamic_13',['isdynamic',['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiBool.html#a37aa457a9e79038fb4f0c87a501b6b15',1,'M8B\EtherBinder\Contract\AbiTypes\AbiBool\isDynamic()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiAddress.html#a6e34473245c4d24d13e4badc5ed125a6',1,'M8B\EtherBinder\Contract\AbiTypes\AbiAddress\isDynamic()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbstractABIValue.html#ab0a9957f90127439f075a117a73b9a0a',1,'M8B\EtherBinder\Contract\AbiTypes\AbstractABIValue\isDynamic()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiUint.html#abd49f19d6054ab151130b881f13272d3',1,'M8B\EtherBinder\Contract\AbiTypes\AbiUint\isDynamic()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiTuple.html#ac671e53cbb99f97b5a36a23f4b153ff3',1,'M8B\EtherBinder\Contract\AbiTypes\AbiTuple\isDynamic()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiFunction.html#acca5de963e15cc54f92d559bf04796c0',1,'M8B\EtherBinder\Contract\AbiTypes\AbiFunction\isDynamic()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiBytes.html#a8b2f251197a25325141c4d1c31ff3979',1,'M8B\EtherBinder\Contract\AbiTypes\AbiBytes\isDynamic()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiArrayUnknownLength.html#a8bd15f361085d3922566cf0ac8034bf6',1,'M8B\EtherBinder\Contract\AbiTypes\AbiArrayUnknownLength\isDynamic()']]],
- ['iseip1559_14',['isEIP1559',['../classM8B_1_1EtherBinder_1_1Common_1_1Block.html#a9a139e9e5970faf5b217547e81b9cf2b',1,'M8B::EtherBinder::Common::Block']]],
- ['islookinglikelondon_15',['isLookingLikeLondon',['../classM8B_1_1EtherBinder_1_1RPC_1_1Compound.html#af1eef44c6f369c68c785845a09ec8519',1,'M8B::EtherBinder::RPC::Compound']]],
- ['isnull_16',['isNull',['../classM8B_1_1EtherBinder_1_1Common_1_1Hash.html#ac074263821aef9ba7318e7caf4257b3b',1,'M8B::EtherBinder::Common::Hash']]],
- ['isreplayprotected_17',['isReplayProtected',['../classM8B_1_1EtherBinder_1_1Common_1_1LegacyTransaction.html#ac0b0e6051c875520303b8f0aba36d550',1,'M8B::EtherBinder::Common::LegacyTransaction']]],
- ['issignature_18',['isSignature',['../classM8B_1_1EtherBinder_1_1Common_1_1Log.html#a5398995704592794e86c42150d3fcf80',1,'M8B::EtherBinder::Common::Log']]],
- ['issigned_19',['issigned',['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#a2fd37e0990353431eef67a7392cf8cad',1,'M8B\EtherBinder\Common\Transaction\isSigned()'],['../classM8B_1_1EtherBinder_1_1Misc_1_1AbstractSigningMessage.html#a2889767f6444954ae5f1222a366b0f9a',1,'M8B\EtherBinder\Misc\AbstractSigningMessage\isSigned()']]]
+ ['internalencodebin_8',['internalEncodeBin',['../classM8B_1_1EtherBinder_1_1Common_1_1CancunTransaction.html#a2f97972aa214046b9b649b33a7bb5d27',1,'M8B\EtherBinder\Common\CancunTransaction\internalEncodeBin()'],['../classM8B_1_1EtherBinder_1_1Common_1_1LondonTransaction.html#a2d93dab038e749ed73943dbc049907bd',1,'M8B\EtherBinder\Common\LondonTransaction\internalEncodeBin()']]],
+ ['invalidhexexception_9',['InvalidHexException',['../classM8B_1_1EtherBinder_1_1Exceptions_1_1InvalidHexException.html',1,'M8B::EtherBinder::Exceptions']]],
+ ['invalidhexlengthexception_10',['InvalidHexLengthException',['../classM8B_1_1EtherBinder_1_1Exceptions_1_1InvalidHexLengthException.html',1,'M8B::EtherBinder::Exceptions']]],
+ ['invalidlengthexception_11',['InvalidLengthException',['../classM8B_1_1EtherBinder_1_1Exceptions_1_1InvalidLengthException.html',1,'M8B::EtherBinder::Exceptions']]],
+ ['invalidurlexception_12',['InvalidURLException',['../classM8B_1_1EtherBinder_1_1Exceptions_1_1InvalidURLException.html',1,'M8B::EtherBinder::Exceptions']]],
+ ['isdone_13',['isDone',['../classM8B_1_1EtherBinder_1_1RPC_1_1RPCFilter.html#acffdd9d00685268835e3e3991b5f1142',1,'M8B::EtherBinder::RPC::RPCFilter']]],
+ ['isdynamic_14',['isDynamic',['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiAddress.html#a6e34473245c4d24d13e4badc5ed125a6',1,'M8B\EtherBinder\Contract\AbiTypes\AbiAddress\isDynamic()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiArrayUnknownLength.html#a8bd15f361085d3922566cf0ac8034bf6',1,'M8B\EtherBinder\Contract\AbiTypes\AbiArrayUnknownLength\isDynamic()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiBool.html#a37aa457a9e79038fb4f0c87a501b6b15',1,'M8B\EtherBinder\Contract\AbiTypes\AbiBool\isDynamic()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiBytes.html#a8b2f251197a25325141c4d1c31ff3979',1,'M8B\EtherBinder\Contract\AbiTypes\AbiBytes\isDynamic()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiFunction.html#acca5de963e15cc54f92d559bf04796c0',1,'M8B\EtherBinder\Contract\AbiTypes\AbiFunction\isDynamic()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiTuple.html#ac671e53cbb99f97b5a36a23f4b153ff3',1,'M8B\EtherBinder\Contract\AbiTypes\AbiTuple\isDynamic()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiUint.html#abd49f19d6054ab151130b881f13272d3',1,'M8B\EtherBinder\Contract\AbiTypes\AbiUint\isDynamic()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbstractABIValue.html#ab0a9957f90127439f075a117a73b9a0a',1,'M8B\EtherBinder\Contract\AbiTypes\AbstractABIValue\isDynamic()']]],
+ ['iseip1559_15',['isEIP1559',['../classM8B_1_1EtherBinder_1_1Common_1_1Block.html#a9a139e9e5970faf5b217547e81b9cf2b',1,'M8B::EtherBinder::Common::Block']]],
+ ['iseip4844_16',['isEIP4844',['../classM8B_1_1EtherBinder_1_1Common_1_1Block.html#a37362672b1251fc18c98fdcf74042ec6',1,'M8B::EtherBinder::Common::Block']]],
+ ['islookinglikelondon_17',['isLookingLikeLondon',['../classM8B_1_1EtherBinder_1_1RPC_1_1Compound.html#af1eef44c6f369c68c785845a09ec8519',1,'M8B::EtherBinder::RPC::Compound']]],
+ ['isnull_18',['isNull',['../classM8B_1_1EtherBinder_1_1Common_1_1Hash.html#ac074263821aef9ba7318e7caf4257b3b',1,'M8B::EtherBinder::Common::Hash']]],
+ ['isreplayprotected_19',['isReplayProtected',['../classM8B_1_1EtherBinder_1_1Common_1_1LegacyTransaction.html#ac0b0e6051c875520303b8f0aba36d550',1,'M8B::EtherBinder::Common::LegacyTransaction']]],
+ ['issignature_20',['isSignature',['../classM8B_1_1EtherBinder_1_1Common_1_1Log.html#a5398995704592794e86c42150d3fcf80',1,'M8B::EtherBinder::Common::Log']]],
+ ['issigned_21',['isSigned',['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#a2fd37e0990353431eef67a7392cf8cad',1,'M8B\EtherBinder\Common\Transaction\isSigned()'],['../classM8B_1_1EtherBinder_1_1Misc_1_1AbstractSigningMessage.html#a2889767f6444954ae5f1222a366b0f9a',1,'M8B\EtherBinder\Misc\AbstractSigningMessage\isSigned()']]]
];
diff --git a/docs/ref/doxygen/search/all_b.js b/docs/ref/doxygen/search/all_b.js
index 150edff..54c03d7 100644
--- a/docs/ref/doxygen/search/all_b.js
+++ b/docs/ref/doxygen/search/all_b.js
@@ -1,6 +1,7 @@
var searchData=
[
- ['key_0',['key',['../classM8B_1_1EtherBinder_1_1Crypto_1_1Key.html',1,'M8B\EtherBinder\Crypto\Key'],['../classM8B_1_1EtherBinder_1_1Wallet_1_1AbstractWallet.html#abb9d8536c82d76b8faa6e566a107fc47',1,'M8B\EtherBinder\Wallet\AbstractWallet\key()']]],
- ['keyfromprivate_1',['keyFromPrivate',['../classM8B_1_1EtherBinder_1_1Crypto_1_1EC.html#af5c086bcb09f960680a4ec60584ba30c',1,'M8B::EtherBinder::Crypto::EC']]],
- ['keystore_2',['A note on JSON keystore',['../md_docs_2jsonkeystore.html',1,'']]]
+ ['key_0',['Key',['../classM8B_1_1EtherBinder_1_1Crypto_1_1Key.html',1,'M8B::EtherBinder::Crypto']]],
+ ['key_1',['key',['../classM8B_1_1EtherBinder_1_1Wallet_1_1AbstractWallet.html#abb9d8536c82d76b8faa6e566a107fc47',1,'M8B::EtherBinder::Wallet::AbstractWallet']]],
+ ['keyfromprivate_2',['keyFromPrivate',['../classM8B_1_1EtherBinder_1_1Crypto_1_1EC.html#af5c086bcb09f960680a4ec60584ba30c',1,'M8B::EtherBinder::Crypto::EC']]],
+ ['keystore_3',['A note on JSON keystore',['../md_docs_2jsonkeystore.html',1,'']]]
];
diff --git a/docs/ref/doxygen/search/all_f.js b/docs/ref/doxygen/search/all_f.js
index 2b4c1f7..b790076 100644
--- a/docs/ref/doxygen/search/all_f.js
+++ b/docs/ref/doxygen/search/all_f.js
@@ -1,12 +1,12 @@
var searchData=
[
['of_20binding_20s_20transactions_0',['Influencing gas prices of binding's transactions',['../md_docs_2contracts.html#autotoc_md18',1,'']]],
- ['offsetexists_1',['offsetexists',['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiTuple.html#adf527ffba65db82df4f93fc1e1ff1abf',1,'M8B\EtherBinder\Contract\AbiTypes\AbiTuple\offsetExists()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbstractArrayAccess.html#a1299160ebc619c3dabf129f5f0551069',1,'M8B\EtherBinder\Contract\AbstractArrayAccess\offsetExists()']]],
- ['offsetget_2',['offsetget',['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiTuple.html#a7c6a35eda9fee2f80e442f89e48fa75e',1,'M8B\EtherBinder\Contract\AbiTypes\AbiTuple\offsetGet()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbstractArrayAccess.html#a4756cc2d2bf52662e301d17cbff3dce3',1,'M8B\EtherBinder\Contract\AbstractArrayAccess\offsetGet()']]],
- ['offsetset_3',['offsetset',['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiTuple.html#aad6f048deefd67543ffd8aa1f5e2a7a6',1,'M8B\EtherBinder\Contract\AbiTypes\AbiTuple\offsetSet()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbstractArrayAccess.html#a4a3c4f7af09198237f6ee674a9a1aa4e',1,'M8B\EtherBinder\Contract\AbstractArrayAccess\offsetSet()']]],
- ['offsetunset_4',['offsetunset',['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiTuple.html#a6e95fba961eac73b5b961c0ea97b7b05',1,'M8B\EtherBinder\Contract\AbiTypes\AbiTuple\offsetUnset()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbstractArrayAccess.html#aabce7fa88f86028d2663d1e2f12b03a8',1,'M8B\EtherBinder\Contract\AbstractArrayAccess\offsetUnset()']]],
+ ['offsetexists_1',['offsetExists',['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiTuple.html#adf527ffba65db82df4f93fc1e1ff1abf',1,'M8B\EtherBinder\Contract\AbiTypes\AbiTuple\offsetExists()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbstractArrayAccess.html#a1299160ebc619c3dabf129f5f0551069',1,'M8B\EtherBinder\Contract\AbstractArrayAccess\offsetExists()']]],
+ ['offsetget_2',['offsetGet',['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiTuple.html#a7c6a35eda9fee2f80e442f89e48fa75e',1,'M8B\EtherBinder\Contract\AbiTypes\AbiTuple\offsetGet()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbstractArrayAccess.html#a4756cc2d2bf52662e301d17cbff3dce3',1,'M8B\EtherBinder\Contract\AbstractArrayAccess\offsetGet()']]],
+ ['offsetset_3',['offsetSet',['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiTuple.html#aad6f048deefd67543ffd8aa1f5e2a7a6',1,'M8B\EtherBinder\Contract\AbiTypes\AbiTuple\offsetSet()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbstractArrayAccess.html#a4a3c4f7af09198237f6ee674a9a1aa4e',1,'M8B\EtherBinder\Contract\AbstractArrayAccess\offsetSet()']]],
+ ['offsetunset_4',['offsetUnset',['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiTuple.html#a6e95fba961eac73b5b961c0ea97b7b05',1,'M8B\EtherBinder\Contract\AbiTypes\AbiTuple\offsetUnset()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbstractArrayAccess.html#aabce7fa88f86028d2663d1e2f12b03a8',1,'M8B\EtherBinder\Contract\AbstractArrayAccess\offsetUnset()']]],
['on_20contract_5',['Using read functions on contract',['../md_docs_2contracts.html#autotoc_md15',1,'']]],
['on_20json_20keystore_6',['A note on JSON keystore',['../md_docs_2jsonkeystore.html',1,'']]],
- ['oogmp_7',['oogmp',['../classM8B_1_1EtherBinder_1_1Utils_1_1OOGmp.html',1,'M8B\EtherBinder\Utils\OOGmp'],['../md_docs_2utils.html#autotoc_md57',1,'OOGmp']]],
+ ['oogmp_7',['OOGmp',['../classM8B_1_1EtherBinder_1_1Utils_1_1OOGmp.html',1,'M8B\EtherBinder\Utils\OOGmp'],['../md_docs_2utils.html#autotoc_md57',1,'OOGmp']]],
['other_20utilities_8',['Other utilities',['../md_docs_2transactions.html#autotoc_md45',1,'']]]
];
diff --git a/docs/ref/doxygen/search/classes_2.js b/docs/ref/doxygen/search/classes_2.js
index 6de65a4..c501733 100644
--- a/docs/ref/doxygen/search/classes_2.js
+++ b/docs/ref/doxygen/search/classes_2.js
@@ -1,4 +1,5 @@
var searchData=
[
- ['compound_0',['Compound',['../classM8B_1_1EtherBinder_1_1RPC_1_1Compound.html',1,'M8B::EtherBinder::RPC']]]
+ ['cancuntransaction_0',['CancunTransaction',['../classM8B_1_1EtherBinder_1_1Common_1_1CancunTransaction.html',1,'M8B::EtherBinder::Common']]],
+ ['compound_1',['Compound',['../classM8B_1_1EtherBinder_1_1RPC_1_1Compound.html',1,'M8B::EtherBinder::RPC']]]
];
diff --git a/docs/ref/doxygen/search/enumvalues_2.js b/docs/ref/doxygen/search/enumvalues_2.js
index 4e832be..641a4b2 100644
--- a/docs/ref/doxygen/search/enumvalues_2.js
+++ b/docs/ref/doxygen/search/enumvalues_2.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['tostring_0',['tostring',['../namespaceM8B_1_1EtherBinder_1_1RPC.html#ac72ce84203d64dd02d08ce7d9fb80eb2acb46968e097c1524d66bd2c30efd4885',1,'M8B\EtherBinder\RPC\toString'],['../namespaceM8B_1_1EtherBinder_1_1Wallet.html#a0abf23487af4088c3af3c367e6c58b6fad8f3bef277afdca2f831c48e8f025552',1,'M8B\EtherBinder\Wallet\toString']]]
+ ['tostring_0',['toString',['../namespaceM8B_1_1EtherBinder_1_1RPC.html#ac72ce84203d64dd02d08ce7d9fb80eb2acb46968e097c1524d66bd2c30efd4885',1,'M8B\EtherBinder\RPC\toString'],['../namespaceM8B_1_1EtherBinder_1_1Wallet.html#a0abf23487af4088c3af3c367e6c58b6fad8f3bef277afdca2f831c48e8f025552',1,'M8B\EtherBinder\Wallet\toString']]]
];
diff --git a/docs/ref/doxygen/search/functions_0.js b/docs/ref/doxygen/search/functions_0.js
index f34ce70..46ab41b 100644
--- a/docs/ref/doxygen/search/functions_0.js
+++ b/docs/ref/doxygen/search/functions_0.js
@@ -1,6 +1,6 @@
var searchData=
[
- ['_5f_5fconstruct_0',['__construct',['../classM8B_1_1EtherBinder_1_1Contract_1_1ABIGen.html#aad6aff3bbdd9bcdcdb98e4ae3d106229',1,'M8B\EtherBinder\Contract\ABIGen\__construct()'],['../classM8B_1_1EtherBinder_1_1Common_1_1SolidityFunction.html#a63742e4ee926643ad7932045ac33cdf1',1,'M8B\EtherBinder\Common\SolidityFunction\__construct()'],['../classM8B_1_1EtherBinder_1_1Wallet_1_1RawKeyWallet.html#af78fec855b2bee3e81afcef8eb8eeed6',1,'M8B\EtherBinder\Wallet\RawKeyWallet\__construct()'],['../classM8B_1_1EtherBinder_1_1Wallet_1_1MnemonicWallet.html#a7a22f953ff69d379033a21830f617e5d',1,'M8B\EtherBinder\Wallet\MnemonicWallet\__construct()'],['../classM8B_1_1EtherBinder_1_1Utils_1_1OOGmp.html#a3113152f9fcd7aae6fcdfd5abcced3aa',1,'M8B\EtherBinder\Utils\OOGmp\__construct()'],['../classM8B_1_1EtherBinder_1_1RPC_1_1RPCFilter.html#a958c3cd766397ae22772262faf20cf05',1,'M8B\EtherBinder\RPC\RPCFilter\__construct()'],['../classM8B_1_1EtherBinder_1_1RPC_1_1HttpRPC.html#a61d626dbb5829ddec2cb4f51550888ae',1,'M8B\EtherBinder\RPC\HttpRPC\__construct()'],['../classM8B_1_1EtherBinder_1_1Misc_1_1AbstractSigningMessage.html#a1af058d45dc44fdb50b1a1d34843639c',1,'M8B\EtherBinder\Misc\AbstractSigningMessage\__construct()'],['../classM8B_1_1EtherBinder_1_1Crypto_1_1Key.html#a6456ee5521dc72f86ace687b98c4c948',1,'M8B\EtherBinder\Crypto\Key\__construct()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbstractContract.html#a4c3ad343fda354fe625d0b4f930a595e',1,'M8B\EtherBinder\Contract\AbstractContract\__construct()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiUint.html#ad5efd38d1d22750a27aacc61f07da105',1,'M8B\EtherBinder\Contract\AbiTypes\AbiUint\__construct()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiInt.html#a5b33d9b675adf64c9d6433d7afd443c7',1,'M8B\EtherBinder\Contract\AbiTypes\AbiInt\__construct()']]],
+ ['_5f_5fconstruct_0',['__construct',['../classM8B_1_1EtherBinder_1_1Common_1_1SolidityFunction.html#a63742e4ee926643ad7932045ac33cdf1',1,'M8B\EtherBinder\Common\SolidityFunction\__construct()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1ABIGen.html#aad6aff3bbdd9bcdcdb98e4ae3d106229',1,'M8B\EtherBinder\Contract\ABIGen\__construct()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiInt.html#a5b33d9b675adf64c9d6433d7afd443c7',1,'M8B\EtherBinder\Contract\AbiTypes\AbiInt\__construct()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiUint.html#ad5efd38d1d22750a27aacc61f07da105',1,'M8B\EtherBinder\Contract\AbiTypes\AbiUint\__construct()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbstractContract.html#a4c3ad343fda354fe625d0b4f930a595e',1,'M8B\EtherBinder\Contract\AbstractContract\__construct()'],['../classM8B_1_1EtherBinder_1_1Crypto_1_1Key.html#a6456ee5521dc72f86ace687b98c4c948',1,'M8B\EtherBinder\Crypto\Key\__construct()'],['../classM8B_1_1EtherBinder_1_1Misc_1_1AbstractSigningMessage.html#a1af058d45dc44fdb50b1a1d34843639c',1,'M8B\EtherBinder\Misc\AbstractSigningMessage\__construct()'],['../classM8B_1_1EtherBinder_1_1RPC_1_1HttpRPC.html#a61d626dbb5829ddec2cb4f51550888ae',1,'M8B\EtherBinder\RPC\HttpRPC\__construct()'],['../classM8B_1_1EtherBinder_1_1RPC_1_1RPCFilter.html#a958c3cd766397ae22772262faf20cf05',1,'M8B\EtherBinder\RPC\RPCFilter\__construct()'],['../classM8B_1_1EtherBinder_1_1Utils_1_1OOGmp.html#a3113152f9fcd7aae6fcdfd5abcced3aa',1,'M8B\EtherBinder\Utils\OOGmp\__construct()'],['../classM8B_1_1EtherBinder_1_1Wallet_1_1MnemonicWallet.html#a7a22f953ff69d379033a21830f617e5d',1,'M8B\EtherBinder\Wallet\MnemonicWallet\__construct()'],['../classM8B_1_1EtherBinder_1_1Wallet_1_1RawKeyWallet.html#af78fec855b2bee3e81afcef8eb8eeed6',1,'M8B\EtherBinder\Wallet\RawKeyWallet\__construct()']]],
['_5f_5fdestruct_1',['__destruct',['../classM8B_1_1EtherBinder_1_1RPC_1_1HttpRPC.html#a004d66bad0d846206725e3bf135c93c1',1,'M8B::EtherBinder::RPC::HttpRPC']]],
- ['_5f_5ftostring_2',['__tostring',['../classM8B_1_1EtherBinder_1_1Misc_1_1AbstractSigningMessage.html#adcc9b540ddda3e73c100278fd4620017',1,'M8B\EtherBinder\Misc\AbstractSigningMessage\__toString()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbstractABIValue.html#a15399584b8f7b055781fc0b6e03da158',1,'M8B\EtherBinder\Contract\AbiTypes\AbstractABIValue\__toString()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiUint.html#a0b94bca1231c7a7d8c61d5e463117bfb',1,'M8B\EtherBinder\Contract\AbiTypes\AbiUint\__toString()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiTuple.html#a9de59fc6413489b2c0df5c1a051effb1',1,'M8B\EtherBinder\Contract\AbiTypes\AbiTuple\__toString()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiString.html#ab03ee833616d44c430978c042ef331d4',1,'M8B\EtherBinder\Contract\AbiTypes\AbiString\__toString()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiInt.html#a40a8f703977873490f218a0323faaa80',1,'M8B\EtherBinder\Contract\AbiTypes\AbiInt\__toString()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiFunction.html#a0a5a69ee239c0d4adf505017dc501736',1,'M8B\EtherBinder\Contract\AbiTypes\AbiFunction\__toString()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiBytes.html#a897131498abb7bfb7a035dcb6d6afe3d',1,'M8B\EtherBinder\Contract\AbiTypes\AbiBytes\__toString()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiBool.html#a7170021048e9dee91955fb58ceb08280',1,'M8B\EtherBinder\Contract\AbiTypes\AbiBool\__toString()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiArrayUnknownLength.html#a3afbc1643097e4693e5fa3a311023a4c',1,'M8B\EtherBinder\Contract\AbiTypes\AbiArrayUnknownLength\__toString()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiArrayKnownLength.html#aefb03a0d9047018988b6e02a90bc4bbc',1,'M8B\EtherBinder\Contract\AbiTypes\AbiArrayKnownLength\__toString()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiAddress.html#ae7806e670593e2f189c49b7f581cc56a',1,'M8B\EtherBinder\Contract\AbiTypes\AbiAddress\__toString()'],['../classM8B_1_1EtherBinder_1_1Common_1_1Address.html#aeb502dcfa16a0b8ab03ecf5b352a06ac',1,'M8B\EtherBinder\Common\Address\__toString()']]]
+ ['_5f_5ftostring_2',['__toString',['../classM8B_1_1EtherBinder_1_1Common_1_1Address.html#aeb502dcfa16a0b8ab03ecf5b352a06ac',1,'M8B\EtherBinder\Common\Address\__toString()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiAddress.html#ae7806e670593e2f189c49b7f581cc56a',1,'M8B\EtherBinder\Contract\AbiTypes\AbiAddress\__toString()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiArrayKnownLength.html#aefb03a0d9047018988b6e02a90bc4bbc',1,'M8B\EtherBinder\Contract\AbiTypes\AbiArrayKnownLength\__toString()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiArrayUnknownLength.html#a3afbc1643097e4693e5fa3a311023a4c',1,'M8B\EtherBinder\Contract\AbiTypes\AbiArrayUnknownLength\__toString()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiBool.html#a7170021048e9dee91955fb58ceb08280',1,'M8B\EtherBinder\Contract\AbiTypes\AbiBool\__toString()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiBytes.html#a897131498abb7bfb7a035dcb6d6afe3d',1,'M8B\EtherBinder\Contract\AbiTypes\AbiBytes\__toString()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiFunction.html#a0a5a69ee239c0d4adf505017dc501736',1,'M8B\EtherBinder\Contract\AbiTypes\AbiFunction\__toString()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiInt.html#a40a8f703977873490f218a0323faaa80',1,'M8B\EtherBinder\Contract\AbiTypes\AbiInt\__toString()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiString.html#ab03ee833616d44c430978c042ef331d4',1,'M8B\EtherBinder\Contract\AbiTypes\AbiString\__toString()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiTuple.html#a9de59fc6413489b2c0df5c1a051effb1',1,'M8B\EtherBinder\Contract\AbiTypes\AbiTuple\__toString()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiUint.html#a0b94bca1231c7a7d8c61d5e463117bfb',1,'M8B\EtherBinder\Contract\AbiTypes\AbiUint\__toString()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbstractABIValue.html#a15399584b8f7b055781fc0b6e03da158',1,'M8B\EtherBinder\Contract\AbiTypes\AbstractABIValue\__toString()'],['../classM8B_1_1EtherBinder_1_1Misc_1_1AbstractSigningMessage.html#adcc9b540ddda3e73c100278fd4620017',1,'M8B\EtherBinder\Misc\AbstractSigningMessage\__toString()']]]
];
diff --git a/docs/ref/doxygen/search/functions_1.js b/docs/ref/doxygen/search/functions_1.js
index ac933fe..efb43d1 100644
--- a/docs/ref/doxygen/search/functions_1.js
+++ b/docs/ref/doxygen/search/functions_1.js
@@ -1,6 +1,7 @@
var searchData=
[
['abi_0',['abi',['../classM8B_1_1EtherBinder_1_1Contract_1_1AbstractContract.html#acfe0f009c7aefb624a1f1997b2426070',1,'M8B::EtherBinder::Contract::AbstractContract']]],
- ['accesslist_1',['accesslist',['../classM8B_1_1EtherBinder_1_1Common_1_1AccessListTransaction.html#abd3dc5004ffcd9d0c30c3ffdd00f22f7',1,'M8B\EtherBinder\Common\AccessListTransaction\accessList()'],['../classM8B_1_1EtherBinder_1_1Common_1_1LondonTransaction.html#ae06f0f4f4d717577f0135261bddc00e8',1,'M8B\EtherBinder\Common\LondonTransaction\accessList()']]],
- ['asserttype_2',['assertType',['../classM8B_1_1EtherBinder_1_1Contract_1_1AbstractEventFilter.html#a632f808761161a94ee8e7c0e0c83cac2',1,'M8B::EtherBinder::Contract::AbstractEventFilter']]]
+ ['accesslist_1',['accessList',['../classM8B_1_1EtherBinder_1_1Common_1_1AccessListTransaction.html#abd3dc5004ffcd9d0c30c3ffdd00f22f7',1,'M8B\EtherBinder\Common\AccessListTransaction\accessList()'],['../classM8B_1_1EtherBinder_1_1Common_1_1LondonTransaction.html#ae06f0f4f4d717577f0135261bddc00e8',1,'M8B\EtherBinder\Common\LondonTransaction\accessList()']]],
+ ['addversionedhash_2',['addVersionedHash',['../classM8B_1_1EtherBinder_1_1Common_1_1CancunTransaction.html#aa83e8ba57e010fd165dc84115870687e',1,'M8B::EtherBinder::Common::CancunTransaction']]],
+ ['asserttype_3',['assertType',['../classM8B_1_1EtherBinder_1_1Contract_1_1AbstractEventFilter.html#a632f808761161a94ee8e7c0e0c83cac2',1,'M8B::EtherBinder::Contract::AbstractEventFilter']]]
];
diff --git a/docs/ref/doxygen/search/functions_10.js b/docs/ref/doxygen/search/functions_10.js
index ef5f7c1..1f251c1 100644
--- a/docs/ref/doxygen/search/functions_10.js
+++ b/docs/ref/doxygen/search/functions_10.js
@@ -5,5 +5,5 @@ var searchData=
['recover_2',['Recover',['../classM8B_1_1EtherBinder_1_1Crypto_1_1EC.html#abeb524769276ccd6bdbb85e9cbb80da6',1,'M8B::EtherBinder::Crypto::EC']]],
['runnonpayabledeploy_3',['runNonPayableDeploy',['../classM8B_1_1EtherBinder_1_1Contract_1_1AbstractContract.html#ae0735542171232f1838ee5425c0aefa8',1,'M8B::EtherBinder::Contract::AbstractContract']]],
['runpayabledeploy_4',['runPayableDeploy',['../classM8B_1_1EtherBinder_1_1Contract_1_1AbstractContract.html#abe0f7161fef3f6b8eaa9c17f9eb88b08',1,'M8B::EtherBinder::Contract::AbstractContract']]],
- ['runrpc_5',['runrpc',['../classM8B_1_1EtherBinder_1_1RPC_1_1AbstractRPC.html#a3556183a237ad374955625b3665c7bba',1,'M8B\EtherBinder\RPC\AbstractRPC\runRpc()'],['../classM8B_1_1EtherBinder_1_1RPC_1_1Modules_1_1AbstractModule.html#a60a827ad8d0ba615e85bf16973f899aa',1,'M8B\EtherBinder\RPC\Modules\AbstractModule\runRpc()']]]
+ ['runrpc_5',['runRpc',['../classM8B_1_1EtherBinder_1_1RPC_1_1AbstractRPC.html#a3556183a237ad374955625b3665c7bba',1,'M8B\EtherBinder\RPC\AbstractRPC\runRpc()'],['../classM8B_1_1EtherBinder_1_1RPC_1_1Modules_1_1AbstractModule.html#a60a827ad8d0ba615e85bf16973f899aa',1,'M8B\EtherBinder\RPC\Modules\AbstractModule\runRpc()']]]
];
diff --git a/docs/ref/doxygen/search/functions_11.js b/docs/ref/doxygen/search/functions_11.js
index 14d6609..a040925 100644
--- a/docs/ref/doxygen/search/functions_11.js
+++ b/docs/ref/doxygen/search/functions_11.js
@@ -1,7 +1,7 @@
var searchData=
[
['s_0',['s',['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#af41ab5dfbad3fc7f6db3a598fd96bbb6',1,'M8B::EtherBinder::Common::Transaction']]],
- ['setaccesslist_1',['setaccesslist',['../classM8B_1_1EtherBinder_1_1Common_1_1AccessListTransaction.html#a2b7350b6dab7f979b277e6c2f4b05517',1,'M8B\EtherBinder\Common\AccessListTransaction\setAccessList()'],['../classM8B_1_1EtherBinder_1_1Common_1_1LondonTransaction.html#a01a19f03db65e45b452d547d3af1ebe8',1,'M8B\EtherBinder\Common\LondonTransaction\setAccessList(array $accessList)']]],
+ ['setaccesslist_1',['setAccessList',['../classM8B_1_1EtherBinder_1_1Common_1_1AccessListTransaction.html#a2b7350b6dab7f979b277e6c2f4b05517',1,'M8B\EtherBinder\Common\AccessListTransaction\setAccessList()'],['../classM8B_1_1EtherBinder_1_1Common_1_1LondonTransaction.html#a01a19f03db65e45b452d547d3af1ebe8',1,'M8B\EtherBinder\Common\LondonTransaction\setAccessList(array $accessList)']]],
['setbasefeecap_2',['setBaseFeeCap',['../classM8B_1_1EtherBinder_1_1Common_1_1LondonTransaction.html#aa12b058bc42edf5425193ba53f170418',1,'M8B::EtherBinder::Common::LondonTransaction']]],
['setchainid_3',['setChainId',['../classM8B_1_1EtherBinder_1_1Common_1_1LondonTransaction.html#a9dcacb648a69fe5dfd2d488443e087bc',1,'M8B::EtherBinder::Common::LondonTransaction']]],
['setdatabin_4',['setDataBin',['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#a1b156e2fcc83f01c9d8a08508273e71c',1,'M8B::EtherBinder::Common::Transaction']]],
@@ -11,15 +11,16 @@ var searchData=
['setgasfeetip_8',['setGasFeeTip',['../classM8B_1_1EtherBinder_1_1Common_1_1LondonTransaction.html#a9440e08c34fcec62f6aacd0496cea119',1,'M8B::EtherBinder::Common::LondonTransaction']]],
['setgaslimit_9',['setGasLimit',['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#a996e851363eef5d98019b1f1ab85a476',1,'M8B::EtherBinder::Common::Transaction']]],
['setgasprice_10',['setGasPrice',['../classM8B_1_1EtherBinder_1_1Common_1_1LegacyTransaction.html#acc2ad99c44db17959279fbd52d154cec',1,'M8B::EtherBinder::Common::LegacyTransaction']]],
- ['setinnerfromrlpvalues_11',['setinnerfromrlpvalues',['../classM8B_1_1EtherBinder_1_1Common_1_1LondonTransaction.html#a9c9e1c64602af10093d66817cf779366',1,'M8B\EtherBinder\Common\LondonTransaction\setInnerFromRLPValues()'],['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#a33c38289e06eadc8c5b4e8936980cb96',1,'M8B\EtherBinder\Common\Transaction\setInnerFromRLPValues()'],['../classM8B_1_1EtherBinder_1_1Common_1_1LegacyTransaction.html#a0123c70f28767dadedd66c7ad892ac8c',1,'M8B\EtherBinder\Common\LegacyTransaction\setInnerFromRLPValues()'],['../classM8B_1_1EtherBinder_1_1Common_1_1AccessListTransaction.html#a3528d4aa1c828bc24c232bf6a69b9c2e',1,'M8B\EtherBinder\Common\AccessListTransaction\setInnerFromRLPValues()']]],
- ['setmessage_12',['setMessage',['../classM8B_1_1EtherBinder_1_1Misc_1_1AbstractSigningMessage.html#a630f4c263d2eae5c436f3c3c1b2b0d42',1,'M8B::EtherBinder::Misc::AbstractSigningMessage']]],
- ['setnonce_13',['setNonce',['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#add7b4bb72eb7c508e2b4ac23bbf413ce',1,'M8B::EtherBinder::Common::Transaction']]],
- ['setsignature_14',['setSignature',['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#ac04fbe6e0bf0d982dfcf933b2034cd80',1,'M8B::EtherBinder::Common::Transaction']]],
- ['setto_15',['setTo',['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#a7e0a8fa23160f3ddf4eef776b9af4206',1,'M8B::EtherBinder::Common::Transaction']]],
- ['settoblock_16',['setToBlock',['../classM8B_1_1EtherBinder_1_1Contract_1_1AbstractEventFilter.html#a5ac2b1bb6a8617261b673de0c83e3701',1,'M8B::EtherBinder::Contract::AbstractEventFilter']]],
- ['setvalue_17',['setValue',['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#a5d315d8df7a8c9f003a2240d402ebde6',1,'M8B::EtherBinder::Common::Transaction']]],
- ['setvaluefmt_18',['setValueFmt',['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#a656dc02fac3abe216aa687b6bbe611de',1,'M8B::EtherBinder::Common::Transaction']]],
- ['sign_19',['sign',['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#a30ac5629b7f1669c3b2c01561a9b239a',1,'M8B\EtherBinder\Common\Transaction\sign()'],['../classM8B_1_1EtherBinder_1_1Crypto_1_1Key.html#adca1ca74d66d35193d39db6b6145ea26',1,'M8B\EtherBinder\Crypto\Key\sign()'],['../classM8B_1_1EtherBinder_1_1Misc_1_1AbstractSigningMessage.html#a04c25bb36d2d565aac9ec882f8e80f79',1,'M8B\EtherBinder\Misc\AbstractSigningMessage\sign()']]],
- ['signature_20',['signature',['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#a0c752777a40b7131b044b8f640748b5a',1,'M8B::EtherBinder::Common::Transaction']]],
- ['splittypebits_21',['splitTypeBits',['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbstractABIValue.html#ac99dcf7add40bf1a2f0d9c379b20cb8e',1,'M8B::EtherBinder::Contract::AbiTypes::AbstractABIValue']]]
+ ['setinnerfromrlpvalues_11',['setInnerFromRLPValues',['../classM8B_1_1EtherBinder_1_1Common_1_1AccessListTransaction.html#a3528d4aa1c828bc24c232bf6a69b9c2e',1,'M8B\EtherBinder\Common\AccessListTransaction\setInnerFromRLPValues()'],['../classM8B_1_1EtherBinder_1_1Common_1_1CancunTransaction.html#a4f5371f8efd6fe6c457f9f3b44d95802',1,'M8B\EtherBinder\Common\CancunTransaction\setInnerFromRLPValues()'],['../classM8B_1_1EtherBinder_1_1Common_1_1LegacyTransaction.html#a0123c70f28767dadedd66c7ad892ac8c',1,'M8B\EtherBinder\Common\LegacyTransaction\setInnerFromRLPValues()'],['../classM8B_1_1EtherBinder_1_1Common_1_1LondonTransaction.html#a9c9e1c64602af10093d66817cf779366',1,'M8B\EtherBinder\Common\LondonTransaction\setInnerFromRLPValues()'],['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#a33c38289e06eadc8c5b4e8936980cb96',1,'M8B\EtherBinder\Common\Transaction\setInnerFromRLPValues()']]],
+ ['setmaxfeeperblobgas_12',['setMaxFeePerBlobGas',['../classM8B_1_1EtherBinder_1_1Common_1_1CancunTransaction.html#acef613b63fdee14d54e1ef905e1a3637',1,'M8B::EtherBinder::Common::CancunTransaction']]],
+ ['setmessage_13',['setMessage',['../classM8B_1_1EtherBinder_1_1Misc_1_1AbstractSigningMessage.html#a630f4c263d2eae5c436f3c3c1b2b0d42',1,'M8B::EtherBinder::Misc::AbstractSigningMessage']]],
+ ['setnonce_14',['setNonce',['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#add7b4bb72eb7c508e2b4ac23bbf413ce',1,'M8B::EtherBinder::Common::Transaction']]],
+ ['setsignature_15',['setSignature',['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#ac04fbe6e0bf0d982dfcf933b2034cd80',1,'M8B::EtherBinder::Common::Transaction']]],
+ ['setto_16',['setTo',['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#a7e0a8fa23160f3ddf4eef776b9af4206',1,'M8B::EtherBinder::Common::Transaction']]],
+ ['settoblock_17',['setToBlock',['../classM8B_1_1EtherBinder_1_1Contract_1_1AbstractEventFilter.html#a5ac2b1bb6a8617261b673de0c83e3701',1,'M8B::EtherBinder::Contract::AbstractEventFilter']]],
+ ['setvalue_18',['setValue',['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#a5d315d8df7a8c9f003a2240d402ebde6',1,'M8B::EtherBinder::Common::Transaction']]],
+ ['setvaluefmt_19',['setValueFmt',['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#a656dc02fac3abe216aa687b6bbe611de',1,'M8B::EtherBinder::Common::Transaction']]],
+ ['sign_20',['sign',['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#a30ac5629b7f1669c3b2c01561a9b239a',1,'M8B\EtherBinder\Common\Transaction\sign()'],['../classM8B_1_1EtherBinder_1_1Crypto_1_1Key.html#adca1ca74d66d35193d39db6b6145ea26',1,'M8B\EtherBinder\Crypto\Key\sign()'],['../classM8B_1_1EtherBinder_1_1Misc_1_1AbstractSigningMessage.html#a04c25bb36d2d565aac9ec882f8e80f79',1,'M8B\EtherBinder\Misc\AbstractSigningMessage\sign()']]],
+ ['signature_21',['signature',['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#a0c752777a40b7131b044b8f640748b5a',1,'M8B::EtherBinder::Common::Transaction']]],
+ ['splittypebits_22',['splitTypeBits',['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbstractABIValue.html#ac99dcf7add40bf1a2f0d9c379b20cb8e',1,'M8B::EtherBinder::Contract::AbiTypes::AbstractABIValue']]]
];
diff --git a/docs/ref/doxygen/search/functions_12.js b/docs/ref/doxygen/search/functions_12.js
index e626f96..9954ca2 100644
--- a/docs/ref/doxygen/search/functions_12.js
+++ b/docs/ref/doxygen/search/functions_12.js
@@ -4,11 +4,11 @@ var searchData=
['testchecksum_1',['testChecksum',['../classM8B_1_1EtherBinder_1_1Common_1_1Address.html#a77046486639a39e04104a91950e67ec9',1,'M8B::EtherBinder::Common::Address']]],
['to_2',['to',['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#a9d9844408e6bcfb55bd0890b063372fb',1,'M8B::EtherBinder::Common::Transaction']]],
['toaddress_3',['toAddress',['../classM8B_1_1EtherBinder_1_1Crypto_1_1Key.html#aa32f5c1c43dfaa47df05434a0891a6b5',1,'M8B::EtherBinder::Crypto::Key']]],
- ['tobin_4',['tobin',['../classM8B_1_1EtherBinder_1_1Common_1_1Hash.html#a8d44db6c04273244e3a88e1b781b6172',1,'M8B\EtherBinder\Common\Hash\toBin()'],['../classM8B_1_1EtherBinder_1_1Common_1_1SolidityFunction.html#a03178c3e4eeb79b0f98832712dcb556d',1,'M8B\EtherBinder\Common\SolidityFunction\toBin()'],['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#a648ffe433e5d7e20c34c53a33baace31',1,'M8B\EtherBinder\Common\Transaction\toBin()'],['../classM8B_1_1EtherBinder_1_1Crypto_1_1Key.html#ae4dbd0632938d20d51d37410aec92cb0',1,'M8B\EtherBinder\Crypto\Key\toBin()'],['../classM8B_1_1EtherBinder_1_1Crypto_1_1Signature.html#ae77172e5dd6158534903e34c75ee164f',1,'M8B\EtherBinder\Crypto\Signature\toBin()'],['../classM8B_1_1EtherBinder_1_1Utils_1_1OOGmp.html#a19ad41ead12ef80ea13e372f638b7f09',1,'M8B\EtherBinder\Utils\OOGmp\toBin()']]],
- ['tohex_5',['tohex',['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#a3fb264dc2156b955c8b3545cbe9d0d1c',1,'M8B\EtherBinder\Common\Transaction\toHex()'],['../classM8B_1_1EtherBinder_1_1Utils_1_1OOGmp.html#a8803fb24b9ed9b847e4cea61da09e6df',1,'M8B\EtherBinder\Utils\OOGmp\toHex()'],['../classM8B_1_1EtherBinder_1_1Crypto_1_1Signature.html#af4fc1de190d3d2a1177d6ef51404991f',1,'M8B\EtherBinder\Crypto\Signature\toHex()'],['../classM8B_1_1EtherBinder_1_1Crypto_1_1Key.html#a1717e506637a39c70b1b562b79b46dfd',1,'M8B\EtherBinder\Crypto\Key\toHex()'],['../classM8B_1_1EtherBinder_1_1Common_1_1Hash.html#a23fe02d8f601ffede15771d223284e26',1,'M8B\EtherBinder\Common\Hash\toHex()']]],
+ ['tobin_4',['toBin',['../classM8B_1_1EtherBinder_1_1Common_1_1Hash.html#a8d44db6c04273244e3a88e1b781b6172',1,'M8B\EtherBinder\Common\Hash\toBin()'],['../classM8B_1_1EtherBinder_1_1Common_1_1SolidityFunction.html#a03178c3e4eeb79b0f98832712dcb556d',1,'M8B\EtherBinder\Common\SolidityFunction\toBin()'],['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#a648ffe433e5d7e20c34c53a33baace31',1,'M8B\EtherBinder\Common\Transaction\toBin()'],['../classM8B_1_1EtherBinder_1_1Crypto_1_1Key.html#ae4dbd0632938d20d51d37410aec92cb0',1,'M8B\EtherBinder\Crypto\Key\toBin()'],['../classM8B_1_1EtherBinder_1_1Crypto_1_1Signature.html#ae77172e5dd6158534903e34c75ee164f',1,'M8B\EtherBinder\Crypto\Signature\toBin()'],['../classM8B_1_1EtherBinder_1_1Utils_1_1OOGmp.html#a19ad41ead12ef80ea13e372f638b7f09',1,'M8B\EtherBinder\Utils\OOGmp\toBin()']]],
+ ['tohex_5',['toHex',['../classM8B_1_1EtherBinder_1_1Common_1_1Hash.html#a23fe02d8f601ffede15771d223284e26',1,'M8B\EtherBinder\Common\Hash\toHex()'],['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#a3fb264dc2156b955c8b3545cbe9d0d1c',1,'M8B\EtherBinder\Common\Transaction\toHex()'],['../classM8B_1_1EtherBinder_1_1Crypto_1_1Key.html#a1717e506637a39c70b1b562b79b46dfd',1,'M8B\EtherBinder\Crypto\Key\toHex()'],['../classM8B_1_1EtherBinder_1_1Crypto_1_1Signature.html#af4fc1de190d3d2a1177d6ef51404991f',1,'M8B\EtherBinder\Crypto\Signature\toHex()'],['../classM8B_1_1EtherBinder_1_1Utils_1_1OOGmp.html#a8803fb24b9ed9b847e4cea61da09e6df',1,'M8B\EtherBinder\Utils\OOGmp\toHex()']]],
['toint_6',['toInt',['../classM8B_1_1EtherBinder_1_1Utils_1_1OOGmp.html#ac6cb24f1abf635684bb5f9ea153957cb',1,'M8B::EtherBinder::Utils::OOGmp']]],
['tojson_7',['toJson',['../classM8B_1_1EtherBinder_1_1Misc_1_1AbstractSigningMessage.html#a0e408b3eb78c2bdaa8e0b5647d3970be',1,'M8B::EtherBinder::Misc::AbstractSigningMessage']]],
['tostring_8',['toString',['../classM8B_1_1EtherBinder_1_1Utils_1_1OOGmp.html#add4f75d5345851963153b033a1ca1f7d',1,'M8B::EtherBinder::Utils::OOGmp']]],
- ['totalgasprice_9',['totalgasprice',['../classM8B_1_1EtherBinder_1_1Common_1_1LondonTransaction.html#a936897cad1b4f1f330d8bf0bd63fa906',1,'M8B\EtherBinder\Common\LondonTransaction\totalGasPrice()'],['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#adba90b5fec3b2930c6af49293560cd84',1,'M8B\EtherBinder\Common\Transaction\totalGasPrice()']]],
- ['transactiontype_10',['transactiontype',['../classM8B_1_1EtherBinder_1_1Common_1_1LegacyTransaction.html#ad35f651d45a8446c0a89123846b49fe8',1,'M8B\EtherBinder\Common\LegacyTransaction\transactionType()'],['../classM8B_1_1EtherBinder_1_1Common_1_1LondonTransaction.html#a7c3c0acac44bfb225e152dbfb36aa959',1,'M8B\EtherBinder\Common\LondonTransaction\transactionType()']]]
+ ['totalgasprice_9',['totalGasPrice',['../classM8B_1_1EtherBinder_1_1Common_1_1LondonTransaction.html#a936897cad1b4f1f330d8bf0bd63fa906',1,'M8B\EtherBinder\Common\LondonTransaction\totalGasPrice()'],['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#adba90b5fec3b2930c6af49293560cd84',1,'M8B\EtherBinder\Common\Transaction\totalGasPrice()']]],
+ ['transactiontype_10',['transactionType',['../classM8B_1_1EtherBinder_1_1Common_1_1CancunTransaction.html#a66decde14f5e158b7e51fe65e6300c63',1,'M8B\EtherBinder\Common\CancunTransaction\transactionType()'],['../classM8B_1_1EtherBinder_1_1Common_1_1LegacyTransaction.html#ad35f651d45a8446c0a89123846b49fe8',1,'M8B\EtherBinder\Common\LegacyTransaction\transactionType()'],['../classM8B_1_1EtherBinder_1_1Common_1_1LondonTransaction.html#a7c3c0acac44bfb225e152dbfb36aa959',1,'M8B\EtherBinder\Common\LondonTransaction\transactionType()']]]
];
diff --git a/docs/ref/doxygen/search/functions_13.js b/docs/ref/doxygen/search/functions_13.js
index ceb8ca9..d390cf4 100644
--- a/docs/ref/doxygen/search/functions_13.js
+++ b/docs/ref/doxygen/search/functions_13.js
@@ -2,7 +2,7 @@ var searchData=
[
['unloadprivk_0',['unloadPrivK',['../classM8B_1_1EtherBinder_1_1Contract_1_1AbstractContract.html#a80d502a9f474928790c97563296f2423',1,'M8B::EtherBinder::Contract::AbstractContract']]],
['unsetfallbackfrom_1',['unsetFallbackFrom',['../classM8B_1_1EtherBinder_1_1Contract_1_1AbstractContract.html#aec0b3e02c9416027b9bb3b7d711f2408',1,'M8B::EtherBinder::Contract::AbstractContract']]],
- ['unwraptophpfriendlyvals_2',['unwraptophpfriendlyvals',['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiAddress.html#af3cd12083a51e74afab959469b2bdf35',1,'M8B\EtherBinder\Contract\AbiTypes\AbiAddress\unwrapToPhpFriendlyVals()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiArrayKnownLength.html#a8eaa9b5f114d383be230ad89694b5179',1,'M8B\EtherBinder\Contract\AbiTypes\AbiArrayKnownLength\unwrapToPhpFriendlyVals()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiBool.html#a6bdd10402e6dbbc978378ada71150945',1,'M8B\EtherBinder\Contract\AbiTypes\AbiBool\unwrapToPhpFriendlyVals()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiBytes.html#a687bcc9cffe1b91be97e94f241a2445b',1,'M8B\EtherBinder\Contract\AbiTypes\AbiBytes\unwrapToPhpFriendlyVals()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiFunction.html#a56a078943d46d92bb86f3c8897d337d5',1,'M8B\EtherBinder\Contract\AbiTypes\AbiFunction\unwrapToPhpFriendlyVals()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiTuple.html#aa4a89643df97c371d963d28c371a0e9a',1,'M8B\EtherBinder\Contract\AbiTypes\AbiTuple\unwrapToPhpFriendlyVals()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiUint.html#a22ee029e497f73376bdae844a2e02c47',1,'M8B\EtherBinder\Contract\AbiTypes\AbiUint\unwrapToPhpFriendlyVals()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbstractABIValue.html#a2650874f97fd346a28b681cbaf54b3d5',1,'M8B\EtherBinder\Contract\AbiTypes\AbstractABIValue\unwrapToPhpFriendlyVals()']]],
+ ['unwraptophpfriendlyvals_2',['unwrapToPhpFriendlyVals',['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiAddress.html#af3cd12083a51e74afab959469b2bdf35',1,'M8B\EtherBinder\Contract\AbiTypes\AbiAddress\unwrapToPhpFriendlyVals()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiArrayKnownLength.html#a8eaa9b5f114d383be230ad89694b5179',1,'M8B\EtherBinder\Contract\AbiTypes\AbiArrayKnownLength\unwrapToPhpFriendlyVals()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiBool.html#a6bdd10402e6dbbc978378ada71150945',1,'M8B\EtherBinder\Contract\AbiTypes\AbiBool\unwrapToPhpFriendlyVals()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiBytes.html#a687bcc9cffe1b91be97e94f241a2445b',1,'M8B\EtherBinder\Contract\AbiTypes\AbiBytes\unwrapToPhpFriendlyVals()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiFunction.html#a56a078943d46d92bb86f3c8897d337d5',1,'M8B\EtherBinder\Contract\AbiTypes\AbiFunction\unwrapToPhpFriendlyVals()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiTuple.html#aa4a89643df97c371d963d28c371a0e9a',1,'M8B\EtherBinder\Contract\AbiTypes\AbiTuple\unwrapToPhpFriendlyVals()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiUint.html#a22ee029e497f73376bdae844a2e02c47',1,'M8B\EtherBinder\Contract\AbiTypes\AbiUint\unwrapToPhpFriendlyVals()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbstractABIValue.html#a2650874f97fd346a28b681cbaf54b3d5',1,'M8B\EtherBinder\Contract\AbiTypes\AbstractABIValue\unwrapToPhpFriendlyVals()']]],
['userpcestimates_3',['useRpcEstimates',['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#a46d1f37a0fdf003e3cc10426a608acb1',1,'M8B::EtherBinder::Common::Transaction']]],
- ['userpcestimateswithbump_4',['userpcestimateswithbump',['../classM8B_1_1EtherBinder_1_1Common_1_1LegacyTransaction.html#a9d45d915d4c9f9a969b2f06d3475c230',1,'M8B\EtherBinder\Common\LegacyTransaction\useRpcEstimatesWithBump()'],['../classM8B_1_1EtherBinder_1_1Common_1_1LondonTransaction.html#af6de86a187b5d9178927c4d5062dda58',1,'M8B\EtherBinder\Common\LondonTransaction\useRpcEstimatesWithBump()'],['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#adb9b7f93e874977a5f07367a7c0b3abf',1,'M8B\EtherBinder\Common\Transaction\useRpcEstimatesWithBump()']]]
+ ['userpcestimateswithbump_4',['useRpcEstimatesWithBump',['../classM8B_1_1EtherBinder_1_1Common_1_1LegacyTransaction.html#a9d45d915d4c9f9a969b2f06d3475c230',1,'M8B\EtherBinder\Common\LegacyTransaction\useRpcEstimatesWithBump()'],['../classM8B_1_1EtherBinder_1_1Common_1_1LondonTransaction.html#af6de86a187b5d9178927c4d5062dda58',1,'M8B\EtherBinder\Common\LondonTransaction\useRpcEstimatesWithBump()'],['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#adb9b7f93e874977a5f07367a7c0b3abf',1,'M8B\EtherBinder\Common\Transaction\useRpcEstimatesWithBump()']]]
];
diff --git a/docs/ref/doxygen/search/functions_14.js b/docs/ref/doxygen/search/functions_14.js
index 0efab2a..d788756 100644
--- a/docs/ref/doxygen/search/functions_14.js
+++ b/docs/ref/doxygen/search/functions_14.js
@@ -4,5 +4,6 @@ var searchData=
['validateparams_1',['validateParams',['../classM8B_1_1EtherBinder_1_1Contract_1_1AbstractEventFilter.html#afb6bbd5091678bfec9293c1c5fe4ebbb',1,'M8B::EtherBinder::Contract::AbstractEventFilter']]],
['validatesignature_2',['validateSignature',['../classM8B_1_1EtherBinder_1_1Misc_1_1AbstractSigningMessage.html#ae1d8125a19bc698598f62d18e2b9a090',1,'M8B::EtherBinder::Misc::AbstractSigningMessage']]],
['value_3',['value',['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#a12b89999e1b260e2706fd5b5bb4a00eb',1,'M8B::EtherBinder::Common::Transaction']]],
- ['valuefmt_4',['valueFmt',['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#a4c043bf7ea4fd626c606655fef3be3df',1,'M8B::EtherBinder::Common::Transaction']]]
+ ['valuefmt_4',['valueFmt',['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#a4c043bf7ea4fd626c606655fef3be3df',1,'M8B::EtherBinder::Common::Transaction']]],
+ ['versionedhashes_5',['versionedHashes',['../classM8B_1_1EtherBinder_1_1Common_1_1CancunTransaction.html#aee078948da47ec0e7486baebf1720853',1,'M8B::EtherBinder::Common::CancunTransaction']]]
];
diff --git a/docs/ref/doxygen/search/functions_2.js b/docs/ref/doxygen/search/functions_2.js
index 00f18f1..d6b92c5 100644
--- a/docs/ref/doxygen/search/functions_2.js
+++ b/docs/ref/doxygen/search/functions_2.js
@@ -1,7 +1,8 @@
var searchData=
[
- ['blockhash_0',['blockHash',['../classM8B_1_1EtherBinder_1_1RPC_1_1Modules_1_1AbstractModule.html#a62000f22d6159155e7c7edb1ce50073d',1,'M8B::EtherBinder::RPC::Modules::AbstractModule']]],
- ['blockparam_1',['blockParam',['../classM8B_1_1EtherBinder_1_1RPC_1_1Modules_1_1AbstractModule.html#a7bf386b03cc1b9ddee3126196de06cbf',1,'M8B::EtherBinder::RPC::Modules::AbstractModule']]],
- ['buildmethodparams_2',['buildMethodParams',['../classM8B_1_1EtherBinder_1_1Contract_1_1ABIGen.html#a6bfc5f7b4567ec91284b695651783ad8',1,'M8B::EtherBinder::Contract::ABIGen']]],
- ['bytecode_3',['bytecode',['../classM8B_1_1EtherBinder_1_1Contract_1_1AbstractContract.html#a79c62746ef40b15dfb715d6b1185acdb',1,'M8B::EtherBinder::Contract::AbstractContract']]]
+ ['blanksfromrpcarr_0',['blanksFromRPCArr',['../classM8B_1_1EtherBinder_1_1Common_1_1CancunTransaction.html#ab9abf0aa56d6cbdac5a02055f09b35d3',1,'M8B::EtherBinder::Common::CancunTransaction']]],
+ ['blockhash_1',['blockHash',['../classM8B_1_1EtherBinder_1_1RPC_1_1Modules_1_1AbstractModule.html#a62000f22d6159155e7c7edb1ce50073d',1,'M8B::EtherBinder::RPC::Modules::AbstractModule']]],
+ ['blockparam_2',['blockParam',['../classM8B_1_1EtherBinder_1_1RPC_1_1Modules_1_1AbstractModule.html#a7bf386b03cc1b9ddee3126196de06cbf',1,'M8B::EtherBinder::RPC::Modules::AbstractModule']]],
+ ['buildmethodparams_3',['buildMethodParams',['../classM8B_1_1EtherBinder_1_1Contract_1_1ABIGen.html#a6bfc5f7b4567ec91284b695651783ad8',1,'M8B::EtherBinder::Contract::ABIGen']]],
+ ['bytecode_4',['bytecode',['../classM8B_1_1EtherBinder_1_1Contract_1_1AbstractContract.html#a79c62746ef40b15dfb715d6b1185acdb',1,'M8B::EtherBinder::Contract::AbstractContract']]]
];
diff --git a/docs/ref/doxygen/search/functions_3.js b/docs/ref/doxygen/search/functions_3.js
index 939bd4d..230f97d 100644
--- a/docs/ref/doxygen/search/functions_3.js
+++ b/docs/ref/doxygen/search/functions_3.js
@@ -1,7 +1,7 @@
var searchData=
[
['calcavgtip_0',['calcAvgTip',['../classM8B_1_1EtherBinder_1_1RPC_1_1Compound.html#a2e125899e4ed94237c4a37eb4237e589',1,'M8B::EtherBinder::RPC::Compound']]],
- ['calculatev_1',['calculatev',['../classM8B_1_1EtherBinder_1_1Common_1_1AccessListTransaction.html#a6990d93f2d3116d3b673ab998ee601ef',1,'M8B\EtherBinder\Common\AccessListTransaction\calculateV()'],['../classM8B_1_1EtherBinder_1_1Common_1_1LondonTransaction.html#ad954d8db40900780ffdae1b74ad8c568',1,'M8B\EtherBinder\Common\LondonTransaction\calculateV()'],['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#a7725b5f40f4c65f62abb117ee5e1aa5b',1,'M8B\EtherBinder\Common\Transaction\calculateV()']]],
+ ['calculatev_1',['calculateV',['../classM8B_1_1EtherBinder_1_1Common_1_1AccessListTransaction.html#a6990d93f2d3116d3b673ab998ee601ef',1,'M8B\EtherBinder\Common\AccessListTransaction\calculateV()'],['../classM8B_1_1EtherBinder_1_1Common_1_1LondonTransaction.html#ad954d8db40900780ffdae1b74ad8c568',1,'M8B\EtherBinder\Common\LondonTransaction\calculateV()'],['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#a7725b5f40f4c65f62abb117ee5e1aa5b',1,'M8B\EtherBinder\Common\Transaction\calculateV()']]],
['chainid_2',['chainId',['../classM8B_1_1EtherBinder_1_1Common_1_1LondonTransaction.html#a90ba46b9cdb436df4a0f36b6897a15c8',1,'M8B::EtherBinder::Common::LondonTransaction']]],
['checksummed_3',['checksummed',['../classM8B_1_1EtherBinder_1_1Common_1_1Address.html#a4307c3e6f6e7f51d0fd44762f8ea3447',1,'M8B::EtherBinder::Common::Address']]]
];
diff --git a/docs/ref/doxygen/search/functions_4.js b/docs/ref/doxygen/search/functions_4.js
index 9505020..e2e0023 100644
--- a/docs/ref/doxygen/search/functions_4.js
+++ b/docs/ref/doxygen/search/functions_4.js
@@ -8,7 +8,7 @@ var searchData=
['debuggetrawtransaction_5',['debugGetRawTransaction',['../classM8B_1_1EtherBinder_1_1RPC_1_1Modules_1_1Debug.html#a51fe23ccc614d81668702fc388691de8',1,'M8B::EtherBinder::RPC::Modules::Debug']]],
['decode_6',['decode',['../classM8B_1_1EtherBinder_1_1RLP_1_1Decoder.html#a993c850a232ee669e64e3187d19b0016',1,'M8B::EtherBinder::RLP::Decoder']]],
['decodearray_7',['decodeArray',['../classM8B_1_1EtherBinder_1_1RLP_1_1Decoder.html#a0f1639c8e2e6ce56bea0a6fae355add7',1,'M8B::EtherBinder::RLP::Decoder']]],
- ['decodebin_8',['decodebin',['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiBool.html#a294f2794852680337debe6fdb1dbe0a6',1,'M8B\EtherBinder\Contract\AbiTypes\AbiBool\decodeBin()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbstractABIValue.html#ab15a80cfd356de356777154e9ba47214',1,'M8B\EtherBinder\Contract\AbiTypes\AbstractABIValue\decodeBin()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiUint.html#a2d3f4bf15337467b1332a94200488548',1,'M8B\EtherBinder\Contract\AbiTypes\AbiUint\decodeBin()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiTuple.html#ac3961ba9548c60cf865780be523a8ba7',1,'M8B\EtherBinder\Contract\AbiTypes\AbiTuple\decodeBin()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiFunction.html#a92e8cdd8ed57e7e88174819836cea327',1,'M8B\EtherBinder\Contract\AbiTypes\AbiFunction\decodeBin()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiBytes.html#a9b84379f2727ee1963575c10505bdfdb',1,'M8B\EtherBinder\Contract\AbiTypes\AbiBytes\decodeBin()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiArrayUnknownLength.html#a6eea30a714281e1d909b7115154f5a5c',1,'M8B\EtherBinder\Contract\AbiTypes\AbiArrayUnknownLength\decodeBin()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiAddress.html#a85d95e76793b6ac8d0e2321f4cd20d46',1,'M8B\EtherBinder\Contract\AbiTypes\AbiAddress\decodeBin()'],['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#ac1183eb683273189ad113946bfa9c185',1,'M8B\EtherBinder\Common\Transaction\decodeBin()']]],
+ ['decodebin_8',['decodeBin',['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#ac1183eb683273189ad113946bfa9c185',1,'M8B\EtherBinder\Common\Transaction\decodeBin()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiAddress.html#a85d95e76793b6ac8d0e2321f4cd20d46',1,'M8B\EtherBinder\Contract\AbiTypes\AbiAddress\decodeBin()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiArrayUnknownLength.html#a6eea30a714281e1d909b7115154f5a5c',1,'M8B\EtherBinder\Contract\AbiTypes\AbiArrayUnknownLength\decodeBin()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiBool.html#a294f2794852680337debe6fdb1dbe0a6',1,'M8B\EtherBinder\Contract\AbiTypes\AbiBool\decodeBin()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiBytes.html#a9b84379f2727ee1963575c10505bdfdb',1,'M8B\EtherBinder\Contract\AbiTypes\AbiBytes\decodeBin()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiFunction.html#a92e8cdd8ed57e7e88174819836cea327',1,'M8B\EtherBinder\Contract\AbiTypes\AbiFunction\decodeBin()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiTuple.html#ac3961ba9548c60cf865780be523a8ba7',1,'M8B\EtherBinder\Contract\AbiTypes\AbiTuple\decodeBin()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiUint.html#a2d3f4bf15337467b1332a94200488548',1,'M8B\EtherBinder\Contract\AbiTypes\AbiUint\decodeBin()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbstractABIValue.html#ab15a80cfd356de356777154e9ba47214',1,'M8B\EtherBinder\Contract\AbiTypes\AbstractABIValue\decodeBin()']]],
['decodeentry_9',['decodeEntry',['../classM8B_1_1EtherBinder_1_1RLP_1_1Decoder.html#a011cb10101cd4ef0d568206c8c6d31de',1,'M8B::EtherBinder::RLP::Decoder']]],
['decodehex_10',['decodeHex',['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#adf6bba0727461421ece29756ec458010',1,'M8B::EtherBinder::Common::Transaction']]],
['decoderlpbin_11',['decodeRLPBin',['../classM8B_1_1EtherBinder_1_1RLP_1_1Decoder.html#a17da9ed888b5b31a9dddc996cfa530ad',1,'M8B::EtherBinder::RLP::Decoder']]],
diff --git a/docs/ref/doxygen/search/functions_5.js b/docs/ref/doxygen/search/functions_5.js
index c1a6a28..c182016 100644
--- a/docs/ref/doxygen/search/functions_5.js
+++ b/docs/ref/doxygen/search/functions_5.js
@@ -1,11 +1,11 @@
var searchData=
[
['ec_0',['EC',['../classM8B_1_1EtherBinder_1_1Crypto_1_1EC.html#af8d9295d54722fb86fda58d7c2fda537',1,'M8B::EtherBinder::Crypto::EC']]],
- ['ecrecover_1',['ecrecover',['../classM8B_1_1EtherBinder_1_1Common_1_1AccessListTransaction.html#a32f6d8b3a4c95e1c1edc66c3642c9bfa',1,'M8B\EtherBinder\Common\AccessListTransaction\ecRecover()'],['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#a8254c668e643d247464ded266ede6e7a',1,'M8B\EtherBinder\Common\Transaction\ecRecover()'],['../classM8B_1_1EtherBinder_1_1Common_1_1LegacyTransaction.html#a4aa0639e3d5105977e04ca2b157de454',1,'M8B\EtherBinder\Common\LegacyTransaction\ecRecover()'],['../classM8B_1_1EtherBinder_1_1Common_1_1LondonTransaction.html#a521863096b82976fce4a41e37d929d2d',1,'M8B\EtherBinder\Common\LondonTransaction\ecRecover()']]],
+ ['ecrecover_1',['ecRecover',['../classM8B_1_1EtherBinder_1_1Common_1_1AccessListTransaction.html#a32f6d8b3a4c95e1c1edc66c3642c9bfa',1,'M8B\EtherBinder\Common\AccessListTransaction\ecRecover()'],['../classM8B_1_1EtherBinder_1_1Common_1_1LegacyTransaction.html#a4aa0639e3d5105977e04ca2b157de454',1,'M8B\EtherBinder\Common\LegacyTransaction\ecRecover()'],['../classM8B_1_1EtherBinder_1_1Common_1_1LondonTransaction.html#a521863096b82976fce4a41e37d929d2d',1,'M8B\EtherBinder\Common\LondonTransaction\ecRecover()'],['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#a8254c668e643d247464ded266ede6e7a',1,'M8B\EtherBinder\Common\Transaction\ecRecover()']]],
['encode_2',['encode',['../classM8B_1_1EtherBinder_1_1Contract_1_1ABIEncoder.html#a92f04906df6c5c1219d98ceeacc3a9eb',1,'M8B::EtherBinder::Contract::ABIEncoder']]],
- ['encodebin_3',['encodebin',['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiBool.html#a36755cf7d5b05875d7f48f06e7be6a40',1,'M8B\EtherBinder\Contract\AbiTypes\AbiBool\encodeBin()'],['../classM8B_1_1EtherBinder_1_1RLP_1_1Encoder.html#aef037d34d2d20083cd1a49f0ef77d8ff',1,'M8B\EtherBinder\RLP\Encoder\encodeBin()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbstractABIValue.html#a4d5f449e0d5cbc9b25cf22f8ece9cc4a',1,'M8B\EtherBinder\Contract\AbiTypes\AbstractABIValue\encodeBin()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiUint.html#a5aefd572211d1187beb6aa5fe2c69d84',1,'M8B\EtherBinder\Contract\AbiTypes\AbiUint\encodeBin()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiTuple.html#a45d1dd98e839837c9a4159420d41e25e',1,'M8B\EtherBinder\Contract\AbiTypes\AbiTuple\encodeBin()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiFunction.html#a52941ec6178c0b37628084693bb0eaaf',1,'M8B\EtherBinder\Contract\AbiTypes\AbiFunction\encodeBin()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiBytes.html#ae817f586b6fa03240e1e810ddfc0a120',1,'M8B\EtherBinder\Contract\AbiTypes\AbiBytes\encodeBin()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiArrayUnknownLength.html#a24b7737b9faabf3dc1ae2797822fa523',1,'M8B\EtherBinder\Contract\AbiTypes\AbiArrayUnknownLength\encodeBin()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiAddress.html#a3527f4dc14f4ea94df2ec2ec150f47bc',1,'M8B\EtherBinder\Contract\AbiTypes\AbiAddress\encodeBin()'],['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#a61575e4ac3b7969aa1c31aef98e40380',1,'M8B\EtherBinder\Common\Transaction\encodeBin()'],['../classM8B_1_1EtherBinder_1_1Common_1_1LondonTransaction.html#a284abf6fd1f1c812050e7fe58d3455d4',1,'M8B\EtherBinder\Common\LondonTransaction\encodeBin()'],['../classM8B_1_1EtherBinder_1_1Common_1_1LegacyTransaction.html#a2fff04021d2b1b55ac285534487ab9db',1,'M8B\EtherBinder\Common\LegacyTransaction\encodeBin()'],['../classM8B_1_1EtherBinder_1_1Common_1_1AccessListTransaction.html#ad90acc220f44e07ad3006febb002541a',1,'M8B\EtherBinder\Common\AccessListTransaction\encodeBin()']]],
- ['encodebinforsigning_4',['encodebinforsigning',['../classM8B_1_1EtherBinder_1_1Common_1_1AccessListTransaction.html#ada7a8df4f67032ffad693c2ea6c43a1e',1,'M8B\EtherBinder\Common\AccessListTransaction\encodeBinForSigning()'],['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#adc50aadbc5767801c4aa9c827e181567',1,'M8B\EtherBinder\Common\Transaction\encodeBinForSigning()'],['../classM8B_1_1EtherBinder_1_1Common_1_1LondonTransaction.html#a391e8e1249f65c53997243af96348c56',1,'M8B\EtherBinder\Common\LondonTransaction\encodeBinForSigning()'],['../classM8B_1_1EtherBinder_1_1Common_1_1LegacyTransaction.html#a527e913150d44401ffbbcbdeaad46e31',1,'M8B\EtherBinder\Common\LegacyTransaction\encodeBinForSigning()']]],
- ['encodehex_5',['encodehex',['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#a7ba8465d33f22219f2336a09f836d170',1,'M8B\EtherBinder\Common\Transaction\encodeHex()'],['../classM8B_1_1EtherBinder_1_1RLP_1_1Encoder.html#a59f669be5cc1454601d152630ff1f9e1',1,'M8B\EtherBinder\RLP\Encoder\encodeHex()']]],
+ ['encodebin_3',['encodeBin',['../classM8B_1_1EtherBinder_1_1Common_1_1AccessListTransaction.html#ad90acc220f44e07ad3006febb002541a',1,'M8B\EtherBinder\Common\AccessListTransaction\encodeBin()'],['../classM8B_1_1EtherBinder_1_1Common_1_1LegacyTransaction.html#a2fff04021d2b1b55ac285534487ab9db',1,'M8B\EtherBinder\Common\LegacyTransaction\encodeBin()'],['../classM8B_1_1EtherBinder_1_1Common_1_1LondonTransaction.html#a284abf6fd1f1c812050e7fe58d3455d4',1,'M8B\EtherBinder\Common\LondonTransaction\encodeBin()'],['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#a61575e4ac3b7969aa1c31aef98e40380',1,'M8B\EtherBinder\Common\Transaction\encodeBin()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiAddress.html#a3527f4dc14f4ea94df2ec2ec150f47bc',1,'M8B\EtherBinder\Contract\AbiTypes\AbiAddress\encodeBin()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiArrayUnknownLength.html#a24b7737b9faabf3dc1ae2797822fa523',1,'M8B\EtherBinder\Contract\AbiTypes\AbiArrayUnknownLength\encodeBin()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiBool.html#a36755cf7d5b05875d7f48f06e7be6a40',1,'M8B\EtherBinder\Contract\AbiTypes\AbiBool\encodeBin()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiBytes.html#ae817f586b6fa03240e1e810ddfc0a120',1,'M8B\EtherBinder\Contract\AbiTypes\AbiBytes\encodeBin()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiFunction.html#a52941ec6178c0b37628084693bb0eaaf',1,'M8B\EtherBinder\Contract\AbiTypes\AbiFunction\encodeBin()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiTuple.html#a45d1dd98e839837c9a4159420d41e25e',1,'M8B\EtherBinder\Contract\AbiTypes\AbiTuple\encodeBin()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiUint.html#a5aefd572211d1187beb6aa5fe2c69d84',1,'M8B\EtherBinder\Contract\AbiTypes\AbiUint\encodeBin()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbstractABIValue.html#a4d5f449e0d5cbc9b25cf22f8ece9cc4a',1,'M8B\EtherBinder\Contract\AbiTypes\AbstractABIValue\encodeBin()'],['../classM8B_1_1EtherBinder_1_1RLP_1_1Encoder.html#aef037d34d2d20083cd1a49f0ef77d8ff',1,'M8B\EtherBinder\RLP\Encoder\encodeBin()']]],
+ ['encodebinforsigning_4',['encodeBinForSigning',['../classM8B_1_1EtherBinder_1_1Common_1_1AccessListTransaction.html#ada7a8df4f67032ffad693c2ea6c43a1e',1,'M8B\EtherBinder\Common\AccessListTransaction\encodeBinForSigning()'],['../classM8B_1_1EtherBinder_1_1Common_1_1LegacyTransaction.html#a527e913150d44401ffbbcbdeaad46e31',1,'M8B\EtherBinder\Common\LegacyTransaction\encodeBinForSigning()'],['../classM8B_1_1EtherBinder_1_1Common_1_1LondonTransaction.html#a391e8e1249f65c53997243af96348c56',1,'M8B\EtherBinder\Common\LondonTransaction\encodeBinForSigning()'],['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#adc50aadbc5767801c4aa9c827e181567',1,'M8B\EtherBinder\Common\Transaction\encodeBinForSigning(?int $chainId)']]],
+ ['encodehex_5',['encodeHex',['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#a7ba8465d33f22219f2336a09f836d170',1,'M8B\EtherBinder\Common\Transaction\encodeHex()'],['../classM8B_1_1EtherBinder_1_1RLP_1_1Encoder.html#a59f669be5cc1454601d152630ff1f9e1',1,'M8B\EtherBinder\RLP\Encoder\encodeHex()']]],
['encodehexforsigning_6',['encodeHexForSigning',['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#a307edf81998ed02371e12e1d92b89369',1,'M8B::EtherBinder::Common::Transaction']]],
['eq_7',['eq',['../classM8B_1_1EtherBinder_1_1Common_1_1Hash.html#a8cf0065018005780ba72dc2e1e335882',1,'M8B::EtherBinder::Common::Hash']]],
['ethaccounts_8',['ethAccounts',['../classM8B_1_1EtherBinder_1_1RPC_1_1Modules_1_1Eth.html#a57e879c014c1edbe5a20413caae4fff8',1,'M8B::EtherBinder::RPC::Modules::Eth']]],
@@ -45,8 +45,8 @@ var searchData=
['ethsign_42',['ethSign',['../classM8B_1_1EtherBinder_1_1RPC_1_1Modules_1_1Eth.html#a59920aa53cc5045f83aa1dbbe6a14450',1,'M8B::EtherBinder::RPC::Modules::Eth']]],
['ethsigntransaction_43',['ethSignTransaction',['../classM8B_1_1EtherBinder_1_1RPC_1_1Modules_1_1Eth.html#ab14b344d88fc3f1dc66dd15dcb9e265b',1,'M8B::EtherBinder::RPC::Modules::Eth']]],
['ethsyncing_44',['ethSyncing',['../classM8B_1_1EtherBinder_1_1RPC_1_1Modules_1_1Eth.html#af79bf564beea75c7be75315ecc803449',1,'M8B::EtherBinder::RPC::Modules::Eth']]],
- ['expectbinarysizenormalizestring_45',['expectBinarySizeNormalizeString',['../classM8B_1_1EtherBinder_1_1Contract_1_1AbstractContract.html#a328faee53d6bae777e0cecb87f87a8f8',1,'M8B::EtherBinder::Contract::AbstractContract']]],
- ['expectintarrofsize_46',['expectIntArrOfSize',['../classM8B_1_1EtherBinder_1_1Contract_1_1AbstractContract.html#ab63454ae289caad37603bc3a1d534824',1,'M8B::EtherBinder::Contract::AbstractContract']]],
- ['expectintofsize_47',['expectIntOfSize',['../classM8B_1_1EtherBinder_1_1Contract_1_1AbstractContract.html#a7f84ac2ef131d685918301e14a99421b',1,'M8B::EtherBinder::Contract::AbstractContract']]],
+ ['expectbinarysizenormalizestring_45',['expectBinarySizeNormalizeString',['../classM8B_1_1EtherBinder_1_1Contract_1_1AbstractContract.html#a555ee19d0c031b3e91f874daa66bec82',1,'M8B::EtherBinder::Contract::AbstractContract']]],
+ ['expectintarrofsize_46',['expectIntArrOfSize',['../classM8B_1_1EtherBinder_1_1Contract_1_1AbstractContract.html#a6369ba89755d3e137d0a4dab7fb85347',1,'M8B::EtherBinder::Contract::AbstractContract']]],
+ ['expectintofsize_47',['expectIntOfSize',['../classM8B_1_1EtherBinder_1_1Contract_1_1AbstractContract.html#ac51ea254e79d546d9ca57b308679c05f',1,'M8B::EtherBinder::Contract::AbstractContract']]],
['explodetuple_48',['explodeTuple',['../classM8B_1_1EtherBinder_1_1Contract_1_1ABIEncoder.html#ad57107222f3a5eac963f1b0913c426e2',1,'M8B::EtherBinder::Contract::ABIEncoder']]]
];
diff --git a/docs/ref/doxygen/search/functions_6.js b/docs/ref/doxygen/search/functions_6.js
index 67df50d..6ca8711 100644
--- a/docs/ref/doxygen/search/functions_6.js
+++ b/docs/ref/doxygen/search/functions_6.js
@@ -1,11 +1,11 @@
var searchData=
[
['fetchnew_0',['fetchNew',['../classM8B_1_1EtherBinder_1_1RPC_1_1RPCFilter.html#aa894f08ee366e056e75cc7da73e62399',1,'M8B::EtherBinder::RPC::RPCFilter']]],
- ['frombin_1',['frombin',['../classM8B_1_1EtherBinder_1_1Common_1_1Hash.html#ac116496097669bb045e0b6fd1a93db12',1,'M8B\EtherBinder\Common\Hash\fromBin()'],['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#a0cc0772f9d8dd36af5c737d36f6d5d11',1,'M8B\EtherBinder\Common\Transaction\fromBin()'],['../classM8B_1_1EtherBinder_1_1Crypto_1_1Key.html#a14c3258046c19c3311eb0362f779659f',1,'M8B\EtherBinder\Crypto\Key\fromBin()'],['../classM8B_1_1EtherBinder_1_1Crypto_1_1Signature.html#a510b36a682755aab586902b889a36ac9',1,'M8B\EtherBinder\Crypto\Signature\fromBin()'],['../classM8B_1_1EtherBinder_1_1Utils_1_1OOGmp.html#adf45cca04ec37965ff4867194df03492',1,'M8B\EtherBinder\Utils\OOGmp\fromBin()']]],
- ['fromhex_2',['fromhex',['../classM8B_1_1EtherBinder_1_1Crypto_1_1Signature.html#a45cc842610818f91f25ff1bf731a6f5a',1,'M8B\EtherBinder\Crypto\Signature\fromHex()'],['../classM8B_1_1EtherBinder_1_1Utils_1_1OOGmp.html#ae0d99bd842794a98d8d6d1281da11f2d',1,'M8B\EtherBinder\Utils\OOGmp\fromHex()'],['../classM8B_1_1EtherBinder_1_1Crypto_1_1Key.html#af0eef0d594cc7cc7a57c6cf66e168567',1,'M8B\EtherBinder\Crypto\Key\fromHex()'],['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#ac45a56d6e0b0244f0f993a991142c3a7',1,'M8B\EtherBinder\Common\Transaction\fromHex()'],['../classM8B_1_1EtherBinder_1_1Common_1_1Hash.html#a143ad92c60d35682596d9380a8c6ebdd',1,'M8B\EtherBinder\Common\Hash\fromHex()'],['../classM8B_1_1EtherBinder_1_1Common_1_1Address.html#a03686cd56bd18af4f946a7f40493f27f',1,'M8B\EtherBinder\Common\Address\fromHex()']]],
+ ['frombin_1',['fromBin',['../classM8B_1_1EtherBinder_1_1Common_1_1Hash.html#ac116496097669bb045e0b6fd1a93db12',1,'M8B\EtherBinder\Common\Hash\fromBin()'],['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#a0cc0772f9d8dd36af5c737d36f6d5d11',1,'M8B\EtherBinder\Common\Transaction\fromBin()'],['../classM8B_1_1EtherBinder_1_1Crypto_1_1Key.html#a14c3258046c19c3311eb0362f779659f',1,'M8B\EtherBinder\Crypto\Key\fromBin()'],['../classM8B_1_1EtherBinder_1_1Crypto_1_1Signature.html#a510b36a682755aab586902b889a36ac9',1,'M8B\EtherBinder\Crypto\Signature\fromBin()'],['../classM8B_1_1EtherBinder_1_1Utils_1_1OOGmp.html#adf45cca04ec37965ff4867194df03492',1,'M8B\EtherBinder\Utils\OOGmp\fromBin()']]],
+ ['fromhex_2',['fromHex',['../classM8B_1_1EtherBinder_1_1Common_1_1Address.html#a03686cd56bd18af4f946a7f40493f27f',1,'M8B\EtherBinder\Common\Address\fromHex()'],['../classM8B_1_1EtherBinder_1_1Common_1_1Hash.html#a143ad92c60d35682596d9380a8c6ebdd',1,'M8B\EtherBinder\Common\Hash\fromHex()'],['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#ac45a56d6e0b0244f0f993a991142c3a7',1,'M8B\EtherBinder\Common\Transaction\fromHex()'],['../classM8B_1_1EtherBinder_1_1Crypto_1_1Key.html#af0eef0d594cc7cc7a57c6cf66e168567',1,'M8B\EtherBinder\Crypto\Key\fromHex()'],['../classM8B_1_1EtherBinder_1_1Crypto_1_1Signature.html#a45cc842610818f91f25ff1bf731a6f5a',1,'M8B\EtherBinder\Crypto\Signature\fromHex()'],['../classM8B_1_1EtherBinder_1_1Utils_1_1OOGmp.html#ae0d99bd842794a98d8d6d1281da11f2d',1,'M8B\EtherBinder\Utils\OOGmp\fromHex()']]],
['fromhuman_3',['fromHuman',['../classM8B_1_1EtherBinder_1_1Utils_1_1WeiFormatter.html#a54a8098d3e62cc94557bea4564f417e6',1,'M8B::EtherBinder::Utils::WeiFormatter']]],
['fromjson_4',['fromJSON',['../classM8B_1_1EtherBinder_1_1Misc_1_1AbstractSigningMessage.html#a70e0183c7e4beb0fb3d84cabfd194321',1,'M8B::EtherBinder::Misc::AbstractSigningMessage']]],
- ['fromrpcarr_5',['fromrpcarr',['../classM8B_1_1EtherBinder_1_1Common_1_1Block.html#a9db38261f2daf29433c7f42c527b6bb1',1,'M8B\EtherBinder\Common\Block\fromRPCArr()'],['../classM8B_1_1EtherBinder_1_1Common_1_1Log.html#a1abf4e471fe121f13a9abfc3c2cec396',1,'M8B\EtherBinder\Common\Log\fromRPCArr()'],['../classM8B_1_1EtherBinder_1_1Common_1_1Receipt.html#ae762f414abbad72b76bd2bcbda50095a',1,'M8B\EtherBinder\Common\Receipt\fromRPCArr()'],['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#a691aa18395a78679a237195d1b3846cf',1,'M8B\EtherBinder\Common\Transaction\fromRPCArr()'],['../classM8B_1_1EtherBinder_1_1Common_1_1ValidatorWithdrawal.html#a3316e06345bb5ff08f6d59462074cffa',1,'M8B\EtherBinder\Common\ValidatorWithdrawal\fromRPCArr()']]],
+ ['fromrpcarr_5',['fromRPCArr',['../classM8B_1_1EtherBinder_1_1Common_1_1Block.html#a9db38261f2daf29433c7f42c527b6bb1',1,'M8B\EtherBinder\Common\Block\fromRPCArr()'],['../classM8B_1_1EtherBinder_1_1Common_1_1Log.html#a1abf4e471fe121f13a9abfc3c2cec396',1,'M8B\EtherBinder\Common\Log\fromRPCArr()'],['../classM8B_1_1EtherBinder_1_1Common_1_1Receipt.html#ae762f414abbad72b76bd2bcbda50095a',1,'M8B\EtherBinder\Common\Receipt\fromRPCArr()'],['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#a691aa18395a78679a237195d1b3846cf',1,'M8B\EtherBinder\Common\Transaction\fromRPCArr()'],['../classM8B_1_1EtherBinder_1_1Common_1_1ValidatorWithdrawal.html#a3316e06345bb5ff08f6d59462074cffa',1,'M8B\EtherBinder\Common\ValidatorWithdrawal\fromRPCArr()']]],
['fromsignature_6',['fromSignature',['../classM8B_1_1EtherBinder_1_1Common_1_1SolidityFunction4BytesSignature.html#abaae8b56a545879d9fa643dff509dd70',1,'M8B::EtherBinder::Common::SolidityFunction4BytesSignature']]],
['fromwei_7',['fromWei',['../classM8B_1_1EtherBinder_1_1Utils_1_1WeiFormatter.html#af588d58f4279298b3843d6f698634dbd',1,'M8B::EtherBinder::Utils::WeiFormatter']]]
];
diff --git a/docs/ref/doxygen/search/functions_7.js b/docs/ref/doxygen/search/functions_7.js
index f9cbb96..63bf73d 100644
--- a/docs/ref/doxygen/search/functions_7.js
+++ b/docs/ref/doxygen/search/functions_7.js
@@ -13,13 +13,14 @@ var searchData=
['getcontractaddress_10',['getContractAddress',['../classM8B_1_1EtherBinder_1_1Contract_1_1AbstractContract.html#a6ba513a56e10739855f42a29e843edd4',1,'M8B::EtherBinder::Contract::AbstractContract']]],
['getgasfeetip_11',['getGasFeeTip',['../classM8B_1_1EtherBinder_1_1Common_1_1LondonTransaction.html#aa6128212cbcaf5a7374ca800692f1c0d',1,'M8B::EtherBinder::Common::LondonTransaction']]],
['getkeyraw_12',['getKeyRaw',['../classM8B_1_1EtherBinder_1_1Wallet_1_1AbstractWallet.html#a55e7827eb2bf62c6a69b50160208f869',1,'M8B::EtherBinder::Wallet::AbstractWallet']]],
- ['getmessage_13',['getMessage',['../classM8B_1_1EtherBinder_1_1Misc_1_1AbstractSigningMessage.html#a26dbb0661f1de746238bd19361299414',1,'M8B::EtherBinder::Misc::AbstractSigningMessage']]],
- ['getnextblockbasefee_14',['getNextBlockBaseFee',['../classM8B_1_1EtherBinder_1_1Utils_1_1Functions.html#a6ce90d8912aa993d1811281345f8dcdd',1,'M8B::EtherBinder::Utils::Functions']]],
- ['getpessimisticblockbasefee_15',['getPessimisticBlockBaseFee',['../classM8B_1_1EtherBinder_1_1Utils_1_1Functions.html#abb26f3e22714df50264c030f841013e9',1,'M8B::EtherBinder::Utils::Functions']]],
- ['getphptypingfromoutputs_16',['getPhpTypingFromOutputs',['../classM8B_1_1EtherBinder_1_1Contract_1_1ABIGen.html#ae9e8e3f7955e69d79842e656ccbe1930',1,'M8B::EtherBinder::Contract::ABIGen']]],
- ['getphptypingfromtype_17',['getPhpTypingFromType',['../classM8B_1_1EtherBinder_1_1Contract_1_1ABIGen.html#a5740222a32cf81c6fbb45d26b0a7cd1e',1,'M8B::EtherBinder::Contract::ABIGen']]],
- ['getpublicbin_18',['getPublicBin',['../classM8B_1_1EtherBinder_1_1Crypto_1_1Key.html#aa54966a01850cfc0e366c215ff2ea306',1,'M8B::EtherBinder::Crypto::Key']]],
- ['getpublichex_19',['getPublicHex',['../classM8B_1_1EtherBinder_1_1Crypto_1_1Key.html#ae49a542b35c8b053776e4c5b42438c62',1,'M8B::EtherBinder::Crypto::Key']]],
- ['getsignature_20',['getSignature',['../classM8B_1_1EtherBinder_1_1Misc_1_1AbstractSigningMessage.html#a374aa3d2b2148429d2cab5d4a804f1c4',1,'M8B::EtherBinder::Misc::AbstractSigningMessage']]],
- ['getsigninghash_21',['getSigningHash',['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#acb41812fbb3f7ebb1fad576a368efc21',1,'M8B::EtherBinder::Common::Transaction']]]
+ ['getmaxfeeperblobgas_13',['getMaxFeePerBlobGas',['../classM8B_1_1EtherBinder_1_1Common_1_1CancunTransaction.html#af7e983ed38f7b81dda45ce9b521b6cfe',1,'M8B::EtherBinder::Common::CancunTransaction']]],
+ ['getmessage_14',['getMessage',['../classM8B_1_1EtherBinder_1_1Misc_1_1AbstractSigningMessage.html#a26dbb0661f1de746238bd19361299414',1,'M8B::EtherBinder::Misc::AbstractSigningMessage']]],
+ ['getnextblockbasefee_15',['getNextBlockBaseFee',['../classM8B_1_1EtherBinder_1_1Utils_1_1Functions.html#a6ce90d8912aa993d1811281345f8dcdd',1,'M8B::EtherBinder::Utils::Functions']]],
+ ['getpessimisticblockbasefee_16',['getPessimisticBlockBaseFee',['../classM8B_1_1EtherBinder_1_1Utils_1_1Functions.html#abb26f3e22714df50264c030f841013e9',1,'M8B::EtherBinder::Utils::Functions']]],
+ ['getphptypingfromoutputs_17',['getPhpTypingFromOutputs',['../classM8B_1_1EtherBinder_1_1Contract_1_1ABIGen.html#ae9e8e3f7955e69d79842e656ccbe1930',1,'M8B::EtherBinder::Contract::ABIGen']]],
+ ['getphptypingfromtype_18',['getPhpTypingFromType',['../classM8B_1_1EtherBinder_1_1Contract_1_1ABIGen.html#a5740222a32cf81c6fbb45d26b0a7cd1e',1,'M8B::EtherBinder::Contract::ABIGen']]],
+ ['getpublicbin_19',['getPublicBin',['../classM8B_1_1EtherBinder_1_1Crypto_1_1Key.html#aa54966a01850cfc0e366c215ff2ea306',1,'M8B::EtherBinder::Crypto::Key']]],
+ ['getpublichex_20',['getPublicHex',['../classM8B_1_1EtherBinder_1_1Crypto_1_1Key.html#ae49a542b35c8b053776e4c5b42438c62',1,'M8B::EtherBinder::Crypto::Key']]],
+ ['getsignature_21',['getSignature',['../classM8B_1_1EtherBinder_1_1Misc_1_1AbstractSigningMessage.html#a374aa3d2b2148429d2cab5d4a804f1c4',1,'M8B::EtherBinder::Misc::AbstractSigningMessage']]],
+ ['getsigninghash_22',['getSigningHash',['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#acb41812fbb3f7ebb1fad576a368efc21',1,'M8B::EtherBinder::Common::Transaction']]]
];
diff --git a/docs/ref/doxygen/search/functions_9.js b/docs/ref/doxygen/search/functions_9.js
index b2706d3..cd63398 100644
--- a/docs/ref/doxygen/search/functions_9.js
+++ b/docs/ref/doxygen/search/functions_9.js
@@ -2,12 +2,14 @@ var searchData=
[
['installfilter_0',['installFilter',['../classM8B_1_1EtherBinder_1_1Contract_1_1AbstractEventFilter.html#acb047eef1f0a13c6e18b7a115a7da994',1,'M8B::EtherBinder::Contract::AbstractEventFilter']]],
['int2hex_1',['int2hex',['../classM8B_1_1EtherBinder_1_1Utils_1_1Functions.html#a94e5060460f005ed7756d71d7a112205',1,'M8B::EtherBinder::Utils::Functions']]],
- ['isdone_2',['isDone',['../classM8B_1_1EtherBinder_1_1RPC_1_1RPCFilter.html#acffdd9d00685268835e3e3991b5f1142',1,'M8B::EtherBinder::RPC::RPCFilter']]],
- ['isdynamic_3',['isdynamic',['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiUint.html#abd49f19d6054ab151130b881f13272d3',1,'M8B\EtherBinder\Contract\AbiTypes\AbiUint\isDynamic()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbstractABIValue.html#ab0a9957f90127439f075a117a73b9a0a',1,'M8B\EtherBinder\Contract\AbiTypes\AbstractABIValue\isDynamic()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiTuple.html#ac671e53cbb99f97b5a36a23f4b153ff3',1,'M8B\EtherBinder\Contract\AbiTypes\AbiTuple\isDynamic()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiFunction.html#acca5de963e15cc54f92d559bf04796c0',1,'M8B\EtherBinder\Contract\AbiTypes\AbiFunction\isDynamic()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiBytes.html#a8b2f251197a25325141c4d1c31ff3979',1,'M8B\EtherBinder\Contract\AbiTypes\AbiBytes\isDynamic()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiBool.html#a37aa457a9e79038fb4f0c87a501b6b15',1,'M8B\EtherBinder\Contract\AbiTypes\AbiBool\isDynamic()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiArrayUnknownLength.html#a8bd15f361085d3922566cf0ac8034bf6',1,'M8B\EtherBinder\Contract\AbiTypes\AbiArrayUnknownLength\isDynamic()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiAddress.html#a6e34473245c4d24d13e4badc5ed125a6',1,'M8B\EtherBinder\Contract\AbiTypes\AbiAddress\isDynamic()']]],
- ['iseip1559_4',['isEIP1559',['../classM8B_1_1EtherBinder_1_1Common_1_1Block.html#a9a139e9e5970faf5b217547e81b9cf2b',1,'M8B::EtherBinder::Common::Block']]],
- ['islookinglikelondon_5',['isLookingLikeLondon',['../classM8B_1_1EtherBinder_1_1RPC_1_1Compound.html#af1eef44c6f369c68c785845a09ec8519',1,'M8B::EtherBinder::RPC::Compound']]],
- ['isnull_6',['isNull',['../classM8B_1_1EtherBinder_1_1Common_1_1Hash.html#ac074263821aef9ba7318e7caf4257b3b',1,'M8B::EtherBinder::Common::Hash']]],
- ['isreplayprotected_7',['isReplayProtected',['../classM8B_1_1EtherBinder_1_1Common_1_1LegacyTransaction.html#ac0b0e6051c875520303b8f0aba36d550',1,'M8B::EtherBinder::Common::LegacyTransaction']]],
- ['issignature_8',['isSignature',['../classM8B_1_1EtherBinder_1_1Common_1_1Log.html#a5398995704592794e86c42150d3fcf80',1,'M8B::EtherBinder::Common::Log']]],
- ['issigned_9',['issigned',['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#a2fd37e0990353431eef67a7392cf8cad',1,'M8B\EtherBinder\Common\Transaction\isSigned()'],['../classM8B_1_1EtherBinder_1_1Misc_1_1AbstractSigningMessage.html#a2889767f6444954ae5f1222a366b0f9a',1,'M8B\EtherBinder\Misc\AbstractSigningMessage\isSigned()']]]
+ ['internalencodebin_2',['internalEncodeBin',['../classM8B_1_1EtherBinder_1_1Common_1_1CancunTransaction.html#a2f97972aa214046b9b649b33a7bb5d27',1,'M8B\EtherBinder\Common\CancunTransaction\internalEncodeBin()'],['../classM8B_1_1EtherBinder_1_1Common_1_1LondonTransaction.html#a2d93dab038e749ed73943dbc049907bd',1,'M8B\EtherBinder\Common\LondonTransaction\internalEncodeBin()']]],
+ ['isdone_3',['isDone',['../classM8B_1_1EtherBinder_1_1RPC_1_1RPCFilter.html#acffdd9d00685268835e3e3991b5f1142',1,'M8B::EtherBinder::RPC::RPCFilter']]],
+ ['isdynamic_4',['isDynamic',['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiAddress.html#a6e34473245c4d24d13e4badc5ed125a6',1,'M8B\EtherBinder\Contract\AbiTypes\AbiAddress\isDynamic()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiArrayUnknownLength.html#a8bd15f361085d3922566cf0ac8034bf6',1,'M8B\EtherBinder\Contract\AbiTypes\AbiArrayUnknownLength\isDynamic()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiBool.html#a37aa457a9e79038fb4f0c87a501b6b15',1,'M8B\EtherBinder\Contract\AbiTypes\AbiBool\isDynamic()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiBytes.html#a8b2f251197a25325141c4d1c31ff3979',1,'M8B\EtherBinder\Contract\AbiTypes\AbiBytes\isDynamic()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiFunction.html#acca5de963e15cc54f92d559bf04796c0',1,'M8B\EtherBinder\Contract\AbiTypes\AbiFunction\isDynamic()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiTuple.html#ac671e53cbb99f97b5a36a23f4b153ff3',1,'M8B\EtherBinder\Contract\AbiTypes\AbiTuple\isDynamic()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiUint.html#abd49f19d6054ab151130b881f13272d3',1,'M8B\EtherBinder\Contract\AbiTypes\AbiUint\isDynamic()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbstractABIValue.html#ab0a9957f90127439f075a117a73b9a0a',1,'M8B\EtherBinder\Contract\AbiTypes\AbstractABIValue\isDynamic()']]],
+ ['iseip1559_5',['isEIP1559',['../classM8B_1_1EtherBinder_1_1Common_1_1Block.html#a9a139e9e5970faf5b217547e81b9cf2b',1,'M8B::EtherBinder::Common::Block']]],
+ ['iseip4844_6',['isEIP4844',['../classM8B_1_1EtherBinder_1_1Common_1_1Block.html#a37362672b1251fc18c98fdcf74042ec6',1,'M8B::EtherBinder::Common::Block']]],
+ ['islookinglikelondon_7',['isLookingLikeLondon',['../classM8B_1_1EtherBinder_1_1RPC_1_1Compound.html#af1eef44c6f369c68c785845a09ec8519',1,'M8B::EtherBinder::RPC::Compound']]],
+ ['isnull_8',['isNull',['../classM8B_1_1EtherBinder_1_1Common_1_1Hash.html#ac074263821aef9ba7318e7caf4257b3b',1,'M8B::EtherBinder::Common::Hash']]],
+ ['isreplayprotected_9',['isReplayProtected',['../classM8B_1_1EtherBinder_1_1Common_1_1LegacyTransaction.html#ac0b0e6051c875520303b8f0aba36d550',1,'M8B::EtherBinder::Common::LegacyTransaction']]],
+ ['issignature_10',['isSignature',['../classM8B_1_1EtherBinder_1_1Common_1_1Log.html#a5398995704592794e86c42150d3fcf80',1,'M8B::EtherBinder::Common::Log']]],
+ ['issigned_11',['isSigned',['../classM8B_1_1EtherBinder_1_1Common_1_1Transaction.html#a2fd37e0990353431eef67a7392cf8cad',1,'M8B\EtherBinder\Common\Transaction\isSigned()'],['../classM8B_1_1EtherBinder_1_1Misc_1_1AbstractSigningMessage.html#a2889767f6444954ae5f1222a366b0f9a',1,'M8B\EtherBinder\Misc\AbstractSigningMessage\isSigned()']]]
];
diff --git a/docs/ref/doxygen/search/functions_e.js b/docs/ref/doxygen/search/functions_e.js
index 466172d..85fe2e5 100644
--- a/docs/ref/doxygen/search/functions_e.js
+++ b/docs/ref/doxygen/search/functions_e.js
@@ -1,7 +1,7 @@
var searchData=
[
- ['offsetexists_0',['offsetexists',['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiTuple.html#adf527ffba65db82df4f93fc1e1ff1abf',1,'M8B\EtherBinder\Contract\AbiTypes\AbiTuple\offsetExists()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbstractArrayAccess.html#a1299160ebc619c3dabf129f5f0551069',1,'M8B\EtherBinder\Contract\AbstractArrayAccess\offsetExists()']]],
- ['offsetget_1',['offsetget',['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiTuple.html#a7c6a35eda9fee2f80e442f89e48fa75e',1,'M8B\EtherBinder\Contract\AbiTypes\AbiTuple\offsetGet()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbstractArrayAccess.html#a4756cc2d2bf52662e301d17cbff3dce3',1,'M8B\EtherBinder\Contract\AbstractArrayAccess\offsetGet()']]],
- ['offsetset_2',['offsetset',['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiTuple.html#aad6f048deefd67543ffd8aa1f5e2a7a6',1,'M8B\EtherBinder\Contract\AbiTypes\AbiTuple\offsetSet()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbstractArrayAccess.html#a4a3c4f7af09198237f6ee674a9a1aa4e',1,'M8B\EtherBinder\Contract\AbstractArrayAccess\offsetSet()']]],
- ['offsetunset_3',['offsetunset',['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiTuple.html#a6e95fba961eac73b5b961c0ea97b7b05',1,'M8B\EtherBinder\Contract\AbiTypes\AbiTuple\offsetUnset()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbstractArrayAccess.html#aabce7fa88f86028d2663d1e2f12b03a8',1,'M8B\EtherBinder\Contract\AbstractArrayAccess\offsetUnset()']]]
+ ['offsetexists_0',['offsetExists',['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiTuple.html#adf527ffba65db82df4f93fc1e1ff1abf',1,'M8B\EtherBinder\Contract\AbiTypes\AbiTuple\offsetExists()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbstractArrayAccess.html#a1299160ebc619c3dabf129f5f0551069',1,'M8B\EtherBinder\Contract\AbstractArrayAccess\offsetExists()']]],
+ ['offsetget_1',['offsetGet',['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiTuple.html#a7c6a35eda9fee2f80e442f89e48fa75e',1,'M8B\EtherBinder\Contract\AbiTypes\AbiTuple\offsetGet()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbstractArrayAccess.html#a4756cc2d2bf52662e301d17cbff3dce3',1,'M8B\EtherBinder\Contract\AbstractArrayAccess\offsetGet()']]],
+ ['offsetset_2',['offsetSet',['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiTuple.html#aad6f048deefd67543ffd8aa1f5e2a7a6',1,'M8B\EtherBinder\Contract\AbiTypes\AbiTuple\offsetSet()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbstractArrayAccess.html#a4a3c4f7af09198237f6ee674a9a1aa4e',1,'M8B\EtherBinder\Contract\AbstractArrayAccess\offsetSet()']]],
+ ['offsetunset_3',['offsetUnset',['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbiTuple.html#a6e95fba961eac73b5b961c0ea97b7b05',1,'M8B\EtherBinder\Contract\AbiTypes\AbiTuple\offsetUnset()'],['../classM8B_1_1EtherBinder_1_1Contract_1_1AbstractArrayAccess.html#aabce7fa88f86028d2663d1e2f12b03a8',1,'M8B\EtherBinder\Contract\AbstractArrayAccess\offsetUnset()']]]
];
diff --git a/docs/ref/doxygen/search/functions_f.js b/docs/ref/doxygen/search/functions_f.js
index 3591ac8..9f1736a 100644
--- a/docs/ref/doxygen/search/functions_f.js
+++ b/docs/ref/doxygen/search/functions_f.js
@@ -5,5 +5,5 @@ var searchData=
['parsefilterinput_2',['parseFilterInput',['../classM8B_1_1EtherBinder_1_1RPC_1_1Modules_1_1Eth.html#acaa1b01bc72721be27bf9e0457c589d1',1,'M8B::EtherBinder::RPC::Modules::Eth']]],
['parseoutput_3',['parseOutput',['../classM8B_1_1EtherBinder_1_1Contract_1_1AbstractContract.html#a7a5cf87a7f24e2810478b8d565cfe418',1,'M8B::EtherBinder::Contract::AbstractContract']]],
['parsevalue_4',['parseValue',['../classM8B_1_1EtherBinder_1_1Contract_1_1AbiTypes_1_1AbstractABIValue.html#a81826b95a118bc2a5a6aea3239f68b13',1,'M8B::EtherBinder::Contract::AbiTypes::AbstractABIValue']]],
- ['preprocessmessage_5',['preprocessmessage',['../classM8B_1_1EtherBinder_1_1Misc_1_1AbstractSigningMessage.html#a356cf628e0f2b1c18d47feb8e4fa6f59',1,'M8B\EtherBinder\Misc\AbstractSigningMessage\preProcessMessage()'],['../classM8B_1_1EtherBinder_1_1Misc_1_1GethLikeMessage.html#a47631c3428e90f95f627a9e259112722',1,'M8B\EtherBinder\Misc\GethLikeMessage\preProcessMessage()'],['../classM8B_1_1EtherBinder_1_1Misc_1_1InnerHashedMessage.html#ab91253880a9f3dee01eecdd043405ad3',1,'M8B\EtherBinder\Misc\InnerHashedMessage\preProcessMessage()'],['../classM8B_1_1EtherBinder_1_1Misc_1_1UnFormattedSigningMessage.html#a8e55903077f4c0fe22fa654c533e21e9',1,'M8B\EtherBinder\Misc\UnFormattedSigningMessage\preProcessMessage()']]]
+ ['preprocessmessage_5',['preProcessMessage',['../classM8B_1_1EtherBinder_1_1Misc_1_1AbstractSigningMessage.html#a356cf628e0f2b1c18d47feb8e4fa6f59',1,'M8B\EtherBinder\Misc\AbstractSigningMessage\preProcessMessage()'],['../classM8B_1_1EtherBinder_1_1Misc_1_1GethLikeMessage.html#a47631c3428e90f95f627a9e259112722',1,'M8B\EtherBinder\Misc\GethLikeMessage\preProcessMessage()'],['../classM8B_1_1EtherBinder_1_1Misc_1_1InnerHashedMessage.html#ab91253880a9f3dee01eecdd043405ad3',1,'M8B\EtherBinder\Misc\InnerHashedMessage\preProcessMessage()'],['../classM8B_1_1EtherBinder_1_1Misc_1_1UnFormattedSigningMessage.html#a8e55903077f4c0fe22fa654c533e21e9',1,'M8B\EtherBinder\Misc\UnFormattedSigningMessage\preProcessMessage()']]]
];
diff --git a/docs/ref/doxygen/search/pages_3.js b/docs/ref/doxygen/search/pages_3.js
index e108ab4..c712433 100644
--- a/docs/ref/doxygen/search/pages_3.js
+++ b/docs/ref/doxygen/search/pages_3.js
@@ -1,6 +1,6 @@
var searchData=
[
- ['encoding_0',['encoding',['../md_docs_2abi-encoding-internals.html',1,'ABI Encoding'],['../md_docs_2rlp.html',1,'RLP Encoding']]],
+ ['encoding_0',['Encoding',['../md_docs_2abi-encoding-internals.html',1,'ABI Encoding'],['../md_docs_2rlp.html',1,'RLP Encoding']]],
['ethereum_20friendly_20types_1',['Ethereum friendly types',['../md_docs_2types.html',1,'']]],
['exceptions_2',['Exceptions',['../md_docs_2exceptions.html',1,'']]]
];
diff --git a/docs/ref/doxygen/search/search.js b/docs/ref/doxygen/search/search.js
index 6fd40c6..666af01 100644
--- a/docs/ref/doxygen/search/search.js
+++ b/docs/ref/doxygen/search/search.js
@@ -22,58 +22,9 @@
@licend The above is the entire license notice for the JavaScript code in this file
*/
-function convertToId(search)
-{
- var result = '';
- for (i=0;i
document.getElementById("MSearchField");
+ this.DOMSearchSelect = () => document.getElementById("MSearchSelect");
+ this.DOMSearchSelectWindow = () => document.getElementById("MSearchSelectWindow");
+ this.DOMPopupSearchResults = () => document.getElementById("MSearchResults");
+ this.DOMPopupSearchResultsWindow = () => document.getElementById("MSearchResultsWindow");
+ this.DOMSearchClose = () => document.getElementById("MSearchClose");
+ this.DOMSearchBox = () => document.getElementById("MSearchBox");
// ------------ Event Handlers
// Called when focus is added or removed from the search field.
- this.OnSearchFieldFocus = function(isActive)
- {
+ this.OnSearchFieldFocus = function(isActive) {
this.Activate(isActive);
}
- this.OnSearchSelectShow = function()
- {
- var searchSelectWindow = this.DOMSearchSelectWindow();
- var searchField = this.DOMSearchSelect();
+ this.OnSearchSelectShow = function() {
+ const searchSelectWindow = this.DOMSearchSelectWindow();
+ const searchField = this.DOMSearchSelect();
- var left = getXPos(searchField);
- var top = getYPos(searchField);
- top += searchField.offsetHeight;
+ const left = getXPos(searchField);
+ const top = getYPos(searchField) + searchField.offsetHeight;
// show search selection popup
searchSelectWindow.style.display='block';
@@ -146,55 +102,43 @@ function SearchBox(name, resultsPath, extension)
searchSelectWindow.style.top = top + 'px';
// stop selection hide timer
- if (this.hideTimeout)
- {
+ if (this.hideTimeout) {
clearTimeout(this.hideTimeout);
this.hideTimeout=0;
}
return false; // to avoid "image drag" default event
}
- this.OnSearchSelectHide = function()
- {
+ this.OnSearchSelectHide = function() {
this.hideTimeout = setTimeout(this.CloseSelectionWindow.bind(this),
this.closeSelectionTimeout);
}
// Called when the content of the search field is changed.
- this.OnSearchFieldChange = function(evt)
- {
- if (this.keyTimeout) // kill running timer
- {
+ this.OnSearchFieldChange = function(evt) {
+ if (this.keyTimeout) { // kill running timer
clearTimeout(this.keyTimeout);
this.keyTimeout = 0;
}
- var e = (evt) ? evt : window.event; // for IE
- if (e.keyCode==40 || e.keyCode==13)
- {
- if (e.shiftKey==1)
- {
+ const e = evt ? evt : window.event; // for IE
+ if (e.keyCode==40 || e.keyCode==13) {
+ if (e.shiftKey==1) {
this.OnSearchSelectShow();
- var win=this.DOMSearchSelectWindow();
- for (i=0;i do a search
- {
+ const searchValue = this.DOMSearchField().value.replace(/ +/g, "");
+ if (searchValue!="" && this.searchActive) { // something was found -> do a search
this.Search();
}
}
- this.OnSearchSelectKey = function(evt)
- {
- var e = (evt) ? evt : window.event; // for IE
- if (e.keyCode==40 && this.searchIndex0) // Up
- {
+ } else if (e.keyCode==38 && this.searchIndex>0) { // Up
this.searchIndex--;
this.OnSelectItem(this.searchIndex);
- }
- else if (e.keyCode==13 || e.keyCode==27)
- {
+ } else if (e.keyCode==13 || e.keyCode==27) {
e.stopPropagation();
this.OnSelectItem(this.searchIndex);
this.CloseSelectionWindow();
@@ -301,82 +239,75 @@ function SearchBox(name, resultsPath, extension)
// --------- Actions
// Closes the results window.
- this.CloseResultsWindow = function()
- {
+ this.CloseResultsWindow = function() {
this.DOMPopupSearchResultsWindow().style.display = 'none';
this.DOMSearchClose().style.display = 'none';
this.Activate(false);
}
- this.CloseSelectionWindow = function()
- {
+ this.CloseSelectionWindow = function() {
this.DOMSearchSelectWindow().style.display = 'none';
}
// Performs a search.
- this.Search = function()
- {
+ this.Search = function() {
this.keyTimeout = 0;
// strip leading whitespace
- var searchValue = this.DOMSearchField().value.replace(/^ +/, "");
+ const searchValue = this.DOMSearchField().value.replace(/^ +/, "");
- var code = searchValue.toLowerCase().charCodeAt(0);
- var idxChar = searchValue.substr(0, 1).toLowerCase();
- if ( 0xD800 <= code && code <= 0xDBFF && searchValue > 1) // surrogate pair
- {
+ const code = searchValue.toLowerCase().charCodeAt(0);
+ let idxChar = searchValue.substr(0, 1).toLowerCase();
+ if ( 0xD800 <= code && code <= 0xDBFF && searchValue > 1) { // surrogate pair
idxChar = searchValue.substr(0, 2);
}
- var jsFile;
-
- var idx = indexSectionsWithContent[this.searchIndex].indexOf(idxChar);
- if (idx!=-1)
- {
- var hexCode=idx.toString(16);
- jsFile = this.resultsPath + indexSectionNames[this.searchIndex] + '_' + hexCode + '.js';
+ let jsFile;
+ let idx = indexSectionsWithContent[this.searchIndex].indexOf(idxChar);
+ if (idx!=-1) {
+ const hexCode=idx.toString(16);
+ jsFile = this.resultsPath + indexSectionNames[this.searchIndex] + '_' + hexCode + '.js';
}
- var loadJS = function(url, impl, loc){
- var scriptTag = document.createElement('script');
+ const loadJS = function(url, impl, loc) {
+ const scriptTag = document.createElement('script');
scriptTag.src = url;
scriptTag.onload = impl;
scriptTag.onreadystatechange = impl;
loc.appendChild(scriptTag);
}
- var domPopupSearchResultsWindow = this.DOMPopupSearchResultsWindow();
- var domSearchBox = this.DOMSearchBox();
- var domPopupSearchResults = this.DOMPopupSearchResults();
- var domSearchClose = this.DOMSearchClose();
- var resultsPath = this.resultsPath;
+ const domPopupSearchResultsWindow = this.DOMPopupSearchResultsWindow();
+ const domSearchBox = this.DOMSearchBox();
+ const domPopupSearchResults = this.DOMPopupSearchResults();
+ const domSearchClose = this.DOMSearchClose();
+ const resultsPath = this.resultsPath;
- var handleResults = function() {
+ const handleResults = function() {
document.getElementById("Loading").style.display="none";
if (typeof searchData !== 'undefined') {
createResults(resultsPath);
document.getElementById("NoMatches").style.display="none";
}
-
+
if (idx!=-1) {
searchResults.Search(searchValue);
} else { // no file with search results => force empty search results
searchResults.Search('====');
}
- if (domPopupSearchResultsWindow.style.display!='block')
- {
+ if (domPopupSearchResultsWindow.style.display!='block') {
domSearchClose.style.display = 'inline-block';
- var left = getXPos(domSearchBox) + 150;
- var top = getYPos(domSearchBox) + 20;
+ let left = getXPos(domSearchBox) + 150;
+ let top = getYPos(domSearchBox) + 20;
domPopupSearchResultsWindow.style.display = 'block';
left -= domPopupSearchResults.offsetWidth;
- var maxWidth = document.body.clientWidth;
- var maxHeight = document.body.clientHeight;
- var width = 300;
+ const maxWidth = document.body.clientWidth;
+ const maxHeight = document.body.clientHeight;
+ let width = 300;
if (left<10) left=10;
if (width+left+8>maxWidth) width=maxWidth-left-8;
- var height = 400;
+ let height = 400;
if (height+top+8>maxHeight) height=maxHeight-top-8;
domPopupSearchResultsWindow.style.top = top + 'px';
domPopupSearchResultsWindow.style.left = left + 'px';
@@ -398,17 +329,13 @@ function SearchBox(name, resultsPath, extension)
// Activates or deactivates the search panel, resetting things to
// their default values if necessary.
- this.Activate = function(isActive)
- {
+ this.Activate = function(isActive) {
if (isActive || // open it
- this.DOMPopupSearchResultsWindow().style.display == 'block'
- )
- {
+ this.DOMPopupSearchResultsWindow().style.display == 'block'
+ ) {
this.DOMSearchBox().className = 'MSearchBoxActive';
this.searchActive = true;
- }
- else if (!isActive) // directly remove the panel
- {
+ } else if (!isActive) { // directly remove the panel
this.DOMSearchBox().className = 'MSearchBoxInactive';
this.searchActive = false;
this.lastSearchValue = ''
@@ -421,409 +348,333 @@ function SearchBox(name, resultsPath, extension)
// -----------------------------------------------------------------------
// The class that handles everything on the search results page.
-function SearchResults(name)
-{
- // The number of matches from the last run of .
- this.lastMatchCount = 0;
- this.lastKey = 0;
- this.repeatOn = false;
-
- // Toggles the visibility of the passed element ID.
- this.FindChildElement = function(id)
- {
- var parentElement = document.getElementById(id);
- var element = parentElement.firstChild;
-
- while (element && element!=parentElement)
- {
- if (element.nodeName.toLowerCase() == 'div' && element.className == 'SRChildren')
- {
- return element;
- }
+function SearchResults() {
+
+ function convertToId(search) {
+ let result = '';
+ for (let i=0;i.
+ this.lastMatchCount = 0;
+ this.lastKey = 0;
+ this.repeatOn = false;
- if (element && element!=parentElement)
- {
- element = element.nextSibling;
- }
- }
+ // Toggles the visibility of the passed element ID.
+ this.FindChildElement = function(id) {
+ const parentElement = document.getElementById(id);
+ let element = parentElement.firstChild;
+
+ while (element && element!=parentElement) {
+ if (element.nodeName.toLowerCase() == 'div' && element.className == 'SRChildren') {
+ return element;
}
- }
- this.Toggle = function(id)
- {
- var element = this.FindChildElement(id);
- if (element)
- {
- if (element.style.display == 'block')
- {
- element.style.display = 'none';
+ if (element.nodeName.toLowerCase() == 'div' && element.hasChildNodes()) {
+ element = element.firstChild;
+ } else if (element.nextSibling) {
+ element = element.nextSibling;
+ } else {
+ do {
+ element = element.parentNode;
}
- else
- {
- element.style.display = 'block';
+ while (element && element!=parentElement && !element.nextSibling);
+
+ if (element && element!=parentElement) {
+ element = element.nextSibling;
}
}
}
+ }
- // Searches for the passed string. If there is no parameter,
- // it takes it from the URL query.
- //
- // Always returns true, since other documents may try to call it
- // and that may or may not be possible.
- this.Search = function(search)
- {
- if (!search) // get search word from URL
- {
- search = window.location.search;
- search = search.substring(1); // Remove the leading '?'
- search = unescape(search);
- }
-
- search = search.replace(/^ +/, ""); // strip leading spaces
- search = search.replace(/ +$/, ""); // strip trailing spaces
- search = search.toLowerCase();
- search = convertToId(search);
-
- var resultRows = document.getElementsByTagName("div");
- var matches = 0;
-
- var i = 0;
- while (i < resultRows.length)
- {
- var row = resultRows.item(i);
- if (row.className == "SRResult")
- {
- var rowMatchName = row.id.toLowerCase();
- rowMatchName = rowMatchName.replace(/^sr\d*_/, ''); // strip 'sr123_'
-
- if (search.length<=rowMatchName.length &&
- rowMatchName.substr(0, search.length)==search)
- {
- row.style.display = 'block';
- matches++;
- }
- else
- {
- row.style.display = 'none';
- }
- }
- i++;
- }
- document.getElementById("Searching").style.display='none';
- if (matches == 0) // no results
- {
- document.getElementById("NoMatches").style.display='block';
- }
- else // at least one result
- {
- document.getElementById("NoMatches").style.display='none';
+ this.Toggle = function(id) {
+ const element = this.FindChildElement(id);
+ if (element) {
+ if (element.style.display == 'block') {
+ element.style.display = 'none';
+ } else {
+ element.style.display = 'block';
}
- this.lastMatchCount = matches;
- return true;
}
+ }
- // return the first item with index index or higher that is visible
- this.NavNext = function(index)
- {
- var focusItem;
- while (1)
- {
- var focusName = 'Item'+index;
- focusItem = document.getElementById(focusName);
- if (focusItem && focusItem.parentNode.parentNode.style.display=='block')
- {
- break;
- }
- else if (!focusItem) // last element
- {
- break;
+ // Searches for the passed string. If there is no parameter,
+ // it takes it from the URL query.
+ //
+ // Always returns true, since other documents may try to call it
+ // and that may or may not be possible.
+ this.Search = function(search) {
+ if (!search) { // get search word from URL
+ search = window.location.search;
+ search = search.substring(1); // Remove the leading '?'
+ search = unescape(search);
+ }
+
+ search = search.replace(/^ +/, ""); // strip leading spaces
+ search = search.replace(/ +$/, ""); // strip trailing spaces
+ search = search.toLowerCase();
+ search = convertToId(search);
+
+ const resultRows = document.getElementsByTagName("div");
+ let matches = 0;
+
+ let i = 0;
+ while (i < resultRows.length) {
+ const row = resultRows.item(i);
+ if (row.className == "SRResult") {
+ let rowMatchName = row.id.toLowerCase();
+ rowMatchName = rowMatchName.replace(/^sr\d*_/, ''); // strip 'sr123_'
+
+ if (search.length<=rowMatchName.length &&
+ rowMatchName.substr(0, search.length)==search) {
+ row.style.display = 'block';
+ matches++;
+ } else {
+ row.style.display = 'none';
}
- focusItem=null;
- index++;
}
- return focusItem;
+ i++;
}
+ document.getElementById("Searching").style.display='none';
+ if (matches == 0) { // no results
+ document.getElementById("NoMatches").style.display='block';
+ } else { // at least one result
+ document.getElementById("NoMatches").style.display='none';
+ }
+ this.lastMatchCount = matches;
+ return true;
+ }
- this.NavPrev = function(index)
- {
- var focusItem;
- while (1)
- {
- var focusName = 'Item'+index;
- focusItem = document.getElementById(focusName);
- if (focusItem && focusItem.parentNode.parentNode.style.display=='block')
- {
- break;
- }
- else if (!focusItem) // last element
- {
- break;
- }
- focusItem=null;
- index--;
+ // return the first item with index index or higher that is visible
+ this.NavNext = function(index) {
+ let focusItem;
+ for (;;) {
+ const focusName = 'Item'+index;
+ focusItem = document.getElementById(focusName);
+ if (focusItem && focusItem.parentNode.parentNode.style.display=='block') {
+ break;
+ } else if (!focusItem) { // last element
+ break;
+ }
+ focusItem=null;
+ index++;
+ }
+ return focusItem;
+ }
+
+ this.NavPrev = function(index) {
+ let focusItem;
+ for (;;) {
+ const focusName = 'Item'+index;
+ focusItem = document.getElementById(focusName);
+ if (focusItem && focusItem.parentNode.parentNode.style.display=='block') {
+ break;
+ } else if (!focusItem) { // last element
+ break;
}
- return focusItem;
+ focusItem=null;
+ index--;
}
+ return focusItem;
+ }
- this.ProcessKeys = function(e)
- {
- if (e.type == "keydown")
- {
- this.repeatOn = false;
- this.lastKey = e.keyCode;
- }
- else if (e.type == "keypress")
- {
- if (!this.repeatOn)
- {
- if (this.lastKey) this.repeatOn = true;
- return false; // ignore first keypress after keydown
- }
- }
- else if (e.type == "keyup")
- {
- this.lastKey = 0;
- this.repeatOn = false;
+ this.ProcessKeys = function(e) {
+ if (e.type == "keydown") {
+ this.repeatOn = false;
+ this.lastKey = e.keyCode;
+ } else if (e.type == "keypress") {
+ if (!this.repeatOn) {
+ if (this.lastKey) this.repeatOn = true;
+ return false; // ignore first keypress after keydown
}
- return this.lastKey!=0;
+ } else if (e.type == "keyup") {
+ this.lastKey = 0;
+ this.repeatOn = false;
}
+ return this.lastKey!=0;
+ }
- this.Nav = function(evt,itemIndex)
- {
- var e = (evt) ? evt : window.event; // for IE
- if (e.keyCode==13) return true;
- if (!this.ProcessKeys(e)) return false;
-
- if (this.lastKey==38) // Up
- {
- var newIndex = itemIndex-1;
- var focusItem = this.NavPrev(newIndex);
- if (focusItem)
- {
- var child = this.FindChildElement(focusItem.parentNode.parentNode.id);
- if (child && child.style.display == 'block') // children visible
- {
- var n=0;
- var tmpElem;
- while (1) // search for last child
- {
- tmpElem = document.getElementById('Item'+newIndex+'_c'+n);
- if (tmpElem)
- {
- focusItem = tmpElem;
- }
- else // found it!
- {
- break;
- }
- n++;
+ this.Nav = function(evt,itemIndex) {
+ const e = (evt) ? evt : window.event; // for IE
+ if (e.keyCode==13) return true;
+ if (!this.ProcessKeys(e)) return false;
+
+ if (this.lastKey==38) { // Up
+ const newIndex = itemIndex-1;
+ let focusItem = this.NavPrev(newIndex);
+ if (focusItem) {
+ let child = this.FindChildElement(focusItem.parentNode.parentNode.id);
+ if (child && child.style.display == 'block') { // children visible
+ let n=0;
+ let tmpElem;
+ for (;;) { // search for last child
+ tmpElem = document.getElementById('Item'+newIndex+'_c'+n);
+ if (tmpElem) {
+ focusItem = tmpElem;
+ } else { // found it!
+ break;
}
+ n++;
}
}
- if (focusItem)
- {
- focusItem.focus();
- }
- else // return focus to search field
- {
- document.getElementById("MSearchField").focus();
- }
- }
- else if (this.lastKey==40) // Down
- {
- var newIndex = itemIndex+1;
- var focusItem;
- var item = document.getElementById('Item'+itemIndex);
- var elem = this.FindChildElement(item.parentNode.parentNode.id);
- if (elem && elem.style.display == 'block') // children visible
- {
- focusItem = document.getElementById('Item'+itemIndex+'_c0');
- }
- if (!focusItem) focusItem = this.NavNext(newIndex);
- if (focusItem) focusItem.focus();
- }
- else if (this.lastKey==39) // Right
- {
- var item = document.getElementById('Item'+itemIndex);
- var elem = this.FindChildElement(item.parentNode.parentNode.id);
- if (elem) elem.style.display = 'block';
- }
- else if (this.lastKey==37) // Left
- {
- var item = document.getElementById('Item'+itemIndex);
- var elem = this.FindChildElement(item.parentNode.parentNode.id);
- if (elem) elem.style.display = 'none';
}
- else if (this.lastKey==27) // Escape
- {
- e.stopPropagation();
- searchBox.CloseResultsWindow();
+ if (focusItem) {
+ focusItem.focus();
+ } else { // return focus to search field
document.getElementById("MSearchField").focus();
}
- else if (this.lastKey==13) // Enter
- {
- return true;
- }
- return false;
+ } else if (this.lastKey==40) { // Down
+ const newIndex = itemIndex+1;
+ let focusItem;
+ const item = document.getElementById('Item'+itemIndex);
+ const elem = this.FindChildElement(item.parentNode.parentNode.id);
+ if (elem && elem.style.display == 'block') { // children visible
+ focusItem = document.getElementById('Item'+itemIndex+'_c0');
+ }
+ if (!focusItem) focusItem = this.NavNext(newIndex);
+ if (focusItem) focusItem.focus();
+ } else if (this.lastKey==39) { // Right
+ const item = document.getElementById('Item'+itemIndex);
+ const elem = this.FindChildElement(item.parentNode.parentNode.id);
+ if (elem) elem.style.display = 'block';
+ } else if (this.lastKey==37) { // Left
+ const item = document.getElementById('Item'+itemIndex);
+ const elem = this.FindChildElement(item.parentNode.parentNode.id);
+ if (elem) elem.style.display = 'none';
+ } else if (this.lastKey==27) { // Escape
+ e.stopPropagation();
+ searchBox.CloseResultsWindow();
+ document.getElementById("MSearchField").focus();
+ } else if (this.lastKey==13) { // Enter
+ return true;
}
+ return false;
+ }
- this.NavChild = function(evt,itemIndex,childIndex)
- {
- var e = (evt) ? evt : window.event; // for IE
- if (e.keyCode==13) return true;
- if (!this.ProcessKeys(e)) return false;
-
- if (this.lastKey==38) // Up
- {
- if (childIndex>0)
- {
- var newIndex = childIndex-1;
- document.getElementById('Item'+itemIndex+'_c'+newIndex).focus();
- }
- else // already at first child, jump to parent
- {
- document.getElementById('Item'+itemIndex).focus();
- }
+ this.NavChild = function(evt,itemIndex,childIndex) {
+ const e = (evt) ? evt : window.event; // for IE
+ if (e.keyCode==13) return true;
+ if (!this.ProcessKeys(e)) return false;
+
+ if (this.lastKey==38) { // Up
+ if (childIndex>0) {
+ const newIndex = childIndex-1;
+ document.getElementById('Item'+itemIndex+'_c'+newIndex).focus();
+ } else { // already at first child, jump to parent
+ document.getElementById('Item'+itemIndex).focus();
}
- else if (this.lastKey==40) // Down
- {
- var newIndex = childIndex+1;
- var elem = document.getElementById('Item'+itemIndex+'_c'+newIndex);
- if (!elem) // last child, jump to parent next parent
- {
- elem = this.NavNext(itemIndex+1);
- }
- if (elem)
- {
- elem.focus();
- }
+ } else if (this.lastKey==40) { // Down
+ const newIndex = childIndex+1;
+ let elem = document.getElementById('Item'+itemIndex+'_c'+newIndex);
+ if (!elem) { // last child, jump to parent next parent
+ elem = this.NavNext(itemIndex+1);
}
- else if (this.lastKey==27) // Escape
- {
- e.stopPropagation();
- searchBox.CloseResultsWindow();
- document.getElementById("MSearchField").focus();
+ if (elem) {
+ elem.focus();
}
- else if (this.lastKey==13) // Enter
- {
- return true;
- }
- return false;
+ } else if (this.lastKey==27) { // Escape
+ e.stopPropagation();
+ searchBox.CloseResultsWindow();
+ document.getElementById("MSearchField").focus();
+ } else if (this.lastKey==13) { // Enter
+ return true;
}
+ return false;
+ }
}
-function setKeyActions(elem,action)
-{
- elem.setAttribute('onkeydown',action);
- elem.setAttribute('onkeypress',action);
- elem.setAttribute('onkeyup',action);
-}
+function createResults(resultsPath) {
-function setClassAttr(elem,attr)
-{
- elem.setAttribute('class',attr);
- elem.setAttribute('className',attr);
-}
+ function setKeyActions(elem,action) {
+ elem.setAttribute('onkeydown',action);
+ elem.setAttribute('onkeypress',action);
+ elem.setAttribute('onkeyup',action);
+ }
+
+ function setClassAttr(elem,attr) {
+ elem.setAttribute('class',attr);
+ elem.setAttribute('className',attr);
+ }
-function createResults(resultsPath)
-{
- var results = document.getElementById("SRResults");
+ const results = document.getElementById("SRResults");
results.innerHTML = '';
- for (var e=0; e {
+ const id = elem[0];
+ const srResult = document.createElement('div');
srResult.setAttribute('id','SR_'+id);
setClassAttr(srResult,'SRResult');
- var srEntry = document.createElement('div');
+ const srEntry = document.createElement('div');
setClassAttr(srEntry,'SREntry');
- var srLink = document.createElement('a');
- srLink.setAttribute('id','Item'+e);
- setKeyActions(srLink,'return searchResults.Nav(event,'+e+')');
+ const srLink = document.createElement('a');
+ srLink.setAttribute('id','Item'+index);
+ setKeyActions(srLink,'return searchResults.Nav(event,'+index+')');
setClassAttr(srLink,'SRSymbol');
- srLink.innerHTML = searchData[e][1][0];
+ srLink.innerHTML = elem[1][0];
srEntry.appendChild(srLink);
- if (searchData[e][1].length==2) // single result
- {
- srLink.setAttribute('href',resultsPath+searchData[e][1][1][0]);
+ if (elem[1].length==2) { // single result
+ srLink.setAttribute('href',resultsPath+elem[1][1][0]);
srLink.setAttribute('onclick','searchBox.CloseResultsWindow()');
- if (searchData[e][1][1][1])
- {
+ if (elem[1][1][1]) {
srLink.setAttribute('target','_parent');
- }
- else
- {
+ } else {
srLink.setAttribute('target','_blank');
}
- var srScope = document.createElement('span');
+ const srScope = document.createElement('span');
setClassAttr(srScope,'SRScope');
- srScope.innerHTML = searchData[e][1][1][2];
+ srScope.innerHTML = elem[1][1][2];
srEntry.appendChild(srScope);
- }
- else // multiple results
- {
+ } else { // multiple results
srLink.setAttribute('href','javascript:searchResults.Toggle("SR_'+id+'")');
- var srChildren = document.createElement('div');
+ const srChildren = document.createElement('div');
setClassAttr(srChildren,'SRChildren');
- for (var c=0; cli>h1,.sm>li>h2,.sm>li>h3,.sm>li>h4,.sm>li>h5,.sm>li>h6{margin:0;padding:0}.sm ul{display:none}.sm li,.sm a{position:relative}.sm a{display:block}.sm a.disabled{cursor:not-allowed}.sm:after{content:"\00a0";display:block;height:0;font:0/0 serif;clear:both;visibility:hidden;overflow:hidden}.sm,.sm *,.sm *:before,.sm *:after{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}.main-menu-btn{position:relative;display:inline-block;width:36px;height:36px;text-indent:36px;margin-left:8px;white-space:nowrap;overflow:hidden;cursor:pointer;-webkit-tap-highlight-color:rgba(0,0,0,0)}.main-menu-btn-icon,.main-menu-btn-icon:before,.main-menu-btn-icon:after{position:absolute;top:50%;left:2px;height:2px;width:24px;background:var(--nav-menu-button-color);-webkit-transition:all .25s;transition:all .25s}.main-menu-btn-icon:before{content:'';top:-7px;left:0}.main-menu-btn-icon:after{content:'';top:7px;left:0}#main-menu-state:checked ~ .main-menu-btn .main-menu-btn-icon{height:0}#main-menu-state:checked ~ .main-menu-btn .main-menu-btn-icon:before{top:0;-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}#main-menu-state:checked ~ .main-menu-btn .main-menu-btn-icon:after{top:0;-webkit-transform:rotate(45deg);transform:rotate(45deg)}#main-menu-state{position:absolute;width:1px;height:1px;margin:-1px;border:0;padding:0;overflow:hidden;clip:rect(1px,1px,1px,1px)}#main-menu-state:not(:checked) ~ #main-menu{display:none}#main-menu-state:checked ~ #main-menu{display:block}@media(min-width:768px){.main-menu-btn{position:absolute;top:-99999px}#main-menu-state:not(:checked) ~ #main-menu{display:block}}.sm-dox{background-image:var(--nav-gradient-image)}.sm-dox a,.sm-dox a:focus,.sm-dox a:hover,.sm-dox a:active{padding:0 12px;padding-right:43px;font-family:var(--font-family-nav);font-size:13px;font-weight:bold;line-height:36px;text-decoration:none;text-shadow:var(--nav-text-normal-shadow);color:var(--nav-text-normal-color);outline:0}.sm-dox a:hover{background-image:var(--nav-gradient-active-image);background-repeat:repeat-x;color:var(--nav-text-hover-color);text-shadow:var(--nav-text-hover-shadow)}.sm-dox a.current{color:#d23600}.sm-dox a.disabled{color:#bbb}.sm-dox a span.sub-arrow{position:absolute;top:50%;margin-top:-14px;left:auto;right:3px;width:28px;height:28px;overflow:hidden;font:bold 12px/28px monospace !important;text-align:center;text-shadow:none;background:var(--nav-menu-toggle-color);-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px}.sm-dox a span.sub-arrow:before{display:block;content:'+'}.sm-dox a.highlighted span.sub-arrow:before{display:block;content:'-'}.sm-dox>li:first-child>a,.sm-dox>li:first-child>:not(ul) a{-moz-border-radius:5px 5px 0 0;-webkit-border-radius:5px;border-radius:5px 5px 0 0}.sm-dox>li:last-child>a,.sm-dox>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul,.sm-dox>li:last-child>ul>li:last-child>a,.sm-dox>li:last-child>ul>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul>li:last-child>ul,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul{-moz-border-radius:0 0 5px 5px;-webkit-border-radius:0;border-radius:0 0 5px 5px}.sm-dox>li:last-child>a.highlighted,.sm-dox>li:last-child>*:not(ul) a.highlighted,.sm-dox>li:last-child>ul>li:last-child>a.highlighted,.sm-dox>li:last-child>ul>li:last-child>*:not(ul) a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a.highlighted{-moz-border-radius:0;-webkit-border-radius:0;border-radius:0}.sm-dox ul{background:var(--nav-menu-background-color)}.sm-dox ul a,.sm-dox ul a:focus,.sm-dox ul a:hover,.sm-dox ul a:active{font-size:12px;border-left:8px solid transparent;line-height:36px;text-shadow:none;background-color:var(--nav-menu-background-color);background-image:none}.sm-dox ul a:hover{background-image:var(--nav-gradient-active-image);background-repeat:repeat-x;color:var(--nav-text-hover-color);text-shadow:0 1px 1px black}.sm-dox ul ul a,.sm-dox ul ul a:hover,.sm-dox ul ul a:focus,.sm-dox ul ul a:active{border-left:16px solid transparent}.sm-dox ul ul ul a,.sm-dox ul ul ul a:hover,.sm-dox ul ul ul a:focus,.sm-dox ul ul ul a:active{border-left:24px solid transparent}.sm-dox ul ul ul ul a,.sm-dox ul ul ul ul a:hover,.sm-dox ul ul ul ul a:focus,.sm-dox ul ul ul ul a:active{border-left:32px solid transparent}.sm-dox ul ul ul ul ul a,.sm-dox ul ul ul ul ul a:hover,.sm-dox ul ul ul ul ul a:focus,.sm-dox ul ul ul ul ul a:active{border-left:40px solid transparent}@media(min-width:768px){.sm-dox ul{position:absolute;width:12em}.sm-dox li{float:left}.sm-dox.sm-rtl li{float:right}.sm-dox ul li,.sm-dox.sm-rtl ul li,.sm-dox.sm-vertical li{float:none}.sm-dox a{white-space:nowrap}.sm-dox ul a,.sm-dox.sm-vertical a{white-space:normal}.sm-dox .sm-nowrap>li>a,.sm-dox .sm-nowrap>li>:not(ul) a{white-space:nowrap}.sm-dox{padding:0 10px;background-image:var(--nav-gradient-image);line-height:36px}.sm-dox a span.sub-arrow{top:50%;margin-top:-2px;right:12px;width:0;height:0;border-width:4px;border-style:solid dashed dashed dashed;border-color:var(--nav-text-normal-color) transparent transparent transparent;background:transparent;-moz-border-radius:0;-webkit-border-radius:0;border-radius:0}.sm-dox a,.sm-dox a:focus,.sm-dox a:active,.sm-dox a:hover,.sm-dox a.highlighted{padding:0 12px;background-image:var(--nav-separator-image);background-repeat:no-repeat;background-position:right;-moz-border-radius:0 !important;-webkit-border-radius:0;border-radius:0 !important}.sm-dox a:hover{background-image:var(--nav-gradient-active-image);background-repeat:repeat-x;color:var(--nav-text-hover-color);text-shadow:var(--nav-text-hover-shadow)}.sm-dox a:hover span.sub-arrow{border-color:var(--nav-text-hover-color) transparent transparent transparent}.sm-dox a.has-submenu{padding-right:24px}.sm-dox li{border-top:0}.sm-dox>li>ul:before,.sm-dox>li>ul:after{content:'';position:absolute;top:-18px;left:30px;width:0;height:0;overflow:hidden;border-width:9px;border-style:dashed dashed solid dashed;border-color:transparent transparent #bbb transparent}.sm-dox>li>ul:after{top:-16px;left:31px;border-width:8px;border-color:transparent transparent var(--nav-menu-background-color) transparent}.sm-dox ul{border:1px solid #bbb;padding:5px 0;background:var(--nav-menu-background-color);-moz-border-radius:5px !important;-webkit-border-radius:5px;border-radius:5px !important;-moz-box-shadow:0 5px 9px rgba(0,0,0,0.2);-webkit-box-shadow:0 5px 9px rgba(0,0,0,0.2);box-shadow:0 5px 9px rgba(0,0,0,0.2)}.sm-dox ul a span.sub-arrow{right:8px;top:50%;margin-top:-5px;border-width:5px;border-color:transparent transparent transparent var(--nav-menu-foreground-color);border-style:dashed dashed dashed solid}.sm-dox ul a,.sm-dox ul a:hover,.sm-dox ul a:focus,.sm-dox ul a:active,.sm-dox ul a.highlighted{color:var(--nav-menu-foreground-color);background-image:none;border:0 !important;color:var(--nav-menu-foreground-color);background-image:none}.sm-dox ul a:hover{background-image:var(--nav-gradient-active-image);background-repeat:repeat-x;color:var(--nav-text-hover-color);text-shadow:var(--nav-text-hover-shadow)}.sm-dox ul a:hover span.sub-arrow{border-color:transparent transparent transparent var(--nav-text-hover-color)}.sm-dox span.scroll-up,.sm-dox span.scroll-down{position:absolute;display:none;visibility:hidden;overflow:hidden;background:var(--nav-menu-background-color);height:36px}.sm-dox span.scroll-up:hover,.sm-dox span.scroll-down:hover{background:#eee}.sm-dox span.scroll-up:hover span.scroll-up-arrow,.sm-dox span.scroll-up:hover span.scroll-down-arrow{border-color:transparent transparent #d23600 transparent}.sm-dox span.scroll-down:hover span.scroll-down-arrow{border-color:#d23600 transparent transparent transparent}.sm-dox span.scroll-up-arrow,.sm-dox span.scroll-down-arrow{position:absolute;top:0;left:50%;margin-left:-6px;width:0;height:0;overflow:hidden;border-width:6px;border-style:dashed dashed solid dashed;border-color:transparent transparent var(--nav-menu-foreground-color) transparent}.sm-dox span.scroll-down-arrow{top:8px;border-style:solid dashed dashed dashed;border-color:var(--nav-menu-foreground-color) transparent transparent transparent}.sm-dox.sm-rtl a.has-submenu{padding-right:12px;padding-left:24px}.sm-dox.sm-rtl a span.sub-arrow{right:auto;left:12px}.sm-dox.sm-rtl.sm-vertical a.has-submenu{padding:10px 20px}.sm-dox.sm-rtl.sm-vertical a span.sub-arrow{right:auto;left:8px;border-style:dashed solid dashed dashed;border-color:transparent #555 transparent transparent}.sm-dox.sm-rtl>li>ul:before{left:auto;right:30px}.sm-dox.sm-rtl>li>ul:after{left:auto;right:31px}.sm-dox.sm-rtl ul a.has-submenu{padding:10px 20px !important}.sm-dox.sm-rtl ul a span.sub-arrow{right:auto;left:8px;border-style:dashed solid dashed dashed;border-color:transparent #555 transparent transparent}.sm-dox.sm-vertical{padding:10px 0;-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px}.sm-dox.sm-vertical a{padding:10px 20px}.sm-dox.sm-vertical a:hover,.sm-dox.sm-vertical a:focus,.sm-dox.sm-vertical a:active,.sm-dox.sm-vertical a.highlighted{background:#fff}.sm-dox.sm-vertical a.disabled{background-image:var(--nav-gradient-image)}.sm-dox.sm-vertical a span.sub-arrow{right:8px;top:50%;margin-top:-5px;border-width:5px;border-style:dashed dashed dashed solid;border-color:transparent transparent transparent #555}.sm-dox.sm-vertical>li>ul:before,.sm-dox.sm-vertical>li>ul:after{display:none}.sm-dox.sm-vertical ul a{padding:10px 20px}.sm-dox.sm-vertical ul a:hover,.sm-dox.sm-vertical ul a:focus,.sm-dox.sm-vertical ul a:active,.sm-dox.sm-vertical ul a.highlighted{background:#eee}.sm-dox.sm-vertical ul a.disabled{background:var(--nav-menu-background-color)}}
\ No newline at end of file
+.sm{position:relative;z-index:9999}.sm,.sm ul,.sm li{display:block;list-style:none;margin:0;padding:0;line-height:normal;direction:ltr;text-align:left;-webkit-tap-highlight-color:rgba(0,0,0,0)}.sm-rtl,.sm-rtl ul,.sm-rtl li{direction:rtl;text-align:right}.sm>li>h1,.sm>li>h2,.sm>li>h3,.sm>li>h4,.sm>li>h5,.sm>li>h6{margin:0;padding:0}.sm ul{display:none}.sm li,.sm a{position:relative}.sm a{display:block}.sm a.disabled{cursor:not-allowed}.sm:after{content:"\00a0";display:block;height:0;font:0/0 serif;clear:both;visibility:hidden;overflow:hidden}.sm,.sm *,.sm *:before,.sm *:after{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}.main-menu-btn{position:relative;display:inline-block;width:36px;height:36px;text-indent:36px;margin-left:8px;white-space:nowrap;overflow:hidden;cursor:pointer;-webkit-tap-highlight-color:rgba(0,0,0,0)}.main-menu-btn-icon,.main-menu-btn-icon:before,.main-menu-btn-icon:after{position:absolute;top:50%;left:2px;height:2px;width:24px;background:var(--nav-menu-button-color);-webkit-transition:all .25s;transition:all .25s}.main-menu-btn-icon:before{content:'';top:-7px;left:0}.main-menu-btn-icon:after{content:'';top:7px;left:0}#main-menu-state:checked ~ .main-menu-btn .main-menu-btn-icon{height:0}#main-menu-state:checked ~ .main-menu-btn .main-menu-btn-icon:before{top:0;-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}#main-menu-state:checked ~ .main-menu-btn .main-menu-btn-icon:after{top:0;-webkit-transform:rotate(45deg);transform:rotate(45deg)}#main-menu-state{position:absolute;width:1px;height:1px;margin:-1px;border:0;padding:0;overflow:hidden;clip:rect(1px,1px,1px,1px)}#main-menu-state:not(:checked) ~ #main-menu{display:none}#main-menu-state:checked ~ #main-menu{display:block}@media(min-width:768px){.main-menu-btn{position:absolute;top:-99999px}#main-menu-state:not(:checked) ~ #main-menu{display:block}}.sm-dox{background-image:var(--nav-gradient-image)}.sm-dox a,.sm-dox a:focus,.sm-dox a:hover,.sm-dox a:active{padding:0 12px;padding-right:43px;font-family:var(--font-family-nav);font-size:13px;font-weight:bold;line-height:36px;text-decoration:none;text-shadow:var(--nav-text-normal-shadow);color:var(--nav-text-normal-color);outline:0}.sm-dox a:hover{background-image:var(--nav-gradient-active-image);background-repeat:repeat-x;color:var(--nav-text-hover-color);text-shadow:var(--nav-text-hover-shadow)}.sm-dox a.current{color:#d23600}.sm-dox a.disabled{color:#bbb}.sm-dox a span.sub-arrow{position:absolute;top:50%;margin-top:-14px;left:auto;right:3px;width:28px;height:28px;overflow:hidden;font:bold 12px/28px monospace !important;text-align:center;text-shadow:none;background:var(--nav-menu-toggle-color);-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px}.sm-dox a span.sub-arrow:before{display:block;content:'+'}.sm-dox a.highlighted span.sub-arrow:before{display:block;content:'-'}.sm-dox>li:first-child>a,.sm-dox>li:first-child>:not(ul) a{-moz-border-radius:5px 5px 0 0;-webkit-border-radius:5px;border-radius:5px 5px 0 0}.sm-dox>li:last-child>a,.sm-dox>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul,.sm-dox>li:last-child>ul>li:last-child>a,.sm-dox>li:last-child>ul>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul>li:last-child>ul,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul{-moz-border-radius:0 0 5px 5px;-webkit-border-radius:0;border-radius:0 0 5px 5px}.sm-dox>li:last-child>a.highlighted,.sm-dox>li:last-child>*:not(ul) a.highlighted,.sm-dox>li:last-child>ul>li:last-child>a.highlighted,.sm-dox>li:last-child>ul>li:last-child>*:not(ul) a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a.highlighted{-moz-border-radius:0;-webkit-border-radius:0;border-radius:0}.sm-dox ul{background:var(--nav-menu-background-color)}.sm-dox ul a,.sm-dox ul a:focus,.sm-dox ul a:hover,.sm-dox ul a:active{font-size:12px;border-left:8px solid transparent;line-height:36px;text-shadow:none;background-color:var(--nav-menu-background-color);background-image:none}.sm-dox ul a:hover{background-image:var(--nav-gradient-active-image);background-repeat:repeat-x;color:var(--nav-text-hover-color);text-shadow:0 1px 1px black}.sm-dox ul ul a,.sm-dox ul ul a:hover,.sm-dox ul ul a:focus,.sm-dox ul ul a:active{border-left:16px solid transparent}.sm-dox ul ul ul a,.sm-dox ul ul ul a:hover,.sm-dox ul ul ul a:focus,.sm-dox ul ul ul a:active{border-left:24px solid transparent}.sm-dox ul ul ul ul a,.sm-dox ul ul ul ul a:hover,.sm-dox ul ul ul ul a:focus,.sm-dox ul ul ul ul a:active{border-left:32px solid transparent}.sm-dox ul ul ul ul ul a,.sm-dox ul ul ul ul ul a:hover,.sm-dox ul ul ul ul ul a:focus,.sm-dox ul ul ul ul ul a:active{border-left:40px solid transparent}@media(min-width:768px){.sm-dox ul{position:absolute;width:12em}.sm-dox li{float:left}.sm-dox.sm-rtl li{float:right}.sm-dox ul li,.sm-dox.sm-rtl ul li,.sm-dox.sm-vertical li{float:none}.sm-dox a{white-space:nowrap}.sm-dox ul a,.sm-dox.sm-vertical a{white-space:normal}.sm-dox .sm-nowrap>li>a,.sm-dox .sm-nowrap>li>:not(ul) a{white-space:nowrap}.sm-dox{padding:0 10px;background-image:var(--nav-gradient-image);line-height:36px}.sm-dox a span.sub-arrow{top:50%;margin-top:-2px;right:12px;width:0;height:0;border-width:4px;border-style:solid dashed dashed dashed;border-color:var(--nav-text-normal-color) transparent transparent transparent;background:transparent;-moz-border-radius:0;-webkit-border-radius:0;border-radius:0}.sm-dox a,.sm-dox a:focus,.sm-dox a:active,.sm-dox a:hover,.sm-dox a.highlighted{padding:0 12px;background-image:var(--nav-separator-image);background-repeat:no-repeat;background-position:right;-moz-border-radius:0 !important;-webkit-border-radius:0;border-radius:0 !important}.sm-dox a:hover{background-image:var(--nav-gradient-active-image);background-repeat:repeat-x;color:var(--nav-text-hover-color);text-shadow:var(--nav-text-hover-shadow)}.sm-dox a:hover span.sub-arrow{border-color:var(--nav-text-hover-color) transparent transparent transparent}.sm-dox a.has-submenu{padding-right:24px}.sm-dox li{border-top:0}.sm-dox>li>ul:before,.sm-dox>li>ul:after{content:'';position:absolute;top:-18px;left:30px;width:0;height:0;overflow:hidden;border-width:9px;border-style:dashed dashed solid dashed;border-color:transparent transparent #bbb transparent}.sm-dox>li>ul:after{top:-16px;left:31px;border-width:8px;border-color:transparent transparent var(--nav-menu-background-color) transparent}.sm-dox ul{border:1px solid #bbb;padding:5px 0;background:var(--nav-menu-background-color);-moz-border-radius:5px !important;-webkit-border-radius:5px;border-radius:5px !important;-moz-box-shadow:0 5px 9px rgba(0,0,0,0.2);-webkit-box-shadow:0 5px 9px rgba(0,0,0,0.2);box-shadow:0 5px 9px rgba(0,0,0,0.2)}.sm-dox ul a span.sub-arrow{right:8px;top:50%;margin-top:-5px;border-width:5px;border-color:transparent transparent transparent var(--nav-menu-foreground-color);border-style:dashed dashed dashed solid}.sm-dox ul a,.sm-dox ul a:hover,.sm-dox ul a:focus,.sm-dox ul a:active,.sm-dox ul a.highlighted{color:var(--nav-menu-foreground-color);background-image:none;border:0 !important}.sm-dox ul a:hover{background-image:var(--nav-gradient-active-image);background-repeat:repeat-x;color:var(--nav-text-hover-color);text-shadow:var(--nav-text-hover-shadow)}.sm-dox ul a:hover span.sub-arrow{border-color:transparent transparent transparent var(--nav-text-hover-color)}.sm-dox span.scroll-up,.sm-dox span.scroll-down{position:absolute;display:none;visibility:hidden;overflow:hidden;background:var(--nav-menu-background-color);height:36px}.sm-dox span.scroll-up:hover,.sm-dox span.scroll-down:hover{background:#eee}.sm-dox span.scroll-up:hover span.scroll-up-arrow,.sm-dox span.scroll-up:hover span.scroll-down-arrow{border-color:transparent transparent #d23600 transparent}.sm-dox span.scroll-down:hover span.scroll-down-arrow{border-color:#d23600 transparent transparent transparent}.sm-dox span.scroll-up-arrow,.sm-dox span.scroll-down-arrow{position:absolute;top:0;left:50%;margin-left:-6px;width:0;height:0;overflow:hidden;border-width:6px;border-style:dashed dashed solid dashed;border-color:transparent transparent var(--nav-menu-foreground-color) transparent}.sm-dox span.scroll-down-arrow{top:8px;border-style:solid dashed dashed dashed;border-color:var(--nav-menu-foreground-color) transparent transparent transparent}.sm-dox.sm-rtl a.has-submenu{padding-right:12px;padding-left:24px}.sm-dox.sm-rtl a span.sub-arrow{right:auto;left:12px}.sm-dox.sm-rtl.sm-vertical a.has-submenu{padding:10px 20px}.sm-dox.sm-rtl.sm-vertical a span.sub-arrow{right:auto;left:8px;border-style:dashed solid dashed dashed;border-color:transparent #555 transparent transparent}.sm-dox.sm-rtl>li>ul:before{left:auto;right:30px}.sm-dox.sm-rtl>li>ul:after{left:auto;right:31px}.sm-dox.sm-rtl ul a.has-submenu{padding:10px 20px !important}.sm-dox.sm-rtl ul a span.sub-arrow{right:auto;left:8px;border-style:dashed solid dashed dashed;border-color:transparent #555 transparent transparent}.sm-dox.sm-vertical{padding:10px 0;-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px}.sm-dox.sm-vertical a{padding:10px 20px}.sm-dox.sm-vertical a:hover,.sm-dox.sm-vertical a:focus,.sm-dox.sm-vertical a:active,.sm-dox.sm-vertical a.highlighted{background:#fff}.sm-dox.sm-vertical a.disabled{background-image:var(--nav-gradient-image)}.sm-dox.sm-vertical a span.sub-arrow{right:8px;top:50%;margin-top:-5px;border-width:5px;border-style:dashed dashed dashed solid;border-color:transparent transparent transparent #555}.sm-dox.sm-vertical>li>ul:before,.sm-dox.sm-vertical>li>ul:after{display:none}.sm-dox.sm-vertical ul a{padding:10px 20px}.sm-dox.sm-vertical ul a:hover,.sm-dox.sm-vertical ul a:focus,.sm-dox.sm-vertical ul a:active,.sm-dox.sm-vertical ul a.highlighted{background:#eee}.sm-dox.sm-vertical ul a.disabled{background:var(--nav-menu-background-color)}}
diff --git a/docs/ref/phpdoc/classes/M8B-EtherBinder-Common-AccessListTransaction.html b/docs/ref/phpdoc/classes/M8B-EtherBinder-Common-AccessListTransaction.html
index 1266650..d7cfa32 100644
--- a/docs/ref/phpdoc/classes/M8B-EtherBinder-Common-AccessListTransaction.html
+++ b/docs/ref/phpdoc/classes/M8B-EtherBinder-Common-AccessListTransaction.html
@@ -54,7 +54,7 @@