TRON Industry Weekly Report: Interest rate cut lower than expected leads to a pullback in the crypto market, modular stablecoin protocol Falcon favored by WLFI
Outlook
1. Macroeconomic Summary and Future Predictions
Last week, the focus of the U.S. macroeconomy was on Federal Reserve Chairman Powell's speech at Jackson Hole, which hinted at a possible interest rate cut in September to address labor market risks, leading to a significant surge in the stock market, with the Dow Jones reaching an all-time high. However, at the same time, the S&P Global PMI indicated that both the manufacturing and service sectors remained strong, with a rebound in business activity, but rising costs drove inflation to a three-year high. Retail giant Walmart's performance fell short of expectations, and the housing market data showed mixed results, further highlighting the coexistence of economic recovery and inflationary pressures.
Looking ahead, the market generally believes that the Federal Reserve is likely to implement a slight interest rate cut in September, but due to inflation not being fully controlled, the pace of easing may become cautious. If employment and consumption continue to weaken, the monetary policy easing will intensify, benefiting the stock and bond markets; conversely, if inflation rises again, it may delay the interest rate cut window. Additionally, political interventions in the Federal Reserve have increased uncertainty, making future policy paths more volatile.
2. Market Movements and Warnings in the Crypto Industry
This week, the cryptocurrency market showed significant divergence. Bitcoin experienced a substantial pullback after reaching a high of approximately $124,000, dropping nearly 8% over the week, closing in the range of $113,000 to $115,000, indicating significant profit-taking pressure. In contrast, Ethereum surged strongly after Powell hinted at a possible interest rate cut, rising over 14% in a single day to reach a new all-time high of approximately $4,880, driving net inflows into the market and significantly increasing on-chain activity. Some altcoins also recorded gains driven by whale funds, showing clear signs of capital rotation.
Looking ahead, caution is warranted as Bitcoin's short-term pullback pressure has not been fully released; if the macro environment tightens or investor sentiment cools, prices may be further dragged down. Ethereum needs to be monitored for potential selling pressure from staking unlocks. On the macro level, the Federal Reserve's September meeting and inflation data will determine market risk appetite; if the interest rate cut materializes, ETFs and institutional funds may continue to support crypto assets; conversely, if the policy leans hawkish or regulation tightens, it may exacerbate volatility and lead to deeper adjustments.
3. Industry and Sector Hotspots
Star institution CSX co-invested $5.5 million in TACEO, a collaborative zero-knowledge proof network focusing on low latency and high privacy. TACEO is a cryptographic infrastructure provider dedicated to achieving collaborative, privacy-preserving computation through coSNARK (a hybrid solution combining zero-knowledge proofs and multi-party computation (MPC)); GAIB is an economic layer focused on reshaping AI infrastructure investment by transforming GPU-supported assets into revenue-generating opportunities.
II. Market Hotspot Sectors and Potential Projects of the Week
1. Overview of Potential Projects
1.1. Analysis of TACEO, a Collaborative Zero-Knowledge Proof Network with $5.5 Million Co-Investment from Star Institution CSX
Introduction
TACEO is a cryptographic infrastructure provider dedicated to achieving collaborative, privacy-preserving computation through coSNARK (a hybrid solution combining zero-knowledge proofs and multi-party computation (MPC)). With tools like coCircom and coNoir, developers can run encrypted computations on shared data without exposing any input data. Its real-time proof delegation network TACEO:Proof supports off-chain Groth16 proof generation in a decentralized MPC subnet.
Architecture Overview
TACEO:Proof
TACEO:Proof is a network that combines multi-party secure computation (MPC) and collaborative zero-knowledge succinct non-interactive arguments of knowledge (coSNARK), aimed at helping developers offload the work of Groth16 proof generation from browsers and mobile devices. Clients submit encrypted input shares and a short-lived voucher, subsequently receiving a standard zero-knowledge proof that can be verified by existing verifiers, while no single node in the network can see the complete witness data.
Key Terms
- CCL (Cryptographic Coordination Layer): Responsible for coordinating tasks, managing vouchers and blueprints, distributing tasks via gRPC, and collecting generated proofs.
- Node Provider: Provides computing power to the network by running the CSE (coSNARK Engine). The computation for each coSNARK is jointly completed by a randomly selected group of node providers.
- CSE (coSNARK Engine): A containerized executable that connects peer-to-peer via TCP, executes MPC + SNARK circuits, and generates proof shares. A single node provider can host multiple CSE instances to enhance scalability.
- Blueprint: Refers to the circuit definitions and the corresponding sets of generation/verification keys.
- Voucher: A permission created by CCL on behalf of the blueprint creator, authorizing specific blueprint calls and their usage limits.
- MPC (Multiparty Computation): Shares input secrets among multiple nodes to complete function calculations without exposing private data.
- coSNARK: A mechanism that embeds SNARK provers into MPC protocols, allowing multiple parties to jointly generate succinct zero-knowledge proofs.
High-Level Architecture
- The client packages input data (optionally choosing to locally expand the witness), encrypts the data shares using the public key of the selected node provider, and calls the CCL.
- The CCL verifies the voucher, records task information, and notifies the corresponding node provider.
- The CSE receives the task via gRPC, forms an MPC group in the TCP network, runs the complete SNARK circuit within the MPC, assembles the Groth16 proof, and returns the result to the CCL.
- The CCL aggregates the final proof, verifies node signatures, stores the results, and returns the proof to the client.

