You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if (!~writable_props.indexOf(key) && key.slice(0, 2) !== '$$' && key !== 'slot') console.warn(`<ContractFunction> was created with unknown prop '${key}'`);
@@ -28049,7 +28049,7 @@ function instance$x($$self, $$props, $$invalidate) {
28049
28049
if ('onFunctionCall' in $$props) $$invalidate(7, onFunctionCall = $$props.onFunctionCall);
28050
28050
if ('isConstructor' in $$props) $$invalidate(8, isConstructor = $$props.isConstructor);
28051
28051
if ('isCalldata' in $$props) $$invalidate(1, isCalldata = $$props.isCalldata);
28052
-
if ('isProxy' in $$props) $$invalidate(2, isProxy = $$props.isProxy);
28052
+
if ('showProxyIcon' in $$props) $$invalidate(2, showProxyIcon = $$props.showProxyIcon);
28053
28053
};
28054
28054
28055
28055
$$self.$capture_state = () => ({
@@ -28065,7 +28065,7 @@ function instance$x($$self, $$props, $$invalidate) {
28065
28065
onFunctionCall,
28066
28066
isConstructor,
28067
28067
isCalldata,
28068
-
isProxy,
28068
+
showProxyIcon,
28069
28069
expanded,
28070
28070
inputRoot,
28071
28071
loading,
@@ -28080,7 +28080,7 @@ function instance$x($$self, $$props, $$invalidate) {
28080
28080
if ('onFunctionCall' in $$props) $$invalidate(7, onFunctionCall = $$props.onFunctionCall);
28081
28081
if ('isConstructor' in $$props) $$invalidate(8, isConstructor = $$props.isConstructor);
28082
28082
if ('isCalldata' in $$props) $$invalidate(1, isCalldata = $$props.isCalldata);
28083
-
if ('isProxy' in $$props) $$invalidate(2, isProxy = $$props.isProxy);
28083
+
if ('showProxyIcon' in $$props) $$invalidate(2, showProxyIcon = $$props.showProxyIcon);
28084
28084
if ('expanded' in $$props) $$invalidate(3, expanded = $$props.expanded);
28085
28085
if ('inputRoot' in $$props) $$invalidate(4, inputRoot = $$props.inputRoot);
28086
28086
if ('loading' in $$props) $$invalidate(5, loading = $$props.loading);
@@ -28104,7 +28104,7 @@ function instance$x($$self, $$props, $$invalidate) {
28104
28104
return [
28105
28105
func,
28106
28106
isCalldata,
28107
-
isProxy,
28107
+
showProxyIcon,
28108
28108
expanded,
28109
28109
inputRoot,
28110
28110
loading,
@@ -28126,7 +28126,7 @@ class ContractFunction extends SvelteComponentDev {
28126
28126
onFunctionCall: 7,
28127
28127
isConstructor: 8,
28128
28128
isCalldata: 1,
28129
-
isProxy: 2
28129
+
showProxyIcon: 2
28130
28130
});
28131
28131
28132
28132
dispatch_dev("SvelteRegisterComponent", {
@@ -28169,11 +28169,11 @@ class ContractFunction extends SvelteComponentDev {
28169
28169
throw new Error("<ContractFunction>: Props cannot be set directly on the component instance unless compiling with 'accessors: true' or '<svelte:options accessors/>'");
28170
28170
}
28171
28171
28172
-
get isProxy() {
28172
+
get showProxyIcon() {
28173
28173
throw new Error("<ContractFunction>: Props cannot be read directly from the component instance unless compiling with 'accessors: true' or '<svelte:options accessors/>'");
28174
28174
}
28175
28175
28176
-
set isProxy(value) {
28176
+
set showProxyIcon(value) {
28177
28177
throw new Error("<ContractFunction>: Props cannot be set directly on the component instance unless compiling with 'accessors: true' or '<svelte:options accessors/>'");
28178
28178
}
28179
28179
}
@@ -29297,7 +29297,7 @@ function create_if_block$d(ctx) {
29297
29297
check_outros();
29298
29298
}
29299
29299
29300
-
if (dirty & /*filteredAbi, _onFunctionCall*/ 48) {
29300
+
if (dirty & /*filteredAbi, _onFunctionCall, filteredProxies*/ 52) {
29301
29301
each_value = /*filteredAbi*/ ctx[4];
29302
29302
validate_each_argument(each_value);
29303
29303
let i;
@@ -29382,8 +29382,7 @@ function create_each_block_2(ctx) {
29382
29382
contractfunction = new ContractFunction({
29383
29383
props: {
29384
29384
func: /*func*/ ctx[13],
29385
-
onFunctionCall: /*_onFunctionCall*/ ctx[5],
29386
-
isProxy: true
29385
+
onFunctionCall: /*_onFunctionCall*/ ctx[5]
29387
29386
},
29388
29387
$$inline: true
29389
29388
});
@@ -29532,7 +29531,8 @@ function create_each_block$7(ctx) {
0 commit comments