> For the complete documentation index, see [llms.txt](https://docs.mound.finance/qubit-developers/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.mound.finance/qubit-developers/qore/claim-qubit.md).

# Claim Qubit

Every Qubit user accrues QBT for each second they are supplying to or borrowing from the protocol. Users may call the Qore's claimQubit method at any time to transfer QBT accrued to their address.

### Qore

```typescript
// Claim all the QBT accrued by holder in all markets
function claimQubit() external;

// Claim all the QBT accrued by holder in specific market
function claimQubit(address market) external;
```

### Solidity

```typescript
Qore qore = Qore(<qoreAddress>);
qore.claimQubit();
```

### Ethers.js

```typescript
const qore = await ethers.getContractAt(<qoreABI>, <qoreAddress>);
await qore.claimQubit();
```
