diff --git a/developer-docs-site/docs/concepts/accounts.md b/developer-docs-site/docs/concepts/accounts.md index 08f60dfd7a30e..389458ba49ec4 100755 --- a/developer-docs-site/docs/concepts/accounts.md +++ b/developer-docs-site/docs/concepts/accounts.md @@ -12,7 +12,7 @@ However, a resource can also be used to represent other on-chain capabilities, i Each account on the Aptos blockchain is identified by a 32-byte account address. An account can store data, and the account stores this data in resources. The initial resource is the account data itself (authentication key and sequence number). -Additional resources like currency or NFTs are added after creating the account. And you may employ the [Aptos Name Service](https://www.aptosnames.com/) to secure .apt domains key accounts and make them memorable. +Additional resources like currency or NFTs are added after creating the account. And you may employ the [Aptos Name Service](../guides/aptos-name-service-connector.md) at [www.aptosnames.com](https://www.aptosnames.com/) to secure .apt domains for key accounts to make them memorable and unique. Different from other blockchains where accounts and addresses are implicit, accounts on Aptos are explicit and need to be created before they can hold resources and modules. The account can be created explicitly or implicitly by transferring Aptos tokens (APT) there. diff --git a/developer-docs-site/docs/guides/aptos-name-service-connector.md b/developer-docs-site/docs/guides/aptos-name-service-connector.md index 5489a28956594..87714e312151a 100644 --- a/developer-docs-site/docs/guides/aptos-name-service-connector.md +++ b/developer-docs-site/docs/guides/aptos-name-service-connector.md @@ -1,5 +1,5 @@ --- -title: "Aptos Names Service UI Package" +title: "Integrate Aptos Names Service" id: "aptos-names-service-package" --- # Integrate with Aptos Names Service UI Package diff --git a/developer-docs-site/docs/guides/index.md b/developer-docs-site/docs/guides/index.md index 49580b155721a..bcc02107f6b71 100644 --- a/developer-docs-site/docs/guides/index.md +++ b/developer-docs-site/docs/guides/index.md @@ -11,5 +11,7 @@ Follow these guides to work with the Aptos blockchain. - ### [Index Aptos Data](indexing.md) - ### [Create a Signed Transaction](sign-a-transaction.md) - ### [Use Resource Accounts in Apps](resource-accounts.md) +- ### [Integrate with Aptos Names Service](aptos-name-service-connector.md) +- ### [Integrate with the Aptos Faucet](./system-integrators-guide.md#integrating-with-the-faucet) - ### [Adhere to Wallet Standard](wallet-standard.md) - ### [Handle Errors in Aptos](handle-aptos-errors.md) diff --git a/developer-docs-site/docs/whats-new-in-docs.md b/developer-docs-site/docs/whats-new-in-docs.md index 9945e36c08835..91d1081f4b966 100644 --- a/developer-docs-site/docs/whats-new-in-docs.md +++ b/developer-docs-site/docs/whats-new-in-docs.md @@ -7,6 +7,16 @@ slug: "whats-new-in-docs" This page shows the key updates to the developer documentation on this site. Note, this site is built from the `main` upstream branch of GitHub and so therefore reflects the latest changes to Aptos. If you have checked out [another branch](https://github.com/aptos-labs/aptos-core/branches) to use a [specific network](guides/system-integrators-guide.md#choose-a-network), the code may not yet have all of the features described here. +## 24 March 2023 + +- Added instructions to [Integrate with Aptos Names Service UI Package](./guides/aptos-name-service-connector.md) that offers developers a customizable button and modal to enable users to search for and mint Aptos names directly from their website. + +## 23 March 2023 + +- Included an [Aptos Faucet integration](./guides/system-integrators-guide.md#integrating-with-the-faucet) section for SDK and wallet developers in the **Integrate with the Aptos Blockchain** system integrators guide. + +- Migrated the [Aptos Move package upgrade](./guides/move-guides/book/package-upgrades.md) documentation to a page in the Aptos Move Book. + ## 21 March 2023 - Published beta [Delegation Pool Operations](./nodes/validator-node/operator/delegation-pool-operations.md) instructions for validator operators, written by [Raluca Popescu (dorinbwr](https://github.com/dorinbwr) ) of [Bware Labs](https://bwarelabs.com/). diff --git a/developer-docs-site/sidebars.js b/developer-docs-site/sidebars.js index 702cbe8a5b4ee..6beb8cd766831 100644 --- a/developer-docs-site/sidebars.js +++ b/developer-docs-site/sidebars.js @@ -120,7 +120,12 @@ const sidebars = { link: { type: "doc", id: "guides/index" }, collapsible: true, collapsed: true, - items: ["guides/sign-a-transaction", "guides/resource-accounts", "guides/handle-aptos-errors"], + items: [ + "guides/sign-a-transaction", + "guides/resource-accounts", + "guides/aptos-names-service-package", + "guides/handle-aptos-errors", + ], }, { type: "category",