@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.
- package/dist/cjs/dev/index.cjs +4 -0
- package/dist/esm/dev/index.mjs +4 -0
- package/package.json +1 -1
package/dist/cjs/dev/index.cjs
CHANGED
|
@@ -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,
|
package/dist/esm/dev/index.mjs
CHANGED
|
@@ -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,
|