tma devs вещают о том как надо
youtube: https://youtube.com/@tmadevs
github: https://github.com/tmadevs
для связи: @rashdeva @vityooook
Post #79
159
приветствую. а есть фронтендщики которым нужна подработка?
- 😁 3
- ❤ 1
- 🔥 1
TM @tmdevs
У нас есть ряд задач по фронтенду, к которым нужно подключиться, хотел бы уточнить твою доступность
Скоуп задач:
1. Сделать ревью свапов и исправить недочеты
2. Доделать взаимодействие с лимитными ордерами (смарт+бек готовы, остается добить ряд деталей по фронту)
3. Сделать интерфейсы для взаимодействия с волтами автоперестановки ликвидности в CLMM
Forwarded from Nikolay Leon
export default {
async fetch(request) {
const country = request.cf?.country || "XX";
const url = new URL(request.url);
if (country === "RU") {
const redirectUrl = new URL(url.pathname + url.search, "YOU RU-MINIAPP_DOMAIN");
return Response.redirect(redirectUrl.toString(), 302);
}
return fetch(request);
}
};Forwarded from *ЯСВАМИ – События в Telegram

// Check if wallet is stored in localStorage
// it helps to handle the case when user refreshes the page
// and we don't know if wallet is connected or not
// while tonconnect is restoring wallet info
const isWalletStored = !!window?.localStorage.getItem(
'ton-connect-ui_wallet-info'
);
const wallet = useTonConnect();
console.log(wallet.connected, isWalletStored)
// false, true
// here I just example that in few seconds wallet
setTimeout(() => {
console.log(wallet.connected, isWalletStored)
// true, true
}, 10)
Forwarded from LotTony DAO (Scilef🦉)