Two Proof Generation Methods:
- Client-Expanded Witness: Generates the complete witness locally, then shares and submits it.
- MPC Network-Expanded Witness: Only submits the input; the network completes the witness expansion during the MPC phase.
Simplified Call: Requires only one API call to replace the traditional prove().
Rapid Response: Typical circuits (~2¹⁶ constraints) return Groth16 proofs in about 500 milliseconds.
Highly Compatible: The generated Groth16 proofs are fully consistent with the native version and can be directly used by existing verifiers.
CoSNARKs
Collaborative SNARK (coSNARK) is a new cryptographic technology proposed in 2021, combining the advantages of multi-party secure computation (MPC) and zero-knowledge succinct non-interactive proofs (zkSNARK).
It allows multiple participants to jointly generate a proof for verifying the correctness of computations without revealing their private input data.
This approach addresses a key challenge: computing shared private data without a trusted third party. In the coSNARK protocol, each participant joins a distributed protocol to jointly generate a unique SNARK proof that can verify the correctness of the joint computation without exposing any individual input information.
The resulting proof is both succinct and efficient, and can be verified by anyone, ensuring the credibility and integrity of the computation results while safeguarding data privacy.
Core Use Case: Example of Alice and Bob
- Objective: Alice has a secret value a, and Bob has a secret value b. They want to compute Poseidon hash(a, b) and generate a ZK proof to prove that the computation is correct without revealing each other's data.
- Challenge: Cannot hand over data to a trusted third party.
- Solution: Using the coSNARK protocol, the steps are as follows:
- Secret Sharing Input: Alice and Bob share their respective a and b secretly and send the shares to the MPC network.
- MPC Network Runs Circuit: The MPC network, composed of multiple nodes, runs the circuit (e.g., Poseidon hash circuit) using the secret shared shares to generate intermediate results (expanded witness).
- Generate Proof: The same batch or another batch of nodes generates a zkSNARK proof without exposing any inputs, proving that the computation result is correct.
- Final Output: A Poseidon hash value and a coSNARK zero-knowledge proof that anyone can verify that the hash is correctly computed based on a and b, but no one knows the values of a or b.

Commentary
TACEO's advantage lies in its innovative combination of MPC and zkSNARK, achieving collaborative computation under privacy protection through coSNARK technology, supporting standard Groth16 proofs, low latency (<1 second return), developer-friendly experience (ZK proof can be generated with a single API call), and compatibility with existing verifiers, making it suitable for building high-privacy, high-trust off-chain proof systems.
Its disadvantage is that the network relies on multiple nodes to coordinate the completion of MPC, which may be limited by node availability and network stability, and the system's complexity is relatively high, posing a certain barrier to understanding and onboarding for initial users.
1.2. Interpretation of GAIB, a New Revenue Infrastructure Connecting AI Computing Power and On-Chain Finance with $10 Million Led by Amber
Introduction
GAIB is an economic layer focused on reshaping AI infrastructure investment by transforming GPU-supported assets into revenue-generating opportunities. The AI synthetic dollar AID launched by GAIB enables investors to seamlessly enter the AI economic system and gain real returns from AI-driven computing power. Staking AID as sAID can generate passive income while maintaining liquidity, encouraging more users to participate in AI-driven financial markets. GAIB also enhances the efficiency of capital access for cloud service providers and data centers by providing capital solutions, thereby supporting the development of AI infrastructure. By integrating with decentralized finance (DeFi) protocols, including lending and structured products, GAIB builds a bridge between AI and blockchain finance, unlocking new opportunities at the intersection of technology and investment.

