Skip to content

Commit

Permalink
rename Yatima -> Argument
Browse files Browse the repository at this point in the history
  • Loading branch information
huitseeker committed Aug 2, 2024
1 parent 94d07a0 commit 192c9f2
Show file tree
Hide file tree
Showing 92 changed files with 92 additions and 92 deletions.
2 changes: 1 addition & 1 deletion aptos/aptos-programs/build.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) Yatima, Inc.
// Copyright (c) Argument Computer Corporation
// SPDX-License-Identifier: Apache-2.0

use glob::glob;
Expand Down
2 changes: 1 addition & 1 deletion aptos/aptos-programs/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) Yatima, Inc.
// Copyright (c) Argument Computer Corporation
// SPDX-License-Identifier: Apache-2.0

pub const INCLUSION_PROGRAM: &[u8] = include_bytes!("../artifacts/inclusion-program");
Expand Down
2 changes: 1 addition & 1 deletion aptos/core/src/aptos_test_utils/error.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) Yatima, Inc.
// Copyright (c) Argument Computer Corporation
// SPDX-License-Identifier: Apache-2.0

use thiserror::Error;
Expand Down
2 changes: 1 addition & 1 deletion aptos/core/src/aptos_test_utils/mod.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) Yatima, Inc.
// Copyright (c) Argument Computer Corporation
// SPDX-License-Identifier: Apache-2.0

mod error;
Expand Down
2 changes: 1 addition & 1 deletion aptos/core/src/aptos_test_utils/wrapper.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) Yatima, Inc.
// Copyright (c) Argument Computer Corporation
// SPDX-License-Identifier: Apache-2.0

//! This module provides a wrapper around the Aptos execution layer.
Expand Down
2 changes: 1 addition & 1 deletion aptos/core/src/crypto/error.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) Yatima, Inc.
// Copyright (c) Argument Computer Corporation
// SPDX-License-Identifier: Apache-2.0

use thiserror::Error;
Expand Down
2 changes: 1 addition & 1 deletion aptos/core/src/crypto/hash.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) Yatima, Inc.
// Copyright (c) Argument Computer Corporation
// SPDX-License-Identifier: Apache-2.0

//! # Crypto Hash Module
Expand Down
2 changes: 1 addition & 1 deletion aptos/core/src/crypto/mod.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) Yatima, Inc.
// Copyright (c) Argument Computer Corporation
// SPDX-License-Identifier: Apache-2.0

//! # Cryptographic Utilities for the Aptos Light Client
Expand Down
2 changes: 1 addition & 1 deletion aptos/core/src/crypto/sig.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) Yatima, Inc.
// Copyright (c) Argument Computer Corporation
// SPDX-License-Identifier: Apache-2.0

//! # Crypto Signature Module
Expand Down
2 changes: 1 addition & 1 deletion aptos/core/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) Yatima, Inc.
// Copyright (c) Argument Computer Corporation
// SPDX-License-Identifier: Apache-2.0

//! Core library for the Aptos light client.
Expand Down
2 changes: 1 addition & 1 deletion aptos/core/src/merkle/mod.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) Yatima, Inc.
// Copyright (c) Argument Computer Corporation
// SPDX-License-Identifier: Apache-2.0

//! # Merkle Tree Module
Expand Down
2 changes: 1 addition & 1 deletion aptos/core/src/merkle/node.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) Yatima, Inc.
// Copyright (c) Argument Computer Corporation
// SPDX-License-Identifier: Apache-2.0

//! # Merkle Node Module
Expand Down
2 changes: 1 addition & 1 deletion aptos/core/src/merkle/sparse_proof.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) Yatima, Inc.
// Copyright (c) Argument Computer Corporation
// SPDX-License-Identifier: Apache-2.0

//! # Sparse Merkle Proof Module
Expand Down
2 changes: 1 addition & 1 deletion aptos/core/src/merkle/transaction_proof.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) Yatima, Inc.
// Copyright (c) Argument Computer Corporation
// SPDX-License-Identifier: Apache-2.0

//! # Transaction Proof Module
Expand Down
2 changes: 1 addition & 1 deletion aptos/core/src/types/block_info.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) Yatima, Inc.
// Copyright (c) Argument Computer Corporation
// SPDX-License-Identifier: Apache-2.0

//! # Block Info Module
Expand Down
2 changes: 1 addition & 1 deletion aptos/core/src/types/epoch_state.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) Yatima, Inc.
// Copyright (c) Argument Computer Corporation
// SPDX-License-Identifier: Apache-2.0

