export class Config {
static TELEGRAM_APP_ID = undefined; // YOUR APP ID EX : 324893724923
static TELEGRAM_APP_HASH = undefined; // YOUR APP HASH EX: "aslkfjkalsjflkasf"
static USEONCHAINTX = true; // SET To TRUE IF YOU WANT TO USE ONCHAIN TX FOR CHECK IN AND UPGRADE
static USERWALLET = [
[
"0x732d2ea39ce03b14ac1c8d925650f61c64cxxxxxxx",
"accounts/query-1",
],
[
"0x915af2a454eeaefa1b80e1a3e36b53ea214bf78xxxxxxxx",
"accounts/query-2",
],
];
}
how to write it correctly ?
export class Config { static TELEGRAM_APP_ID = undefined; // YOUR APP ID EX : 324893724923 static TELEGRAM_APP_HASH = undefined; // YOUR APP HASH EX: "aslkfjkalsjflkasf" static USEONCHAINTX = true; // SET To TRUE IF YOU WANT TO USE ONCHAIN TX FOR CHECK IN AND UPGRADE static USERWALLET = [ [ "0x732d2ea39ce03b14ac1c8d925650f61c64cxxxxxxx", "accounts/query-1", ], [ "0x915af2a454eeaefa1b80e1a3e36b53ea214bf78xxxxxxxx", "accounts/query-2", ], ]; }