-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Deprecate surplus auctions and the 1inch callee (#612)
- Loading branch information
1 parent
632575b
commit b73c8e8
Showing
6 changed files
with
19 additions
and
133 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,18 @@ | ||
<template> | ||
<SurplusContainer :network="network" /> | ||
<div class="flex flex-col w-full text-gray-300"> | ||
<span> This page has been deprecated </span> | ||
<span> | ||
Note: surplus auctions are deprecated since the introduction of | ||
<a | ||
class="text-blue-300" | ||
href="https://forum.makerdao.com/t/introduction-of-smart-burn-engine-and-initial-parameters/21201" | ||
>smart burn engine</a | ||
> | ||
via the | ||
<a class="text-blue-300" href="https://vote.makerdao.com/polling/QmQmxEZp#poll-detail" | ||
>spell 2023-06-23</a | ||
></span | ||
> | ||
</div> | ||
<!-- <SurplusContainer :network="network" /> --> | ||
</template> | ||
|
||
<script lang="ts"> | ||
import Vue from 'vue'; | ||
import SurplusContainer from '~/containers/SurplusContainer.vue'; | ||
export default Vue.extend({ | ||
components: { | ||
SurplusContainer, | ||
}, | ||
layout: process.env.DEMO_MODE ? 'demoMode' : 'default', | ||
computed: { | ||
network() { | ||
return this.$store.getters['network/getPageNetwork']; | ||
}, | ||
}, | ||
}); | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters