Skip to content

Commit 8b33864

Browse files
committed
fix: email
1 parent 3ffe6d1 commit 8b33864

File tree

544 files changed

+544
-544
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

544 files changed

+544
-544
lines changed

HEADER-GPL

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@
1414
// You should have received a copy of the GNU General Public License
1515
// along with this program. If not, see <https://www.gnu.org/licenses/>.
1616

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

crates/assets/src/asset.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
// You should have received a copy of the GNU General Public License
1515
// along with this program. If not, see <https://www.gnu.org/licenses/>.
1616

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

1919
// Exported types. This will always only re-export the latest version by
2020
// default.

crates/assets/src/chain.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
// You should have received a copy of the GNU General Public License
1515
// along with this program. If not, see <https://www.gnu.org/licenses/>.
1616

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

1919
// Exported types. This will always only re-export the latest version by
2020
// default.

crates/assets/src/errors.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
// You should have received a copy of the GNU General Public License
1515
// along with this program. If not, see <https://www.gnu.org/licenses/>.
1616

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

1919
use frame_support::sp_runtime::RuntimeDebug;
2020

crates/assets/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
// You should have received a copy of the GNU General Public License
1515
// along with this program. If not, see <https://www.gnu.org/licenses/>.
1616

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

1919
//! Library to parse the raw byte vectors into supported Asset DIDs, according
2020
//! to the spec.

crates/assets/src/v1.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
// You should have received a copy of the GNU General Public License
1515
// along with this program. If not, see <https://www.gnu.org/licenses/>.
1616

17-
// If you feel like getting in touch with us, you can do so at <hello@kilt.org>
17+
// If you feel like getting in touch with us, you can do so at <hello@kilt.io>
1818
use hex_literal::hex;
1919
use parity_scale_codec::{Decode, Encode, MaxEncodedLen};
2020
use scale_info::TypeInfo;

crates/kilt-dip-primitives/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
// You should have received a copy of the GNU General Public License
1515
// along with this program. If not, see <https://www.gnu.org/licenses/>.
1616

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

1919
//! Collection of support traits, types, and functions for integrating KILT as
2020
//! an identity provider following the Decentralized Identity Provider (DIP)

crates/kilt-dip-primitives/src/merkle_proofs/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
// You should have received a copy of the GNU General Public License
1515
// along with this program. If not, see <https://www.gnu.org/licenses/>.
1616

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

1919
pub mod v0;
2020

crates/kilt-dip-primitives/src/merkle_proofs/v0/dip_subject_state/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
// You should have received a copy of the GNU General Public License
1515
// along with this program. If not, see <https://www.gnu.org/licenses/>.
1616

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