Architecture Overview
Off-chain Components
Cloud Service Providers / Data Centers (1, 2, 3……N)
GAIB has reached financing agreements with high-quality cloud service companies and data centers globally that have GPU clusters, with relevant contracts and equipment serving as asset support.
Transaction Structure Types
- Debt Model: Cloud service providers/data centers pay interest on borrowed capital.
- Equity Model: Cloud service providers/data centers pay a share of income generated by GPUs.
- Hybrid Model: Pay interest and share GPU income simultaneously.
Collateral Assets
- All agreements are backed by physical GPU assets. Currently, priority is given to market-scarce enterprise-grade GPUs, such as NVIDIA H100, H200, GB200, etc.
- GAIB structures financing transactions based on GPU clusters, prioritizing GPU clusters reserved by existing customers for 1 to 3 years.
- All transactions will adopt a bankruptcy-remote structure to enhance security.
Maturity Time
Flexibly set according to transaction structure, ranging from 3 months (e.g., bridge financing) to 3 years. Due to the short payback period for enterprise-grade GPUs, the maturity of GPU collateral loans is usually much shorter than traditional debt.
Expected Returns (Annualized)
- Debt Model: Estimated annualized return of 10% - 20%
- Equity Model: Estimated annualized return of 60% - 80% or more
Risk Management
- GAIB and other underwriters on the platform conduct strict due diligence on each transaction based on a "credit analysis framework" and collaborate with third-party auditing firms when necessary.
- All loans are secured through over-collateralization to ensure fund safety.
- In the event of default, GAIB has the right to liquidate GPU assets to repay investors, or continue operating GPUs through strategically partnered data centers to continuously generate returns for investors.
Strategic Cooperation with Decentralized Computing Protocols
With the rise of decentralized computing protocols (integrating idle computing resources and matching supply and demand through blockchain), GAIB collaborates with these protocols (such as Aethir) to tokenize on-chain income from computing nodes across different platforms, providing an additional monetization channel for GPU investments.
Treasury Reserves
GAIB holds a portion of U.S. Treasury bonds as reserves to ensure liquidity safety when users redeem.
Third-Party Services
GAIB will collaborate with third-party auditing, credit assessment, custody, certification, and professional service providers when necessary to maximize investor rights and the risk-return ratio of each GPU financing transaction.
On-chain Components
Minting and Redemption
Through GAIB's smart contract, whitelisted users who have completed KYC can mint GAIB's AI synthetic dollar AID using stablecoins, or redeem stablecoins with AID.
Staking Mechanism
All users can stake AID to obtain a liquid voucher token sAID representing their staking position.
sAID can continuously accumulate returns, and users can claim accumulated returns upon unstaking (specific rules can be found on the AID <-> sAID page).
Liquidity Pool
GAIB will integrate with mainstream automated market makers (AMMs) and maintain an on-chain liquidity pool for AID. Users can interact with these external liquidity pools through the GAIB interface to freely exchange AID for stablecoins.
DeFi Application Scenarios
Lending
GAIB will integrate with mainstream lending protocols, allowing users to deposit AID into lending pools for additional returns; users can also borrow AID by staking mainstream crypto assets, enhancing the capital efficiency and liquidity of the ecosystem.
Yield Trading
sAID, as a yield-generating asset, will be integrated into specialized yield trading protocols.
Users can create or trade Principal Tokens (PT) and Yield Tokens (YT) based on sAID, or provide liquidity for PT/YT trading pairs, supporting a variety of strategies from stable returns to high-risk speculation.
Derivatives
With its stable yield capability and liquidity, AID and sAID can serve as underlying assets for various derivatives, further driving market innovation and meeting users' diverse needs for hedging, speculation, and risk management.
Customized Yield Strategies
GAIB will integrate with yield aggregators, treasury strategy protocols, etc., supporting users in building personalized yield portfolios based on the tokenization characteristics of GPU assets, catering to different risk preferences and enhancing the accessibility and customization of the GAIB ecosystem.
Commentary
GAIB's advantage lies in its construction of a bridge connecting AI infrastructure and on-chain finance by combining physical GPU assets with DeFi, achieving the dual potential of stable returns and high growth; its diversified financing models, over-collateralization, strict risk control mechanisms, and collaboration with decentralized computing protocols provide investors with a high transparency and strong security participation path. Meanwhile, through the design of AID and sAID, users can obtain real returns while maintaining liquidity.
However, its disadvantage is that the model relies on fluctuations in GPU market demand and computing power utilization, the credit and disposal mechanisms of off-chain assets are relatively complex, and the overall system structure is relatively new and heavy, facing educational costs and practical operational challenges.
2. Detailed Explanation of Key Projects of the Week
2.1. Detailed Explanation of Falcon Finance, a Decentralized Finance Platform with a Modular Stablecoin Architecture and Yield Enhancement Mechanism, Backed by $10 Million from WLFI
Introduction
Falcon Finance is the first universal collateral infrastructure protocol aimed at creating sustainable yield opportunities.
Falcon Finance's mission is clear: Your assets, your yields. Falcon is dedicated to helping users and institutions unlock the true yield potential of their digital assets.
Falcon is built on trust, transparency, and robust technology. The team consists of seasoned professionals from blockchain, financial engineering, and quantitative analysis, ensuring a balance between reliability and performance. The team consistently adheres to high standards of accountability, helping users maximize asset value.
Its mission is not just to build a protocol but to create a system centered on user yields and sustainable growth.
Architecture Analysis
The following diagram outlines the overall process of how user assets are stored and utilized after being deposited into Falcon. 

