Package money.zumo.zumokit
Class AccountCryptoProperties
- java.lang.Object
-
- money.zumo.zumokit.AccountCryptoProperties
-
public final class AccountCryptoProperties extends java.lang.ObjectRecord 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 booleanequals(java.lang.Object obj)java.lang.StringgetAddress()Account crypto address.java.lang.StringgetDirectDepositAddress()Account direct deposit crypto address, only applicable to custody accounts.java.lang.IntegergetNonce()Ethereum account nonce if greater than 0 or null otherwise.java.lang.StringgetPath()Hierarchical Deterministic (HD) account derivation path.inthashCode()java.lang.StringtoString()
-
-
-
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:
equalsin classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-