//! # Epoch State Module
Expand Down
2 changes: 1 addition & 1 deletion aptos/core/src/types/error.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) Yatima, Inc.
// Copyright (c) Argument Computer Corporation
// SPDX-License-Identifier: Apache-2.0

use thiserror::Error;
Expand Down
2 changes: 1 addition & 1 deletion aptos/core/src/types/ledger_info.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) Yatima, Inc.
// Copyright (c) Argument Computer Corporation
// SPDX-License-Identifier: Apache-2.0

//! This module defines LedgerInfo and LedgerInfoWithSignatures structs which are used to
Expand Down
2 changes: 1 addition & 1 deletion aptos/core/src/types/mod.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) Yatima, Inc.
// Copyright (c) Argument Computer Corporation
// SPDX-License-Identifier: Apache-2.0

//! # Types Module
Expand Down
2 changes: 1 addition & 1 deletion aptos/core/src/types/transaction.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) Yatima, Inc.
// Copyright (c) Argument Computer Corporation
// SPDX-License-Identifier: Apache-2.0

//! # Transaction Module
Expand Down
2 changes: 1 addition & 1 deletion aptos/core/src/types/trusted_state.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) Yatima, Inc.
// Copyright (c) Argument Computer Corporation
// SPDX-License-Identifier: Apache-2.0

//! # Trusted State Module
Expand Down
2 changes: 1 addition & 1 deletion aptos/core/src/types/utils.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) Yatima, Inc.
// Copyright (c) Argument Computer Corporation
// SPDX-License-Identifier: Apache-2.0

use anyhow::{anyhow, Result};
Expand Down
2 changes: 1 addition & 1 deletion aptos/core/src/types/validator.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) Yatima, Inc.
// Copyright (c) Argument Computer Corporation
// SPDX-License-Identifier: Apache-2.0

// SPDX-License-Identifier: Apache-2.0
Expand Down
2 changes: 1 addition & 1 deletion aptos/core/src/types/waypoint.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) Yatima, Inc.
// Copyright (c) Argument Computer Corporation
// SPDX-License-Identifier: Apache-2.0

//! # Waypoint Module
Expand Down
2 changes: 1 addition & 1 deletion aptos/light-client/benches/e2e.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) Yatima, Inc.
// Copyright (c) Argument Computer Corporation
// SPDX-License-Identifier: Apache-2.0

//! # Benchmark Test for Aptos Light Client
Expand Down
2 changes: 1 addition & 1 deletion aptos/light-client/benches/epoch_change.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) Yatima, Inc.
// Copyright (c) Argument Computer Corporation
// SPDX-License-Identifier: Apache-2.0

//! # Benchmark Test for Aptos Light Client Epoch Transition
Expand Down
2 changes: 1 addition & 1 deletion aptos/light-client/benches/inclusion.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) Yatima, Inc.
// Copyright (c) Argument Computer Corporation
// SPDX-License-Identifier: Apache-2.0

//! # Benchmark Test for Account Inclusion Proving and Verification
Expand Down
2 changes: 1 addition & 1 deletion aptos/light-client/benches/sig.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) Yatima, Inc.
// Copyright (c) Argument Computer Corporation
// SPDX-License-Identifier: Apache-2.0

use aptos_lc_core::aptos_test_utils::wrapper::AptosWrapper;
Expand Down
2 changes: 1 addition & 1 deletion aptos/light-client/src/epoch_change.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) Yatima, Inc.
// Copyright (c) Argument Computer Corporation
// SPDX-License-Identifier: Apache-2.0

use anyhow::Result;
Expand Down
2 changes: 1 addition & 1 deletion aptos/light-client/src/error.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) Yatima, Inc.
// Copyright (c) Argument Computer Corporation
// SPDX-License-Identifier: Apache-2.0

use thiserror::Error;
Expand Down
2 changes: 1 addition & 1 deletion aptos/light-client/src/inclusion.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) Yatima, Inc.
// Copyright (c) Argument Computer Corporation
// SPDX-License-Identifier: Apache-2.0

use anyhow::Result;
Expand Down
2 changes: 1 addition & 1 deletion aptos/light-client/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) Yatima, Inc.
// Copyright (c) Argument Computer Corporation
// SPDX-License-Identifier: Apache-2.0

