MCPcopy Index your code
hub / github.com/chain/Core / Key

Class Key

sdk/java/src/main/java/com/chain/api/Asset.java:106–124  ·  view source on GitHub ↗

A class storing information about the keys associated with the asset.

Source from the content-addressed store, hash-verified

104 * A class storing information about the keys associated with the asset.
105 */
106 public static class Key {
107 /**
108 * Hex-encoded representation of the root extended public key
109 */
110 @SerializedName("root_xpub")
111 public String rootXpub;
112
113 /**
114 * The derived public key, used in the asset's issuance program.
115 */
116 @SerializedName("asset_pubkey")
117 public String assetPubkey;
118
119 /**
120 * The derivation path of the derived key.
121 */
122 @SerializedName("asset_derivation_path")
123 public String[] assetDerivationPath;
124 }
125
126 /**
127 * A paged collection of assets returned from a query.

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected