-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #18 from Quest-Protocol/develop
cleanup
- Loading branch information
Showing
11 changed files
with
4,448 additions
and
843 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,12 +5,23 @@ authors = ["Near Inc <[email protected]>"] | |
edition = "2021" | ||
|
||
[lib] | ||
crate-type = ["cdylib"] | ||
resolver = "2" | ||
crate-type = ["cdylib", "rlib"] | ||
|
||
[dependencies] | ||
near-sdk = "4.1.1" | ||
serde_json = "1.0.91" | ||
uint = { version = "0.9.3", default-features = false } | ||
ed25519-dalek = "1" | ||
|
||
# integration tests | ||
[dev-dependencies] | ||
tokio = { version = "1.28.0", features = ["full"] } | ||
near-workspaces = "0.8.0" | ||
near-primitives = "0.17.0" | ||
near-units = "0.2.0" | ||
anyhow = "1.0" | ||
|
||
|
||
[profile.release] | ||
codegen-units = 1 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
use near_sdk::Gas; | ||
|
||
pub const KEYPOM_CONTRACT: &str = "v2.keypom.testnet"; | ||
pub const QUESTS_PROTOCOL_PUBLIC_KEY_STR: &str = | ||
"ed25519:FMy47jsCvi5G8KyiijH1w9qnr4GA1FGSaB8S2fK5eAfr"; | ||
pub const MIN_DROP_ID_PASSED_IN: u128 = 1_000_000_000; | ||
|
||
pub const CLAIM_REWARD_GAS: Gas = Gas(10 * Gas::ONE_TERA.0); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.