UNPKG

o3-dapi-ont

Version:
15 lines (12 loc) 304 B
import { sendMessage } from '../../../messaging'; import { Oep4Command } from '../constants'; interface SymbolInput { network: string; scriptHash: string; } export function getSymbol(data: SymbolInput): Promise<string> { return sendMessage({ command: Oep4Command.getSymbol, data, }); }