Skip to content

Commit 39b7456

Browse files
zzq0826Holybasil
andauthored
Add more assets (#1293)
* Add more assets * Update Mitosis link * Add logo for Mitosis * fix: project url * Update openblock api * adjust find token logic --------- Co-authored-by: holybasil <[email protected]>
1 parent aa4caea commit 39b7456

File tree

7 files changed

+91
-9
lines changed

7 files changed

+91
-9
lines changed

netlify.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ REACT_APP_SCROLL_ORIGINS_NFT="0x90a274D591d5AB1a25f0DD0F06F28533C34D7d9f"
161161
REACT_APP_SCROLL_ORIGINS_NFT_V2="0xDd7d857F570B0C211abfe05cd914A85BefEC2464"
162162
REACT_APP_L1_MESSAGE_QUEUE_WITH_GAS_PRICE_ORACLE="0xF0B2293F5D834eAe920c6974D50957A1732de763"
163163
REACT_APP_L1_BATCH_BRIDGE_GATEWAY_PROXY_ADDR = "0xE86ad3312FA693aDeD34dEc3899176d97ac883B2"
164-
REACT_APP_OPEN_BLOCK_URI = "https://5x6x869ic0.execute-api.us-east-1.amazonaws.com"
164+
REACT_APP_OPEN_BLOCK_URI = "http://obl-data-gateway-dev-568660380.us-east-1.elb.amazonaws.com:8000"
165165

166166
REACT_APP_EAS_ADDRESS="0xaEF4103A04090071165F78D45D83A0C0782c2B2a"
167167
REACT_APP_BADGE_SCHEMA="0xa35b5470ebb301aa5d309a8ee6ea258cad680ea112c86e456d5f2254448afc74"
@@ -220,7 +220,7 @@ REACT_APP_SCROLL_ORIGINS_NFT="0x90a274D591d5AB1a25f0DD0F06F28533C34D7d9f"
220220
REACT_APP_SCROLL_ORIGINS_NFT_V2="0xDd7d857F570B0C211abfe05cd914A85BefEC2464"
221221
REACT_APP_L1_MESSAGE_QUEUE_WITH_GAS_PRICE_ORACLE="0xF0B2293F5D834eAe920c6974D50957A1732de763"
222222
REACT_APP_L1_BATCH_BRIDGE_GATEWAY_PROXY_ADDR = "0xE86ad3312FA693aDeD34dEc3899176d97ac883B2"
223-
REACT_APP_OPEN_BLOCK_URI = "https://5x6x869ic0.execute-api.us-east-1.amazonaws.com"
223+
REACT_APP_OPEN_BLOCK_URI = "http://obl-data-gateway-dev-568660380.us-east-1.elb.amazonaws.com:8000"
224224

225225
REACT_APP_EAS_ADDRESS="0xaEF4103A04090071165F78D45D83A0C0782c2B2a"
226226
REACT_APP_BADGE_SCHEMA="0xa35b5470ebb301aa5d309a8ee6ea258cad680ea112c86e456d5f2254448afc74"
@@ -276,7 +276,7 @@ REACT_APP_SCROLL_ORIGINS_NFT="0x74670A3998d9d6622E32D0847fF5977c37E0eC91"
276276
REACT_APP_SCROLL_ORIGINS_NFT_V2="0x42bCaCb8D24Ba588cab8Db0BB737DD2eFca408EC"
277277
REACT_APP_L1_MESSAGE_QUEUE_WITH_GAS_PRICE_ORACLE="0x0d7E906BD9cAFa154b048cFa766Cc1E54E39AF9B"
278278
REACT_APP_L1_BATCH_BRIDGE_GATEWAY_PROXY_ADDR = "0x5Bcfd99c34cf7E06fc756f6f5aE7400504852bc4"
279-
REACT_APP_OPEN_BLOCK_URI = "https://kx58j6x5me.execute-api.us-east-1.amazonaws.com"
279+
REACT_APP_OPEN_BLOCK_URI = "https://www.data-openblocklabs.com"
280280

281281
REACT_APP_EAS_ADDRESS="0xC47300428b6AD2c7D03BB76D05A176058b47E6B0"
282282
REACT_APP_BADGE_SCHEMA="0xd57de4f41c3d3cc855eadef68f98c0d4edd22d57161d96b7c06d2f4336cc3b49"

public/imgs/sessions/tokens/Huma.svg

Lines changed: 9 additions & 0 deletions
Loading
41.8 KB
Loading

public/imgs/sessions/tokens/sUSDe.svg

Lines changed: 14 additions & 0 deletions
Loading

src/pages/bridge/Send/SendTransaction/index.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,9 @@ const SendTransaction = props => {
5959
}, [tokenList, fromNetwork])
6060

