Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Move kudos repo to the i-am-human monorepo #79

Merged
merged 26 commits into from
Sep 13, 2023
Merged
Show file tree
Hide file tree
Changes from 17 commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,5 @@ Cargo.lock

# These are backup files generated by rustfmt
**/*.rs.bk

.DS_STORE
236 changes: 202 additions & 34 deletions contracts/Cargo.lock

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

4 changes: 4 additions & 0 deletions contracts/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ members = [
"oracle",
"registry",
"soulbound-class",
"kudos",

"human_checker",
"ubi",
Expand Down Expand Up @@ -39,11 +40,14 @@ rpath = false

[workspace.dependencies]
anyhow = "1.0.71"
assert_matches = "1.5.0"
cid = "0.10.1"
ed25519-dalek = "1"
near-abi = "0.3.0"
near-contract-standards = "^4.1.1"
near-crypto = "0.17"
near-primitives = "0.17.0"
near-sandbox-utils = "0.6.2"
near-sdk = { version = "^4.1.1", features = ["unstable"] }
near-units = "0.2.0"
pretty_assertions = "1.4.0"
Expand Down
25 changes: 25 additions & 0 deletions contracts/kudos/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
[package]
name = "kudos-contract"
version = "0.1.0"
authors = [
"NDC GWG (https://near.social/#/mob.near/widget/ProfilePage?accountId=govworkinggroup.near)",
]
edition = { workspace = true }
repository = { workspace = true }
license = { workspace = true }

[lib]
crate-type = ["cdylib", "rlib"]

[dependencies]
near-sdk.workspace = true
near-contract-standards.workspace = true
cid.workspace = true

[dev-dependencies]
assert_matches.workspace = true
workspaces.workspace = true
near-sandbox-utils.workspace = true
near-units.workspace = true
tokio.workspace = true
anyhow.workspace = true
1 change: 1 addition & 0 deletions contracts/kudos/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
include ../Makefile-common.mk
Loading
Loading