Source: api/contracts/index.js

/**
 * @file Exposes all supported contracts API
 * @author Ivan Violentov <ivan.violentov@jibrel.network>
 */

import erc20 from './erc20'
import erc20Named from './erc20Named'
import erc20Validatable from './erc20Validatable'

export default { erc20, erc20Named, erc20Validatable }