UNPKG

@iexec/iapp

Version:

A CLI to guide you through the process of building an iExec iApp

10 lines 423 B
import { askForAcknowledgment } from './askForAcknowledgment.js'; export async function warnBeforeTxFees({ spinner, chain, }) { if (chain !== 'bellecour') { await askForAcknowledgment({ spinner, message: 'This method requires sending blockchain transactions, transaction fees will be applied. Would you like to continue?', }); } } //# sourceMappingURL=warnBeforeTxFees.js.map