UNPKG

@openproduct/web-sdk

Version:

OpenMask Web - TypeScript Browser SDK for TON blockchain

15 lines (11 loc) 259 B
import { Cell } from "../boc/cell"; import { Message } from "./message"; export class CellMessage implements Message { private cell: Cell; constructor(cell: Cell) { this.cell = cell; } writeTo(cell: Cell) { cell.writeCell(this.cell); } }