Skip to content

Commit 26ab027

Browse files
committed
fix: bridge token examples
1 parent 943cd1b commit 26ab027

File tree

1 file changed

+14
-2
lines changed

1 file changed

+14
-2
lines changed

packages/thirdweb/src/bridge/Token.ts

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,13 @@ import type { Token } from "./types/Token.js";
2828
* symbol: "ETH",
2929
* name: "Ethereum",
3030
* iconUri: "https://assets.relay.link/icons/1/light.png",
31-
* priceUsd: 2000.50
31+
* priceUsd: 2000.50,
32+
* prices: {
33+
* USD: 2000.50,
34+
* EUR: 1800.00,
35+
* GBP: 1500.00,
36+
* JPY: 10000.00
37+
* }
3238
* },
3339
* {
3440
* chainId: 1,
@@ -37,7 +43,13 @@ import type { Token } from "./types/Token.js";
3743
* symbol: "USDC",
3844
* name: "USD Coin",
3945
* iconUri: "https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png",
40-
* priceUsd: 1.00
46+
* priceUsd: 1.00,
47+
* prices: {
48+
* USD: 1.00,
49+
* EUR: 0.84,
50+
* GBP: 0.73,
51+
* JPY: 120.00
52+
* }
4153
* }
4254
* ]
4355
* ```

0 commit comments

Comments
 (0)