Overall Flow of User Assets:
Users deposit collateral assets (including stablecoins and non-stablecoins) into Falcon, and in return, the system will mint USDf stablecoins.
All user-deposited assets will be transferred to a third-party custodian and managed securely using multi-signature (multi-sig) or multi-party computation (MPC) mechanisms.
Withdrawing funds requires approval from multiple independent authorized signers, ensuring that no single person or entity can unilaterally withdraw or transfer assets.
Falcon does not directly control or hold user assets, ensuring that no single party can misappropriate funds.
Falcon uses an "off-chain settlement" mechanism to mirror the assets in the custodial account to centralized exchange accounts and deploy strategies and conduct trades on these platforms.
Some assets will be deployed to first-tier on-chain liquidity pools to generate returns through decentralized trading activities and arbitrage strategies.
Falcon will also use some assets that support native staking for on-chain staking, further bringing additional returns to spot assets.
USDf: Over-Collateralized Synthetic Dollar
USDf is an over-collateralized synthetic dollar launched by Falcon Finance. When users deposit eligible collateral assets (including stablecoins like USDT, USDC, DAI, and non-stablecoin assets like BTC, ETH, and some quality altcoins), they can mint USDf.
Its over-collateralization mechanism ensures that the value of the collateral assets always exceeds the value of the issued USDf, thereby maintaining the stability of USDf in different market environments.
The collateral assets used to mint USDf are managed through neutral market strategies, ensuring full asset backing while minimizing the impact of price fluctuations. This mechanism enhances the stability and reliability of USDf as an over-collateralized synthetic dollar.
Falcon offers two methods for minting USDf: Classic Mint and Innovative Mint, providing users with flexible choices based on different asset holdings and strategy preferences.
Classic Mint: Users can mint USDf using supported stablecoins (like USDT, USDC) at a 1:1 ratio or use non-stablecoin assets like BTC, ETH for over-collateralized minting, ensuring that each USDf is backed by equivalent or higher-value assets, effectively avoiding market slippage and price volatility risks.
Innovative Mint: Users stake non-stablecoin assets for a fixed term to obtain USDf liquidity while retaining the potential for price appreciation. The minting limit is conservatively set based on parameters such as staking duration, strike price multiple, and capital efficiency, always maintaining an over-collateralized state. All collateral assets are managed through neutral market strategies, triggering liquidation mechanisms in extreme market conditions to ensure the system operates robustly.
Falcon consistently adheres to the over-collateralization mechanism, ensuring that every USDf is backed by assets worth more than $1, safeguarding the security and stability of this synthetic dollar.
- Classic Mint

