@bolt-liquidity-hq/cosmwasm-client 0.1.0-beta.25 → 0.1.0-beta.27

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/LICENSE CHANGED
@@ -186,7 +186,7 @@
186
186
  same "printed page" as the copyright notice for easier
187
187
  identification within third-party archives.
188
188
 
189
- Copyright [2021] Archway Network
189
+ Copyright [2025] Bolt Liquidity
190
190
 
191
191
  Licensed under the Apache License, Version 2.0 (the "License");
192
192
  you may not use this file except in compliance with the License.
package/README.md CHANGED
@@ -31,12 +31,15 @@ const price = await client.getPrice(
31
31
  console.log(`ARCH/USDC: ${price.price}`);
32
32
 
33
33
  // Execute a swap
34
- const result = await client.swap(signer, {
35
- assetIn: 'aarch',
36
- amountIn: '1000000000000000000', // 1 ARCH
37
- assetOut: 'ibc/43897B9739BD63E3A08A88191999C632E052724AB96BD4C74AE31375C991F48D', // USDC
38
- minimumAmountOut: '1900000', // 1.9 USDC minimum
39
- });
34
+ const result = await client.swap(
35
+ {
36
+ assetIn: 'aarch',
37
+ amountIn: '1000000000000000000', // 1 ARCH
38
+ assetOut: 'ibc/43897B9739BD63E3A08A88191999C632E052724AB96BD4C74AE31375C991F48D', // USDC
39
+ minimumAmountOut: '1900000', // 1.9 USDC minimum
40
+ },
41
+ signer
42
+ );
40
43
  ```
41
44
 
42
45
  ## 📖 API Reference