RpcTxWithPassphrase constructor

const RpcTxWithPassphrase({
  1. String? entropystoreFile,
  2. @JsonKey(name: 'selfAddr') required ViteAddress address,
  3. @JsonKey(name: 'toAddr') required ViteAddress toAddress,
  4. required TokenId tokenTypeId,
  5. required String passphrase,
  6. required RpcBigInt amount,
  7. RpcBase64? data,
  8. String? difficulty,
})

Implementation

const factory RpcTxWithPassphrase({
  String? entropystoreFile,
  @JsonKey(name: 'selfAddr') required ViteAddress address,
  @JsonKey(name: 'toAddr') required ViteAddress toAddress,
  required TokenId tokenTypeId,
  required String passphrase,
  required RpcBigInt amount,
  RpcBase64? data,
  String? difficulty,
}) = _RpcTxWithPassphrase;