6161
const selectedToken: any = useMemo(
62-
() => tokenOptions.find(item => item.symbol === tokenSymbol) ?? NATIVE_TOKEN_LIST.find(item => item.chainId === fromNetwork.chainId),
62+
() =>
63+
tokenOptions.find(item => item.symbol.toLowerCase() === tokenSymbol.toLowerCase()) ??
64+
NATIVE_TOKEN_LIST.find(item => item.chainId === fromNetwork.chainId),
6365
[tokenOptions, tokenSymbol, fromNetwork],
6466
)
6567
// const { balance, isLoading: balanceLoading } = useBalance(selectedToken.address)

src/pages/sessions-one/SessionOneMarks/projectList.ts

Lines changed: 34 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,14 @@ export const defaultProjectList = {
88
name: "Nuri",
99
project: "Nuri",
1010
},
11+
{
12+
name: "Maverick",
13+
project: "Maverick",
14+
},
15+
{
16+
name: "Vessel",
17+
project: "Vessel",
18+
},
1119
{
1220
name: "Others",
1321
project: "Others",
@@ -24,14 +32,14 @@ export const defaultProjectList = {
2432
name: "SyncSwap",
2533
project: "SyncSwap",
2634
},
27-
{
28-
name: "Wombat",
29-
project: "Wombat",
30-
},
3135
{
3236
name: "Zebra",
3337
project: "Zebra",
3438
},
39+
{
40+
name: "Wombat",
41+
project: "Wombat",
42+
},
3543
],
3644
},
3745
],
@@ -40,7 +48,10 @@ export const defaultProjectList = {
4048
name: "Aave",
4149
project: "Aave",
4250
},
43-
51+
{
52+
name: "Huma",
53+
project: "Huma",
54+
},
4455
{
4556
name: "Rho Markets",
4657
project: "Rho Markets",
@@ -157,6 +168,24 @@ const PROJECT_LIST = [
157168
// logo: "/imgs/canvas/ScrollCanvas.svg",
158169
// website: "/canvas",
159170
// },
171+
{
172+
name: "Vessel",
173+
key: "Vessel",
174+
logo: "https://scroll-eco-list.netlify.app/logos/Vessel.jpg",
175+
website: "https://vessel.finance/",
176+
},
177+
{
178+
name: "Maverick",
179+
key: "Maverick",
180+
logo: "https://scroll-eco-list.netlify.app/logos/Maverick%20Protocol.jpg",
181+
website: "https://app.mav.xyz/add-liquidity?chain=534352",
182+
},
183+
{
184+
name: "Huma",
185+
key: "Huma",
186+
logo: "/imgs/sessions/tokens/Huma.svg",
187+
website: "https://app.huma.finance/#/",
188+
},
160189
]
161190

162191
export const PROJECT_MAP = new Proxy(PROJECT_LIST, {

src/pages/sessions-one/SessionZeroMarks/tokenList.ts

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,24 @@ export const tokenList = [
3333
logoURI: "https://scroll-tech.github.io/token-list/data/USDT/logo.svg",
3434
address: "0xf55BEC9cafDbE8730f096Aa55dad6D22d44099Df",
3535
},
36+
{
37+
name: "sUSDe / USDe",
38+
symbol: "sUSDe",
39+
key: "sUSDe",
40+
logoURI: "/imgs/sessions/tokens/sUSDe.svg",
41+
additionalToken: "USDe",
42+
thirdPartyBridge: {
43+
url: "https://stargate.finance/bridge",
44+
name: "Stargate",
45+
},
46+
},
47+
{
48+
name: "pufETH",
49+
symbol: "pufETH",
50+
key: "pufETH",
51+
logoURI: "https://scroll-tech.github.io/token-list/data/PufETH/logo.svg",
52+
address: "0xc4d46E8402F476F269c379677C99F18E22Ea030e",
53+
},
3654
{
3755
name: "weETH",
3856
symbol: "weETH",
@@ -126,6 +144,16 @@ export const tokenList = [
126144
name: "Pencils",
127145
},
128146
},
147+
{
148+
name: "Assets on Mitosis",
149+
key: "MITOSIS",
150+
logoURI: "/imgs/sessions/tokens/Mitosis.png",
151+
containedTokens: [{ logoURI: "/imgs/sessions/tokens/weETH.png", symbol: "weETH" }],
152+
thirdPartyBridge: {
153+
url: "https://app.mitosis.org/?asset=weETH&type=deposit&to=scroll",
154+
name: "Mitosis",
155+
},
156+
},
129157
]
130158

131159
export const gasList = [

0 commit comments

Comments
 (0)