- 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
30 lines
680 B
Solidity
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_
|
|
)
|
|
{}
|
|
}
|