pub mod epoch_change;
Expand Down
2 changes: 1 addition & 1 deletion aptos/light-client/src/sig.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) Yatima, Inc.
// Copyright (c) Argument Computer Corporation
// SPDX-License-Identifier: Apache-2.0

use crate::error::LightClientError;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) Yatima, Inc.
// Copyright (c) Argument Computer Corporation
// SPDX-License-Identifier: Apache-2.0

#![no_main]
Expand Down
2 changes: 1 addition & 1 deletion aptos/programs/epoch-change/src/main.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) Yatima, Inc.
// Copyright (c) Argument Computer Corporation
// SPDX-License-Identifier: Apache-2.0

#![no_main]
Expand Down
2 changes: 1 addition & 1 deletion aptos/programs/inclusion/src/main.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) Yatima, Inc.
// Copyright (c) Argument Computer Corporation
// SPDX-License-Identifier: Apache-2.0

#![no_main]
Expand Down
2 changes: 1 addition & 1 deletion aptos/proof-server/benches/proof_server.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) Yatima, Inc.
// Copyright (c) Argument Computer Corporation
// SPDX-License-Identifier: Apache-2.0

use anyhow::anyhow;
Expand Down
2 changes: 1 addition & 1 deletion aptos/proof-server/src/bin/client.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) Yatima, Inc.
// Copyright (c) Argument Computer Corporation
// SPDX-License-Identifier: Apache-2.0

//! # Client
Expand Down
2 changes: 1 addition & 1 deletion aptos/proof-server/src/bin/server_primary.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) Yatima, Inc.
// Copyright (c) Argument Computer Corporation
// SPDX-License-Identifier: Apache-2.0

//! # Primary server
Expand Down
2 changes: 1 addition & 1 deletion aptos/proof-server/src/bin/server_secondary.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) Yatima, Inc.
// Copyright (c) Argument Computer Corporation
// SPDX-License-Identifier: Apache-2.0

//! # Server secondary
Expand Down
2 changes: 1 addition & 1 deletion aptos/proof-server/src/error.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) Yatima, Inc.
// Copyright (c) Argument Computer Corporation
// SPDX-License-Identifier: Apache-2.0

use aptos_lc_core::crypto::hash::HashValue;
Expand Down
2 changes: 1 addition & 1 deletion aptos/proof-server/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) Yatima, Inc.
// Copyright (c) Argument Computer Corporation
// SPDX-License-Identifier: Apache-2.0

//! # Proof Server
Expand Down
2 changes: 1 addition & 1 deletion aptos/proof-server/src/types/aptos.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) Yatima, Inc.
// Copyright (c) Argument Computer Corporation
// SPDX-License-Identifier: Apache-2.0

use crate::types::proof_server::{EpochChangeData, InclusionData};
Expand Down
2 changes: 1 addition & 1 deletion aptos/proof-server/src/types/mod.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) Yatima, Inc.
// Copyright (c) Argument Computer Corporation
// SPDX-License-Identifier: Apache-2.0

pub mod aptos;
Expand Down
2 changes: 1 addition & 1 deletion aptos/proof-server/src/types/proof_server.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) Yatima, Inc.
// Copyright (c) Argument Computer Corporation
// SPDX-License-Identifier: Apache-2.0

use aptos_lc::inclusion::{
Expand Down
2 changes: 1 addition & 1 deletion aptos/proof-server/src/utils.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) Yatima, Inc.
// Copyright (c) Argument Computer Corporation
// SPDX-License-Identifier: Apache-2.0

use anyhow::Result;
Expand Down
2 changes: 1 addition & 1 deletion ethereum/core/src/crypto/error.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) Yatima, Inc.
// Copyright (c) Argument Computer Corporation
// SPDX-License-Identifier: APACHE-2.0

use thiserror::Error;
Expand Down
2 changes: 1 addition & 1 deletion ethereum/core/src/crypto/hash.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) Yatima, Inc.
// Copyright (c) Argument Computer Corporation
// SPDX-License-Identifier: APACHE-2.0

use crate::crypto::error::CryptoError;
Expand Down
2 changes: 1 addition & 1 deletion ethereum/core/src/crypto/mod.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) Yatima, Inc.
// Copyright (c) Argument Computer Corporation
// SPDX-License-Identifier: APACHE-2.0

//! # Cryptographic Utilities for the Ethereum Light Client
Expand Down
2 changes: 1 addition & 1 deletion ethereum/core/src/crypto/sig.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) Yatima, Inc.
// Copyright (c) Argument Computer Corporation
// SPDX-License-Identifier: APACHE-2.0

