@whetstone-research/doppler-sdk 1.0.17 → 1.0.18
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/evm/index.cjs +10 -0
- package/dist/evm/index.cjs.map +1 -1
- package/dist/evm/index.d.cts +14 -1
- package/dist/evm/index.d.ts +14 -1
- package/dist/evm/index.js +10 -1
- package/dist/evm/index.js.map +1 -1
- package/dist/solana/index.cjs +108 -12
- package/dist/solana/index.cjs.map +1 -1
- package/dist/solana/index.d.cts +82 -19
- package/dist/solana/index.d.ts +82 -19
- package/dist/solana/index.js +108 -12
- package/dist/solana/index.js.map +1 -1
- package/package.json +1 -1
package/dist/evm/index.cjs
CHANGED
|
@@ -5267,6 +5267,15 @@ var streamableFeesLockerAbi = [
|
|
|
5267
5267
|
{ type: "error", name: "PositionAlreadyUnlocked", inputs: [] },
|
|
5268
5268
|
{ type: "error", name: "InvalidBeneficiary", inputs: [] }
|
|
5269
5269
|
];
|
|
5270
|
+
var streamableFeesLockerV2Abi = [
|
|
5271
|
+
{
|
|
5272
|
+
type: "function",
|
|
5273
|
+
name: "approvedMigrators",
|
|
5274
|
+
stateMutability: "view",
|
|
5275
|
+
inputs: [{ name: "migrator", type: "address" }],
|
|
5276
|
+
outputs: [{ name: "approved", type: "bool" }]
|
|
5277
|
+
}
|
|
5278
|
+
];
|
|
5270
5279
|
var v4MulticurveMigratorAbi = [
|
|
5271
5280
|
{
|
|
5272
5281
|
type: "function",
|
|
@@ -18917,6 +18926,7 @@ exports.rehypeDopplerHookMigratorAbi = rehypeDopplerHookMigratorAbi;
|
|
|
18917
18926
|
exports.resolveGasEstimate = resolveGasEstimate;
|
|
18918
18927
|
exports.sqrtPriceX96ToPrice = sqrtPriceX96ToPrice;
|
|
18919
18928
|
exports.streamableFeesLockerAbi = streamableFeesLockerAbi;
|
|
18929
|
+
exports.streamableFeesLockerV2Abi = streamableFeesLockerV2Abi;
|
|
18920
18930
|
exports.tickToMarketCap = tickToMarketCap;
|
|
18921
18931
|
exports.tickToPrice = tickToPrice;
|
|
18922
18932
|
exports.tokenPriceToRatio = tokenPriceToRatio;
|