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

fix: email #864

Merged
merged 1 commit into from
Feb 19, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 1 addition & 1 deletion HEADER-GPL
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.

// If you feel like getting in touch with us, you can do so at <hello@kilt.org>
// If you feel like getting in touch with us, you can do so at <hello@kilt.io>
2 changes: 1 addition & 1 deletion crates/assets/src/asset.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.

// If you feel like getting in touch with us, you can do so at <hello@kilt.org>
// If you feel like getting in touch with us, you can do so at <hello@kilt.io>

// Exported types. This will always only re-export the latest version by
// default.
Expand Down
2 changes: 1 addition & 1 deletion crates/assets/src/chain.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.

// If you feel like getting in touch with us, you can do so at <hello@kilt.org>
// If you feel like getting in touch with us, you can do so at <hello@kilt.io>

// Exported types. This will always only re-export the latest version by
// default.
Expand Down
2 changes: 1 addition & 1 deletion crates/assets/src/errors.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.

// If you feel like getting in touch with us, you can do so at <hello@kilt.org>
// If you feel like getting in touch with us, you can do so at <hello@kilt.io>

use frame_support::sp_runtime::RuntimeDebug;

Expand Down
2 changes: 1 addition & 1 deletion crates/assets/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.

// If you feel like getting in touch with us, you can do so at <hello@kilt.org>
// If you feel like getting in touch with us, you can do so at <hello@kilt.io>

//! Library to parse the raw byte vectors into supported Asset DIDs, according
//! to the spec.
Expand Down
2 changes: 1 addition & 1 deletion crates/assets/src/v1.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.

// If you feel like getting in touch with us, you can do so at <hello@kilt.org>
// If you feel like getting in touch with us, you can do so at <hello@kilt.io>
use hex_literal::hex;
use parity_scale_codec::{Decode, Encode, MaxEncodedLen};
use scale_info::TypeInfo;
Expand Down
2 changes: 1 addition & 1 deletion crates/kilt-dip-primitives/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.

// If you feel like getting in touch with us, you can do so at <hello@kilt.org>
// If you feel like getting in touch with us, you can do so at <hello@kilt.io>

//! Collection of support traits, types, and functions for integrating KILT as
//! an identity provider following the Decentralized Identity Provider (DIP)
Expand Down
2 changes: 1 addition & 1 deletion crates/kilt-dip-primitives/src/merkle_proofs/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.

// If you feel like getting in touch with us, you can do so at <hello@kilt.org>
// If you feel like getting in touch with us, you can do so at <hello@kilt.io>

pub mod v0;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.

// If you feel like getting in touch with us, you can do so at <hello@kilt.org>
// If you feel like getting in touch with us, you can do so at <hello@kilt.io>

