-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🧮 Mint'lenmiş KimlikDAO Pass sayısını tablodan oku
- Loading branch information
1 parent
0e34d24
commit b8f9b76
Showing
4 changed files
with
37 additions
and
15 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -65,7 +65,7 @@ h2 { | |
background-color: #FFC3C3; | ||
} | ||
|
||
.sac.ftm { | ||
.sac.mina { | ||
background-color: #B0FFDE; | ||
} | ||
|
||
|
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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
|
||
/** @const {!Object<string, number>} */ | ||
const Sayılar = { | ||
"polygon": 2, | ||
"eth": 13, | ||
"avax": 57, | ||
"bnb": 5, | ||
"arb": 8, | ||
"mina": 122, | ||
}; | ||
|
||
const üret = (d) => { | ||
if (d.chain == "toplam") | ||
return Object.values(Sayılar).reduce((x, y) => x + y); | ||
return Sayılar[d.chain]; | ||
} | ||
|
||
export { | ||
üret | ||
}; |
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