token_bound_accounts 0.3.0
A port of ERC6551 to Starknet
This repository contains the reference implementation of ERC-6551 on Starknet.
NB: This project is under active development and may undergo changes until SNIP-14 is finalized.
This proposal defines a system which assigns contract accounts to Non-fungible tokens (ERC-721s).
These accounts are referred to as token bound accounts and they allow NFTs to own assets and interact with applications, without requiring changes to existing smart contracts or infrastructure.
For more information, you could reference the original EIP proposed by Jayden Windle and Benny Giang.
This Repository contains reference implementation of:
The registry serves as a single entry point for all token bound account address queries. It has two key functions:
implementation_hash
, token_contract
, token_id
, salt
and chain_id
.
implementation_hash
, token_contract
, token_id
, salt
and chain_id
.
The accountV3
Contract provides a reference implementation for a TBA. Thanks to native account abstraction on Starknet, It's made up of different plug'n'play components. You can build your own account implementation using the available components.
You will need to have Scarb and Starknet Foundry installed on your system. Refer to the documentations below:
To use this repository, first clone it:
git clone git@github.com:horuslabsio/TBA.git
cd TBA
To build the contracts, run the command:
scarb build
To run the tests contained within the tests
folder, run the command:
snforge test
For more information on writing and running tests, refer to the Starknet-Foundry documentation
Version 0.3.0
Uploaded 2 weeks ago
Size 1.2 MB
Run the following command in your project dir
scarb add token_bound_accounts@0.3.0
Or add the following line to your Scarb.toml
token_bound_accounts = "0.3.0"
Homepage www.tbaexplorer.com/
Repository github.com/horuslabsio/TBA/blob/main/Scarb.toml
Documentation github.com/horuslabsio/TBA-SDK