UNPKG

o3-dapi-ont

Version:
16 lines (13 loc) 309 B
import { sendMessage } from '../../../messaging'; import { Oep8Command } from '../constants'; interface NameInput { network: string; scriptHash: string; tokenId: string; } export function name(data: NameInput): Promise<string> { return sendMessage({ command: Oep8Command.name, data, }); }