// SPDX-License-Identifier: MIT pragma solidity ^0.8.24; import {MRTaxToken} from "./MRTaxToken.sol"; /// @title MRReflectionToken — Baby token: taxes accumulate in-contract for holder rewards. contract MRReflectionToken is MRTaxToken { constructor( string memory name_, string memory symbol_, uint256 totalSupply_, uint8 decimals_, address owner_, uint256 buyTaxBps_, uint256 sellTaxBps_ ) MRTaxToken( name_, symbol_, totalSupply_, decimals_, owner_, buyTaxBps_, sellTaxBps_, address(0) ) {} }