This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pragma solidity ^0.5.16; | |
import "./SafeMath.sol"; | |
/** | |
* @title Logic for Compound's JumpRateModel Contract V2. | |
* @author Compound (modified by Dharma Labs, refactored by Arr00) | |
* @notice Version 2 modifies Version 1 by enabling updateable parameters. | |
*/ | |
contract BaseJumpRateModelV2 { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// SPDX-License-Identifier: GPL-3.0 | |
pragma solidity >=0.7.0 <0.9.0; | |
/** | |
* @title Storage | |
* @dev Store & retrieve value in a variable | |
* @custom:dev-run-script ./scripts/deploy_with_ethers.ts | |
*/ | |
contract Storage { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// SPDX-License-Identifier: GPL-3.0 | |
pragma solidity >=0.7.0 <0.9.0; | |
/** | |
* @title Storage | |
* @dev Store & retrieve value in a variable | |
* @custom:dev-run-script ./scripts/deploy_with_ethers.ts | |
*/ | |
contract Storage { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// File: @pancakeswap/pancake-swap-lib/contracts/utils/Address.sol | |
pragma solidity ^0.6.2; | |
/** | |
* @dev Collection of functions related to the address type | |
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// File: @pancakeswap/pancake-swap-lib/contracts/utils/Address.sol | |
pragma solidity ^0.6.2; | |
/** | |
* @dev Collection of functions related to the address type | |
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// File: @pancakeswap/pancake-swap-lib/contracts/utils/Address.sol | |
pragma solidity ^0.6.2; | |
/** | |
* @dev Collection of functions related to the address type | |
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// File: @pancakeswap/pancake-swap-lib/contracts/utils/Address.sol | |
pragma solidity ^0.6.2; | |
/** | |
* @dev Collection of functions related to the address type | |
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pragma solidity ^0.5.16; | |
import "https://github.com/compound-finance/compound-protocol/blob/master/contracts/CErc20.sol"; | |
/** | |
* @title Compound's CErc20Delegate Contract | |
* @notice CTokens which wrap an EIP-20 underlying and are delegated to | |
* @author Compound | |
*/ | |
contract CErc20Delegate is CErc20, CDelegateInterface { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pragma solidity ^0.5.16; | |
import "https://github.com/compound-finance/compound-protocol/blob/master/contracts/CErc20.sol"; | |
/** | |
* @title Compound's CErc20Delegate Contract | |
* @notice CTokens which wrap an EIP-20 underlying and are delegated to | |
* @author Compound | |
*/ | |
contract CErc20Delegate is CErc20, CDelegateInterface { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pragma solidity ^0.5.16; | |
import "https://github.com/compound-finance/compound-protocol/blob/master/contracts/CErc20.sol"; | |
/** | |
* @title Compound's CErc20Delegate Contract | |
* @notice CTokens which wrap an EIP-20 underlying and are delegated to | |
* @author Compound | |
*/ | |
contract CErc20Delegate is CErc20, CDelegateInterface { |
NewerOlder