Skip to content

Commit

Permalink
Hardcode export artifact
Browse files Browse the repository at this point in the history
  • Loading branch information
kevincheng96 committed Nov 3, 2023
1 parent 22cf923 commit 24b5123
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions deployments/mainnet/usdc/migrations/1687890699_temp.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
import { DeploymentManager } from '../../../../plugins/deployment_manager/DeploymentManager';
import { migration } from '../../../../plugins/deployment_manager/Migration';

interface Vars {
newWBTCPriceFeed: string
};

export default migration('1687890699_temp', {
prepare: async (deploymentManager: DeploymentManager) => {
// Hardcoded price feed address because artifact from 5 months ago has expired
return { newWBTCPriceFeed: "0x45939657d1CA34A8FA39A924B71D28Fe8431e581" };
},

enact: async (deploymentManager: DeploymentManager, govDeploymentManager: DeploymentManager, vars: Vars) => {
},
});

0 comments on commit 24b5123

Please sign in to comment.