use crate::crypto::error::CryptoError;
Expand Down
2 changes: 1 addition & 1 deletion ethereum/core/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) Yatima, Inc.
// Copyright (c) Argument Computer Corporation
// SPDX-License-Identifier: APACHE-2.0

//! # Ethereum Light Client Core
Expand Down
2 changes: 1 addition & 1 deletion ethereum/core/src/merkle/error.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) Yatima, Inc.
// Copyright (c) Argument Computer Corporation
// SPDX-License-Identifier: Apache-2.0

use thiserror::Error;
Expand Down
2 changes: 1 addition & 1 deletion ethereum/core/src/merkle/mod.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) Yatima, Inc.
// Copyright (c) Argument Computer Corporation
// SPDX-License-Identifier: Apache-2.0

//! # Merkle Tree
Expand Down
2 changes: 1 addition & 1 deletion ethereum/core/src/merkle/storage_proofs.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) Yatima, Inc.
// Copyright (c) Argument Computer Corporation
// SPDX-License-Identifier: Apache-2.0

//! # Storage Proofs
Expand Down
2 changes: 1 addition & 1 deletion ethereum/core/src/merkle/update_proofs.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) Yatima, Inc.
// Copyright (c) Argument Computer Corporation
// SPDX-License-Identifier: Apache-2.0

use crate::crypto::hash::{sha2_hash_concat, HashValue};
Expand Down
2 changes: 1 addition & 1 deletion ethereum/core/src/merkle/utils/mod.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) Yatima, Inc.
// Copyright (c) Argument Computer Corporation
// SPDX-License-Identifier: Apache-2.0

use crate::crypto::error::CryptoError;
Expand Down
2 changes: 1 addition & 1 deletion ethereum/core/src/merkle/utils/rlp.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) Yatima, Inc.
// Copyright (c) Argument Computer Corporation
// SPDX-License-Identifier: Apache-2.0

use crate::merkle::error::RlpError;
Expand Down
2 changes: 1 addition & 1 deletion ethereum/core/src/types/block/consensus.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) Yatima, Inc.
// Copyright (c) Argument Computer Corporation
// SPDX-License-Identifier: Apache-2.0

//! # Consensus block module
Expand Down
2 changes: 1 addition & 1 deletion ethereum/core/src/types/block/execution.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) Yatima, Inc.
// Copyright (c) Argument Computer Corporation
// SPDX-License-Identifier: Apache-2.0

//! # Execution Block module
Expand Down
2 changes: 1 addition & 1 deletion ethereum/core/src/types/block/mod.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) Yatima, Inc.
// Copyright (c) Argument Computer Corporation
// SPDX-License-Identifier: Apache-2.0

//! # Block module
Expand Down
2 changes: 1 addition & 1 deletion ethereum/core/src/types/bootstrap.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) Yatima, Inc.
// Copyright (c) Argument Computer Corporation
// SPDX-License-Identifier: Apache-2.0

//! # Light Client Bootstrap
Expand Down
2 changes: 1 addition & 1 deletion ethereum/core/src/types/committee.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) Yatima, Inc.
// Copyright (c) Argument Computer Corporation
// SPDX-License-Identifier: APACHE-2.0

//! # Sync Committee module
Expand Down
2 changes: 1 addition & 1 deletion ethereum/core/src/types/error.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) Yatima, Inc.
// Copyright (c) Argument Computer Corporation
// SPDX-License-Identifier: Apache-2.0

use thiserror::Error;
Expand Down
2 changes: 1 addition & 1 deletion ethereum/core/src/types/mod.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) Yatima, Inc.
// Copyright (c) Argument Computer Corporation
// SPDX-License-Identifier: APACHE-2.0

//! # Types Module
Expand Down
2 changes: 1 addition & 1 deletion ethereum/core/src/types/signing_data.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) Yatima, Inc.
// Copyright (c) Argument Computer Corporation
// SPDX-License-Identifier: Apache-2.0

//! # Signing Data
Expand Down
2 changes: 1 addition & 1 deletion ethereum/core/src/types/store.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) Yatima, Inc.
// Copyright (c) Argument Computer Corporation
// SPDX-License-Identifier: Apache-2.0

//! # Light Client Store
Expand Down
Loading

0 comments on commit 192c9f2

Please sign in to comment.