Skip to content
Open
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
6 changes: 3 additions & 3 deletions docs/content/concepts.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,9 @@ Sui introduces innovative approaches to blockchain architecture and development.
## Object Model

<Cards>
<Card title="Object Ownership" href="/concepts/object-ownership"/>
<Card title="Transfers" href="/concepts/transfers"/>
<Card title="Object and Package Versioning" href="/concepts/versioning"/>
<Card title="Object Ownership" href="/guides/developer/objects/object-ownership"/>
<Card title="Transfers" href="/guides/developer/objects/transfers"/>
<Card title="Object and Package Versioning" href="/guides/developer/objects/versioning"/>
</Cards>

## Move
Expand Down
4 changes: 2 additions & 2 deletions docs/content/concepts/architecture.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Sui is a layer 1 blockchain. Layer 1 networks consist of the following primary c

On Sui specifically, other core components include:

1. [**Objects**](/concepts/object-model), the most basic unit of storage on Sui that are addressable on-chain by unique IDs.
1. [**Objects**](/guides/developer/objects/object-model), the most basic unit of storage on Sui that are addressable on-chain by unique IDs.

1. [**Move**](/concepts/sui-move-concepts), the programming language used to create smart contracts on Sui.

Expand Down Expand Up @@ -88,7 +88,7 @@ The basic unit of storage in Sui is the object. Blocks on the chain are actually

Every object has an owner field that dictates how you can use it in transactions. Objects can be owned by an address or party, or they can be immutable, shared, or wrapped.

Learn more about the [Sui Object Model](/concepts/object-model.mdx) or [Object Ownership](/concepts/object-ownership.mdx).
Learn more about the [Sui Object Model](/guides/developer/objects/object-model.mdx) or [Object Ownership](/guides/developer/objects/object-ownership.mdx).

## Move

Expand Down
2 changes: 1 addition & 1 deletion docs/content/concepts/data-access/data-serving.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description: Overview of the types of data access mechanisms available in Sui.
keywords: [ data types, data access, data access interfaces, json RPC, custom indexers, indexers, gRPC, graphql RPC, general purpose indexer ]
---

You can access Sui network data like [Transactions](/concepts/transactions.mdx), [Checkpoints](/concepts/cryptography/system/checkpoint-verification.mdx), [Objects](/concepts/object-model.mdx), [Events](/guides/developer/sui-101/using-events.mdx), and more through the available interfaces. You can use this data in your application workflows, to analyze network behavior across applications or protocols of interest, or to perform audits on parts or the whole of the network.
You can access Sui network data like [Transactions](/concepts/transactions.mdx), [Checkpoints](/concepts/cryptography/system/checkpoint-verification.mdx), [Objects](/guides/developer/objects/object-model.mdx), [Events](/guides/developer/sui-101/using-events.mdx), and more through the available interfaces. You can use this data in your application workflows, to analyze network behavior across applications or protocols of interest, or to perform audits on parts or the whole of the network.

This document outlines the interfaces that are currently available to access the Sui network data, along with an overview of how that's gradually evolving. Refer to the following definitions for release stages mentioned in this document:

Expand Down
2 changes: 1 addition & 1 deletion docs/content/concepts/gaming.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ Sui enables more use cases with the transfer to object feature, which allows an

When an object is sent to another object, the metadata of the parent object remain the same, but its `id` has a new object. This feature can enable use cases such as on-chain wallets where a `Wallet` object is used to deposit other objects. Combining this with transfer to object can lead to complex and exciting use cases.

See [Transfer to Object](./transfers/transfer-to-object.mdx) for more details on how to effectively transfer objects to other objects on Sui.
See [Transfer to Object](/guides/developer/objects/transfers/transfer-to-object.mdx) for more details on how to effectively transfer objects to other objects on Sui.

#### Deleting assets

Expand Down
74 changes: 0 additions & 74 deletions docs/content/concepts/object-model.mdx

This file was deleted.

26 changes: 0 additions & 26 deletions docs/content/concepts/object-ownership.mdx

This file was deleted.

47 changes: 0 additions & 47 deletions docs/content/concepts/object-ownership/address-owned.mdx

This file was deleted.

46 changes: 0 additions & 46 deletions docs/content/concepts/object-ownership/party.mdx

This file was deleted.

Loading
Loading