5f7b3db9a4
* Add coconut verifier structure for coconut protocol in gateway * Add endpoint for validator-api cred verification * Remove unused signature field * Register new endpoint * Improve validator-api config handling * Aggregate verif result from all apis * Simplify aggregate functions * Verify cred on apis correctly * Introduced coconut bandwidth contract to validator client * Fix rebase double import * Fix clippy on non-coconut * Add multisig contract address to validator client * Refactor Credential struct * Do bincode magic in the coconut interface * Implement serialization for credential and remove bindcode * Fix clippy and don't remove dkg * Client release funds proposal * Add wrapper for blinded serial number Also compare theta with a blinded serial number (in base 58 form) for future double spend protection. * Only post blinded serial number to blockchain * Validator api propose credential spending * Fix wallet * Gateway calls proposal creation * Query for proposal in verify coconut * Remove db from git * Verify against proposal description * Validator apis vote based on verification of cred * Fix wallet fmt * Execute the release of funds * Fix translation between token and bytes * Update CHANGELOG
31 lines
1.3 KiB
Rust
31 lines
1.3 KiB
Rust
// Copyright 2021 - Nym Technologies SA <contact@nymtech.net>
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
use crate::ValidatorDetails;
|
|
|
|
pub(crate) const BECH32_PREFIX: &str = "n";
|
|
pub const DENOM: &str = "unym";
|
|
pub const STAKE_DENOM: &str = "unyx";
|
|
|
|
pub(crate) const MIXNET_CONTRACT_ADDRESS: &str =
|
|
"n14hj2tavq8fpesdwxxcu44rty3hh90vhujrvcmstl4zr3txmfvw9sjyvg3g";
|
|
pub(crate) const VESTING_CONTRACT_ADDRESS: &str =
|
|
"n1nc5tatafv6eyq7llkr2gv50ff9e22mnf70qgjlv737ktmt4eswrq73f2nw";
|
|
pub(crate) const BANDWIDTH_CLAIM_CONTRACT_ADDRESS: &str =
|
|
"n19lc9u84cz0yz3fww5283nucc9yvr8gsjmgeul0";
|
|
pub(crate) const COCONUT_BANDWIDTH_CONTRACT_ADDRESS: &str =
|
|
"n19lc9u84cz0yz3fww5283nucc9yvr8gsjmgeul0";
|
|
pub(crate) const MULTISIG_CONTRACT_ADDRESS: &str = "n19lc9u84cz0yz3fww5283nucc9yvr8gsjmgeul0";
|
|
pub(crate) const _ETH_CONTRACT_ADDRESS: [u8; 20] =
|
|
hex_literal::hex!("0000000000000000000000000000000000000000");
|
|
pub(crate) const _ETH_ERC20_CONTRACT_ADDRESS: [u8; 20] =
|
|
hex_literal::hex!("0000000000000000000000000000000000000000");
|
|
pub(crate) const REWARDING_VALIDATOR_ADDRESS: &str = "n10yyd98e2tuwu0f7ypz9dy3hhjw7v772q6287gy";
|
|
|
|
pub(crate) fn validators() -> Vec<ValidatorDetails> {
|
|
vec![ValidatorDetails::new(
|
|
"https://rpc.nyx.nodes.guru/",
|
|
Some("https://validator.nymtech.net/api/"),
|
|
)]
|
|
}
|