Files
smom-dbis-138/contracts/tokens/CompliantUSDCTokenV2.sol
defiQUG 76aa419320 feat: bridges, PMM, flash workflow, token-aggregation, and deployment docs
- CCIP/trustless bridge contracts, GRU tokens, DEX/PMM tests, reserve vault.
- Token-aggregation service routes, planner, chain config, relay env templates.
- Config snapshots and multi-chain deployment markdown updates.
- gitignore services/btc-intake/dist/ (tsc output); do not track dist.

Run forge build && forge test before deploy (large solc graph).

Made-with: Cursor
2026-04-07 23:40:52 -07:00

30 lines
680 B
Solidity

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;
import "./CompliantFiatTokenV2.sol";
/**
* @title CompliantUSDCTokenV2
* @notice Thin cUSDC V2 specialization over the shared compliant fiat token base.
*/
contract CompliantUSDCTokenV2 is CompliantFiatTokenV2 {
constructor(
address initialOperator,
address admin,
uint256 initialSupply,
bool forwardCanonical_
)
CompliantFiatTokenV2(
"USD Coin (Compliant V2)",
"cUSDC",
6,
"USD",
"2",
initialOperator,
admin,
initialSupply,
forwardCanonical_
)
{}
}