Skip to content

Commit

Permalink
re-add license headers
Browse files Browse the repository at this point in the history
  • Loading branch information
wulfraem committed Nov 22, 2024
1 parent bac9cbd commit 4cdb242
Show file tree
Hide file tree
Showing 33 changed files with 99 additions and 0 deletions.
3 changes: 3 additions & 0 deletions identity_iota_core/src/rebased/assets/asset.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright 2020-2024 IOTA Stiftung
// SPDX-License-Identifier: Apache-2.0

use std::str::FromStr as _;

use crate::rebased::client::IdentityClient;
Expand Down
3 changes: 3 additions & 0 deletions identity_iota_core/src/rebased/assets/mod.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright 2020-2024 IOTA Stiftung
// SPDX-License-Identifier: Apache-2.0

mod asset;
mod public_available_vc;

Expand Down
3 changes: 3 additions & 0 deletions identity_iota_core/src/rebased/assets/public_available_vc.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright 2020-2024 IOTA Stiftung
// SPDX-License-Identifier: Apache-2.0

use std::ops::Deref;
use std::str::FromStr;

Expand Down
3 changes: 3 additions & 0 deletions identity_iota_core/src/rebased/client/mod.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright 2020-2024 IOTA Stiftung
// SPDX-License-Identifier: Apache-2.0

mod full_client;
mod read_only;

Expand Down
3 changes: 3 additions & 0 deletions identity_iota_core/src/rebased/client/read_only.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright 2020-2024 IOTA Stiftung
// SPDX-License-Identifier: Apache-2.0

use std::future::Future;
use std::ops::Deref;
use std::pin::Pin;
Expand Down
3 changes: 3 additions & 0 deletions identity_iota_core/src/rebased/migration/multicontroller.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright 2020-2024 IOTA Stiftung
// SPDX-License-Identifier: Apache-2.0

use std::collections::HashMap;
use std::collections::HashSet;

Expand Down
3 changes: 3 additions & 0 deletions identity_iota_core/src/rebased/proposals/borrow.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright 2020-2024 IOTA Stiftung
// SPDX-License-Identifier: Apache-2.0

use std::collections::HashMap;
use std::marker::PhantomData;

Expand Down
3 changes: 3 additions & 0 deletions identity_iota_core/src/rebased/proposals/config_change.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright 2020-2024 IOTA Stiftung
// SPDX-License-Identifier: Apache-2.0

use std::collections::HashMap;
use std::collections::HashSet;
use std::marker::PhantomData;
Expand Down
3 changes: 3 additions & 0 deletions identity_iota_core/src/rebased/proposals/mod.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright 2020-2024 IOTA Stiftung
// SPDX-License-Identifier: Apache-2.0

mod borrow;
mod config_change;
mod deactive_did;
Expand Down
3 changes: 3 additions & 0 deletions identity_iota_core/src/rebased/proposals/send.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright 2020-2024 IOTA Stiftung
// SPDX-License-Identifier: Apache-2.0

use std::marker::PhantomData;
use std::ops::Deref;

Expand Down
3 changes: 3 additions & 0 deletions identity_iota_core/src/rebased/sui/mod.rs
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
// Copyright 2020-2024 IOTA Stiftung
// SPDX-License-Identifier: Apache-2.0

pub(crate) mod move_calls;
pub(crate) mod types;
3 changes: 3 additions & 0 deletions identity_iota_core/src/rebased/sui/move_calls/asset/create.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright 2020-2024 IOTA Stiftung
// SPDX-License-Identifier: Apache-2.0

use iota_sdk::types::base_types::ObjectID;
use iota_sdk::types::programmable_transaction_builder::ProgrammableTransactionBuilder;
use iota_sdk::types::transaction::Command;
Expand Down
3 changes: 3 additions & 0 deletions identity_iota_core/src/rebased/sui/move_calls/asset/delete.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright 2020-2024 IOTA Stiftung
// SPDX-License-Identifier: Apache-2.0

use iota_sdk::types::base_types::ObjectID;
use iota_sdk::types::base_types::ObjectRef;
use iota_sdk::types::programmable_transaction_builder::ProgrammableTransactionBuilder;
Expand Down
3 changes: 3 additions & 0 deletions identity_iota_core/src/rebased/sui/move_calls/asset/mod.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright 2020-2024 IOTA Stiftung
// SPDX-License-Identifier: Apache-2.0

mod create;
mod delete;
mod transfer;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright 2020-2024 IOTA Stiftung
// SPDX-License-Identifier: Apache-2.0

use iota_sdk::types::base_types::IotaAddress;
use iota_sdk::types::base_types::ObjectID;
use iota_sdk::types::base_types::ObjectRef;
Expand Down
3 changes: 3 additions & 0 deletions identity_iota_core/src/rebased/sui/move_calls/asset/update.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright 2020-2024 IOTA Stiftung
// SPDX-License-Identifier: Apache-2.0

