deploy method
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);
}