B Token Storage

Methods

accountTokens

function accountTokens(address) external view returns (uint256)

Official record of token balances for each account

Parameters

NameTypeDescription

_0

address

undefined

Returns

NameTypeDescription

_0

uint256

undefined

accrualBlockNumber

function accrualBlockNumber() external view returns (uint256)

Block number that interest was last accrued at

Returns

NameTypeDescription

_0

uint256

undefined

admin

function admin() external view returns (address payable)

Administrator for this contract

Returns

NameTypeDescription

_0

address payable

undefined

bondtroller

function bondtroller() external view returns (contract Bondtroller)

Contract which oversees inter-cToken operations

Returns

NameTypeDescription

_0

contract Bondtroller

undefined

borrowIndex

function borrowIndex() external view returns (uint256)

Accumulator of the total earned interest rate since the opening of the market

Returns

NameTypeDescription

_0

uint256

undefined

decimals

function decimals() external view returns (uint8)

EIP-20 token decimals for this token

Returns

NameTypeDescription

_0

uint8

undefined

interestRateModel

function interestRateModel() external view returns (contract InterestRateModel)

Model which tells what the current interest rate should be

Returns

NameTypeDescription

_0

contract InterestRateModel

undefined

name

function name() external view returns (string)

EIP-20 token name for this token

Returns

NameTypeDescription

_0

string

undefined

pendingAdmin

function pendingAdmin() external view returns (address payable)

Pending administrator for this contract

Returns

NameTypeDescription

_0

address payable

undefined

protocolSeizeShareMantissa

function protocolSeizeShareMantissa() external view returns (uint256)

Share of seized collateral that is added to reserves

Returns

NameTypeDescription

_0

uint256

undefined

reserveFactorMantissa

function reserveFactorMantissa() external view returns (uint256)

Fraction of interest currently set aside for reserves

Returns

NameTypeDescription

_0

uint256

undefined

symbol

function symbol() external view returns (string)

EIP-20 token symbol for this token

Returns

NameTypeDescription

_0

string

undefined

totalBorrows

function totalBorrows() external view returns (uint256)

Total amount of outstanding borrows of the underlying in this market

Returns

NameTypeDescription

_0

uint256

undefined

totalReserves

function totalReserves() external view returns (uint256)

Total amount of reserves of the underlying held in this market

Returns

NameTypeDescription

_0

uint256

undefined

totalSupply

function totalSupply() external view returns (uint256)

Total number of tokens in circulation

Returns

NameTypeDescription

_0

uint256

undefined

Last updated