Classic Mint is Falcon's foundational minting mechanism, supporting the minting of USDf using both stablecoin and non-stablecoin assets.
- Stablecoin Minting: Mint USDf at a 1:1 ratio.
- Non-Stablecoin Minting: Uses an over-collateralization rate (OCR), dynamically set based on asset risk levels to ensure safety and stability.
Express Mint is an enhanced feature of Classic Mint, allowing users to automatically complete subsequent steps during the minting process without manual operation:
- Option 1: Mint & Stake: Automatically stakes USDf after minting, allowing users to directly obtain sUSDf.
- Option 2: Mint, Stake & Restake: Users select a fixed term, and the system automatically stakes USDf and restakes the obtained sUSDf into a designated treasury, ultimately receiving an ERC-721 NFT representing the locked position.
This mechanism simplifies the operational process, enhances user efficiency, while still maintaining asset security and compliance management throughout.
- Innovative Mint
Innovative Mint is Falcon's innovative minting mechanism, allowing users to mint USDf through non-stablecoin assets within a locked period while retaining limited rights to price appreciation.
Users must set three key parameters: staking duration (3--12 months), capital efficiency level, and strike price multiple. These parameters determine the minting limit, liquidation price, and strike price.
Collateral assets will be continuously monitored during the lock-up period, and based on market price fluctuations, three outcomes may occur:
- Price below liquidation price (at any time)
The collateral asset is liquidated, and the user loses ownership of the original asset but retains the minted USDf, which can be exchanged for USDT, USDC, etc. - Price between liquidation price and strike price (at maturity)
The user can retrieve all collateral assets after repaying the originally minted USDf while having obtained USDf liquidity during the lock-up period. - Price above strike price (during or at maturity)
The collateral asset is exited by the system, and the user cannot retrieve the original asset but can receive additional USDf compensation, calculated as:
(strike price × collateral quantity) − initially minted USDf, returning asset appreciation gains in the form of USDf based on the preset appreciation.
This mechanism provides users with flexible liquidity acquisition methods while ensuring over-collateralization and retaining some potential for asset appreciation.
- Over-Collateralization Rate (OCR)
Over-Collateralization Rate (OCR) is a key parameter set by Falcon when users mint USDf using non-stablecoin assets, ensuring that each USDf is backed by equivalent or higher-value assets, reducing risks from market slippage and volatility.
OCR Definition and Calculation Formula
OCR = Initial Mark Price of Collateral Asset × Collateral Quantity ÷ Number of USDf Minted
- The OCR for each non-stablecoin asset is dynamically adjusted based on its market volatility, liquidity, slippage risk, and historical price performance.
- The assessed value of user assets depends on the market price at the time of collateralization; Falcon does not bear responsibility for asset value fluctuations or losses.
OCR Safety Buffer
The OCR Buffer is the portion of collateral assets retained in the system that exceeds the minted USDf, serving as a risk buffer.
Calculation Formula: OCR Buffer = (OCR − 1) × Collateral Quantity
- If the current market price ≤ initial mark price: Users can retrieve the original unit quantity of collateral assets.
- If the current market price ≥ initial mark price: Users can only retrieve an equivalent USD amount (calculated at the initial price).
This mechanism safeguards the protocol while optimizing users' capital efficiency, making the entire USDf minting system more robust and risk-resistant.
- Anchoring Stability
Falcon Finance ensures that USDf remains anchored at $1 through three main methods: neutral hedging strategies, over-collateralization mechanisms, and cross-market arbitrage.
Core Points of the Anchoring Mechanism:
- Neutral Hedging Strategy (Delta-Neutral): Manages collateral assets in a market-neutral manner to eliminate the impact of price fluctuations, ensuring that changes in a single asset or market do not affect the supporting value of USDf.
- Over-Collateralization Mechanism: Forces users to collateralize with assets valued higher than USDf, creating a safety buffer to ensure that every USDf has sufficient backing.
- Cross-Market Arbitrage Mechanism:
- When USDf is above the pegged price (> $1.00): KYC-completed users can mint USDf at a 1:1 ratio on Falcon and sell it at a high price in external markets for arbitrage.
- When USDf is below the pegged price (< $1.00): KYC users can buy USDf at a low price in external markets and then exchange it for collateral assets on Falcon at $1.00 for profit.
These mechanisms encourage users and arbitrageurs to participate in the anchoring process, allowing USDf to maintain stable value across various market environments.
- sUSDf
sUSDf is the yield-generating version of USDf and another core token in Falcon's dual-token system. When users deposit and stake USDf into Falcon's ERC-4626 treasury, they can obtain sUSDf, representing their share of rights in the treasury and continuously earning returns.
sUSDf Value and Yield Mechanism:
- Current value of sUSDf = (Total staked USDf + Total rewards) ÷ Total supply of sUSDf
- Number of sUSDf obtained by users = Staked USDf ÷ Current value of sUSDf
The value of sUSDf grows over time, reflecting cumulative yield performance. Yield sources include:
- Positive and negative funding rate arbitrage
- Strategies like staking altcoins
Role of ERC-4626 Standard:
- It is a unified standard for treasuries on EVM chains, enhancing the interoperability and asset aggregation capabilities of DeFi systems;
- Ensures that Falcon's yield distribution mechanism is efficient and transparent;
- Lays the groundwork for sUSDf's future integration into more DeFi applications, enhancing user experience and asset security.
Through this mechanism, users can not only obtain liquidity for USDf but also earn stable returns through staking.
- Restaking
To achieve higher yields, Falcon allows users to periodically restake their held sUSDf. Users can choose a lock-up period from the available range, such as 3 months, 6 months, etc., with longer periods yielding higher expected returns.
Since assets cannot be redeemed during these staking periods, Falcon can leverage its time advantage to execute more complex yield strategies, thereby generating higher returns for users.
After users restake, the protocol will mint and issue a unique ERC-721 NFT, representing the user's locked position.
- Yield Distribution

