We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 428234f commit f2447b4Copy full SHA for f2447b4
.changeset/config.json
@@ -2,7 +2,7 @@
2
"$schema": "https://unpkg.com/@changesets/config@3.0.3/schema.json",
3
"changelog": [
4
"@changesets/changelog-github",
5
- { "repo": "validators-dao/sol-swap" }
+ { "repo": "validatorsdao/typescript-library" }
6
],
7
"commit": false,
8
"fixed": [],
packages/sol-swap/src/examples/jupiter/getQuote.ts
@@ -9,6 +9,8 @@ const getQuote = async () => {
9
if (typeof quote === 'string') {
10
throw new Error(quote)
11
}
12
+ const estimatedAmount = quote.outAmount
13
+ console.log(`Estimated Amount: ${estimatedAmount}`)
14
await jupiterSwap(quote)
15
16
0 commit comments