Skip to content

Commit

Permalink
Adding concert contract (#494)
Browse files Browse the repository at this point in the history
  • Loading branch information
MedovTimur authored Oct 25, 2024
1 parent 4128388 commit 5c968a3
Show file tree
Hide file tree
Showing 10 changed files with 783 additions and 16 deletions.
92 changes: 76 additions & 16 deletions contracts/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions contracts/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ members = [
"car-races/car-2",
"car-races/car-3",
"car-races/wasm",
"concert/wasm",
"galactic-express",
"multisig-wallet",
"multisig-wallet/state",
Expand Down
13 changes: 13 additions & 0 deletions contracts/concert/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Sails Concert

### 🏗️ Building

```sh
cargo b -r -p "concert"
```

### ✅ Testing

```sh
cargo t -r -p "concert-app"
```
16 changes: 16 additions & 0 deletions contracts/concert/app/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
[package]
name = "concert-app"
version.workspace = true
edition.workspace = true
license.workspace = true

[dependencies]
gstd = { workspace = true, features = ["debug"] }
sails-rs = { workspace = true, features = ["gtest"] }

[dev-dependencies]
gclient.workspace = true
concert = { path = "../wasm" }
tokio = "1"
extended_vmt_wasm = { git = "https://github.com/gear-foundation/standards/"}

Loading

0 comments on commit 5c968a3

Please sign in to comment.