Show text inscriptions up to 50kB

This commit is contained in:
natsoni
2024-10-08 12:50:56 +09:00
parent 0a61429176
commit 1ddb8a39c9
2 changed files with 4 additions and 2 deletions

View File

@@ -390,7 +390,8 @@ export function extractInscriptionData(raw: Uint8Array, pointer: number): Inscri
return {
content_type_str: contentType,
body: combinedData.slice(0, 150), // Limit body to 150 bytes for now
body: combinedData.slice(0, 50_000), // Limit body to 50 kB for now
is_cropped: combinedData.length > 50_000,
body_length: combinedData.length,
delegate_txid: getKnownFieldValue(fields, knownFields.delegate) ? bytesToHex(getKnownFieldValue(fields, knownFields.delegate).reverse()) : null
};