currencyForToken
Contract: JBSingleTokenPaymentTerminal
Interface: IJBPaymentTerminal
- Step by step
 - Code
 - Bug bounty
 
The currency that should be used for the specified token.
Definition
function currencyForToken(address _token) external view override returns (uint256) { ... }
- Arguments:
_tokenis the token to check for the currency of.
 - The view function can be accessed externally by anyone.
 - The view function does not alter state on the blockchain.
 - The resulting function overrides a function definition from the 
IJBPaymentTerminalinterface. - The function returns the currency index.
 
Body
- 
This terminal only uses one currency.
return currency; 
/**
  @notice
  The currency that should be used for the specified token.
  @param _token The token to check for the currency of.
  @return The currency index.
*/
function currencyForToken(address _token) external view override returns (uint256) {
  _token; // Prevents unused var compiler and natspec complaints.
  return currency;
}
| Category | Description | Reward | 
|---|---|---|
| Optimization | Help make this operation more efficient. | 0.5ETH | 
| Low severity | Identify a vulnerability in this operation that could lead to an inconvenience for a user of the protocol or for a protocol developer. | 1ETH | 
| High severity | Identify a vulnerability in this operation that could lead to data corruption or loss of funds. | 5+ETH |