Skip to content

Commit

Permalink
Merge pull request #93 from cardano-foundation/content-fixes
Browse files Browse the repository at this point in the history
Content fixes
  • Loading branch information
katomm committed Jul 5, 2021
2 parents d9834d6 + 2893610 commit a052b0d
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 16 deletions.
4 changes: 2 additions & 2 deletions docs/get-started/dandelion-apis.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ These are the links to github repositories and a brief description for all of th
- [rosetta-api][gh-cardano-rosetta]: use this API to integrate your application with multiple blockchains in a simpler, faster, and more reliable way
[gh-hasura-graphql]: https://github.com/input-output-hk/cardano-graphql
[gh-cardano-rest]: https://github.com/input-output-hk/cardano-rest
[gh-ogmios]: https://github.com/KtorZ/cardano-ogmios
[gh-ogmios]: https://github.com/cardanosolutions/ogmios
[gh-cardano-db-sync]: https://github.com/input-output-hk/cardano-db-sync
[gh-cardano-rosetta]: https://github.com/input-output-hk/cardano-rosetta
[gh-postgrest]: https://github.com/PostgREST/postgrest
Expand Down Expand Up @@ -230,7 +230,7 @@ Useful links:
- [Link][gimbalabs-ogmios-api] to Gimbalabs's endpoints information and official documentation
- [Link][ogmios-official-doc] to project's official documentation
[gimbalabs-ogmios-api]: https://gimbalabs.com/dandelionapis/ogmios-api
[ogmios-official-doc]: https://ktorz.github.io/cardano-ogmios/
[ogmios-official-doc]: https://github.com/cardanosolutions/ogmios

Usage examples:

Expand Down
2 changes: 1 addition & 1 deletion docs/get-started/smart-contracts-signpost.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ The Cardano Developer Portal covers everything that is available on the mainnet.

## Get started with Marlowe
Marlowe is the domain-specific language for financial contracts on Cardano.
Take a look at the [Marlowe Tutorial](https://alpha.marlowe.iohkdev.io/tutorial/index.html) if you want to learn Marlowe from the beginning or dive straight into the [Marlowe Playground](https://alpha.marlowe.iohkdev.io/).
Take a look at the [Marlowe Tutorial](https://alpha.marlowe.iohkdev.io/doc/marlowe/tutorials/index.html) if you want to learn Marlowe from the beginning or dive straight into the [Marlowe Playground](https://alpha.marlowe.iohkdev.io/).

Talk to others about [Marlowe on the Cardano Forum](https://forum.cardano.org/c/developers/cardano-marlowe/149) or if you prefer Telegram there is a dedicated [Marlowe Telegram Group](https://t.me/IOHK_Marlowe).

Expand Down
15 changes: 8 additions & 7 deletions docs/native-tokens/cardano-token-registry.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,14 @@ Each entry contains the following information:

**Name** | **Required/Optional**|**Description**
--- | --- | ---
`subject` | Required | The base16-encoded policyId + base16-encoded assetName
`policy` | Required | The script that hashes to the policyId
`name` | Required | A human-readable name for the subject, suitable for use in an interface
`description` | Required | A human-readable description for the subject, suitable for use in an interface
`ticker` | Optional | A human-readable ticker name for the subject, suitable for use in an interface
`url` | Optional | A HTTPS URL (web page relating to the token)
`logo` | Optional | A PNG image file as a byte string
`subject` | Required | The base16-encoded policyId + base16-encoded assetName.
`policy` | Required | The script that hashes to the policyId.
`name` | Required | A human-readable name for the subject, suitable for use in an interface.
`description` | Required | A human-readable description for the subject, suitable for use in an interface.
`ticker` | Optional | A human-readable ticker name for the subject, suitable for use in an interface.
`url` | Optional | A HTTPS URL (web page relating to the token).
`logo` | Optional | A PNG image file as a byte string.
`decimals` | Optional | Recommended value for decimal places. Native tokens are represented as whole numbers (numbers without decimals) on the blockchain.

For a comprehensive description of all fields and how to generate them, please see [offchain-metadata-tools](https://github.com/input-output-hk/offchain-metadata-tools).

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,6 @@ import TabItem from '@theme/TabItem';

Before creating a metadata transaction, you will need to install the [cardano-node](https://github.com/input-output-hk/cardano-node#cardano-node-overview) and to follow instructions on how to launch [cardano-CLI](https://github.com/input-output-hk/cardano-node/tree/master/cardano-cli#cardano-cli).

:::note
Please check the [cardano-node](https://docs.cardano.org/projects/cardano-node/en/latest/) and [cardano-cli](https://docs.cardano.org/projects/cardano-node/en/latest/reference/cardano-node-cli-reference.html) documentation for more details.
:::

## Metadata Structure

The metadata structure is represented as a map from:
Expand Down
2 changes: 1 addition & 1 deletion docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ module.exports = {

// Meta Image that will be used for your meta tag, in particular og:image and twitter:image
// Relative to your site's "static" directory, cannot be SVGs.
image: "mg/og-developer-portal.png",
image: "img/og-developer-portal.png",
metadatas: [{ name: "twitter:card", content: "summary" }],

// Algolia Search
Expand Down
7 changes: 6 additions & 1 deletion searchconfig.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
{
"index_name": "developer-portal",
"start_urls": [
"https://staging-dev-portal.netlify.app/docs",
"https://staging-dev-portal.netlify.app/docs/get-started/",
"https://staging-dev-portal.netlify.app/docs/integrate-cardano/",
"https://staging-dev-portal.netlify.app/docs/transaction-metadata/",
"https://staging-dev-portal.netlify.app/docs/native-tokens/",
"https://staging-dev-portal.netlify.app/docs/fund-your-project/",
"https://staging-dev-portal.netlify.app/docs/operate-a-stake-pool/",
"https://staging-dev-portal.netlify.app/tools",
"https://staging-dev-portal.netlify.app/showcase",
"https://staging-dev-portal.netlify.app/blog/"
Expand Down

0 comments on commit a052b0d

Please sign in to comment.