diff --git a/index.html b/index.html index 34e4342..79c6e33 100644 --- a/index.html +++ b/index.html @@ -2857,7 +2857,7 @@ if (type) { filteredSmartContracts = filteredSmartContracts.filter(sc => { if (type === 'external-trigger') { - return sc.status !== 'active'; // only inactive contracts can be triggered externally + return sc.status === 'expired'; // only inactive contracts can be triggered externally } else if (type === 'continuos-event' && dynamic) { return sc.status === 'active' && sc.contractType === type && sc.oracle_address; } else {