use did::{
did_details::{DidPublicKey, DidPublicKeyDetails},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.

// If you feel like getting in touch with us, you can do so at <hello@kilt.org>
// If you feel like getting in touch with us, you can do so at <hello@kilt.io>

mod dip_revealed_details_and_unverified_did_signature {
use frame_support::{assert_err, assert_ok};
Expand Down
2 changes: 1 addition & 1 deletion crates/kilt-dip-primitives/src/merkle_proofs/v0/error.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.

// If you feel like getting in touch with us, you can do so at <hello@kilt.org>
// If you feel like getting in touch with us, you can do so at <hello@kilt.io>

use scale_info::TypeInfo;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.

// If you feel like getting in touch with us, you can do so at <hello@kilt.org>
// If you feel like getting in touch with us, you can do so at <hello@kilt.io>

use did::DidSignature;
use parity_scale_codec::{Decode, Encode};
Expand Down
2 changes: 1 addition & 1 deletion crates/kilt-dip-primitives/src/merkle_proofs/v0/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.

// If you feel like getting in touch with us, you can do so at <hello@kilt.org>
// If you feel like getting in touch with us, you can do so at <hello@kilt.io>

//! Module to deal with cross-chain Merkle proof as generated by the KILT chain.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.

// If you feel like getting in touch with us, you can do so at <hello@kilt.org>
// If you feel like getting in touch with us, you can do so at <hello@kilt.io>

use did::{did_details::DidPublicKeyDetails, DidVerificationKeyRelationship};
use parity_scale_codec::{Decode, Encode, MaxEncodedLen};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.

// If you feel like getting in touch with us, you can do so at <hello@kilt.org>
// If you feel like getting in touch with us, you can do so at <hello@kilt.io>

use frame_support::ensure;
use pallet_dip_provider::IdentityCommitmentOf;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.

// If you feel like getting in touch with us, you can do so at <hello@kilt.org>
// If you feel like getting in touch with us, you can do so at <hello@kilt.io>

// These test cases are, for now, the same as the ones in
// [`super::relay_state::relay_dip_did_proof_with_verified_relay_state_root`],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.

// If you feel like getting in touch with us, you can do so at <hello@kilt.org>
// If you feel like getting in touch with us, you can do so at <hello@kilt.io>

use parity_scale_codec::{Codec, Decode, Encode};
use scale_info::TypeInfo;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.

// If you feel like getting in touch with us, you can do so at <hello@kilt.org>
// If you feel like getting in touch with us, you can do so at <hello@kilt.io>

mod relay_did_dip_proof {
use frame_support::assert_err;
Expand Down
2 changes: 1 addition & 1 deletion crates/kilt-dip-primitives/src/state_proofs/error.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.

// If you feel like getting in touch with us, you can do so at <hello@kilt.org>
// If you feel like getting in touch with us, you can do so at <hello@kilt.io>

use scale_info::TypeInfo;

Expand Down
2 changes: 1 addition & 1 deletion crates/kilt-dip-primitives/src/state_proofs/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.

// If you feel like getting in touch with us, you can do so at <hello@kilt.org>
// If you feel like getting in touch with us, you can do so at <hello@kilt.io>

use parity_scale_codec::Decode;
use sp_runtime::traits::Hash;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.

// If you feel like getting in touch with us, you can do so at <hello@kilt.org>
// If you feel like getting in touch with us, you can do so at <hello@kilt.io>

use hash_db::EMPTY_PREFIX;
use parity_scale_codec::Codec;
Expand Down
2 changes: 1 addition & 1 deletion crates/kilt-dip-primitives/src/traits.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.

// If you feel like getting in touch with us, you can do so at <hello@kilt.org>
// If you feel like getting in touch with us, you can do so at <hello@kilt.io>

use sp_core::H256;
use sp_runtime::traits::{CheckedAdd, One, Zero};
Expand Down
2 changes: 1 addition & 1 deletion crates/kilt-dip-primitives/src/utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.

// If you feel like getting in touch with us, you can do so at <hello@kilt.org>
// If you feel like getting in touch with us, you can do so at <hello@kilt.io>

/// The output of a type implementing the [`sp_runtime::traits::Hash`] trait.
pub type OutputOf<Hasher> = <Hasher as sp_runtime::traits::Hash>::Output;
Expand Down
2 changes: 1 addition & 1 deletion crates/kilt-dip-primitives/src/verifier/errors.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.

// If you feel like getting in touch with us, you can do so at <hello@kilt.org>
// If you feel like getting in touch with us, you can do so at <hello@kilt.io>

use sp_std::fmt::Debug;

Expand Down
2 changes: 1 addition & 1 deletion crates/kilt-dip-primitives/src/verifier/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.

// If you feel like getting in touch with us, you can do so at <hello@kilt.org>
// If you feel like getting in touch with us, you can do so at <hello@kilt.io>

mod errors;

Expand Down
2 changes: 1 addition & 1 deletion crates/kilt-dip-primitives/src/verifier/parachain/error.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.

// If you feel like getting in touch with us, you can do so at <hello@kilt.org>
// If you feel like getting in touch with us, you can do so at <hello@kilt.io>

use crate::Error;

Expand Down
2 changes: 1 addition & 1 deletion crates/kilt-dip-primitives/src/verifier/parachain/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.

// If you feel like getting in touch with us, you can do so at <hello@kilt.org>
// If you feel like getting in touch with us, you can do so at <hello@kilt.io>

use did::KeyIdOf;
use frame_system::pallet_prelude::BlockNumberFor;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.

// If you feel like getting in touch with us, you can do so at <hello@kilt.org>
// If you feel like getting in touch with us, you can do so at <hello@kilt.io>

use cumulus_pallet_parachain_system::{ParachainSetCode, RelayNumberStrictlyIncreases};
use cumulus_primitives_core::{AggregateMessageOrigin, ParaId};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.

// If you feel like getting in touch with us, you can do so at <hello@kilt.org>
// If you feel like getting in touch with us, you can do so at <hello@kilt.io>

use did::KeyIdOf;
use frame_system::pallet_prelude::{BlockNumberFor, HeaderFor};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.

// If you feel like getting in touch with us, you can do so at <hello@kilt.org>
// If you feel like getting in touch with us, you can do so at <hello@kilt.io>

use frame_support::{assert_noop, assert_ok};
use pallet_dip_consumer::traits::IdentityProofVerifier;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.

// If you feel like getting in touch with us, you can do so at <hello@kilt.org>
// If you feel like getting in touch with us, you can do so at <hello@kilt.io>

use crate::Error;

Expand Down
2 changes: 1 addition & 1 deletion crates/kilt-dip-primitives/src/verifier/relaychain/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.

// If you feel like getting in touch with us, you can do so at <hello@kilt.org>
// If you feel like getting in touch with us, you can do so at <hello@kilt.io>

use did::KeyIdOf;
use frame_system::pallet_prelude::BlockNumberFor;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.

// If you feel like getting in touch with us, you can do so at <hello@kilt.org>
// If you feel like getting in touch with us, you can do so at <hello@kilt.io>

use did::KeyIdOf;
use frame_system::pallet_prelude::{BlockNumberFor, HeaderFor};
Expand Down
2 changes: 1 addition & 1 deletion dip-template/nodes/dip-consumer/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.

// If you feel like getting in touch with us, you can do so at <hello@kilt.org>
// If you feel like getting in touch with us, you can do so at <hello@kilt.io>

use substrate_build_script_utils::{generate_cargo_keys, rerun_if_git_head_changed};

Expand Down
2 changes: 1 addition & 1 deletion dip-template/nodes/dip-consumer/src/chain_spec.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.

// If you feel like getting in touch with us, you can do so at <hello@kilt.org>
// If you feel like getting in touch with us, you can do so at <hello@kilt.io>

// Triggered by the `ChainSpecGroup` derive macro used for the custom chainspec
// extension.
Expand Down
2 changes: 1 addition & 1 deletion dip-template/nodes/dip-consumer/src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.

// If you feel like getting in touch with us, you can do so at <hello@kilt.org>
// If you feel like getting in touch with us, you can do so at <hello@kilt.io>

use std::path::PathBuf;

Expand Down
2 changes: 1 addition & 1 deletion dip-template/nodes/dip-consumer/src/command.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.

// If you feel like getting in touch with us, you can do so at <hello@kilt.org>
// If you feel like getting in touch with us, you can do so at <hello@kilt.io>

use std::{fs::create_dir_all, iter::once, net::SocketAddr};

Expand Down
2 changes: 1 addition & 1 deletion dip-template/nodes/dip-consumer/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.

// If you feel like getting in touch with us, you can do so at <hello@kilt.org>
// If you feel like getting in touch with us, you can do so at <hello@kilt.io>

//! KILT Decentralized Identity Provider (DIP) consumer CLI.

Expand Down
2 changes: 1 addition & 1 deletion dip-template/nodes/dip-consumer/src/rpc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.

// If you feel like getting in touch with us, you can do so at <hello@kilt.org>
// If you feel like getting in touch with us, you can do so at <hello@kilt.io>

#![warn(missing_docs)]

Expand Down
2 changes: 1 addition & 1 deletion dip-template/nodes/dip-consumer/src/service.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.

// If you feel like getting in touch with us, you can do so at <hello@kilt.org>
// If you feel like getting in touch with us, you can do so at <hello@kilt.io>

use std::{sync::Arc, time::Duration};

Expand Down
2 changes: 1 addition & 1 deletion dip-template/nodes/dip-provider/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.

// If you feel like getting in touch with us, you can do so at <hello@kilt.org>
// If you feel like getting in touch with us, you can do so at <hello@kilt.io>

use substrate_build_script_utils::{generate_cargo_keys, rerun_if_git_head_changed};

Expand Down
2 changes: 1 addition & 1 deletion dip-template/nodes/dip-provider/src/chain_spec.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.

// If you feel like getting in touch with us, you can do so at <hello@kilt.org>
// If you feel like getting in touch with us, you can do so at <hello@kilt.io>

// Triggered by the `ChainSpecGroup` derive macro used for the custom chainspec
// extension.
Expand Down
2 changes: 1 addition & 1 deletion dip-template/nodes/dip-provider/src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.

// If you feel like getting in touch with us, you can do so at <hello@kilt.org>
// If you feel like getting in touch with us, you can do so at <hello@kilt.io>

use std::path::PathBuf;

Expand Down
2 changes: 1 addition & 1 deletion dip-template/nodes/dip-provider/src/command.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.

// If you feel like getting in touch with us, you can do so at <hello@kilt.org>
// If you feel like getting in touch with us, you can do so at <hello@kilt.io>

use std::{fs::create_dir_all, iter::once, net::SocketAddr};

Expand Down
Loading
Loading