diff --git a/src/constants/labels.ts b/src/constants/labels.ts index 34d6f89..14f2c8c 100644 --- a/src/constants/labels.ts +++ b/src/constants/labels.ts @@ -23,6 +23,7 @@ export const LABELS = { MENU_BORROW: "Borrow", MENU_LIQUIDATE: "Liquidate", MENU_FAUCET: "Faucet", + MARGIN_TRADING: 'Margin Trading', APP_TITLE: "Oyster Lending", CONNECT_BUTTON: "Connect", WALLET_TOOLTIP: "Wallet public key", diff --git a/src/models/account.ts b/src/models/account.ts index 4818033..cc29d98 100644 --- a/src/models/account.ts +++ b/src/models/account.ts @@ -1,7 +1,7 @@ import { AccountInfo, PublicKey, TransactionInstruction } from "@solana/web3.js"; import { AccountInfo as TokenAccountInfo, Token } from "@solana/spl-token"; -import { TOKEN_PROGRAM_ID } from "../constants"; +import { TOKEN_PROGRAM_ID } from "../utils/ids"; export interface TokenAccount { pubkey: PublicKey;