SCADA Info
Supply Block is SCADA's core innovation — a function that, when triggered, removes a portion of the bonus liquidity SCADA farms from trading and splits the retrieved tokens: 90% of SCADA is permanently burned, reducing total supply forever. The remaining portion is distributed as rewards to stakers and the caller who executed the block. Meanwhile, the paired WPLS is used to market-buy SCADA, creating upward price pressure. This process strengthens the liquidity floor while continuously shrinking the circulating supply — a self-reinforcing cycle that rewards holders over time.
TrustNet Score
The TrustNet Score evaluates crypto projects based on audit results, security, KYC verification, and social media presence. This score offers a quick, transparent view of a project's credibility, helping users make informed decisions in the Web3 space.
Real-Time Threat Detection
Real-time threat detection, powered by Cyvers.io,
is currently not
activated
for this project.
This advanced feature provides continuous monitoring and instant alerts to safeguard your assets from potential security threats. Real-time detection enhances your project's security by proactively identifying and mitigating risks.
For more information, click here.
Security Assessments
Summary and Final Words
No crucial issues found
The contract does not contain issues of high or medium criticality. This means that no known vulnerabilities were found in the source code.
Contract owner cannot mint
It is not possible to mint new tokens.
Contract owner cannot blacklist addresses.
It is not possible to lock user funds by blacklisting addresses.
Contract owner cannot set high fees
The fees, if applicable, can be a maximum of 25% or lower. The contract can therefore not be locked. Please take a look in the comment section for more details.
Contract cannot be locked
Owner cannot lock any user funds.
Token cannot be burned
There is no burning within the contract without any allowances
Ownership is renounced
The contract does not include owner functions that allow post-deployment modifications.
Contract is not upgradeable
The contract does not use proxy patterns or other mechanisms to allow future upgrades. Its behavior is locked in its current state.
Scope of Work
This audit encompasses the evaluation of the files listed below, each verified with a SHA-1 Hash. The team referenced above has provided the necessary files for assessment.
The auditing process consists of the following systematic steps:
- Specification Review: Analyze the provided specifications, source code, and instructions to fully understand the smart contract's size, scope, and functionality.
- Manual Code Examination: Conduct a thorough line-by-line review of the source code to identify potential vulnerabilities and areas for improvement.
- Specification Alignment: Ensure that the code accurately implements the provided specifications and intended functionalities.
- Test Coverage Assessment: Evaluate the extent and effectiveness of test cases in covering the codebase, identifying any gaps in testing.
- Symbolic Execution: Analyze the smart contract to determine how various inputs affect execution paths, identifying potential edge cases and vulnerabilities.
- Best Practices Evaluation: Assess the smart contracts against established industry and academic best practices to enhance efficiency, maintainability, and security.
- Actionable Recommendations: Provide detailed, specific, and actionable steps to secure and optimize the smart contracts.
A file with a different Hash has been intentionally or otherwise modified after the security review. A different Hash may indicate a changed condition or potential vulnerability that was not within the scope of this review.
Final Words
The following provides a concise summary of the audit report, accompanied by insightful comments from the auditor. This overview captures the key findings and observations, offering valuable context and clarity.
Smart Contract Analysis Statement
Contract Analysis
The SCADABridge contract implements a trustless 1:1 wrapper between OmniBridge wSCADA and native SCADA on Ethereum, using a mint-and-burn model. Users deposit wSCADA to mint SCADA (unwrap), or burn SCADA to withdraw wSCADA (wrap). The contract is intentionally minimal - 45 nSLOC, no owner, no admin, no upgrade path. The contract is deployed and immutable; the team has acknowledged the finding below. Residual concern is summarized as follows:
- unwrap mints SCADA based on the requested amount, not on the actual wSCADA balance delta after safeTransferFrom. Under the current OmniBridge wSCADA implementation (a non-fee-on-transfer PermittableToken) this is benign and the documented 1:1 invariant holds. The residual exposure is conditional on a future OmniBridge governance action that upgrades the wSCADA proxy to introduce fee-on-transfer or deflationary semantics; if that ever happens, every subsequent unwrap silently over-mints SCADA, drift compounds across all future unwraps, and the bridge has no on-chain remediation because it is intentionally immutable. Operational mitigation is continuous monitoring of the documented invariant 'wscada.balanceOf(bridge) is approximately scada.totalSupply() minus the 1,000,000 deployment seed' and a frontend-pause if drift is detected. The balance-delta hardening is recommended for any future redeployment.
Ownership Privileges
There is no owner. The contract does not inherit Ownable, has no admin function, no parameter setter, no pause mechanism, and no upgrade path. All three contract references (scada, wscada, scadaManager) are stored as immutable. The privileged surface is therefore extremely narrow:
- The SCADAManager (set immutably at deployment) is the only address authorized to call burnCollateral, which destroys wSCADA collateral in lockstep with SCADA burns from the supplyBlock cycle
- burnCollateral is capped at the bridge's actual wSCADA balance, so it can never burn more collateral than is available
- That is the entire privileged surface - no other address has any administrative power over this contract
- No party (including the deployer) can change the wSCADA address, the SCADA address, or the SCADAManager address
- No party can mint or burn SCADA outside the user-driven wrap/unwrap flow
- No party can pause the bridge or block specific addresses
- No party can upgrade the contract or migrate its collateral
- No party can reverse a wrap or unwrap once it has settled
Security Features
The contract implements several positive security features:
- Fully immutable construction - no Ownable, no upgrade path, no admin functions, no proxy. The contract is permanently frozen at the bytecode that was deployed.
- ReentrancyGuard on every state-mutating function (unwrap, wrap, burnCollateral).
- Mint-and-burn model with capped collateral burns - the bridge can never burn more wSCADA than it actually holds, and the 1:1 collateralization invariant was verified by both symbolic analysis and stateful fuzzing.
- SafeERC20 used for all wSCADA movements, and the wrap path burns SCADA before releasing wSCADA so the user cannot receive collateral without surrendering an equal amount of SCADA first.
Note - This Audit report consists of a security analysis of the SCADABridge smart contract. This analysis did not include economic analysis of the contract's tokenomics. Moreover, we only audited the main contract for the SCADABridge team. Other contracts associated with the project were audited separately by our team. We recommend investors do their own research before investing.
Files and details
Functions
public
/
State variables
public
/
Total lines
of code
/
Capabilities
Hover on items
/
Findings and Audit result
medium Issues | 1 findings
Acknowledged
#1 medium Issue
unwrap does not measure actual wSCADA received - silent over-mint risk if collateral token ever becomes lossy
Two threat models apply to this finding. (1) Current deployed configuration - Medium severity: the live OmniBridge PermittableToken used as wSCADA is not fee-on-transfer, so the 1:1 mint matches the actual collateral received. (2) Future-proof / immutable-bridge threat model - High severity: wSCADA on Ethereum is itself a proxy controlled by the OmniBridge multisig and can in principle be upgraded. Any future change that introduces a transfer fee, deflationary burn, or blacklist on receiver would cause the bridge to mint strictly more SCADA than the wSCADA collateral it now holds, breaking the documented 1:1 collateralization invariant. Because the SCADABridge contract itself is immutable (no owner, no admin, no upgrade path), a single change to the wSCADA implementation would silently de-peg SCADA on Ethereum with no on-chain remediation available.
low Issues | 1 findings
Acknowledged
#1 low Issue
Solidity 0.8.20 has known issues - prefer a newer patch version
Solidity 0.8.20 contains three documented compiler issues (VerbatimInvalidDeduplication, FullInlinerNonExpressionSplitArgumentEvaluationOrder, MissingSideEffectsOnSelectorAccess). None apply to this codebase, but using the most recent patched compiler is preferred.
informational Issues | 2 findings
Pending
#1 informational Issue
Contract does not formally inherit from a matching interface
SCADAManager declares a local ISCADABridge interface with burnCollateral, but SCADABridge does not inherit from any interface. The compiler cannot verify that the bridge's public surface matches what consumers expect.
Pending
#2 informational Issue
Constructor uses require strings instead of custom errors
The constructor uses four require statements with short revert strings. Custom errors are slightly cheaper at deployment and provide a more structured revert payload for off-chain consumers.