View Source: contracts/interfaces/IStore.sol
↘ Derived Contracts: FakeStore, StoreBase
IStore
- setAddress(bytes32 k, address v)
- setAddressBoolean(bytes32 k, address a, bool v)
- setUint(bytes32 k, uint256 v)
- addUint(bytes32 k, uint256 v)
- subtractUint(bytes32 k, uint256 v)
- setUints(bytes32 k, uint256[] v)
- setString(bytes32 k, string v)
- setBytes(bytes32 k, bytes v)
- setBool(bytes32 k, bool v)
- setInt(bytes32 k, int256 v)
- setBytes32(bytes32 k, bytes32 v)
- setAddressArrayItem(bytes32 k, address v)
- deleteAddress(bytes32 k)
- deleteUint(bytes32 k)
- deleteUints(bytes32 k)
- deleteString(bytes32 k)
- deleteBytes(bytes32 k)
- deleteBool(bytes32 k)
- deleteInt(bytes32 k)
- deleteBytes32(bytes32 k)
- deleteAddressArrayItem(bytes32 k, address v)
- deleteAddressArrayItemByIndex(bytes32 k, uint256 i)
- getAddressValues(bytes32[] keys)
- getAddress(bytes32 k)
- getAddressBoolean(bytes32 k, address a)
- getUintValues(bytes32[] keys)
- getUint(bytes32 k)
- getUints(bytes32 k)
- getString(bytes32 k)
- getBytes(bytes32 k)
- getBool(bytes32 k)
- getInt(bytes32 k)
- getBytes32(bytes32 k)
- countAddressArrayItems(bytes32 k)
- getAddressArray(bytes32 k)
- getAddressArrayItemPosition(bytes32 k, address toFind)
- getAddressArrayItemByIndex(bytes32 k, uint256 i)
function setAddress(bytes32 k, address v) external nonpayable
Arguments
Name | Type | Description |
---|---|---|
k | bytes32 | |
v | address |
Source Code
function setAddress(bytes32 k, address v) external;
function setAddressBoolean(bytes32 k, address a, bool v) external nonpayable
Arguments
Name | Type | Description |
---|---|---|
k | bytes32 | |
a | address | |
v | bool |
Source Code
function setAddressBoolean(
bytes32 k,
address a,
bool v
) external;
function setUint(bytes32 k, uint256 v) external nonpayable
Arguments
Name | Type | Description |
---|---|---|
k | bytes32 | |
v | uint256 |
Source Code
function setUint(bytes32 k, uint256 v) external;
function addUint(bytes32 k, uint256 v) external nonpayable
Arguments
Name | Type | Description |
---|---|---|
k | bytes32 | |
v | uint256 |
Source Code
function addUint(bytes32 k, uint256 v) external;
function subtractUint(bytes32 k, uint256 v) external nonpayable
Arguments
Name | Type | Description |
---|---|---|
k | bytes32 | |
v | uint256 |
Source Code
function subtractUint(bytes32 k, uint256 v) external;
function setUints(bytes32 k, uint256[] v) external nonpayable
Arguments
Name | Type | Description |
---|---|---|
k | bytes32 | |
v | uint256[] |
Source Code
function setUints(bytes32 k, uint256[] memory v) external;
function setString(bytes32 k, string v) external nonpayable
Arguments
Name | Type | Description |
---|---|---|
k | bytes32 | |
v | string |
Source Code
function setString(bytes32 k, string calldata v) external;
function setBytes(bytes32 k, bytes v) external nonpayable
Arguments
Name | Type | Description |
---|---|---|
k | bytes32 | |
v | bytes |
Source Code
function setBytes(bytes32 k, bytes calldata v) external;
function setBool(bytes32 k, bool v) external nonpayable
Arguments
Name | Type | Description |
---|---|---|
k | bytes32 | |
v | bool |
Source Code
function setBool(bytes32 k, bool v) external;
function setInt(bytes32 k, int256 v) external nonpayable
Arguments
Name | Type | Description |
---|---|---|
k | bytes32 | |
v | int256 |
Source Code
function setInt(bytes32 k, int256 v) external;
function setBytes32(bytes32 k, bytes32 v) external nonpayable
Arguments
Name | Type | Description |
---|---|---|
k | bytes32 | |
v | bytes32 |
Source Code
function setBytes32(bytes32 k, bytes32 v) external;
function setAddressArrayItem(bytes32 k, address v) external nonpayable
Arguments
Name | Type | Description |
---|---|---|
k | bytes32 | |
v | address |
Source Code
function setAddressArrayItem(bytes32 k, address v) external;
function deleteAddress(bytes32 k) external nonpayable
Arguments
Name | Type | Description |
---|---|---|
k | bytes32 |
Source Code
function deleteAddress(bytes32 k) external;
function deleteUint(bytes32 k) external nonpayable
Arguments
Name | Type | Description |
---|---|---|
k | bytes32 |
Source Code
function deleteUint(bytes32 k) external;
function deleteUints(bytes32 k) external nonpayable
Arguments
Name | Type | Description |
---|---|---|
k | bytes32 |
Source Code
function deleteUints(bytes32 k) external;
function deleteString(bytes32 k) external nonpayable
Arguments
Name | Type | Description |
---|---|---|
k | bytes32 |
Source Code
function deleteString(bytes32 k) external;
function deleteBytes(bytes32 k) external nonpayable
Arguments
Name | Type | Description |
---|---|---|
k | bytes32 |
Source Code
function deleteBytes(bytes32 k) external;
function deleteBool(bytes32 k) external nonpayable
Arguments
Name | Type | Description |
---|---|---|
k | bytes32 |
Source Code
function deleteBool(bytes32 k) external;
function deleteInt(bytes32 k) external nonpayable
Arguments
Name | Type | Description |
---|---|---|
k | bytes32 |
Source Code
function deleteInt(bytes32 k) external;
function deleteBytes32(bytes32 k) external nonpayable
Arguments
Name | Type | Description |
---|---|---|
k | bytes32 |
Source Code
function deleteBytes32(bytes32 k) external;
function deleteAddressArrayItem(bytes32 k, address v) external nonpayable
Arguments
Name | Type | Description |
---|---|---|
k | bytes32 | |
v | address |
Source Code
function deleteAddressArrayItem(bytes32 k, address v) external;
function deleteAddressArrayItemByIndex(bytes32 k, uint256 i) external nonpayable
Arguments
Name | Type | Description |
---|---|---|
k | bytes32 | |
i | uint256 |
Source Code
function deleteAddressArrayItemByIndex(bytes32 k, uint256 i) external;
function getAddressValues(bytes32[] keys) external view
returns(values address[])
Arguments
Name | Type | Description |
---|---|---|
keys | bytes32[] |
Source Code
function getAddressValues(bytes32[] memory keys) external view returns (address[] memory values);
function getAddress(bytes32 k) external view
returns(address)
Arguments
Name | Type | Description |
---|---|---|
k | bytes32 |
Source Code
function getAddress(bytes32 k) external view returns (address);
function getAddressBoolean(bytes32 k, address a) external view
returns(bool)
Arguments
Name | Type | Description |
---|---|---|
k | bytes32 | |
a | address |
Source Code
function getAddressBoolean(bytes32 k, address a) external view returns (bool);
function getUintValues(bytes32[] keys) external view
returns(values uint256[])
Arguments
Name | Type | Description |
---|---|---|
keys | bytes32[] |
Source Code
function getUintValues(bytes32[] memory keys) external view returns (uint256[] memory values);
function getUint(bytes32 k) external view
returns(uint256)
Arguments
Name | Type | Description |
---|---|---|
k | bytes32 |
Source Code
function getUint(bytes32 k) external view returns (uint256);
function getUints(bytes32 k) external view
returns(uint256[])
Arguments
Name | Type | Description |
---|---|---|
k | bytes32 |
Source Code
function getUints(bytes32 k) external view returns (uint256[] memory);
function getString(bytes32 k) external view
returns(string)
Arguments
Name | Type | Description |
---|---|---|
k | bytes32 |
Source Code
function getString(bytes32 k) external view returns (string memory);
function getBytes(bytes32 k) external view
returns(bytes)
Arguments
Name | Type | Description |
---|---|---|
k | bytes32 |
Source Code
function getBytes(bytes32 k) external view returns (bytes memory);
function getBool(bytes32 k) external view
returns(bool)
Arguments
Name | Type | Description |
---|---|---|
k | bytes32 |
Source Code
function getBool(bytes32 k) external view returns (bool);
function getInt(bytes32 k) external view
returns(int256)
Arguments
Name | Type | Description |
---|---|---|
k | bytes32 |
Source Code
function getInt(bytes32 k) external view returns (int256);
function getBytes32(bytes32 k) external view
returns(bytes32)
Arguments
Name | Type | Description |
---|---|---|
k | bytes32 |
Source Code
function getBytes32(bytes32 k) external view returns (bytes32);
function countAddressArrayItems(bytes32 k) external view
returns(uint256)
Arguments
Name | Type | Description |
---|---|---|
k | bytes32 |
Source Code
function countAddressArrayItems(bytes32 k) external view returns (uint256);
function getAddressArray(bytes32 k) external view
returns(address[])
Arguments
Name | Type | Description |
---|---|---|
k | bytes32 |
Source Code
function getAddressArray(bytes32 k) external view returns (address[] memory);
function getAddressArrayItemPosition(bytes32 k, address toFind) external view
returns(uint256)
Arguments
Name | Type | Description |
---|---|---|
k | bytes32 | |
toFind | address |
Source Code
function getAddressArrayItemPosition(bytes32 k, address toFind) external view returns (uint256);
function getAddressArrayItemByIndex(bytes32 k, uint256 i) external view
returns(address)
Arguments
Name | Type | Description |
---|---|---|
k | bytes32 | |
i | uint256 |
Source Code
function getAddressArrayItemByIndex(bytes32 k, uint256 i) external view returns (address);
- AaveStrategy
- AccessControl
- AccessControlLibV1
- Address
- BaseLibV1
- BokkyPooBahsDateTimeLibrary
- BondPool
- BondPoolBase
- BondPoolLibV1
- CompoundStrategy
- Context
- Controller
- Cover
- CoverBase
- CoverLibV1
- CoverProvision
- CoverReassurance
- CoverStake
- CoverUtilV1
- cxToken
- cxTokenFactory
- cxTokenFactoryLibV1
- Destroyable
- ERC165
- ERC20
- FakeAaveLendingPool
- FakeCompoundERC20Delegator
- FakeRecoverable
- FakeStore
- FakeToken
- FakeUniswapPair
- FakeUniswapV2FactoryLike
- FakeUniswapV2PairLike
- FakeUniswapV2RouterLike
- Finalization
- Governance
- GovernanceUtilV1
- IAaveV2LendingPoolLike
- IAccessControl
- IBondPool
- IClaimsProcessor
- ICommission
- ICompoundERC20DelegatorLike
- ICover
- ICoverProvision
- ICoverReassurance
- ICoverStake
- ICxToken
- ICxTokenFactory
- IERC165
- IERC20
- IERC20Detailed
- IERC20Metadata
- IERC3156FlashBorrower
- IERC3156FlashLender
- IFinalization
- IGovernance
- ILendingStrategy
- IMember
- IPausable
- IPolicy
- IPolicyAdmin
- IPriceDiscovery
- IProtocol
- IRecoverable
- IReporter
- IResolution
- IResolvable
- IStakingPools
- IStore
- IUniswapV2FactoryLike
- IUniswapV2PairLike
- IUniswapV2RouterLike
- IUnstakable
- IVault
- IVaultFactory
- IWitness
- LiquidityEngine
- MaliciousToken
- Migrations
- MockCxToken
- MockCxTokenPolicy
- MockCxTokenStore
- MockProcessorStore
- MockProcessorStoreLib
- MockProtocol
- MockStore
- MockVault
- NTransferUtilV2
- NTransferUtilV2Intermediate
- Ownable
- Pausable
- Policy
- PolicyAdmin
- PolicyHelperV1
- PriceDiscovery
- PriceLibV1
- Processor
- ProtoBase
- Protocol
- ProtoUtilV1
- Recoverable
- ReentrancyGuard
- RegistryLibV1
- Reporter
- Resolution
- Resolvable
- RoutineInvokerLibV1
- SafeERC20
- StakingPoolBase
- StakingPoolCoreLibV1
- StakingPoolInfo
- StakingPoolLibV1
- StakingPoolReward
- StakingPools
- Store
- StoreBase
- StoreKeyUtil
- StrategyLibV1
- Strings
- Unstakable
- ValidationLibV1
- Vault
- VaultBase
- VaultFactory
- VaultFactoryLibV1
- VaultLibV1
- WithFlashLoan
- Witness