Skip to content

Commit

Permalink
Merge pull request #46 from erisprotocol/integrate-eris-amplifier
Browse files Browse the repository at this point in the history
Integrate ERIS Amplifier
  • Loading branch information
javiersuweijie authored May 28, 2024
2 parents 9f726de + 9598d4c commit e27916e
Show file tree
Hide file tree
Showing 41 changed files with 3,009 additions and 356 deletions.
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"rust-analyzer.checkOnSave.command": "clippy"
}
124 changes: 85 additions & 39 deletions Cargo.lock

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

4 changes: 3 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ members = [
[workspace.package]
description = "Alliance NFT Collection dropped to the Game of Alliance players"
authors = ["Terra Money <[email protected]>"]
version = "1.0.1"
version = "1.1.0"
edition = "2021"
license = "Apache-2.0"
repository = "https://github.com/terra-money/alliance-nft-collection"
Expand All @@ -20,11 +20,13 @@ rust-version = "1.73"
cosmwasm-std = { version = "1.4.1", features = ["stargate"] }
cosmwasm-schema = "1.4.1"
cw2 = "1.1.0"
cw20 = "1.1.0"
cw721 = { version = "0.18.0" }
cw721-base = { version = "0.18.0", features = ["library"] }
schemars = "0.8.15"
cw-storage-plus = "1.1.0"
cw-utils = "1.0.2"
cw-asset = "3.1.1"
serde = { version = "1.0.190", default-features = false, features = ["derive"] }
thiserror = "1.0.50"
terra-proto-rs = { version = "4.0.2", default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion contracts/alliance-nft-collection/.cargo/config
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
wasm = "build --release --target wasm32-unknown-unknown"
wasm-debug = "build --target wasm32-unknown-unknown"
unit-test = "test --lib"
schema = "run --example schema"
schema = "run --example schema_collection"
6 changes: 5 additions & 1 deletion contracts/alliance-nft-collection/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,11 @@ cw721-base = { workspace = true }
schemars = { workspace = true }
cw-storage-plus = { workspace = true }
cw-utils = { workspace = true }
cw-asset = { workspace = true }
serde = { workspace = true }
thiserror = { workspace = true }
terra-proto-rs = { workspace = true }
alliance-nft-packages = { workspace = true }
alliance-nft-packages = { workspace = true }

[dev-dependencies]
cw20 = { workspace = true }
Loading

0 comments on commit e27916e

Please sign in to comment.