Skip to content

Commit c4bb079

Browse files
Remove token(erc20) controller option
1 parent 822b36a commit c4bb079

File tree

7 files changed

+2
-144
lines changed

7 files changed

+2
-144
lines changed

examples/next/src/components/providers/StarknetProvider.tsx

-5
Original file line numberDiff line numberDiff line change
@@ -130,11 +130,6 @@ const controller = new ControllerConnector({
130130
// slot: "darkshuffle-mainnet",
131131
// preset: "dark-shuffle",
132132
// namespace: "darkshuffle_s0",
133-
tokens: {
134-
erc20: [
135-
"0x0124aeb495b947201f5fac96fd1138e326ad86195b98df6dec9009158a533b49",
136-
],
137-
},
138133
});
139134

140135
const session = new SessionConnector({

packages/controller/src/iframe/profile.ts

-8
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ export class ProfileIFrame extends IFrame<Profile> {
1919
username,
2020
slot,
2121
namespace,
22-
tokens,
2322
...iframeOptions
2423
}: ProfileIFrameOptions) {
2524
const _profileUrl = (profileUrl || PROFILE_URL).replace(/\/$/, "");
@@ -41,13 +40,6 @@ export class ProfileIFrame extends IFrame<Profile> {
4140

4241
_url.searchParams.set("rpcUrl", encodeURIComponent(rpcUrl));
4342

44-
if (tokens?.erc20) {
45-
_url.searchParams.set(
46-
"erc20",
47-
encodeURIComponent(tokens.erc20.toString()),
48-
);
49-
}
50-
5143
super({
5244
...iframeOptions,
5345
id: "controller-profile",

packages/controller/src/types.ts

-6
Original file line numberDiff line numberDiff line change
@@ -180,16 +180,10 @@ export type ProfileOptions = IFrameOptions & {
180180
slot?: string;
181181
/** The namespace to use to fetch trophies data from indexer. Will be mandatory once profile page is in production */
182182
namespace?: string;
183-
/** The tokens to be listed on Inventory modal */
184-
tokens?: Tokens;
185183
};
186184

187185
export type ProfileContextTypeVariant =
188186
| "inventory"
189187
| "trophies"
190188
| "achievements"
191189
| "activity";
192-
193-
export type Tokens = {
194-
erc20?: string[];
195-
};

packages/profile/src/components/provider/connection.tsx

+2-24
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,7 @@
11
import { connectToParent } from "@cartridge/penpal";
22
import { useState, ReactNode, useEffect, useCallback } from "react";
3-
import {
4-
ETH_CONTRACT_ADDRESS,
5-
normalize,
6-
STRK_CONTRACT_ADDRESS,
7-
} from "@cartridge/utils";
8-
import { constants, getChecksumAddress, RpcProvider } from "starknet";
3+
import { normalize } from "@cartridge/utils";
4+
import { constants, RpcProvider } from "starknet";
95
import { useNavigate, useSearchParams } from "react-router-dom";
106
import {
117
ConnectionContext,
@@ -43,24 +39,6 @@ export function ConnectionProvider({ children }: { children: ReactNode }) {
4339
state.namespace = decodeURIComponent(nsParam);
4440
}
4541

46-
// Only update when erc20 state hasn't been set
47-
if (!state.erc20.length) {
48-
const erc20Param = searchParams.get("erc20");
49-
state.erc20 = [
50-
ETH_CONTRACT_ADDRESS,
51-
STRK_CONTRACT_ADDRESS,
52-
...(erc20Param
53-
? decodeURIComponent(erc20Param)
54-
.split(",")
55-
.filter(
56-
(address) =>
57-
![ETH_CONTRACT_ADDRESS, STRK_CONTRACT_ADDRESS].includes(
58-
getChecksumAddress(address),
59-
),
60-
)
61-
: []),
62-
];
63-
}
6442
return state;
6543
});
6644
}, [searchParams]);

packages/profile/src/context/connection.ts

-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ export type ConnectionContextType = {
77
parent: ParentMethods;
88
provider: RpcProvider;
99
chainId: string;
10-
erc20: string[];
1110
project?: string;
1211
namespace?: string;
1312
version?: string;
@@ -34,7 +33,6 @@ export const initialState: ConnectionContextType = {
3433
},
3534
provider: new RpcProvider({ nodeUrl: import.meta.env.VITE_RPC_SEPOLIA }),
3635
chainId: "",
37-
erc20: [],
3836
isVisible: !isIframe(),
3937
setIsVisible: () => {},
4038
closeModal: () => {},

packages/profile/src/hooks/token.ts

-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ export function useBalances(accountAddress?: string) {
2525
accountAddress: accountAddress ?? address,
2626
},
2727
{
28-
enabled: !!project && !!isVisible,
2928
refetchInterval: isVisible ? 3000 : undefined,
3029
},
3130
);

packages/utils/src/hooks/balance.ts

-98
Original file line numberDiff line numberDiff line change
@@ -1,102 +1,4 @@
1-
import { getChecksumAddress, Provider } from "starknet";
2-
import useSWR from "swr";
3-
import { ERC20, ERC20Metadata } from "../erc20";
41
import { CreditQuery, useCreditQuery } from "../api/cartridge";
5-
import { erc20Metadata } from "@cartridge/presets";
6-
7-
export function useERC20Balance({
8-
address,
9-
contractAddress,
10-
provider,
11-
interval,
12-
decimals = 5,
13-
}: {
14-
address?: string;
15-
contractAddress: string | string[];
16-
provider?: Provider;
17-
interval: number | undefined;
18-
decimals?: number;
19-
}) {
20-
const { data: chainId } = useSWR(address && provider ? "chainId" : null, () =>
21-
provider?.getChainId(),
22-
);
23-
const { data: meta } = useSWR(
24-
chainId && erc20Metadata.length
25-
? `erc20:metadata:${chainId}:${address}:${contractAddress}`
26-
: null,
27-
async () => {
28-
if (!provider || !address) return [];
29-
const contractList = Array.isArray(contractAddress)
30-
? contractAddress
31-
: [contractAddress];
32-
const erc20List = await Promise.allSettled(
33-
contractList.map((address) =>
34-
new ERC20({
35-
address,
36-
provider,
37-
logoUrl: erc20Metadata.find(
38-
(m) =>
39-
getChecksumAddress(m.l2_token_address) ===
40-
getChecksumAddress(address),
41-
)?.logo_url,
42-
}).init(),
43-
),
44-
);
45-
46-
return erc20List
47-
.filter((res) => res.status === "fulfilled")
48-
.map((erc20) => erc20.value.metadata());
49-
},
50-
{ fallbackData: [] },
51-
);
52-
53-
const { data, isValidating, isLoading, error } = useSWR(
54-
meta.length && address
55-
? `erc20:balance:${chainId}:${address}:${contractAddress}`
56-
: null,
57-
async () => {
58-
if (!address) return [];
59-
const values = await Promise.allSettled(
60-
meta.map((m) => m.instance.balanceOf(address)),
61-
);
62-
63-
return meta.reduce<{ balance: Balance; meta: ERC20Metadata }[]>(
64-
(prev, meta, i) => {
65-
const res = values[i];
66-
if (res.status === "rejected") return prev;
67-
68-
const value = res.value;
69-
const factor = 10 ** meta.decimals;
70-
const adjusted = parseFloat(value.toString()) / factor;
71-
// Round and remove insignificant trailing zeros
72-
const rounded = parseFloat(adjusted.toFixed(decimals));
73-
const formatted =
74-
adjusted === rounded ? adjusted.toString() : `~${rounded}`;
75-
76-
return [
77-
...prev,
78-
{
79-
balance: {
80-
value,
81-
formatted,
82-
},
83-
meta,
84-
},
85-
];
86-
},
87-
[],
88-
);
89-
},
90-
{ refreshInterval: interval, fallbackData: [] },
91-
);
92-
93-
return {
94-
data,
95-
isFetching: isValidating,
96-
isLoading,
97-
error,
98-
};
99-
}
1002

1013
export type Balance = {
1024
value: bigint;

0 commit comments

Comments
 (0)