@gearbox-protocol/sdk 3.0.0-vfour.176 → 3.0.0-vfour.177

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.
@@ -544,6 +544,10 @@ var SDKExample = class {
544
544
  });
545
545
  this.#logger?.debug(`faucet address: ${faucetAddr}, owner: ${owner}`);
546
546
  await anvil.impersonateAccount({ address: owner });
547
+ await anvil.setBalance({
548
+ address: owner,
549
+ value: viem.parseEther("100")
550
+ });
547
551
  const hash = await anvil.writeContract({
548
552
  chain: anvil.chain,
549
553
  account: owner,
@@ -542,6 +542,10 @@ var SDKExample = class {
542
542
  });
543
543
  this.#logger?.debug(`faucet address: ${faucetAddr}, owner: ${owner}`);
544
544
  await anvil.impersonateAccount({ address: owner });
545
+ await anvil.setBalance({
546
+ address: owner,
547
+ value: parseEther("100")
548
+ });
545
549
  const hash = await anvil.writeContract({
546
550
  chain: anvil.chain,
547
551
  account: owner,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gearbox-protocol/sdk",
3
- "version": "3.0.0-vfour.176",
3
+ "version": "3.0.0-vfour.177",
4
4
  "description": "Gearbox SDK",
5
5
  "license": "MIT",
6
6
  "main": "./dist/cjs/sdk/index.cjs",