getIssuedAssets
Returns all assets that a given identity has issued on the Qubic network.
Signature
live.getIssuedAssets(identity, opts?): Promise<Result<IssuedAsset[], QubicRpcError>>Purpose
Fetch the list of assets an identity originally created. Useful for issuers who want to inspect their own token metadata.
const result = await live.getIssuedAssets(identity)
if (!result.ok) throw result.error
for (const asset of result.value) {
console.log(asset.data?.issuerInfo.assetName)
}Parameters
| Name | Type | Description |
|---|---|---|
identity | string | The issuer identity |
opts | RequestOptions | Optional per-request overrides (signal, fetch) |
Returns
Result<IssuedAsset[], QubicRpcError> — array of assets issued by the identity.