UNPKG

@ton/core

Version:

Core TypeScript library that implements low level primitives for TON blockchain.

4 lines (3 loc) 273 B
import { Cell } from '../boc/Cell'; import { DictionaryKeyTypes, Dictionary, DictionaryKey } from './Dictionary'; export declare function generateMerkleUpdate<K extends DictionaryKeyTypes, V>(dict: Dictionary<K, V>, key: K, keyObject: DictionaryKey<K>, newValue: V): Cell;