polar-bear-stash-contracts
Version:
Smart contracts for the PolarBearStash (COLD) ERC20 token on the Berachain (test)chain.
11 lines (9 loc) • 318 B
JavaScript
const { version } = require('../package.json');
module.exports = {
'github-link': (contractPath) => {
if (typeof contractPath !== 'string') {
throw new Error('Missing argument');
}
return `https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v${version}/contracts/${contractPath}`;
},
};