Skip to content

Commit

Permalink
CIP-0054 | Fix showdown rendering by escaping HTML with <
Browse files Browse the repository at this point in the history
\< is supported by GitHub but not part of Markdown spec.
  • Loading branch information
SmaugPool committed Sep 10, 2023
1 parent e0f7239 commit d8439f9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions CIP-0054/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ The fingerprint of the current token - in the case where we're rendering a child

The content of the 721 key from the metadata json from the mint transaction of the current NFT - if we are rendering on behalf of a child NFT, this will be the metadata from the child NFT.

### cardano.nft.getTransactions( string which, paginate: Paginate = undefined ) : Promise\<Object>
### cardano.nft.getTransactions( string which, paginate: Paginate = undefined ) : Promise&lt;Object>

Errors: `APIError`, `PaginateError`

Expand All @@ -191,7 +191,7 @@ This function will return a list of transaction hashes and metadata relating to
```
For simplicity, we do not include anything other than the txHash and the metadata – since any other relevant details about the transaction can always be encoded into the metadata, there is no need to over-complicate by including other transaction data like inputs, outputs or the date of the transaction etc. That is left for a potential future extension of the API to include more full GraphQL support.

### cardano.nft.getTokens( string address, paginate: Paginate = undefined ) : Promise\<Object>
### cardano.nft.getTokens( string address, paginate: Paginate = undefined ) : Promise&lt;Object>

Errors: `APIError`, `PaginateError`

Expand All @@ -215,7 +215,7 @@ This function will return a list of the tokens held by the address specified in
}
```

### cardano.nft.getFileURL( string id = null, string fingerprint = null ) : Promise\<String>
### cardano.nft.getFileURL( string id = null, string fingerprint = null ) : Promise&lt;String>

Errors: `APIError`

Expand Down

0 comments on commit d8439f9

Please sign in to comment.