Skip to content

Commit

Permalink
feat(CA client): adding bridging fee (#76)
Browse files Browse the repository at this point in the history
  • Loading branch information
geekbrother authored Dec 2, 2024
1 parent e06d844 commit a6cc40b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions crates/yttrium/src/chain_abstraction/api/route.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use super::Transaction;
use alloy::primitives::Address;
use alloy::primitives::{Address, U256};
use relay_rpc::domain::ProjectId;
use serde::{Deserialize, Serialize};

Expand Down Expand Up @@ -31,7 +31,8 @@ pub struct FundingMetadata {
pub chain_id: String,
pub token_contract: Address,
pub symbol: String,
pub amount: String,
pub amount: U256,
pub bridging_fee: U256,
}

#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
Expand Down

0 comments on commit a6cc40b

Please sign in to comment.