icostan/cryptos-ruby

View on GitHub
lib/cryptos/monero/private_view_key.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Cryptos
  module Monero
    class PrivateViewKey < Cryptos::PrivateKey
      def initialize(value)
        super value, Cryptos::EllipticCurve::Ed25519.order, true
      end
    end
  end
end