const bigIntReviver = (_, value) => typeof value === "string" && value.match(/^-?[0-9]+n$/) ? BigInt(value.slice(0, value.length - 1)) : value;