All Downloads are FREE. Search and download functionalities are using the official Maven repository.

lnrpc.InitWalletRequest.scala Maven / Gradle / Ivy

The newest version!
// Generated by the Scala Plugin for the Protocol Buffer Compiler.
// Do not edit!
//
// Protofile syntax: PROTO3

package lnrpc
import org.bitcoins.lnd.rpc.LndUtils._

/** @param walletPassword
  *  
  *  wallet_password is the passphrase that should be used to encrypt the
  *  wallet. This MUST be at least 8 chars in length. After creation, this
  *  password is required to unlock the daemon. When using REST, this field
  *  must be encoded as base64.
  * @param cipherSeedMnemonic
  *  
  *  cipher_seed_mnemonic is a 24-word mnemonic that encodes a prior aezeed
  *  cipher seed obtained by the user. This may have been generated by the
  *  GenSeed method, or be an existing seed.
  * @param aezeedPassphrase
  *  
  *  aezeed_passphrase is an optional user provided passphrase that will be used
  *  to encrypt the generated aezeed cipher seed. When using REST, this field
  *  must be encoded as base64.
  * @param recoveryWindow
  *  
  *  recovery_window is an optional argument specifying the address lookahead
  *  when restoring a wallet seed. The recovery window applies to each
  *  individual branch of the BIP44 derivation paths. Supplying a recovery
  *  window of zero indicates that no addresses should be recovered, such after
  *  the first initialization of the wallet.
  * @param channelBackups
  *  
  *  channel_backups is an optional argument that allows clients to recover the
  *  settled funds within a set of channels. This should be populated if the
  *  user was unable to close out all channels and sweep funds before partial or
  *  total data loss occurred. If specified, then after on-chain recovery of
  *  funds, lnd begin to carry out the data loss recovery protocol in order to
  *  recover the funds in each channel from a remote force closed transaction.
  * @param statelessInit
  *  
  *  stateless_init is an optional argument instructing the daemon NOT to create
  *  any *.macaroon files in its filesystem. If this parameter is set, then the
  *  admin macaroon returned in the response MUST be stored by the caller of the
  *  RPC as otherwise all access to the daemon will be lost!
  * @param extendedMasterKey
  *  
  *  extended_master_key is an alternative to specifying cipher_seed_mnemonic and
  *  aezeed_passphrase. Instead of deriving the master root key from the entropy
  *  of an aezeed cipher seed, the given extended master root key is used
  *  directly as the wallet's master key. This allows users to import/use a
  *  master key from another wallet. When doing so, lnd still uses its default
  *  SegWit only (BIP49/84) derivation paths and funds from custom/non-default
  *  derivation paths will not automatically appear in the on-chain wallet. Using
  *  an 'xprv' instead of an aezeed also has the disadvantage that the wallet's
  *  birthday is not known as that is an information that's only encoded in the
  *  aezeed, not the xprv. Therefore a birthday needs to be specified in
  *  extended_master_key_birthday_timestamp or a "safe" default value will be
  *  used.
  * @param extendedMasterKeyBirthdayTimestamp
  *  
  *  extended_master_key_birthday_timestamp is the optional unix timestamp in
  *  seconds to use as the wallet's birthday when using an extended master key
  *  to restore the wallet. lnd will only start scanning for funds in blocks that
  *  are after the birthday which can speed up the process significantly. If the
  *  birthday is not known, this should be left at its default value of 0 in
  *  which case lnd will start scanning from the first SegWit block (481824 on
  *  mainnet).
  * @param watchOnly
  *  
  *  watch_only is the third option of initializing a wallet: by importing
  *  account xpubs only and therefore creating a watch-only wallet that does not
  *  contain any private keys. That means the wallet won't be able to sign for
  *  any of the keys and _needs_ to be run with a remote signer that has the
  *  corresponding private keys and can serve signing RPC requests.
  * @param macaroonRootKey
  *  
  *  macaroon_root_key is an optional 32 byte macaroon root key that can be
  *  provided when initializing the wallet rather than letting lnd generate one
  *  on its own.
  */
