Skip to content

Commit

Permalink
Merge branch '2.0' into pr/qrayven/889
Browse files Browse the repository at this point in the history
  • Loading branch information
qrayven committed Aug 4, 2023
2 parents 8d2b52b + 46578d4 commit e7125ec
Show file tree
Hide file tree
Showing 27 changed files with 1,412 additions and 278 deletions.
30 changes: 15 additions & 15 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,21 +51,21 @@ jobs:
sudo apt-get update
sudo apt-get install libudev-dev libusb-1.0-0-dev
# A first run without features to detect feature related issues.
- name: Run Clippy
uses: actions-rs/clippy-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: --all-targets -- --deny warnings
name: Clippy Results for the Rust Core

# The second run will continue from where the first left off.
- name: Run Clippy
uses: actions-rs/clippy-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: --all-features --all-targets -- --deny warnings
name: Clippy Results for the Rust Core
# # A first run without features to detect feature related issues.
# - name: Run Clippy
# uses: actions-rs/clippy-check@v1
# with:
# token: ${{ secrets.GITHUB_TOKEN }}
# args: --all-targets -- --deny warnings
# name: Clippy Results for the Rust Core

# # The second run will continue from where the first left off.
# - name: Run Clippy
# uses: actions-rs/clippy-check@v1
# with:
# token: ${{ secrets.GITHUB_TOKEN }}
# args: --all-features --all-targets -- --deny warnings
# name: Clippy Results for the Rust Core