1919
use did::{
2020
did_details::{DidPublicKey, DidPublicKeyDetails},

crates/kilt-dip-primitives/src/merkle_proofs/v0/dip_subject_state/tests.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
// You should have received a copy of the GNU General Public License
1515
// along with this program. If not, see <https://www.gnu.org/licenses/>.
1616

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

1919
mod dip_revealed_details_and_unverified_did_signature {
2020
use frame_support::{assert_err, assert_ok};

crates/kilt-dip-primitives/src/merkle_proofs/v0/error.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
// You should have received a copy of the GNU General Public License
1515
// along with this program. If not, see <https://www.gnu.org/licenses/>.
1616

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

1919
use scale_info::TypeInfo;
2020

crates/kilt-dip-primitives/src/merkle_proofs/v0/input_common.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
// You should have received a copy of the GNU General Public License
1515
// along with this program. If not, see <https://www.gnu.org/licenses/>.
1616

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

1919
use did::DidSignature;
2020
use parity_scale_codec::{Decode, Encode};

crates/kilt-dip-primitives/src/merkle_proofs/v0/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
// You should have received a copy of the GNU General Public License
1515
// along with this program. If not, see <https://www.gnu.org/licenses/>.
1616

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

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

crates/kilt-dip-primitives/src/merkle_proofs/v0/output_common.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
// You should have received a copy of the GNU General Public License
1515
// along with this program. If not, see <https://www.gnu.org/licenses/>.
1616

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

1919
use did::{did_details::DidPublicKeyDetails, DidVerificationKeyRelationship};
2020
use parity_scale_codec::{Decode, Encode, MaxEncodedLen};

crates/kilt-dip-primitives/src/merkle_proofs/v0/provider_state/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
// You should have received a copy of the GNU General Public License
1515
// along with this program. If not, see <https://www.gnu.org/licenses/>.
1616

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

1919
use frame_support::ensure;
2020
use pallet_dip_provider::IdentityCommitmentOf;

crates/kilt-dip-primitives/src/merkle_proofs/v0/provider_state/tests.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
// You should have received a copy of the GNU General Public License
1515
// along with this program. If not, see <https://www.gnu.org/licenses/>.
1616

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

1919
// These test cases are, for now, the same as the ones in
2020
// [`super::relay_state::relay_dip_did_proof_with_verified_relay_state_root`],

crates/kilt-dip-primitives/src/merkle_proofs/v0/relay_state/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
// You should have received a copy of the GNU General Public License
1515
// along with this program. If not, see <https://www.gnu.org/licenses/>.
1616

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

1919
use parity_scale_codec::{Codec, Decode, Encode};
2020
use scale_info::TypeInfo;

crates/kilt-dip-primitives/src/merkle_proofs/v0/relay_state/tests.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
// You should have received a copy of the GNU General Public License
1515
// along with this program. If not, see <https://www.gnu.org/licenses/>.
1616

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

1919
mod relay_did_dip_proof {
2020
use frame_support::assert_err;

crates/kilt-dip-primitives/src/state_proofs/error.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
// You should have received a copy of the GNU General Public License
1515
// along with this program. If not, see <https://www.gnu.org/licenses/>.
1616

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

1919
use scale_info::TypeInfo;
2020

crates/kilt-dip-primitives/src/state_proofs/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
// You should have received a copy of the GNU General Public License
1515
// along with this program. If not, see <https://www.gnu.org/licenses/>.
1616

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

1919
use parity_scale_codec::Decode;
2020
use sp_runtime::traits::Hash;

crates/kilt-dip-primitives/src/state_proofs/substrate_no_std_port.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
// You should have received a copy of the GNU General Public License
1515
// along with this program. If not, see <https://www.gnu.org/licenses/>.
1616

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

1919
use hash_db::EMPTY_PREFIX;
2020
use parity_scale_codec::Codec;

crates/kilt-dip-primitives/src/traits.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
// You should have received a copy of the GNU General Public License
1515
// along with this program. If not, see <https://www.gnu.org/licenses/>.
1616

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

1919
use sp_core::H256;
2020
use sp_runtime::traits::{CheckedAdd, One, Zero};

crates/kilt-dip-primitives/src/utils.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
// You should have received a copy of the GNU General Public License
1515
// along with this program. If not, see <https://www.gnu.org/licenses/>.
1616

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

1919
/// The output of a type implementing the [`sp_runtime::traits::Hash`] trait.
2020
pub type OutputOf<Hasher> = <Hasher as sp_runtime::traits::Hash>::Output;

crates/kilt-dip-primitives/src/verifier/errors.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
// You should have received a copy of the GNU General Public License
1515
// along with this program. If not, see <https://www.gnu.org/licenses/>.
1616

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

1919
use sp_std::fmt::Debug;
2020

crates/kilt-dip-primitives/src/verifier/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
// You should have received a copy of the GNU General Public License
1515
// along with this program. If not, see <https://www.gnu.org/licenses/>.
1616

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

1919
mod errors;
2020

crates/kilt-dip-primitives/src/verifier/parachain/error.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
// You should have received a copy of the GNU General Public License
1515
// along with this program. If not, see <https://www.gnu.org/licenses/>.
1616

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

1919
use crate::Error;
2020

crates/kilt-dip-primitives/src/verifier/parachain/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
// You should have received a copy of the GNU General Public License
1515
// along with this program. If not, see <https://www.gnu.org/licenses/>.
1616

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

1919
use did::KeyIdOf;
2020
use frame_system::pallet_prelude::BlockNumberFor;

crates/kilt-dip-primitives/src/verifier/parachain/v0/mock.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
// You should have received a copy of the GNU General Public License
1515
// along with this program. If not, see <https://www.gnu.org/licenses/>.
1616

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

1919
use cumulus_pallet_parachain_system::{ParachainSetCode, RelayNumberStrictlyIncreases};
2020
use cumulus_primitives_core::{AggregateMessageOrigin, ParaId};

crates/kilt-dip-primitives/src/verifier/parachain/v0/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
// You should have received a copy of the GNU General Public License
1515
// along with this program. If not, see <https://www.gnu.org/licenses/>.
1616

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

1919
use did::KeyIdOf;
2020
use frame_system::pallet_prelude::{BlockNumberFor, HeaderFor};

crates/kilt-dip-primitives/src/verifier/parachain/v0/tests.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
// You should have received a copy of the GNU General Public License
1515
// along with this program. If not, see <https://www.gnu.org/licenses/>.
1616

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

1919
use frame_support::{assert_noop, assert_ok};
2020
use pallet_dip_consumer::traits::IdentityProofVerifier;

crates/kilt-dip-primitives/src/verifier/relaychain/error.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
// You should have received a copy of the GNU General Public License
1515
// along with this program. If not, see <https://www.gnu.org/licenses/>.
1616

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

1919
use crate::Error;
2020

crates/kilt-dip-primitives/src/verifier/relaychain/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
// You should have received a copy of the GNU General Public License
1515
// along with this program. If not, see <https://www.gnu.org/licenses/>.
1616

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

1919
use did::KeyIdOf;
2020
use frame_system::pallet_prelude::BlockNumberFor;

crates/kilt-dip-primitives/src/verifier/relaychain/v0/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
// You should have received a copy of the GNU General Public License
1515
// along with this program. If not, see <https://www.gnu.org/licenses/>.
1616

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

1919
use did::KeyIdOf;
2020
use frame_system::pallet_prelude::{BlockNumberFor, HeaderFor};

dip-template/nodes/dip-consumer/build.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
// You should have received a copy of the GNU General Public License
1515
// along with this program. If not, see <https://www.gnu.org/licenses/>.
1616

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

1919
use substrate_build_script_utils::{generate_cargo_keys, rerun_if_git_head_changed};
2020

dip-template/nodes/dip-consumer/src/chain_spec.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
// You should have received a copy of the GNU General Public License
1515
// along with this program. If not, see <https://www.gnu.org/licenses/>.
1616

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

1919
// Triggered by the `ChainSpecGroup` derive macro used for the custom chainspec
2020
// extension.

dip-template/nodes/dip-consumer/src/cli.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
// You should have received a copy of the GNU General Public License
1515
// along with this program. If not, see <https://www.gnu.org/licenses/>.
1616

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

1919
use std::path::PathBuf;
2020

dip-template/nodes/dip-consumer/src/command.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
// You should have received a copy of the GNU General Public License
1515
// along with this program. If not, see <https://www.gnu.org/licenses/>.
1616

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

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

dip-template/nodes/dip-consumer/src/main.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
// You should have received a copy of the GNU General Public License
1515
// along with this program. If not, see <https://www.gnu.org/licenses/>.
1616

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

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

dip-template/nodes/dip-consumer/src/rpc.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
// You should have received a copy of the GNU General Public License
1515
// along with this program. If not, see <https://www.gnu.org/licenses/>.
1616

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

1919
#![warn(missing_docs)]
2020

dip-template/nodes/dip-consumer/src/service.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
// You should have received a copy of the GNU General Public License
1515
// along with this program. If not, see <https://www.gnu.org/licenses/>.
1616

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

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

dip-template/nodes/dip-provider/build.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
// You should have received a copy of the GNU General Public License
1515
// along with this program. If not, see <https://www.gnu.org/licenses/>.
1616

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

1919
use substrate_build_script_utils::{generate_cargo_keys, rerun_if_git_head_changed};
2020

dip-template/nodes/dip-provider/src/chain_spec.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
// You should have received a copy of the GNU General Public License
1515
// along with this program. If not, see <https://www.gnu.org/licenses/>.
1616

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

1919
// Triggered by the `ChainSpecGroup` derive macro used for the custom chainspec
2020
// extension.

dip-template/nodes/dip-provider/src/cli.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
// You should have received a copy of the GNU General Public License
1515
// along with this program. If not, see <https://www.gnu.org/licenses/>.
1616

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

1919
use std::path::PathBuf;
2020

dip-template/nodes/dip-provider/src/command.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
// You should have received a copy of the GNU General Public License
1515
// along with this program. If not, see <https://www.gnu.org/licenses/>.
1616

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

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

0 commit comments

Comments
 (0)