Security News
cURL Project and Go Security Teams Reject CVSS as Broken
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
@georgeroman/balancer-v2-pools
Advanced tools
balancer-v2-pools
Simple SDK for simulating the exact on-chain behaviour of various Balancer v2 pools.
The SDK tries to be as lean as possible in order to prioritize certain critical usages (such as Balancer's SOR). For this reason, it only provides the bare-minimum for simulating Balancer pools off-chain. However, higher-level constructs (like initializing pools directly from on-chain data or the official Balancer subgraph) are still available. In order to be able to use these, make sure to install any peer dependencies of this package (eg. via npm-install-peers).
import { JsonRpcProvider } from "@ethersproject/providers";
import { WeightedPool } from "@georgeroman/balancer-v2-pools";
import { initFromOnchain } from "@georgeroman/balancer-v2-pools/dist/src/initializers/weighted";
const provider = new JsonRpcProvider(process.env.RPC_ENDPOINT);
// WETH/DAI 60/40 on Mainnet
const pool = await initFromOnchain(
provider,
"0x0b09dea16768f0799065c475be02919503cb2a3500020000000000000000001a",
"mainnet"
);
// Swap
const amountOut = pool.swapGivenIn("WETH", "DAI", "100");
// Join
const bptOut = pool.joinExactTokensInForBptOut({
WETH: "1",
DAI: "2000",
});
// Exit
const tokensOut = pool.exitExactBptInForTokensOut("1.23");
Mainnet forking is used for testing in order to make sure the SDK exactly match the EVM. Make sure to have a .env
file in the root directory, containing the following definitions (the given block number must include the instances of the pools used in the tests):
RPC_URL=
BLOCK_NUMBER=
The setup I recommend for deterministic tests is the following:
RPC_URL=https://eth-mainnet.alchemyapi.io/v2/${ALCHEMY_KEY}
BLOCK_NUMBER=13128465
To execute the tests locally, simply run:
# Install dependencies
npm install
# Run tests
npm test
FAQs
<code>balancer-v2-pools</code>
We found that @georgeroman/balancer-v2-pools demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
Security News
Biden's executive order pushes for AI-driven cybersecurity, software supply chain transparency, and stronger protections for federal and open source systems.