mirror of
https://github.com/alexgo-io/DefiLlama-Adapters.git
synced 2026-01-12 22:43:12 +08:00
26 lines
460 B
JavaScript
26 lines
460 B
JavaScript
const marketStrings = {
|
|
total_a1_borrowed: "ta1b",
|
|
total_a1_supply: "ta1s",
|
|
a1_mkt: "a1mk",
|
|
total_a2_borrowed: "ta2b",
|
|
total_a2_supply: "ta2s",
|
|
a2_mkt: "a2mk",
|
|
basset_exchange_rate: "baer",
|
|
latest_price: "latest_price",
|
|
}
|
|
|
|
const appDictionary = {
|
|
"ALGO/STBL2": {
|
|
"appId": 994412935,
|
|
"a1": "ALGO",
|
|
"a1d": 6,
|
|
"a2": "STBL2",
|
|
"a2d": 6,
|
|
"oracle": 531724540
|
|
},
|
|
}
|
|
|
|
module.exports = {
|
|
marketStrings,
|
|
appDictionary,
|
|
} |