global: opreturn part 5

This commit is contained in:
nym21
2026-07-19 18:19:48 +02:00
parent 0fc61d7932
commit 3af673132a
10 changed files with 523 additions and 454 deletions
@@ -12,13 +12,13 @@ export const OP_RETURN_COUNT_SOURCES = [
...OP_RETURN_KIND_FILTERS.map(([, kind, clientKey]) => {
return {
key: `op_return:${kind}`,
series: byKind[clientKey].carrierTxCount.block,
series: byKind[clientKey].txCount.block,
};
}),
...OP_RETURN_POLICY_FILTERS.map(([, filter, clientKey]) => {
return {
key: `op_return_policy:${filter}`,
series: policy[clientKey].carrierTxCount.block,
series: policy[clientKey].txCount.block,
};
}),
];
@@ -37,7 +37,7 @@ export const OP_RETURN_KIND_FILTERS = /** @type {const} */ ([
]);
export const OP_RETURN_POLICY_FILTERS = /** @type {const} */ ([
["standard", "standard", "standard", txColors.opReturnPolicy.standard],
["standard", "standard", "preV30Standard", txColors.opReturnPolicy.standard],
["oversized", "oversized", "oversized", txColors.opReturnPolicy.oversized],
["multiple", "multiple", "multiple", txColors.opReturnPolicy.multiple],
[