use iota_sdk::types::base_types::ObjectID;
use iota_sdk::types::base_types::ObjectRef;
use iota_sdk::types::programmable_transaction_builder::ProgrammableTransactionBuilder;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright 2020-2024 IOTA Stiftung
// SPDX-License-Identifier: Apache-2.0

use std::collections::HashMap;

use iota_sdk::{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright 2020-2024 IOTA Stiftung
// SPDX-License-Identifier: Apache-2.0

use std::collections::HashSet;
use std::str::FromStr;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright 2020-2024 IOTA Stiftung
// SPDX-License-Identifier: Apache-2.0

use iota_sdk::types::base_types::IotaAddress;
use iota_sdk::types::base_types::ObjectID;
use iota_sdk::types::programmable_transaction_builder::ProgrammableTransactionBuilder;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright 2020-2024 IOTA Stiftung
// SPDX-License-Identifier: Apache-2.0

use iota_sdk::rpc_types::OwnedObjectRef;
use iota_sdk::types::base_types::ObjectID;
use iota_sdk::types::base_types::ObjectRef;
Expand Down
3 changes: 3 additions & 0 deletions identity_iota_core/src/rebased/sui/move_calls/identity/mod.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright 2020-2024 IOTA Stiftung
// SPDX-License-Identifier: Apache-2.0

mod borrow_asset;
mod config;
mod create;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright 2020-2024 IOTA Stiftung
// SPDX-License-Identifier: Apache-2.0

use crate::rebased::utils::MoveType;
use crate::rebased::Error;
use iota_sdk::rpc_types::OwnedObjectRef;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright 2020-2024 IOTA Stiftung
// SPDX-License-Identifier: Apache-2.0

use iota_sdk::rpc_types::OwnedObjectRef;
use iota_sdk::types::base_types::IotaAddress;
use iota_sdk::types::base_types::ObjectID;
Expand Down
3 changes: 3 additions & 0 deletions identity_iota_core/src/rebased/sui/move_calls/migration.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright 2020-2024 IOTA Stiftung
// SPDX-License-Identifier: Apache-2.0

use super::utils;
use iota_sdk::{
rpc_types::OwnedObjectRef,
Expand Down
3 changes: 3 additions & 0 deletions identity_iota_core/src/rebased/sui/move_calls/mod.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright 2020-2024 IOTA Stiftung
// SPDX-License-Identifier: Apache-2.0

/// Predefined `AuthenticatedAsset`-related PTBs.
pub(crate) mod asset;
/// Predefined `OnChainIdentity`-related PTBs.
Expand Down
3 changes: 3 additions & 0 deletions identity_iota_core/src/rebased/sui/move_calls/utils.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright 2020-2024 IOTA Stiftung
// SPDX-License-Identifier: Apache-2.0

use crate::rebased::utils::MoveType;
use crate::rebased::Error;
use iota_sdk::rpc_types::OwnedObjectRef;
Expand Down
3 changes: 3 additions & 0 deletions identity_iota_core/src/rebased/sui/types/mod.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright 2020-2024 IOTA Stiftung
// SPDX-License-Identifier: Apache-2.0

mod number;

use iota_sdk::types::base_types::ObjectID;
Expand Down
3 changes: 3 additions & 0 deletions identity_iota_core/src/rebased/sui/types/number.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright 2020-2024 IOTA Stiftung
// SPDX-License-Identifier: Apache-2.0

use serde::Deserialize;
use serde::Serialize;
use std::str::FromStr;
Expand Down
3 changes: 3 additions & 0 deletions identity_iota_core/src/rebased/transaction.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright 2020-2024 IOTA Stiftung
// SPDX-License-Identifier: Apache-2.0

use std::ops::Deref;

use async_trait::async_trait;
Expand Down
3 changes: 3 additions & 0 deletions identity_iota_core/tests/e2e/asset.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright 2020-2024 IOTA Stiftung
// SPDX-License-Identifier: Apache-2.0

use std::str::FromStr;

use crate::common::get_client as get_test_client;
Expand Down
3 changes: 3 additions & 0 deletions identity_iota_core/tests/e2e/identity.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright 2020-2024 IOTA Stiftung
// SPDX-License-Identifier: Apache-2.0

use std::str::FromStr;

use crate::common;
Expand Down
3 changes: 3 additions & 0 deletions identity_iota_core/tests/e2e/main.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright 2020-2024 IOTA Stiftung
// SPDX-License-Identifier: Apache-2.0

mod asset;
mod client;
pub mod common;
Expand Down
3 changes: 3 additions & 0 deletions identity_storage/src/storage/storage_signer.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright 2020-2024 IOTA Stiftung
// SPDX-License-Identifier: Apache-2.0

use async_trait::async_trait;
use identity_iota_core::rebased::client::IotaKeySignature;
use identity_verification::jwk::Jwk;
Expand Down

0 comments on commit 4cdb242

Please sign in to comment.