Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Simple TACo images #686

Merged
merged 5 commits into from
Dec 5, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions src/components/StakingApplicationOperationIcon/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ import randomBeaconIncrease from "../../static/images/RandomBeaconIncrease.png"
import randomBeaconDecrease from "../../static/images/RandomBeaconDecrease.png"
import tbtcIncrease from "../../static/images/TbtcIncrease.png"
import tbtcDecrease from "../../static/images/TbtcDecrease.png"
import tacoIncrease from "../../static/images/TACoIncrease.png"
import tacoDecrease from "../../static/images/TACoDecrease.png"
import { StakingAppName } from "../../store/staking-applications"

type Operation = "increase" | "decrease"
Expand All @@ -18,8 +20,8 @@ const iconMap: Record<StakingAppName, Record<Operation, string>> = {
decrease: randomBeaconDecrease,
},
taco: {
increase: tbtcIncrease,
decrease: tbtcDecrease,
increase: tacoIncrease,
decrease: tacoDecrease,
},
}

Expand Down
Binary file modified src/static/images/AuthorizingApplicationsIllustrationDark.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src/static/images/AuthorizingApplicationsIllustrationLight.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src/static/images/StakingApplicationsIllustrationDark.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src/static/images/StakingApplicationsIllustrationLight.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/static/images/TACoDecrease.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/static/images/TACoIncrease.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 4 additions & 4 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3729,10 +3729,10 @@
mkdirp "^1.0.4"
rimraf "^3.0.2"

"@nucypher/nucypher-contracts@7.0.0-rc.1":
version "7.0.0-rc.1"
resolved "https://registry.yarnpkg.com/@nucypher/nucypher-contracts/-/nucypher-contracts-7.0.0-rc.1.tgz#e958ebda099c0642ab2d9eca24bcf451d01ff107"
integrity sha512-4fZZfwQIqyhNmPbrIAUX8WB6rW9d2t2fCX3eFfcMOIwjCl144jab6fTAGjJx3ea1vXysq1bk9Ydvp93R82EtVg==
"@nucypher/nucypher-contracts@0.13.0":
version "0.13.0"
resolved "https://registry.yarnpkg.com/@nucypher/nucypher-contracts/-/nucypher-contracts-0.13.0.tgz#43ead85d4cdf7eb6b459ba77a6ff90a8bb796300"
integrity sha512-QB9vCVq2mLR2SeA/gSX8Px2QW3wcc9keQuTwgtDOA5J7PLoxDHEAko4ow6ZlsfjsbK572Xz6YReH09MBr71ujA==

"@openzeppelin/contracts-ethereum-package@^2.4.0":
version "2.5.0"
Expand Down
Loading