Skip to content

Commit

Permalink
v0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
just-do-halee committed Feb 23, 2023
1 parent 60572ca commit 786bb8a
Show file tree
Hide file tree
Showing 8 changed files with 992 additions and 166 deletions.
10 changes: 9 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,15 @@ crate-type = ["cdylib"]

[dependencies]
near-sdk = "4.1.1"
uint = { version = "0.9.5", default-features = false }
near-contract-standards = { version = "4.1.1", optional = true }
uint = { version = "0.9.5", optional = true }

[features]
default = ["hex", "ft", "nft"]
standards = ["near-contract-standards"]
ft = ["standards"]
nft = ["standards"]
hex = ["uint"]

[profile.release]
codegen-units = 1
Expand Down
7 changes: 3 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
# Near Rust-Contract Template

![download](https://img.shields.io/github/downloads/just-do-halee/near-contract/total)
![license](https://img.shields.io/github/license/just-do-halee/near-contract)

## How to

```shell
curl -Ss https://raw.githubusercontent.com/just-do-halee/near-contract/main/install.sh | sh
```
```shell
make # after installation
# After installation
cd near-contract
make
```
161 changes: 0 additions & 161 deletions src/cmn.rs

This file was deleted.

Loading

0 comments on commit 786bb8a

Please sign in to comment.