Skip to content

Commit

Permalink
Fix RPCAsset verification object
Browse files Browse the repository at this point in the history
  • Loading branch information
danield9tqh committed Apr 16, 2024
1 parent ea6a173 commit 29fac1f
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
8 changes: 7 additions & 1 deletion content/documentation/rpc/objects/rpcAsset.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,13 @@ export type RpcAsset = {
creator: string
metadata: string
createdTransactionHash: string
verification: AssetVerification
verification: {
status: 'verified' | 'unverified' | 'unknown'
symbol?: string
decimals?: number
logoURI?: string
website?: string
}
supply?: string
symbol?: string,
decimals?: number,
Expand Down
4 changes: 3 additions & 1 deletion content/documentation/rpc/wallet/get_balance.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,9 @@ the default account will be used. If the asset is not specified, `$IRON` will be
/**
* @deprecated Please use getAsset endpoint to get this information
* */
assetVerification: AssetVerification
assetVerification: {
status: 'verified' | 'unverified' | 'unknown'
}
}
```

Expand Down

0 comments on commit 29fac1f

Please sign in to comment.