check-unused-deps:
name: Check Unused Dependencies
Expand Down
5 changes: 4 additions & 1 deletion bindings/core/src/method_handler/client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,10 @@ pub(crate) async fn call_client_method_internal(client: &Client, method: ClientM
ClientMethod::GetProtocolParameters => Response::ProtocolParameters(client.get_protocol_parameters().await?),
ClientMethod::PostBlockPayload { payload } => {
let block = client
.finish_block_builder(
.finish_basic_block_builder(
todo!("issuer id"),
todo!("block signature"),

Check warning on line 178 in bindings/core/src/method_handler/client.rs

View workflow job for this annotation

GitHub Actions / crate (ubuntu-latest)

unreachable expression

Check warning on line 178 in bindings/core/src/method_handler/client.rs

View workflow job for this annotation

GitHub Actions / crate (windows-latest)

unreachable expression
todo!("issuing time"),
None,
Some(Payload::try_from_dto_with_params(
payload,
Expand Down
1 change: 1 addition & 0 deletions sdk/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ bech32 = { version = "0.9.1", default-features = false }
bitflags = { version = "2.3.3", default-features = false }
derive_more = { version = "0.99.17", default-features = false, features = [
"from",
"from_str",
"as_ref",
"deref",
"deref_mut",
Expand Down
10 changes: 9 additions & 1 deletion sdk/examples/client/block/00_block_no_payload.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,15 @@ async fn main() -> Result<()> {
let client = Client::builder().with_node(&node_url)?.finish().await?;

// Create and send the block.
let block = client.finish_block_builder(None, None).await?;
let block = client
.finish_basic_block_builder(
todo!("issuer id"),
todo!("block signature"),
todo!("issuing time"),
None,
None,
)
.await?;

println!("{block:#?}");

Expand Down
10 changes: 9 additions & 1 deletion sdk/examples/client/block/01_block_confirmation_time.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,15 @@ async fn main() -> Result<()> {
let client = Client::builder().with_node(&node_url)?.finish().await?;

// Create and send a block.
let block = client.finish_block_builder(None, None).await?;
let block = client
.finish_basic_block_builder(
todo!("issuer id"),
todo!("block signature"),
todo!("issuing time"),
None,
None,
)
.await?;
let block_id = block.id();

println!("{block:#?}");
Expand Down
8 changes: 7 additions & 1 deletion sdk/examples/client/block/02_block_custom_parents.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,13 @@ async fn main() -> Result<()> {

// Create and send the block with custom parents.
let block = client
.finish_block_builder(Some(StrongParents::from_vec(tips)?), None)
.finish_basic_block_builder(
todo!("issuer id"),
todo!("block signature"),
todo!("issuing time"),
Some(StrongParents::from_vec(tips)?),
None,
)
.await?;

println!("{block:#?}");
Expand Down
8 changes: 7 additions & 1 deletion sdk/examples/client/block/03_block_custom_payload.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,13 @@ async fn main() -> Result<()> {

// Create and send the block with the custom payload.
let block = client
.finish_block_builder(None, Some(Payload::from(tagged_data_payload)))
.finish_basic_block_builder(
todo!("issuer id"),
todo!("block signature"),
todo!("issuing time"),
None,
Some(Payload::from(tagged_data_payload)),
)
.await?;

println!("{block:#?}");
Expand Down
5 changes: 4 additions & 1 deletion sdk/examples/client/block/04_block_tagged_data.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,10 @@ async fn main() -> Result<()> {

// Create and send the block with tag and data.
let block = client
.finish_block_builder(
.finish_basic_block_builder(
todo!("issuer id"),
todo!("block signature"),
todo!("issuing time"),
None,
Some(Payload::TaggedData(Box::new(
TaggedDataPayload::new(
Expand Down
10 changes: 9 additions & 1 deletion sdk/examples/client/node_api_core/04_post_block.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,15 @@ async fn main() -> Result<()> {
let client = Client::builder().with_node(&node_url)?.finish().await?;

// Create the block.
let block = client.finish_block_builder(None, None).await?;
let block = client
.finish_basic_block_builder(
todo!("issuer id"),
todo!("block signature"),
todo!("issuing time"),
None,
None,
)
.await?;
// Post the block.
let block_id = client.post_block(&block).await?;

Expand Down
10 changes: 9 additions & 1 deletion sdk/examples/client/node_api_core/05_post_block_raw.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,15 @@ async fn main() -> Result<()> {
let client = Client::builder().with_node(&node_url)?.finish().await?;

// Create the block.
let block = client.finish_block_builder(None, None).await?;
let block = client
.finish_basic_block_builder(
todo!("issuer id"),
todo!("block signature"),
todo!("issuing time"),
None,
None,
)
.await?;
// Post the block as raw bytes.
let block_id = client.post_block_raw(&block).await?;

Expand Down
37 changes: 34 additions & 3 deletions sdk/src/client/api/block_builder/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,20 +7,51 @@ pub mod transaction;
pub use self::transaction::verify_semantic;
use crate::{
client::{ClientInner, Result},
types::block::{parent::StrongParents, payload::Payload, Block, BlockBuilder},
types::block::{core::Block, parent::StrongParents, payload::Payload, signature::Ed25519Signature, IssuerId},
};

impl ClientInner {
pub async fn finish_block_builder(
pub async fn finish_basic_block_builder(
&self,
issuer_id: IssuerId,
signature: Ed25519Signature,
issuing_time: Option<u64>,
strong_parents: Option<StrongParents>,
payload: Option<Payload>,
) -> Result<Block> {
// Use tips as strong parents if none are provided.
let strong_parents = match strong_parents {
Some(strong_parents) => strong_parents,
None => StrongParents::from_vec(self.get_tips().await?)?,
};

Ok(BlockBuilder::new(strong_parents).with_payload(payload).finish()?)
let issuing_time = issuing_time.unwrap_or_else(|| {
#[cfg(feature = "std")]
let issuing_time = std::time::SystemTime::now()
.duration_since(std::time::UNIX_EPOCH)
.expect("Time went backwards")
.as_nanos() as u64;
// TODO no_std way to have a nanosecond timestamp
// https://github.com/iotaledger/iota-sdk/issues/647
#[cfg(not(feature = "std"))]
let issuing_time = 0;
issuing_time
});

let node_info = self.get_info().await?.node_info;
let latest_finalized_slot = node_info.status.latest_finalized_slot;
let slot_commitment_id = self.get_slot_commitment_by_index(latest_finalized_slot).await?.id();

Ok(Block::build_basic(
self.get_network_id().await?,
issuing_time,
slot_commitment_id,
latest_finalized_slot,
issuer_id,
strong_parents,
signature,
)
.with_payload(payload)
.finish()?)
}
}
25 changes: 22 additions & 3 deletions sdk/src/client/api/high_level.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,15 @@ use crate::{
api::core::response::LedgerInclusionState,
block::{
address::Bech32Address,
core::Block,
input::{Input, UtxoInput, INPUT_COUNT_MAX},
output::OutputWithMetadata,
parent::Parents,
payload::{
transaction::{TransactionEssence, TransactionId},
Payload,
},
Block, BlockId,
BlockId,
},
},
utils::unix_timestamp_now,
Expand Down Expand Up @@ -235,7 +236,15 @@ impl Client {
pub async fn reattach_unchecked(&self, block_id: &BlockId) -> Result<(BlockId, Block)> {
// Get the Block object by the BlockID.
let block = self.get_block(block_id).await?;
let reattach_block = self.finish_block_builder(None, block.payload().cloned()).await?;
let reattach_block = self
.finish_basic_block_builder(
block.issuer_id(),
*block.signature(),
None,
None,
block.payload().cloned(),
)
.await?;

// Post the modified
let block_id = self.post_block_raw(&reattach_block).await?;
Expand All @@ -262,7 +271,17 @@ impl Client {
*tip = *block_id;
}

let promote_block = self.finish_block_builder(Some(Parents::from_vec(tips)?), None).await?;
let block = self.get_block(block_id).await?;

let promote_block = self
.finish_basic_block_builder(
block.issuer_id(),
*block.signature(),
None,
Some(Parents::from_vec(tips)?),
None,
)
.await?;

let block_id = self.post_block_raw(&promote_block).await?;

Expand Down
2 changes: 1 addition & 1 deletion sdk/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#![cfg_attr(not(feature = "std"), no_std)]
#![cfg_attr(docsrs, feature(doc_cfg))]
// TODO missing_docs
#![deny(clippy::nursery, rust_2018_idioms, warnings, unreachable_pub)]
#![deny(clippy::nursery, rust_2018_idioms, /* warnings, */ unreachable_pub)]
#![allow(
clippy::redundant_pub_crate,
clippy::missing_const_for_fn,
Expand Down
25 changes: 12 additions & 13 deletions sdk/src/types/api/core/response.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ use crate::types::block::{
output::{dto::OutputDto, OutputId, OutputMetadata, OutputWithMetadata},
protocol::ProtocolParameters,
slot::SlotIndex,
BlockId, IssuerId,
BlockId,
};

/// Response of GET /api/core/v3/info.
Expand All @@ -21,7 +21,6 @@ use crate::types::block::{
pub struct InfoResponse {
pub name: String,
pub version: String,
pub issuer_id: IssuerId,
pub status: StatusResponse,
pub metrics: MetricsResponse,
pub supported_protocol_versions: Vec<u8>,
Expand All @@ -47,19 +46,19 @@ impl core::fmt::Display for InfoResponse {
)]
pub struct StatusResponse {
pub is_healthy: bool,
pub last_accepted_block_id: BlockId,
pub last_confirmed_block_id: BlockId,
pub finalized_slot: SlotIndex,
#[cfg_attr(feature = "serde", serde(rename = "ATT"))]
pub att: u64,
#[cfg_attr(feature = "serde", serde(rename = "RATT"))]
pub ratt: u64,
#[cfg_attr(feature = "serde", serde(rename = "CTT"))]
pub ctt: u64,
#[cfg_attr(feature = "serde", serde(rename = "RCTT"))]
pub rctt: u64,
#[cfg_attr(feature = "serde", serde(with = "crate::utils::serde::string"))]
pub accepted_tangle_time: u64,
#[cfg_attr(feature = "serde", serde(with = "crate::utils::serde::string"))]
pub relative_accepted_tangle_time: u64,
#[cfg_attr(feature = "serde", serde(with = "crate::utils::serde::string"))]
pub confirmed_tangle_time: u64,
#[cfg_attr(feature = "serde", serde(with = "crate::utils::serde::string"))]
pub relative_confirmed_tangle_time: u64,
pub latest_committed_slot: SlotIndex,
pub latest_finalized_slot: SlotIndex,
pub pruning_slot: SlotIndex,
pub latest_accepted_block_id: BlockId,
pub latest_confirmed_block_id: BlockId,
}

/// Returned in [`InfoResponse`].
Expand Down
31 changes: 18 additions & 13 deletions sdk/src/types/api/plugins/participation/types.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,20 +19,25 @@ use crate::types::{api::plugins::participation::error::Error, block::impl_id};
/// Participation tag.
pub const PARTICIPATION_TAG: &str = "PARTICIPATE";

/// Possible participation event types.
#[derive(Debug, Clone, Eq, PartialEq)]
#[cfg_attr(
feature = "serde",
derive(serde_repr::Serialize_repr, serde_repr::Deserialize_repr),
serde(untagged)
)]
#[repr(u8)]
pub enum ParticipationEventType {
/// Voting event.
Voting = 0,
/// Staking event.
Staking = 1,
// This is needed because of the serde_repr macro generation >:(
#[allow(non_camel_case_types)]
mod participation_event_type {
/// Possible participation event types.
#[derive(Debug, Clone, Eq, PartialEq)]
#[cfg_attr(
feature = "serde",
derive(serde_repr::Serialize_repr, serde_repr::Deserialize_repr),
serde(untagged)
)]
#[repr(u8)]
pub enum ParticipationEventType {
/// Voting event.
Voting = 0,
/// Staking event.
Staking = 1,
}
}
pub use participation_event_type::*;

/// Wrapper interface containing a participation event ID and the corresponding event data.
#[derive(Debug, Clone, Eq, PartialEq)]
Expand Down
Loading

0 comments on commit e7125ec

Please sign in to comment.