Falcon's yield distribution mechanism is based on the daily calculated yields, primarily rewarding users through two methods:
- Regular Yield Users (Classic Yield):
- A portion of the USDf generated daily is injected into the sUSDf ERC-4626 treasury, enhancing the sUSDf to USDf ratio.
When users redeem sUSDf, they indirectly earn returns based on the current exchange rate.
- Boosted Yield Users (Boosted Yield):
- Remaining yields will be distributed to users holding Boosted Yield NFTs (i.e., those who have restaked).
- These users can claim additional sUSDf upon maturity, achieving higher returns.
Yield Calculation Method: Each user's yield = (User's staked USDf / Total staked USDf) × Total distributed yield.
Transparency: The ratio of sUSDf to USDf is based on the ERC-4626 standard, and all calculations and exchange rates can be verified in real-time on Etherscan.
Locking Window: Approximately 21:00--22:00 (GMT+8) is the locking period, during which the system freezes interactions to prevent yield dilution. If users redeem assets before this time, they may lose part of the day's yield.
- Redemption
Falcon offers two redemption methods, both requiring a 7-day cooling-off period before assets can be claimed:
- Classic Redemption (Classic Redemptions):
- Users exchange USDf for supported stablecoins (like USDC, USDT).
- Suitable for users preferring stable returns.
- Asset Claim (Claims):
- Users exchange USDf back for the non-stablecoin assets they previously used to mint USDf (like ETH, ALT tokens, etc.).
- If using Classic Mint, users can retrieve over-collateralized assets, with the return format being original assets, USDT, or a mixed form.
- If using Innovative Mint, assets can only be claimed after the staking period expires, and users must repay the initially minted USDf to retrieve all assets. Claims must be completed within 72 hours, or rights may be forfeited.
- Collateral Asset Acceptance Standards and Risk Framework
Falcon Finance employs a data-driven three-stage screening mechanism and a quantitative risk assessment framework to filter acceptable collateral assets for minting USDf. The goal is to ensure the stable anchoring of USDf while ensuring that all accepted assets possess good market liquidity, price transparency, and risk resistance.
- Collateral Asset Screening Workflow (Eligibility Screening Workflow)
- Main Market Listing
- Is it listed on Binance?
- No → Reject; Yes → Proceed to the next step
- Market Trading Depth
- Does it support both spot and perpetual contracts on Binance?
- Yes → Accept
- Only supports one → Proceed to the next step
- Neither → Reject
- Cross-Exchange Verification: Does it have real order depth and trading volume on top centralized exchanges (CEX) or mainstream decentralized exchanges (DEX)?
- Yes → Accept
- No → Reject
Only assets that pass the above three-stage screening are deemed qualified collateral assets, allowed for use on the Falcon platform.
- Quantitative Risk Assessment Indicators (Quantitative Risk Assessment)

Each asset will be scored based on the following four market dimensions and classified as low risk, medium risk, or high risk:
- Final Risk Rating Standards (Composite Risk Grade)
- If there are no high-risk scores and medium risk does not exceed one → Asset is Qualified
- If there are two medium-risk scores → Conditionally Qualified, may require a higher collateralization rate
- If there is any high-risk score → Reject or immediate review
Summary
Falcon Finance's advantage lies in its comprehensive, modular over-collateralization infrastructure: through Delta-neutral/market-neutral strategies, cross-market arbitrage, and strict over-collateralization to keep USDf close to the $1 peg, the dual-token design (USDf+sUSDf) combined with the ERC-4626 treasury achieves automated, transparent yield accumulation and restaking gains; Express Mint, Classic/Innovative Mint provide flexible liquidity paths, and on-chain smart contracts, multi-signature/MPC custody, and cooling mechanisms enhance asset security and risk control.
Its disadvantage is that the system is relatively complex, with a high understanding threshold for users; it relies on third-party custodians and centralized exchanges, introducing external counterparty risks; there are still liquidity and liquidation/peg risks during extreme market fluctuations; some arbitrage and stability mechanisms require KYC participation, and the 7-day redemption cooling-off period and lock-up period may affect the immediacy of funds; additionally, the technical risks of smart contracts and cross-chain integration cannot be completely eliminated.
III. Industry Data Analysis
1. Overall Market Performance
1.1. Price Trends of Spot BTC vs ETH

