@whetstone-research/doppler-sdk 1.0.4 → 1.0.5
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/README.md +2 -0
- package/dist/evm/index.cjs +682 -332
- package/dist/evm/index.cjs.map +1 -1
- package/dist/evm/index.d.cts +639 -8
- package/dist/evm/index.d.ts +639 -8
- package/dist/evm/index.js +682 -334
- package/dist/evm/index.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -98,6 +98,8 @@ console.log('Pool address:', result.poolAddress);
|
|
|
98
98
|
console.log('Token address:', result.tokenAddress);
|
|
99
99
|
```
|
|
100
100
|
|
|
101
|
+
If you set `cliffDuration > 0`, the SDK now automatically uses the DERC20 V2 factory and exposes schedule-aware token reads via `sdk.getDerc20V2(tokenAddress)`.
|
|
102
|
+
|
|
101
103
|
> **Tick spacing reminder:** When you provide ticks manually via `poolByTicks`, make sure both `startTick` and `endTick` are exact multiples of the fee tier's tick spacing (100→1, 500→10, 3000→60, 10000→200). The SDK now validates this locally and will fail fast if the ticks are misaligned.
|
|
102
104
|
|
|
103
105
|
### Static Auction with Lockable Beneficiaries (V3)
|