Skip to content

Commit

Permalink
Update README to reflect MRC20 and MRC721 token standards
Browse files Browse the repository at this point in the history
  • Loading branch information
Ben-Rey committed Dec 16, 2024
1 parent 46d5e7c commit e208384
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ If you're interested in learning more about Massa and its capabilities, check ou

## Fungible Token

The [Fungible Token standard implementation](smart-contracts/assembly/contracts/FT) defines a common set of rules for creating and managing Massa-based tokens that are fungible (i.e. interchangeable).
The [Fungible Token standard implementation](smart-contracts/assembly/contracts/MRC20) defines a common set of rules for creating and managing Massa-based tokens that are fungible (i.e. interchangeable).

This is MassaLabs implementation of [the ERC20](https://ethereum.org/en/developers/docs/standards/tokens/erc-20/).

## Non-Fungible Token

The [Non-Fungible Token standard implementation](smart-contracts/assembly/contracts/NFT) defines a common set of rules for creating and managing Massa-based tokens that are non-fungible (i.e. unique).
The [Non-Fungible Token standard implementation](smart-contracts/assembly/contracts/MRC721) defines a common set of rules for creating and managing Massa-based tokens that are non-fungible (i.e. unique).

This is MassaLabs implementation of [the ERC721](https://ethereum.org/en/developers/docs/standards/tokens/erc-721/).

Expand Down
8 changes: 4 additions & 4 deletions smart-contracts/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Massa Smart-contract Standards

- [fungible token](assembly/contracts/FT): implementation of the ERC20 token.
- [non-fungible token](assembly/contracts/NFT)
- [fungible token](assembly/contracts/MRC20): implementation of the ERC20 token.
- [non-fungible token](assembly/contracts/MRC721)

## Documentation

Expand All @@ -22,8 +22,8 @@ npm i @massalabs/sc-standards
```typescript
import { Args } from '@massalabs/as-types';
import { callerHasWriteAccess } from '@massalabs/massa-as-sdk';
import * as FT from '@massalabs/sc-standards/assembly/contracts/FT/index';
export * from '@massalabs/sc-standards/assembly/contracts/FT/token';
import * as FT from '@massalabs/sc-standards/assembly/contracts/MRC20/index';
export * from '@massalabs/sc-standards/assembly/contracts/MRC20/token';

/**
* This function is meant to be called only one time: when the contract is deployed.
Expand Down

0 comments on commit e208384

Please sign in to comment.