deploy method

Future<String> deploy({
  1. required E params,
  2. required TonProvider rpc,
  3. required BigInt amount,
  4. int sendMode = SendModeConst.payGasSeparately,
  5. int? timeout,
  6. bool? bounce,
  7. bool bounced = false,
  8. Cell? body,
})

Implementation

Future<String> deploy(
    {required E params,
    required TonProvider rpc,
    required BigInt amount,
    int sendMode = SendModeConst.payGasSeparately,
    int? timeout,
    bool? bounce,
    bool bounced = false,
    Cell? body}) async {
  return _sendTransaction(
      params: params,
      rpc: rpc,
      amount: amount,
      sendMode: sendMode,
      body: body,
      bounce: bounce,
      bounced: bounced,
      timeout: timeout);
}