View Source: contracts/TestContracts/UpgradableProxyTester.sol
↗ Extends: Storage
ProxiableContract
Constants & Variables
uint256 internal someVar;
uint256 internal anotherVar;
function getSomeVar() public view
returns(uint256)
Source Code
function getSomeVar() public view returns (uint) {
return someVar;
}
function setSomeVar(uint256 value) public nonpayable
Arguments
Name | Type | Description |
---|---|---|
value | uint256 |
Source Code
function setSomeVar(uint value) public {
someVar = value;
}
function getAnotherVar() public view
returns(uint256)
Source Code
function getAnotherVar() public view returns (uint) {
return anotherVar;
}
function setAnotherVar(uint256 value) public nonpayable
Arguments
Name | Type | Description |
---|---|---|
value | uint256 |
Source Code
function setAnotherVar(uint value) public {
anotherVar = value;
}
function mulVars() public view
returns(uint256)
Source Code
function mulVars() public view returns (uint) {
return someVar * anotherVar;
}
- ActivePool
- ActivePoolStorage
- BaseMath
- BorrowerOperations
- BorrowerOperationsScript
- BorrowerOperationsStorage
- BorrowerWrappersScript
- CheckContract
- CollSurplusPool
- CollSurplusPoolStorage
- console
- Context
- DefaultPool
- DefaultPoolStorage
- DocsCover
- DSAuth
- DSAuthEvents
- DSAuthority
- DSNote
- DSProxy
- DSProxyCache
- DSProxyFactory
- ERC20
- ETHTransferScript
- FeeDistributor
- FeeDistributorStorage
- GasPool
- HintHelpers
- HintHelpersStorage
- IActivePool
- IBalanceRedirectPresale
- IBorrowerOperations
- ICollSurplusPool
- IDefaultPool
- IERC20
- IERC2612
- IExternalPriceFeed
- IFeeDistributor
- IFeeSharingProxy
- ILiquityBase
- ILiquityBaseParams
- IMasset
- IMoCBaseOracle
- Initializable
- IPool
- IPriceFeed
- IRSKOracle
- ISortedTroves
- IStabilityPool
- ITroveManager
- IWrbtc
- IZUSDToken
- LiquityBase
- LiquityBaseParams
- LiquityMath
- LiquitySafeMath128
- MoCMedianizer
- MultiTroveGetter
- MultiTroveGetterStorage
- NueToken
- Ownable
- PriceFeed
- PriceFeedStorage
- ProxiableContract
- ProxiableContract2
- Proxy
- RskOracle
- SafeMath
- SortedTroves
- SortedTrovesStorage
- StabilityPool
- StabilityPoolScript
- StabilityPoolStorage
- Storage
- Storage2
- TokenScript
- TroveManager
- TroveManagerBase
- TroveManagerBase1MinuteBootstrap
- TroveManagerRedeemOps
- TroveManagerScript
- TroveManagerStorage
- UpgradableProxy
- ZUSDToken
- ZUSDTokenStorage