Skip to content

Latest commit

 

History

History

project

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 

Start your project here

Clone near-contract-template to your local

git clone https://github.com/dantenetwork/near-contract-template

Create a New project

cargo new --lib <your project name>

Add protocol_sdk library into Cargo.toml, like following:

protocol_sdk = { path = "./near-contract-template/protocol_sdk"}

This will be published on crates.io later.

Add near library into Cargo.toml, like following:

near-sdk = "4.0.0-pre.7"

More details