You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
301 B
12 lines
301 B
const { capitalize } = require('../../helpers');
|
|
|
|
const mapType = str => (str == 'uint256' ? 'Uint' : capitalize(str));
|
|
|
|
const formatType = type => ({
|
|
name: `${mapType(type)}Set`,
|
|
type,
|
|
});
|
|
|
|
const TYPES = ['bytes32', 'address', 'uint256'].map(formatType);
|
|
|
|
module.exports = { TYPES, formatType };
|
|
|