@SerialVersionUID(0L)
final case class InitWalletRequest(
    walletPassword: _root_.com.google.protobuf.ByteString = _root_.com.google.protobuf.ByteString.EMPTY,
    cipherSeedMnemonic: _root_.scala.Seq[_root_.scala.Predef.String] = _root_.scala.Seq.empty,
    aezeedPassphrase: _root_.com.google.protobuf.ByteString = _root_.com.google.protobuf.ByteString.EMPTY,
    recoveryWindow: _root_.scala.Int = 0,
    channelBackups: _root_.scala.Option[lnrpc.ChanBackupSnapshot] = _root_.scala.None,
    statelessInit: _root_.scala.Boolean = false,
    extendedMasterKey: _root_.scala.Predef.String = "",
    extendedMasterKeyBirthdayTimestamp: org.bitcoins.core.number.UInt64 = lnrpc.InitWalletRequest._typemapper_extendedMasterKeyBirthdayTimestamp.toCustom(0L),
    watchOnly: _root_.scala.Option[lnrpc.WatchOnly] = _root_.scala.None,
    macaroonRootKey: _root_.com.google.protobuf.ByteString = _root_.com.google.protobuf.ByteString.EMPTY,
    unknownFields: _root_.scalapb.UnknownFieldSet = _root_.scalapb.UnknownFieldSet.empty
    ) extends scalapb.GeneratedMessage with scalapb.lenses.Updatable[InitWalletRequest] {
    @transient
    private[this] var __serializedSizeMemoized: _root_.scala.Int = 0
    private[this] def __computeSerializedSize(): _root_.scala.Int = {
      var __size = 0
      
      {
        val __value = walletPassword
        if (!__value.isEmpty) {
          __size += _root_.com.google.protobuf.CodedOutputStream.computeBytesSize(1, __value)
        }
      };
      cipherSeedMnemonic.foreach { __item =>
        val __value = __item
        __size += _root_.com.google.protobuf.CodedOutputStream.computeStringSize(2, __value)
      }
      
      {
        val __value = aezeedPassphrase
        if (!__value.isEmpty) {
          __size += _root_.com.google.protobuf.CodedOutputStream.computeBytesSize(3, __value)
        }
      };
      
      {
        val __value = recoveryWindow
        if (__value != 0) {
          __size += _root_.com.google.protobuf.CodedOutputStream.computeInt32Size(4, __value)
        }
      };
      if (channelBackups.isDefined) {
        val __value = channelBackups.get
        __size += 1 + _root_.com.google.protobuf.CodedOutputStream.computeUInt32SizeNoTag(__value.serializedSize) + __value.serializedSize
      };
      
      {
        val __value = statelessInit
        if (__value != false) {
          __size += _root_.com.google.protobuf.CodedOutputStream.computeBoolSize(6, __value)
        }
      };
      
      {
        val __value = extendedMasterKey
        if (!__value.isEmpty) {
          __size += _root_.com.google.protobuf.CodedOutputStream.computeStringSize(7, __value)
        }
      };
      
      {
        val __value = lnrpc.InitWalletRequest._typemapper_extendedMasterKeyBirthdayTimestamp.toBase(extendedMasterKeyBirthdayTimestamp)
        if (__value != 0L) {
          __size += _root_.com.google.protobuf.CodedOutputStream.computeUInt64Size(8, __value)
        }
      };
      if (watchOnly.isDefined) {
        val __value = watchOnly.get
        __size += 1 + _root_.com.google.protobuf.CodedOutputStream.computeUInt32SizeNoTag(__value.serializedSize) + __value.serializedSize
      };
      
      {
        val __value = macaroonRootKey
        if (!__value.isEmpty) {
          __size += _root_.com.google.protobuf.CodedOutputStream.computeBytesSize(10, __value)
        }
      };
      __size += unknownFields.serializedSize
      __size
    }
    override def serializedSize: _root_.scala.Int = {
      var __size = __serializedSizeMemoized
      if (__size == 0) {
        __size = __computeSerializedSize() + 1
        __serializedSizeMemoized = __size
      }
      __size - 1
      
    }
    def writeTo(`_output__`: _root_.com.google.protobuf.CodedOutputStream): _root_.scala.Unit = {
      {
        val __v = walletPassword
        if (!__v.isEmpty) {
          _output__.writeBytes(1, __v)
        }
      };
      cipherSeedMnemonic.foreach { __v =>
        val __m = __v
        _output__.writeString(2, __m)
      };
      {
        val __v = aezeedPassphrase
        if (!__v.isEmpty) {
          _output__.writeBytes(3, __v)
        }
      };
      {
        val __v = recoveryWindow
        if (__v != 0) {
          _output__.writeInt32(4, __v)
        }
      };
      channelBackups.foreach { __v =>
        val __m = __v
        _output__.writeTag(5, 2)
        _output__.writeUInt32NoTag(__m.serializedSize)
        __m.writeTo(_output__)
      };
      {
        val __v = statelessInit
        if (__v != false) {
          _output__.writeBool(6, __v)
        }
      };
      {
        val __v = extendedMasterKey
        if (!__v.isEmpty) {
          _output__.writeString(7, __v)
        }
      };
      {
        val __v = lnrpc.InitWalletRequest._typemapper_extendedMasterKeyBirthdayTimestamp.toBase(extendedMasterKeyBirthdayTimestamp)
        if (__v != 0L) {
          _output__.writeUInt64(8, __v)
        }
      };
      watchOnly.foreach { __v =>
        val __m = __v
        _output__.writeTag(9, 2)
        _output__.writeUInt32NoTag(__m.serializedSize)
        __m.writeTo(_output__)
      };
      {
        val __v = macaroonRootKey
        if (!__v.isEmpty) {
          _output__.writeBytes(10, __v)
        }
      };
      unknownFields.writeTo(_output__)
    }
    def withWalletPassword(__v: _root_.com.google.protobuf.ByteString): InitWalletRequest = copy(walletPassword = __v)
    def clearCipherSeedMnemonic = copy(cipherSeedMnemonic = _root_.scala.Seq.empty)
    def addCipherSeedMnemonic(__vs: _root_.scala.Predef.String *): InitWalletRequest = addAllCipherSeedMnemonic(__vs)
    def addAllCipherSeedMnemonic(__vs: Iterable[_root_.scala.Predef.String]): InitWalletRequest = copy(cipherSeedMnemonic = cipherSeedMnemonic ++ __vs)
    def withCipherSeedMnemonic(__v: _root_.scala.Seq[_root_.scala.Predef.String]): InitWalletRequest = copy(cipherSeedMnemonic = __v)
    def withAezeedPassphrase(__v: _root_.com.google.protobuf.ByteString): InitWalletRequest = copy(aezeedPassphrase = __v)
    def withRecoveryWindow(__v: _root_.scala.Int): InitWalletRequest = copy(recoveryWindow = __v)
    def getChannelBackups: lnrpc.ChanBackupSnapshot = channelBackups.getOrElse(lnrpc.ChanBackupSnapshot.defaultInstance)
    def clearChannelBackups: InitWalletRequest = copy(channelBackups = _root_.scala.None)
    def withChannelBackups(__v: lnrpc.ChanBackupSnapshot): InitWalletRequest = copy(channelBackups = Option(__v))
    def withStatelessInit(__v: _root_.scala.Boolean): InitWalletRequest = copy(statelessInit = __v)
    def withExtendedMasterKey(__v: _root_.scala.Predef.String): InitWalletRequest = copy(extendedMasterKey = __v)
    def withExtendedMasterKeyBirthdayTimestamp(__v: org.bitcoins.core.number.UInt64): InitWalletRequest = copy(extendedMasterKeyBirthdayTimestamp = __v)
    def getWatchOnly: lnrpc.WatchOnly = watchOnly.getOrElse(lnrpc.WatchOnly.defaultInstance)
    def clearWatchOnly: InitWalletRequest = copy(watchOnly = _root_.scala.None)
    def withWatchOnly(__v: lnrpc.WatchOnly): InitWalletRequest = copy(watchOnly = Option(__v))
    def withMacaroonRootKey(__v: _root_.com.google.protobuf.ByteString): InitWalletRequest = copy(macaroonRootKey = __v)
    def withUnknownFields(__v: _root_.scalapb.UnknownFieldSet) = copy(unknownFields = __v)
    def discardUnknownFields = copy(unknownFields = _root_.scalapb.UnknownFieldSet.empty)
    def getFieldByNumber(__fieldNumber: _root_.scala.Int): _root_.scala.Any = {
      (__fieldNumber: @_root_.scala.unchecked) match {
        case 1 => {
          val __t = walletPassword
          if (__t != _root_.com.google.protobuf.ByteString.EMPTY) __t else null
        }
        case 2 => cipherSeedMnemonic
        case 3 => {
          val __t = aezeedPassphrase
          if (__t != _root_.com.google.protobuf.ByteString.EMPTY) __t else null
        }
        case 4 => {
          val __t = recoveryWindow
          if (__t != 0) __t else null
        }
        case 5 => channelBackups.orNull
        case 6 => {
          val __t = statelessInit
          if (__t != false) __t else null
        }
        case 7 => {
          val __t = extendedMasterKey
          if (__t != "") __t else null
        }
        case 8 => {
          val __t = lnrpc.InitWalletRequest._typemapper_extendedMasterKeyBirthdayTimestamp.toBase(extendedMasterKeyBirthdayTimestamp)
          if (__t != 0L) __t else null
        }
        case 9 => watchOnly.orNull
        case 10 => {
          val __t = macaroonRootKey
          if (__t != _root_.com.google.protobuf.ByteString.EMPTY) __t else null
        }
      }
    }
    def getField(__field: _root_.scalapb.descriptors.FieldDescriptor): _root_.scalapb.descriptors.PValue = {
      _root_.scala.Predef.require(__field.containingMessage eq companion.scalaDescriptor)
      (__field.number: @_root_.scala.unchecked) match {
        case 1 => _root_.scalapb.descriptors.PByteString(walletPassword)
        case 2 => _root_.scalapb.descriptors.PRepeated(cipherSeedMnemonic.iterator.map(_root_.scalapb.descriptors.PString(_)).toVector)
        case 3 => _root_.scalapb.descriptors.PByteString(aezeedPassphrase)
        case 4 => _root_.scalapb.descriptors.PInt(recoveryWindow)
        case 5 => channelBackups.map(_.toPMessage).getOrElse(_root_.scalapb.descriptors.PEmpty)
        case 6 => _root_.scalapb.descriptors.PBoolean(statelessInit)
        case 7 => _root_.scalapb.descriptors.PString(extendedMasterKey)
        case 8 => _root_.scalapb.descriptors.PLong(lnrpc.InitWalletRequest._typemapper_extendedMasterKeyBirthdayTimestamp.toBase(extendedMasterKeyBirthdayTimestamp))
        case 9 => watchOnly.map(_.toPMessage).getOrElse(_root_.scalapb.descriptors.PEmpty)
        case 10 => _root_.scalapb.descriptors.PByteString(macaroonRootKey)
      }
    }
    def toProtoString: _root_.scala.Predef.String = _root_.scalapb.TextFormat.printToUnicodeString(this)
    def companion: lnrpc.InitWalletRequest.type = lnrpc.InitWalletRequest
    // @@protoc_insertion_point(GeneratedMessage[lnrpc.InitWalletRequest])
}