BTC
Analysis
Key resistance this week: $117,500, $118,900, $124,000
Key support this week: $112,000, $110,300, $105,200

ETH
Analysis
Key resistance this week: $4,960
Key support this week: $4,680, $4,580, $4,390, $4,080
2. Public Chain Data
2.1. BTC Layer 2 Summary
- Bitcoin Hyper (HYPER) ICO Raises Over $10 Million
Reports indicate that the Bitcoin rapid Layer-2 project Bitcoin Hyper has successfully raised over $10 million in its first ICO, highlighting the market's high expectations for enhancing Bitcoin's smart contract and high-speed payment capabilities. The network aims to introduce Solana-level speed and smart contract functionality by bridging BTC and minting equivalent WBTC for use in its ecosystem.
As early as last week, the project was still in the fundraising phase, with a funding scale of $8.5 million to $8.5 million, which continued to rise rapidly this week.
- Lightning Network Smart Tools Continue to Advance
Latest data shows that the Lightning Network is steadily advancing the simplification of enterprise-level infrastructure and development tools, including:
Lightspark: Provides automated deployment of enterprise-level Lightning nodes, intelligent routing engines, and SDK/API, lowering the entry barrier for enterprises;
Breez SDK: Supports personalized Lightning nodes for each user with cloud hosting but device control, built-in Watchtower protection, and fiat deposit capabilities;
Other projects like Voltage, Amboss Technologies, and Lightning Dev Kit (LDK) further enhance the usability and development efficiency of the Lightning Network.
2.2. EVM & Non-EVM Layer 1 Summary
Important EVM-Compatible L1 Public Chain Dynamics
Circle Launches "Arc" ------ EVM L1 Dedicated to Stablecoins
- Arc is Circle's newly launched, self-built EVM-Compatible L1 blockchain, specifically designed for stablecoin payments, foreign exchange, and capital market scenarios. Its native fuel token is USDC, featuring sub-second settlement speeds, optional privacy features, and stablecoin exchange rate engines among other enterprise-level characteristics. It is expected to launch on the testnet later this year and will be deeply integrated with Circle's existing services, also interoperable with multiple partner blockchains.
Stripe Partners with Paradigm to Create "Tempo"
- Stripe is collaborating with Paradigm to develop a new EVM-Compatible L1 blockchain named Tempo, aimed at achieving ultra-fast, low-cost global payments. This chain is designed from the ground up to be developer-friendly and will be compatible with existing Ethereum development tools.
Berachain Mainnet Officially Launched
- Berachain is an EVM-compatible L1 blockchain based on the Cosmos SDK architecture. Its mainnet was announced this week, featuring an innovative Proof-of-Liquidity (PoL) consensus mechanism aimed at enhancing liquidity and security.
Stable Launches "Stablechain"
- Stablechain is currently the first L1 blockchain using USDT (Tether) as its native gas and settlement token, EVM-compatible, supporting near sub-second transaction finality. It also integrates a decentralized USDT0 payment mechanism, achieving a gas-free efficient payment experience.
Non-EVM L1 or Cutting-Edge Technological Achievements
Academic Breakthrough: Sei Giga
- The latest research paper titled "Sei Giga" proposes a highly parallel EVM L1 architecture, achieving over 5 gigagas/sec throughput and transaction finality below 400 ms, using the Autobahn consensus model to eliminate execution bottlenecks, demonstrating extremely high scalability potential.
2.3. EVM Layer 2 Summary
Mantle (MNT) --- High-Quality Ethereum Layer-2 Network
- Leading the Charge with Strong Market Performance
- MNT saw a strong upward trend this week, with prices soaring about 17%, making it one of the standout projects in the Layer-2 sector, with an accumulated increase of nearly 50% in August.
- Amid a broad market correction, MNT rose against the trend by 13.6%, compared to Ethereum's 5% decline, demonstrating exceptional resilience.
- Key Factors Driving: Strategic Cooperation with Bybit Increases Attention
- The integration with Bybit is the main driver of this price surge. MNT leverages Bybit's platform to expand its practical use cases, attracting attention from traders and institutions.
- On-chain data shows that the number of active addresses has reached an all-time high, the number of MNT holding wallets has increased, and the supply of stablecoins has reached $713.8 million, a year-on-year increase of 210%.
- Technical Patterns and Market Expectations are Bullish
- Technically, MNT has formed a classic "double bottom" reversal pattern. If the price breaks through the $1.30--$1.35 range, it is expected to target $1.63.
- Ongoing Ecosystem Expansion and TVL Growth
- Mantle has accumulated approximately $1.38 billion in total locked value (TVL) to date, with an active ecosystem.
- Its modular architecture, cross-chain interoperability (such as integration with deBridge), and increasing decentralized applications further solidify its position in the Layer-2 ecosystem.
Linea --- A New Force in zk-Rollup EVM Networks
- Token Model and Economic Mechanism Officially Revealed
- Linea has launched a model that aligns technology with economic incentives, promising to price gas fees in ETH and implement a "20% burn + 80% buyback burn" strategy to enhance ETH's value capture.
- The Token Generation Event (TGE) has yet to be scheduled but is expected to kick off airdrops and staking mechanisms in October.
- Token Design and Ecosystem Distribution
- The total issuance is approximately 72 billion tokens, with about 85% allocated for ecosystem incentives and 15% belonging to the Consensys treasury, locked for five years.
- This token has no governance function, with strategic decisions and technological advancements managed by ConsenSys and its governance alliance (Linea Consortium).
- Current Ecosystem Performance and User Activity Remains Robust
- According to July data, Linea ranks among the top in user daily active metrics, total locked value (TVS ~ $540 million), and on-chain profitability performance among L2 protocols.
- Incentive projects like "Voyage" effectively enhance user stickiness and boost ecosystem activity.
- Ecosystem Scrutiny and Market Anxiety
- There are also viewpoints questioning Linea's lack of explosive ecosystem development since the testnet, suggesting that the token release may not bring substantial momentum.
IV. Macroeconomic Data Review and Key Data Release Points for Next Week
S&P Global's latest PMI shows that the manufacturing index rose to 53.3 (a three-year high), while the service sector remained stable at 55.4, indicating a warming of overall economic activity. However, businesses are facing rising cost pressures, passing some of the increases onto consumers, pushing inflation to a three-year high.
Key macro data points for this week (August 25 - August 29) include:
August 28: Initial jobless claims in the U.S. for the week ending August 23
August 29: U.S. July core PCE price index year-on-year
V. Regulatory Policies
United States
At the "Blockchain Summit on August 19, 2025, in Wyoming," Federal Reserve Governor Michelle Bowman advocated for reducing caution in regulating emerging technologies, including cryptocurrencies, encouraging regulatory agencies to actively collaborate with financial institutions to shape regulatory frameworks and avoid overly restricting innovation.
The Trump administration continues to push for crypto-friendly policies, including key legislation such as the GENIUS Act, CLARITY Act, and Anti-CBDC Surveillance National Act, aimed at clarifying stablecoin regulations, institutional responsibilities, and limiting the development of central bank digital currencies (CBDCs).
United Kingdom
- The UK's Financial Conduct Authority (FCA) has established a dedicated team to strengthen enforcement against "rogue crypto firms." The team currently consists of three full-time employees and twelve seconded personnel, focusing on supervising violations in the crypto asset space and introducing new frameworks in conjunction with capital requirements, insider trading, and other aspects. Additionally, the approval process remains lengthy, with an average authorization taking 317 days, and rejections and withdrawals taking even longer.
India
- The Indian Central Board of Direct Taxes (CBDT) is consulting with industry stakeholders to explore the need for new legislation on virtual digital assets (VDAs). Key discussion points include whether the current 1% withholding tax rate on crypto transactions is too high, whether to allow loss offsets for tax purposes, and whether to promote the migration of trading offshore.
Indonesia
- Starting from August 1, 2025, Indonesia will implement a new tax reform on crypto trading:
- Domestic platform trading tax will increase from 0.1% to 0.21%;
- Overseas platform trading tax will rise from 0.2% to 1%;
- Value-added tax (VAT) for buyers will be eliminated;
- The value-added tax on crypto mining will increase from 1.1% to 2.2%; the special income tax on mining will be replaced by the standard income tax rate applicable from 2026.


Popular articles













