Your First Fungible Asset
diff --git a/apps/nextra/pages/en/build/sdks/ts-sdk.mdx b/apps/nextra/pages/en/build/sdks/ts-sdk.mdx
index bbaa42667..cd702eca0 100644
--- a/apps/nextra/pages/en/build/sdks/ts-sdk.mdx
+++ b/apps/nextra/pages/en/build/sdks/ts-sdk.mdx
@@ -6,7 +6,7 @@ import { RemoteCodeblock, permalinkFetch, Cards, Card } from '@components/index'
export async function getStaticProps() {
return await permalinkFetch([
- 'https://github.com/aptos-labs/aptos-ts-sdk/blob/bcde1e3af2f09615015c774fb0c2f5206377346e/examples/typescript/simple_transfer.ts#L77-L91'
+ simple_transfer
])
}
@@ -14,25 +14,19 @@ export async function getStaticProps() {
The TypeScript SDK allows you to connect, explore, and interact on the Aptos blockchain. You can use it to request data, send transactions, set up test environments, and more!
+
```bash npm2yarn
npm i @aptos-labs/ts-sdk
```
diff --git a/apps/nextra/pages/en/developer-platforms/contribute/setup/SEO.mdx b/apps/nextra/pages/en/developer-platforms/contribute/setup/SEO.mdx
index 9eaccbd3a..e8bc4d4e9 100644
--- a/apps/nextra/pages/en/developer-platforms/contribute/setup/SEO.mdx
+++ b/apps/nextra/pages/en/developer-platforms/contribute/setup/SEO.mdx
@@ -99,4 +99,3 @@ Copy all of these and replace the existing files in `public/favicon`
### Customizing Open Graph
To customize the Open Graph configuration, see `theme.config.tsx`.
-
diff --git a/apps/nextra/pages/en/network/blockchain/node-networks-sync.mdx b/apps/nextra/pages/en/network/blockchain/node-networks-sync.mdx
index e9ed9a378..2eac93e4e 100755
--- a/apps/nextra/pages/en/network/blockchain/node-networks-sync.mdx
+++ b/apps/nextra/pages/en/network/blockchain/node-networks-sync.mdx
@@ -6,7 +6,7 @@ title: "Node Networks and Sync"
Validator nodes and fullnodes form a hierarchical structure with validator nodes at the root and fullnodes everywhere else. The Aptos blockchain distinguishes two types of fullnodes: validator fullnodes and public fullnodes. Validator fullnodes connect directly to validator nodes and offer scalability alongside DDoS mitigation. Public fullnodes connect to validator fullnodes (or other public fullnodes) to gain low-latency access to the Aptos network.
-![v-fn-network.svg](/docs/v-fn-network.svg)
+![v-fn-network.svg](/apps/nextra/public/docs/v-fn-network.svg)
## Node types
diff --git a/apps/nextra/pages/en/network/blockchain/resources.mdx b/apps/nextra/pages/en/network/blockchain/resources.mdx
index 841cb8659..ac61a97d4 100644
--- a/apps/nextra/pages/en/network/blockchain/resources.mdx
+++ b/apps/nextra/pages/en/network/blockchain/resources.mdx
@@ -9,7 +9,7 @@ On Aptos, on-chain state is organized into resources and modules. These are then
## Resources vs Instances
-Move modules define struct definitions. Struct definitions may include the abilities such as `key` or `store`. Resources are struct instance with The `key` ability that are stored in global storage or directly in an account. The `store` ability allows struct instances to be stored within resources. An example here is how the APT coin is stored: CoinStore is the resource that contains the APT coin, while the Coin itself is an instance:
+Move modules define struct definitions. Struct definitions may include the abilities such as `key` or `store`. Resources are struct instances with the `key` ability that are stored in global storage or directly in an account. The `store` ability allows struct instances to be stored within resources. An example here is how the APT coin is stored: CoinStore is the resource that contains the APT coin, while the Coin itself is an instance:
```move
/// A holder of a specific coin type and associated event handles.