object InitWalletRequest extends scalapb.GeneratedMessageCompanion[lnrpc.InitWalletRequest] {
  implicit def messageCompanion: scalapb.GeneratedMessageCompanion[lnrpc.InitWalletRequest] = this
  def parseFrom(`_input__`: _root_.com.google.protobuf.CodedInputStream): lnrpc.InitWalletRequest = {
    var __walletPassword: _root_.com.google.protobuf.ByteString = _root_.com.google.protobuf.ByteString.EMPTY
    val __cipherSeedMnemonic: _root_.scala.collection.immutable.VectorBuilder[_root_.scala.Predef.String] = new _root_.scala.collection.immutable.VectorBuilder[_root_.scala.Predef.String]
    var __aezeedPassphrase: _root_.com.google.protobuf.ByteString = _root_.com.google.protobuf.ByteString.EMPTY
    var __recoveryWindow: _root_.scala.Int = 0
    var __channelBackups: _root_.scala.Option[lnrpc.ChanBackupSnapshot] = _root_.scala.None
    var __statelessInit: _root_.scala.Boolean = false
    var __extendedMasterKey: _root_.scala.Predef.String = ""
    var __extendedMasterKeyBirthdayTimestamp: _root_.scala.Long = 0L
    var __watchOnly: _root_.scala.Option[lnrpc.WatchOnly] = _root_.scala.None
    var __macaroonRootKey: _root_.com.google.protobuf.ByteString = _root_.com.google.protobuf.ByteString.EMPTY
    var `_unknownFields__`: _root_.scalapb.UnknownFieldSet.Builder = null
    var _done__ = false
    while (!_done__) {
      val _tag__ = _input__.readTag()
      _tag__ match {
        case 0 => _done__ = true
        case 10 =>
          __walletPassword = _input__.readBytes()
        case 18 =>
          __cipherSeedMnemonic += _input__.readStringRequireUtf8()
        case 26 =>
          __aezeedPassphrase = _input__.readBytes()
        case 32 =>
          __recoveryWindow = _input__.readInt32()
        case 42 =>
          __channelBackups = Option(__channelBackups.fold(_root_.scalapb.LiteParser.readMessage[lnrpc.ChanBackupSnapshot](_input__))(_root_.scalapb.LiteParser.readMessage(_input__, _)))
        case 48 =>
          __statelessInit = _input__.readBool()
        case 58 =>
          __extendedMasterKey = _input__.readStringRequireUtf8()
        case 64 =>
          __extendedMasterKeyBirthdayTimestamp = _input__.readUInt64()
        case 74 =>
          __watchOnly = Option(__watchOnly.fold(_root_.scalapb.LiteParser.readMessage[lnrpc.WatchOnly](_input__))(_root_.scalapb.LiteParser.readMessage(_input__, _)))
        case 82 =>
          __macaroonRootKey = _input__.readBytes()
        case tag =>
          if (_unknownFields__ == null) {
            _unknownFields__ = new _root_.scalapb.UnknownFieldSet.Builder()
          }
          _unknownFields__.parseField(tag, _input__)
      }
    }
    lnrpc.InitWalletRequest(
        walletPassword = __walletPassword,
        cipherSeedMnemonic = __cipherSeedMnemonic.result(),
        aezeedPassphrase = __aezeedPassphrase,
        recoveryWindow = __recoveryWindow,
        channelBackups = __channelBackups,
        statelessInit = __statelessInit,
        extendedMasterKey = __extendedMasterKey,
        extendedMasterKeyBirthdayTimestamp = lnrpc.InitWalletRequest._typemapper_extendedMasterKeyBirthdayTimestamp.toCustom(__extendedMasterKeyBirthdayTimestamp),
        watchOnly = __watchOnly,
        macaroonRootKey = __macaroonRootKey,
        unknownFields = if (_unknownFields__ == null) _root_.scalapb.UnknownFieldSet.empty else _unknownFields__.result()
    )
  }
  implicit def messageReads: _root_.scalapb.descriptors.Reads[lnrpc.InitWalletRequest] = _root_.scalapb.descriptors.Reads{
    case _root_.scalapb.descriptors.PMessage(__fieldsMap) =>
      _root_.scala.Predef.require(__fieldsMap.keys.forall(_.containingMessage eq scalaDescriptor), "FieldDescriptor does not match message type.")
      lnrpc.InitWalletRequest(
        walletPassword = __fieldsMap.get(scalaDescriptor.findFieldByNumber(1).get).map(_.as[_root_.com.google.protobuf.ByteString]).getOrElse(_root_.com.google.protobuf.ByteString.EMPTY),
        cipherSeedMnemonic = __fieldsMap.get(scalaDescriptor.findFieldByNumber(2).get).map(_.as[_root_.scala.Seq[_root_.scala.Predef.String]]).getOrElse(_root_.scala.Seq.empty),
        aezeedPassphrase = __fieldsMap.get(scalaDescriptor.findFieldByNumber(3).get).map(_.as[_root_.com.google.protobuf.ByteString]).getOrElse(_root_.com.google.protobuf.ByteString.EMPTY),
        recoveryWindow = __fieldsMap.get(scalaDescriptor.findFieldByNumber(4).get).map(_.as[_root_.scala.Int]).getOrElse(0),
        channelBackups = __fieldsMap.get(scalaDescriptor.findFieldByNumber(5).get).flatMap(_.as[_root_.scala.Option[lnrpc.ChanBackupSnapshot]]),
        statelessInit = __fieldsMap.get(scalaDescriptor.findFieldByNumber(6).get).map(_.as[_root_.scala.Boolean]).getOrElse(false),
        extendedMasterKey = __fieldsMap.get(scalaDescriptor.findFieldByNumber(7).get).map(_.as[_root_.scala.Predef.String]).getOrElse(""),
        extendedMasterKeyBirthdayTimestamp = lnrpc.InitWalletRequest._typemapper_extendedMasterKeyBirthdayTimestamp.toCustom(__fieldsMap.get(scalaDescriptor.findFieldByNumber(8).get).map(_.as[_root_.scala.Long]).getOrElse(0L)),
        watchOnly = __fieldsMap.get(scalaDescriptor.findFieldByNumber(9).get).flatMap(_.as[_root_.scala.Option[lnrpc.WatchOnly]]),
        macaroonRootKey = __fieldsMap.get(scalaDescriptor.findFieldByNumber(10).get).map(_.as[_root_.com.google.protobuf.ByteString]).getOrElse(_root_.com.google.protobuf.ByteString.EMPTY)
      )
    case _ => throw new RuntimeException("Expected PMessage")
  }
  def javaDescriptor: _root_.com.google.protobuf.Descriptors.Descriptor = WalletunlockerProto.javaDescriptor.getMessageTypes().get(2)
  def scalaDescriptor: _root_.scalapb.descriptors.Descriptor = WalletunlockerProto.scalaDescriptor.messages(2)
  def messageCompanionForFieldNumber(__number: _root_.scala.Int): _root_.scalapb.GeneratedMessageCompanion[_] = {
    var __out: _root_.scalapb.GeneratedMessageCompanion[_] = null
    (__number: @_root_.scala.unchecked) match {
      case 5 => __out = lnrpc.ChanBackupSnapshot
      case 9 => __out = lnrpc.WatchOnly
    }
    __out
  }
  lazy val nestedMessagesCompanions: Seq[_root_.scalapb.GeneratedMessageCompanion[_ <: _root_.scalapb.GeneratedMessage]] = Seq.empty
  def enumCompanionForFieldNumber(__fieldNumber: _root_.scala.Int): _root_.scalapb.GeneratedEnumCompanion[_] = throw new MatchError(__fieldNumber)
  lazy val defaultInstance = lnrpc.InitWalletRequest(
    walletPassword = _root_.com.google.protobuf.ByteString.EMPTY,
    cipherSeedMnemonic = _root_.scala.Seq.empty,
    aezeedPassphrase = _root_.com.google.protobuf.ByteString.EMPTY,
    recoveryWindow = 0,
    channelBackups = _root_.scala.None,
    statelessInit = false,
    extendedMasterKey = "",
    extendedMasterKeyBirthdayTimestamp = lnrpc.InitWalletRequest._typemapper_extendedMasterKeyBirthdayTimestamp.toCustom(0L),
    watchOnly = _root_.scala.None,
    macaroonRootKey = _root_.com.google.protobuf.ByteString.EMPTY
  )
  implicit class InitWalletRequestLens[UpperPB](_l: _root_.scalapb.lenses.Lens[UpperPB, lnrpc.InitWalletRequest]) extends _root_.scalapb.lenses.ObjectLens[UpperPB, lnrpc.InitWalletRequest](_l) {
    def walletPassword: _root_.scalapb.lenses.Lens[UpperPB, _root_.com.google.protobuf.ByteString] = field(_.walletPassword)((c_, f_) => c_.copy(walletPassword = f_))
    def cipherSeedMnemonic: _root_.scalapb.lenses.Lens[UpperPB, _root_.scala.Seq[_root_.scala.Predef.String]] = field(_.cipherSeedMnemonic)((c_, f_) => c_.copy(cipherSeedMnemonic = f_))
    def aezeedPassphrase: _root_.scalapb.lenses.Lens[UpperPB, _root_.com.google.protobuf.ByteString] = field(_.aezeedPassphrase)((c_, f_) => c_.copy(aezeedPassphrase = f_))
    def recoveryWindow: _root_.scalapb.lenses.Lens[UpperPB, _root_.scala.Int] = field(_.recoveryWindow)((c_, f_) => c_.copy(recoveryWindow = f_))
    def channelBackups: _root_.scalapb.lenses.Lens[UpperPB, lnrpc.ChanBackupSnapshot] = field(_.getChannelBackups)((c_, f_) => c_.copy(channelBackups = Option(f_)))
    def optionalChannelBackups: _root_.scalapb.lenses.Lens[UpperPB, _root_.scala.Option[lnrpc.ChanBackupSnapshot]] = field(_.channelBackups)((c_, f_) => c_.copy(channelBackups = f_))
    def statelessInit: _root_.scalapb.lenses.Lens[UpperPB, _root_.scala.Boolean] = field(_.statelessInit)((c_, f_) => c_.copy(statelessInit = f_))
    def extendedMasterKey: _root_.scalapb.lenses.Lens[UpperPB, _root_.scala.Predef.String] = field(_.extendedMasterKey)((c_, f_) => c_.copy(extendedMasterKey = f_))
    def extendedMasterKeyBirthdayTimestamp: _root_.scalapb.lenses.Lens[UpperPB, org.bitcoins.core.number.UInt64] = field(_.extendedMasterKeyBirthdayTimestamp)((c_, f_) => c_.copy(extendedMasterKeyBirthdayTimestamp = f_))
    def watchOnly: _root_.scalapb.lenses.Lens[UpperPB, lnrpc.WatchOnly] = field(_.getWatchOnly)((c_, f_) => c_.copy(watchOnly = Option(f_)))
    def optionalWatchOnly: _root_.scalapb.lenses.Lens[UpperPB, _root_.scala.Option[lnrpc.WatchOnly]] = field(_.watchOnly)((c_, f_) => c_.copy(watchOnly = f_))
    def macaroonRootKey: _root_.scalapb.lenses.Lens[UpperPB, _root_.com.google.protobuf.ByteString] = field(_.macaroonRootKey)((c_, f_) => c_.copy(macaroonRootKey = f_))
  }
  final val WALLET_PASSWORD_FIELD_NUMBER = 1
  final val CIPHER_SEED_MNEMONIC_FIELD_NUMBER = 2
  final val AEZEED_PASSPHRASE_FIELD_NUMBER = 3
  final val RECOVERY_WINDOW_FIELD_NUMBER = 4
  final val CHANNEL_BACKUPS_FIELD_NUMBER = 5
  final val STATELESS_INIT_FIELD_NUMBER = 6
  final val EXTENDED_MASTER_KEY_FIELD_NUMBER = 7
  final val EXTENDED_MASTER_KEY_BIRTHDAY_TIMESTAMP_FIELD_NUMBER = 8
  final val WATCH_ONLY_FIELD_NUMBER = 9
  final val MACAROON_ROOT_KEY_FIELD_NUMBER = 10
  @transient
  private[lnrpc] val _typemapper_extendedMasterKeyBirthdayTimestamp: _root_.scalapb.TypeMapper[_root_.scala.Long, org.bitcoins.core.number.UInt64] = implicitly[_root_.scalapb.TypeMapper[_root_.scala.Long, org.bitcoins.core.number.UInt64]]
  def of(
    walletPassword: _root_.com.google.protobuf.ByteString,
    cipherSeedMnemonic: _root_.scala.Seq[_root_.scala.Predef.String],
    aezeedPassphrase: _root_.com.google.protobuf.ByteString,
    recoveryWindow: _root_.scala.Int,
    channelBackups: _root_.scala.Option[lnrpc.ChanBackupSnapshot],
    statelessInit: _root_.scala.Boolean,
    extendedMasterKey: _root_.scala.Predef.String,
    extendedMasterKeyBirthdayTimestamp: org.bitcoins.core.number.UInt64,
    watchOnly: _root_.scala.Option[lnrpc.WatchOnly],
    macaroonRootKey: _root_.com.google.protobuf.ByteString
  ): _root_.lnrpc.InitWalletRequest = _root_.lnrpc.InitWalletRequest(
    walletPassword,
    cipherSeedMnemonic,
    aezeedPassphrase,
    recoveryWindow,
    channelBackups,
    statelessInit,
    extendedMasterKey,
    extendedMasterKeyBirthdayTimestamp,
    watchOnly,
    macaroonRootKey
  )
  // @@protoc_insertion_point(GeneratedMessageCompanion[lnrpc.InitWalletRequest])
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy