/ migrations / 3_deploy_pool.js
3_deploy_pool.js
 1  
 2  const Deployer = artifacts.require("Deployer");
 3  const LinearInterpolator = artifacts.require("LinearAnySlopeInterpolator");
 4  const YieldTracker = artifacts.require("YieldTracker");
 5  
 6  module.exports = async function(deployer) {
 7    /*
 8    await deployer.deploy(LinearInterpolator);
 9    await deployer.deploy(YieldTracker);
10    var d = await Deployer.deployed();
11    
12    d.setContractAddress("Interpolator", LinearInterpolator.address);
13    d.setContractAddress("YieldTracker", YieldTracker.address);*/
14  };