Class AccountCryptoProperties


  • public final class AccountCryptoProperties
    extends java.lang.Object
    Record containing account's crypto related properties.
    See Also:
    Account
    • Constructor Summary

      Constructors 
      Constructor Description
      AccountCryptoProperties​(java.lang.String address, java.lang.String directDepositAddress, java.lang.String path, java.lang.Integer nonce)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      boolean equals​(java.lang.Object obj)  
      java.lang.String getAddress()
      Account crypto address.
      java.lang.String getDirectDepositAddress()
      Account direct deposit crypto address, only applicable to custody accounts.
      java.lang.Integer getNonce()
      Ethereum account nonce if greater than 0 or null otherwise.
      java.lang.String getPath()
      Hierarchical Deterministic (HD) account derivation path.
      int hashCode()  
      java.lang.String toString()  
      • Methods inherited from class java.lang.Object

        getClass, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • AccountCryptoProperties

        public AccountCryptoProperties​(java.lang.String address,
                                       java.lang.String directDepositAddress,
                                       java.lang.String path,
                                       java.lang.Integer nonce)
    • Method Detail

      • getAddress

        public java.lang.String getAddress()
        Account crypto address.
      • getDirectDepositAddress

        public java.lang.String getDirectDepositAddress()
        Account direct deposit crypto address, only applicable to custody accounts. Should only be used to deposit funds from Zumo non-custody accounts.
      • getPath

        public java.lang.String getPath()
        Hierarchical Deterministic (HD) account derivation path.
      • getNonce

        public java.lang.Integer getNonce()
        Ethereum account nonce if greater than 0 or null otherwise.
      • equals

        public boolean equals​(java.lang.Object obj)
        Overrides:
        equals in class java.lang.Object
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class java.lang.Object
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object