/** * @description Checks if an Interaction Template's pins match those generated at a block height * * @param {object} params * @param {object} params.template - Interaction Template to check pins for * @param {number} params.blockHeight - Block height to check pins at * @param {string} params.network - Network to check pins on * @param {object} opts * @returns {Promise} - Whether or not the pins match */ export function verifyDependencyPinsSame({ template, blockHeight, network }: { template: object; blockHeight: number; network: string; }, opts?: object): Promise; /** * @description Checks if an Interaction Template's pins match those generated at the latest block height * * @param {object} params * @param {object} params.template - Interaction Template to check pins for * @param {string} params.network - Network to check pins on * @param {object} opts * @returns {Promise} - Whether or not the pins match */ export function verifyDependencyPinsSameAtLatestSealedBlock({ template, network }: { template: object; network: string; }, opts?: object): Promise;