Skip to content

Commit bf9c43d

Browse files
authored
Cosmetics
1 parent dccaaad commit bf9c43d

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<h1 align="center">
2-
<code>nifty asset</code>
2+
<code>asset</code>
33
</h1>
44
<p align="center">
55
<img width="400" alt="Nifty Asset" src="https://github.com/nifty-oss/asset/assets/729235/90513ea4-ce87-41b5-88a4-008991fc73a7" />
@@ -28,11 +28,11 @@
2828
- [License](#license)
2929

3030
> [!WARNING]
31-
> `nifty asset` has not been formally audited – use in production at your own risk.
31+
> The `asset` program has not been formally audited – use in production at your own risk.
3232
3333
## Features
3434

35-
The main goal of `nifty asset` is to provide an open-source, lightweight and composable non-fungible standard on Solana. This is achieved by:
35+
The main goal of `asset` is to provide an open-source, lightweight and composable non-fungible standard on Solana. This is achieved by:
3636
- Using a **single** account to represent a digital asset.
3737
- Storing as much or as little data on-chain using optional extensions.
3838
- Efficient zero-copy de-/serialization to minimize compute units utilization.
@@ -45,11 +45,11 @@ Majority of NFT standards on Solana are built on top of SPL Token, which is main
4545

4646
Since different token standards will usually be defined in separate programs, the end result is a bloated (multiple accounts) standard – e.g., `mint`, `token` and (potentially) `metadata` accounts, in addition to SPL Token and Metadata programs. For most operations, all `5` accounts would be needed to interact with a non-fungible – and there are standards that the number of accounts is even higher.
4747

48-
`nifty asset` takes a different approach and re-imagines how non-fungibles are represented on Solana. In essense, a non-fungible asset is a unique *slab* of bytes on the blockchain identified by an address and it has an specific owner. When you transfer the "ownership" of this slab of bytes, you are changing the owner information of it. The contents of a non-fungible is as flexible as possible, given that they are "just" a slab of bytes – all data can be on-chain, or it can have "pointers" to external resources.
48+
`asset` takes a different approach and re-imagines how non-fungibles are represented on Solana. In essense, a non-fungible asset is a unique *slab* of bytes on the blockchain identified by an address and it has an specific owner. When you transfer the "ownership" of this slab of bytes, you are changing the owner information of it. The contents of a non-fungible is as flexible as possible, given that they are "just" a slab of bytes – all data can be on-chain, or it can have "pointers" to external resources.
4949

5050
## Packages
5151

52-
The packages below can be used to interact with `nifty asset` program.
52+
The packages below can be used to interact with `asset` program.
5353

5454
### JavaScript
5555
```bash
@@ -90,9 +90,9 @@ for TypeScript tests.
9090

9191
This project contains the following programs:
9292

93-
- [Asset](./programs/asset/README.md) `AssetGtQBTSgm5s91d1RAQod5JmaZiJDxqsgtqrZud73`
93+
- [`asset`](./programs/asset/README.md) `AssetGtQBTSgm5s91d1RAQod5JmaZiJDxqsgtqrZud73`
9494

95-
- [Bridge](./programs/bridge/README.md) `BridgezKrNugsZwTcyAMYba643Z93RzC2yN1Y24LwAkm`
95+
- [`bridge`](./programs/bridge/README.md) `BridgezKrNugsZwTcyAMYba643Z93RzC2yN1Y24LwAkm`
9696

9797
You will need a Rust version compatible with BPF to compile the program, currently we recommend using Rust 1.68.0.
9898

0 commit comments

Comments
 (0)