Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add ANS integration doc to nav and announce with other recent updates #7415

Merged
merged 1 commit into from
Mar 27, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion developer-docs-site/docs/concepts/accounts.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 2 additions & 0 deletions developer-docs-site/docs/guides/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
10 changes: 10 additions & 0 deletions developer-docs-site/docs/whats-new-in-docs.md
Original file line number Diff line number Diff line change
Expand Up @@ -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/).
Expand Down
7 changes: 6 additions & 1 deletion developer-docs-site/sidebars.js
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down