txParams property

Map<String, dynamic> txParams

Implementation

Map<String, dynamic> get txParams => {
      'version': this.version,
      'toAddr': ZilAddress.toValidAddress(this.toAddr!),
      'nonce': this.nonce,
      'pubKey': this.pubKey,
      'amount': this.amount,
      'gasPrice': this.gasPrice,
      'gasLimit': this.gasLimit,
      'code': this.code,
      'data': this.data,
      'signature': this.signature,
      'receipt': this.receipt,
    };