liquid-sdk 1.7.2 → 1.7.4
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/AGENT_README.md +16 -13
- package/CHANGELOG.md +22 -0
- package/dist/index.d.mts +95 -28
- package/dist/index.d.ts +95 -28
- package/dist/index.js +128 -4
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +125 -3
- package/dist/index.mjs.map +1 -1
- package/llms.txt +3 -3
- package/package.json +1 -1
package/llms.txt
CHANGED
|
@@ -30,7 +30,7 @@ console.log(result.tokenAddress);
|
|
|
30
30
|
Liquid Protocol deploys ERC-20 tokens on Base (chain 8453) with:
|
|
31
31
|
- Uniswap V4 liquidity pools (created automatically)
|
|
32
32
|
- Locked LP with configurable reward splits
|
|
33
|
-
- MEV protection (sniper auction
|
|
33
|
+
- MEV protection (sniper auction with descending fees)
|
|
34
34
|
- Optional extensions: dev buy, vault lockup/vesting, merkle airdrops
|
|
35
35
|
|
|
36
36
|
Every token gets 100 billion supply (18 decimals), a Uniswap V4 pool, and locked liquidity.
|
|
@@ -86,8 +86,8 @@ Every token gets 100 billion supply (18 decimals), a Uniswap V4 pool, and locked
|
|
|
86
86
|
- `sdk.getAuctionMaxRounds()` — Max auction rounds
|
|
87
87
|
- `sdk.getAuctionGasPriceForBid(gasPeg, bidAmount)` — Calculate gas price for bid
|
|
88
88
|
|
|
89
|
-
### MEV
|
|
90
|
-
- `sdk.
|
|
89
|
+
### MEV Descending Fees
|
|
90
|
+
- `sdk.getMevDescendingFeesBlockDelay()` — Configured block delay (also: `getMevBlockDelay()` deprecated alias)
|
|
91
91
|
- `sdk.getPoolUnlockTime(poolId)` — When MEV lock expires (unix timestamp)
|
|
92
92
|
|
|
93
93
|
### Factory & Allowlist
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "liquid-sdk",
|
|
3
|
-
"version": "1.7.
|
|
3
|
+
"version": "1.7.4",
|
|
4
4
|
"description": "TypeScript SDK to deploy ERC-20 tokens with Uniswap V4 liquidity on Base — zero API keys, one dependency (viem)",
|
|
5
5
|
"author": "Liquid Protocol",
|
|
6
6
|
"homepage": "https://github.com/Liquid-Protocol-Ops/SDK#readme",
|