注意: このページはまだ日本語に翻訳されていません。以下は英語の原文です。
function getTxType(from, to): number
Determines the transaction type based on the sender and recipient addresses. The function checks if both addresses are UTXO addresses, in which case it returns 2. If only the sender address is a UTXO address, it returns 1. Otherwise, it returns 0.

Parameters

ParameterTypeDescription
fromnull | stringThe sender address. If null, the function returns 0.
tonull | stringThe recipient address. If null, the function returns 0.

Returns

number The transaction type based on the addresses.

Source

utils/shards.ts:53