跳到主要内容

JBETHPaymentTerminal3_1_2

Git Source

Mainnet: 0x1d9619E10086FdC1065B114298384aAe3F680CC0

Goerli: 0xd89Ed8008961F68Aab849f49e122f9a1266240Db

Inherits: JBPayoutRedemptionPaymentTerminal3_1_2

Manages all inflows and outflows of ETH funds into the protocol ecosystem.

Functions

_balance

Checks the balance of tokens in this contract.

function _balance() internal view override returns (uint256);

Returns

NameTypeDescription
<none>uint256The contract's balance, as a fixed point number with the same amount of decimals as this terminal.

constructor

constructor(
uint256 _baseWeightCurrency,
IJBOperatorStore _operatorStore,
IJBProjects _projects,
IJBDirectory _directory,
IJBSplitsStore _splitsStore,
IJBPrices _prices,
address _store,
address _owner
)
JBPayoutRedemptionPaymentTerminal3_1_2(
JBTokens.ETH,
18,
JBCurrencies.ETH,
_baseWeightCurrency,
JBSplitsGroups.ETH_PAYOUT,
_operatorStore,
_projects,
_directory,
_splitsStore,
_prices,
_store,
_owner
);

Parameters

NameTypeDescription
_baseWeightCurrencyuint256The currency to base token issuance on.
_operatorStoreIJBOperatorStoreA contract storing operator assignments.
_projectsIJBProjectsA contract which mints ERC-721's that represent project ownership and transfers.
_directoryIJBDirectoryA contract storing directories of terminals and controllers for each project.
_splitsStoreIJBSplitsStoreA contract that stores splits for each project.
_pricesIJBPricesA contract that exposes price feeds.
_storeaddressA contract that stores the terminal's data.
_owneraddressThe address that will own this contract.

_transferFrom

Transfers tokens.

function _transferFrom(address _from, address payable _to, uint256 _amount) internal override;

Parameters

NameTypeDescription
_fromaddressThe address from which the transfer should originate.
_toaddress payableThe address to which the transfer should go.
_amountuint256The amount of the transfer, as a fixed point number with the same number of decimals as this terminal.