timelock-sdk 0.0.214 → 0.0.215
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/abis.cjs +2 -1
- package/dist/abis.d.cts +496 -1
- package/dist/abis.d.ts +496 -1
- package/dist/abis.js +2 -2
- package/dist/{client-ygvKIiDT.d.cts → client-BPuEuipU.d.ts} +2858 -43686
- package/dist/{client-xIkSmoIQ.d.ts → client-DIHwcjWM.d.cts} +2120 -42948
- package/dist/client.cjs +209 -10
- package/dist/client.cjs.map +1 -1
- package/dist/client.d.cts +2 -2
- package/dist/client.d.ts +2 -2
- package/dist/client.js +206 -11
- package/dist/client.js.map +1 -1
- package/dist/{numberUtils-CMthF63F.js → numberUtils-BLcam8Oj.js} +4 -602
- package/dist/numberUtils-BLcam8Oj.js.map +1 -0
- package/dist/{numberUtils-B_FigqzQ.cjs → numberUtils-DBTO6RnN.cjs} +5 -603
- package/dist/numberUtils-DBTO6RnN.cjs.map +1 -0
- package/dist/package.cjs +6 -6
- package/dist/package.cjs.map +1 -1
- package/dist/package.d.cts +9 -2
- package/dist/package.d.ts +9 -2
- package/dist/package.js +6 -6
- package/dist/package.js.map +1 -1
- package/dist/{stateView-9RsJTv8o.js → stateView-CTxn1FU9.js} +599 -2
- package/dist/stateView-CTxn1FU9.js.map +1 -0
- package/dist/{stateView-BawSk8pU.cjs → stateView-DDWWrKZQ.cjs} +604 -1
- package/dist/stateView-DDWWrKZQ.cjs.map +1 -0
- package/package.json +1 -1
- package/dist/numberUtils-B_FigqzQ.cjs.map +0 -1
- package/dist/numberUtils-CMthF63F.js.map +0 -1
- package/dist/stateView-9RsJTv8o.js.map +0 -1
- package/dist/stateView-BawSk8pU.cjs.map +0 -1
package/dist/abis.cjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
const require_stateView = require('./stateView-
|
|
1
|
+
const require_stateView = require('./stateView-DDWWrKZQ.cjs');
|
|
2
2
|
const require_factory = require('./factory-BieDxxUI.cjs');
|
|
3
3
|
|
|
4
4
|
//#region src/abis/poolManager.ts
|
|
@@ -1195,6 +1195,7 @@ exports.guardianAbi = require_factory.guardianAbi;
|
|
|
1195
1195
|
exports.lensAbi = require_stateView.lensAbi;
|
|
1196
1196
|
exports.optionsMarketAbi = require_stateView.optionsMarketAbi;
|
|
1197
1197
|
exports.poolManagerAbi = poolManagerAbi;
|
|
1198
|
+
exports.quoterAbi = require_stateView.quoterAbi;
|
|
1198
1199
|
exports.singleOwnerVaultAbi = require_factory.singleOwnerVaultAbi;
|
|
1199
1200
|
exports.stateViewAbi = require_stateView.stateViewAbi;
|
|
1200
1201
|
//# sourceMappingURL=abis.cjs.map
|
package/dist/abis.d.cts
CHANGED
|
@@ -3757,5 +3757,500 @@ declare const stateViewAbi: readonly [{
|
|
|
3757
3757
|
readonly stateMutability: "view";
|
|
3758
3758
|
}];
|
|
3759
3759
|
//#endregion
|
|
3760
|
-
|
|
3760
|
+
//#region src/abis/quoterV4.d.ts
|
|
3761
|
+
declare const quoterAbi: readonly [{
|
|
3762
|
+
readonly type: "function";
|
|
3763
|
+
readonly name: "_quoteExactInput";
|
|
3764
|
+
readonly inputs: readonly [{
|
|
3765
|
+
readonly name: "params";
|
|
3766
|
+
readonly type: "tuple";
|
|
3767
|
+
readonly internalType: "struct IV4Quoter.QuoteExactParams";
|
|
3768
|
+
readonly components: readonly [{
|
|
3769
|
+
readonly name: "exactCurrency";
|
|
3770
|
+
readonly type: "address";
|
|
3771
|
+
readonly internalType: "Currency";
|
|
3772
|
+
}, {
|
|
3773
|
+
readonly name: "path";
|
|
3774
|
+
readonly type: "tuple[]";
|
|
3775
|
+
readonly internalType: "struct PathKey[]";
|
|
3776
|
+
readonly components: readonly [{
|
|
3777
|
+
readonly name: "intermediateCurrency";
|
|
3778
|
+
readonly type: "address";
|
|
3779
|
+
readonly internalType: "Currency";
|
|
3780
|
+
}, {
|
|
3781
|
+
readonly name: "fee";
|
|
3782
|
+
readonly type: "uint24";
|
|
3783
|
+
readonly internalType: "uint24";
|
|
3784
|
+
}, {
|
|
3785
|
+
readonly name: "tickSpacing";
|
|
3786
|
+
readonly type: "int24";
|
|
3787
|
+
readonly internalType: "int24";
|
|
3788
|
+
}, {
|
|
3789
|
+
readonly name: "hooks";
|
|
3790
|
+
readonly type: "address";
|
|
3791
|
+
readonly internalType: "contract IHooks";
|
|
3792
|
+
}, {
|
|
3793
|
+
readonly name: "hookData";
|
|
3794
|
+
readonly type: "bytes";
|
|
3795
|
+
readonly internalType: "bytes";
|
|
3796
|
+
}];
|
|
3797
|
+
}, {
|
|
3798
|
+
readonly name: "exactAmount";
|
|
3799
|
+
readonly type: "uint128";
|
|
3800
|
+
readonly internalType: "uint128";
|
|
3801
|
+
}];
|
|
3802
|
+
}];
|
|
3803
|
+
readonly outputs: readonly [{
|
|
3804
|
+
readonly name: "";
|
|
3805
|
+
readonly type: "bytes";
|
|
3806
|
+
readonly internalType: "bytes";
|
|
3807
|
+
}];
|
|
3808
|
+
readonly stateMutability: "nonpayable";
|
|
3809
|
+
}, {
|
|
3810
|
+
readonly type: "function";
|
|
3811
|
+
readonly name: "_quoteExactInputSingle";
|
|
3812
|
+
readonly inputs: readonly [{
|
|
3813
|
+
readonly name: "params";
|
|
3814
|
+
readonly type: "tuple";
|
|
3815
|
+
readonly internalType: "struct IV4Quoter.QuoteExactSingleParams";
|
|
3816
|
+
readonly components: readonly [{
|
|
3817
|
+
readonly name: "poolKey";
|
|
3818
|
+
readonly type: "tuple";
|
|
3819
|
+
readonly internalType: "struct PoolKey";
|
|
3820
|
+
readonly components: readonly [{
|
|
3821
|
+
readonly name: "currency0";
|
|
3822
|
+
readonly type: "address";
|
|
3823
|
+
readonly internalType: "Currency";
|
|
3824
|
+
}, {
|
|
3825
|
+
readonly name: "currency1";
|
|
3826
|
+
readonly type: "address";
|
|
3827
|
+
readonly internalType: "Currency";
|
|
3828
|
+
}, {
|
|
3829
|
+
readonly name: "fee";
|
|
3830
|
+
readonly type: "uint24";
|
|
3831
|
+
readonly internalType: "uint24";
|
|
3832
|
+
}, {
|
|
3833
|
+
readonly name: "tickSpacing";
|
|
3834
|
+
readonly type: "int24";
|
|
3835
|
+
readonly internalType: "int24";
|
|
3836
|
+
}, {
|
|
3837
|
+
readonly name: "hooks";
|
|
3838
|
+
readonly type: "address";
|
|
3839
|
+
readonly internalType: "contract IHooks";
|
|
3840
|
+
}];
|
|
3841
|
+
}, {
|
|
3842
|
+
readonly name: "zeroForOne";
|
|
3843
|
+
readonly type: "bool";
|
|
3844
|
+
readonly internalType: "bool";
|
|
3845
|
+
}, {
|
|
3846
|
+
readonly name: "exactAmount";
|
|
3847
|
+
readonly type: "uint128";
|
|
3848
|
+
readonly internalType: "uint128";
|
|
3849
|
+
}, {
|
|
3850
|
+
readonly name: "hookData";
|
|
3851
|
+
readonly type: "bytes";
|
|
3852
|
+
readonly internalType: "bytes";
|
|
3853
|
+
}];
|
|
3854
|
+
}];
|
|
3855
|
+
readonly outputs: readonly [{
|
|
3856
|
+
readonly name: "";
|
|
3857
|
+
readonly type: "bytes";
|
|
3858
|
+
readonly internalType: "bytes";
|
|
3859
|
+
}];
|
|
3860
|
+
readonly stateMutability: "nonpayable";
|
|
3861
|
+
}, {
|
|
3862
|
+
readonly type: "function";
|
|
3863
|
+
readonly name: "_quoteExactOutput";
|
|
3864
|
+
readonly inputs: readonly [{
|
|
3865
|
+
readonly name: "params";
|
|
3866
|
+
readonly type: "tuple";
|
|
3867
|
+
readonly internalType: "struct IV4Quoter.QuoteExactParams";
|
|
3868
|
+
readonly components: readonly [{
|
|
3869
|
+
readonly name: "exactCurrency";
|
|
3870
|
+
readonly type: "address";
|
|
3871
|
+
readonly internalType: "Currency";
|
|
3872
|
+
}, {
|
|
3873
|
+
readonly name: "path";
|
|
3874
|
+
readonly type: "tuple[]";
|
|
3875
|
+
readonly internalType: "struct PathKey[]";
|
|
3876
|
+
readonly components: readonly [{
|
|
3877
|
+
readonly name: "intermediateCurrency";
|
|
3878
|
+
readonly type: "address";
|
|
3879
|
+
readonly internalType: "Currency";
|
|
3880
|
+
}, {
|
|
3881
|
+
readonly name: "fee";
|
|
3882
|
+
readonly type: "uint24";
|
|
3883
|
+
readonly internalType: "uint24";
|
|
3884
|
+
}, {
|
|
3885
|
+
readonly name: "tickSpacing";
|
|
3886
|
+
readonly type: "int24";
|
|
3887
|
+
readonly internalType: "int24";
|
|
3888
|
+
}, {
|
|
3889
|
+
readonly name: "hooks";
|
|
3890
|
+
readonly type: "address";
|
|
3891
|
+
readonly internalType: "contract IHooks";
|
|
3892
|
+
}, {
|
|
3893
|
+
readonly name: "hookData";
|
|
3894
|
+
readonly type: "bytes";
|
|
3895
|
+
readonly internalType: "bytes";
|
|
3896
|
+
}];
|
|
3897
|
+
}, {
|
|
3898
|
+
readonly name: "exactAmount";
|
|
3899
|
+
readonly type: "uint128";
|
|
3900
|
+
readonly internalType: "uint128";
|
|
3901
|
+
}];
|
|
3902
|
+
}];
|
|
3903
|
+
readonly outputs: readonly [{
|
|
3904
|
+
readonly name: "";
|
|
3905
|
+
readonly type: "bytes";
|
|
3906
|
+
readonly internalType: "bytes";
|
|
3907
|
+
}];
|
|
3908
|
+
readonly stateMutability: "nonpayable";
|
|
3909
|
+
}, {
|
|
3910
|
+
readonly type: "function";
|
|
3911
|
+
readonly name: "_quoteExactOutputSingle";
|
|
3912
|
+
readonly inputs: readonly [{
|
|
3913
|
+
readonly name: "params";
|
|
3914
|
+
readonly type: "tuple";
|
|
3915
|
+
readonly internalType: "struct IV4Quoter.QuoteExactSingleParams";
|
|
3916
|
+
readonly components: readonly [{
|
|
3917
|
+
readonly name: "poolKey";
|
|
3918
|
+
readonly type: "tuple";
|
|
3919
|
+
readonly internalType: "struct PoolKey";
|
|
3920
|
+
readonly components: readonly [{
|
|
3921
|
+
readonly name: "currency0";
|
|
3922
|
+
readonly type: "address";
|
|
3923
|
+
readonly internalType: "Currency";
|
|
3924
|
+
}, {
|
|
3925
|
+
readonly name: "currency1";
|
|
3926
|
+
readonly type: "address";
|
|
3927
|
+
readonly internalType: "Currency";
|
|
3928
|
+
}, {
|
|
3929
|
+
readonly name: "fee";
|
|
3930
|
+
readonly type: "uint24";
|
|
3931
|
+
readonly internalType: "uint24";
|
|
3932
|
+
}, {
|
|
3933
|
+
readonly name: "tickSpacing";
|
|
3934
|
+
readonly type: "int24";
|
|
3935
|
+
readonly internalType: "int24";
|
|
3936
|
+
}, {
|
|
3937
|
+
readonly name: "hooks";
|
|
3938
|
+
readonly type: "address";
|
|
3939
|
+
readonly internalType: "contract IHooks";
|
|
3940
|
+
}];
|
|
3941
|
+
}, {
|
|
3942
|
+
readonly name: "zeroForOne";
|
|
3943
|
+
readonly type: "bool";
|
|
3944
|
+
readonly internalType: "bool";
|
|
3945
|
+
}, {
|
|
3946
|
+
readonly name: "exactAmount";
|
|
3947
|
+
readonly type: "uint128";
|
|
3948
|
+
readonly internalType: "uint128";
|
|
3949
|
+
}, {
|
|
3950
|
+
readonly name: "hookData";
|
|
3951
|
+
readonly type: "bytes";
|
|
3952
|
+
readonly internalType: "bytes";
|
|
3953
|
+
}];
|
|
3954
|
+
}];
|
|
3955
|
+
readonly outputs: readonly [{
|
|
3956
|
+
readonly name: "";
|
|
3957
|
+
readonly type: "bytes";
|
|
3958
|
+
readonly internalType: "bytes";
|
|
3959
|
+
}];
|
|
3960
|
+
readonly stateMutability: "nonpayable";
|
|
3961
|
+
}, {
|
|
3962
|
+
readonly type: "function";
|
|
3963
|
+
readonly name: "msgSender";
|
|
3964
|
+
readonly inputs: readonly [];
|
|
3965
|
+
readonly outputs: readonly [{
|
|
3966
|
+
readonly name: "";
|
|
3967
|
+
readonly type: "address";
|
|
3968
|
+
readonly internalType: "address";
|
|
3969
|
+
}];
|
|
3970
|
+
readonly stateMutability: "view";
|
|
3971
|
+
}, {
|
|
3972
|
+
readonly type: "function";
|
|
3973
|
+
readonly name: "quoteExactInput";
|
|
3974
|
+
readonly inputs: readonly [{
|
|
3975
|
+
readonly name: "poolManager";
|
|
3976
|
+
readonly type: "address";
|
|
3977
|
+
readonly internalType: "contract IPoolManager";
|
|
3978
|
+
}, {
|
|
3979
|
+
readonly name: "params";
|
|
3980
|
+
readonly type: "tuple";
|
|
3981
|
+
readonly internalType: "struct IV4Quoter.QuoteExactParams";
|
|
3982
|
+
readonly components: readonly [{
|
|
3983
|
+
readonly name: "exactCurrency";
|
|
3984
|
+
readonly type: "address";
|
|
3985
|
+
readonly internalType: "Currency";
|
|
3986
|
+
}, {
|
|
3987
|
+
readonly name: "path";
|
|
3988
|
+
readonly type: "tuple[]";
|
|
3989
|
+
readonly internalType: "struct PathKey[]";
|
|
3990
|
+
readonly components: readonly [{
|
|
3991
|
+
readonly name: "intermediateCurrency";
|
|
3992
|
+
readonly type: "address";
|
|
3993
|
+
readonly internalType: "Currency";
|
|
3994
|
+
}, {
|
|
3995
|
+
readonly name: "fee";
|
|
3996
|
+
readonly type: "uint24";
|
|
3997
|
+
readonly internalType: "uint24";
|
|
3998
|
+
}, {
|
|
3999
|
+
readonly name: "tickSpacing";
|
|
4000
|
+
readonly type: "int24";
|
|
4001
|
+
readonly internalType: "int24";
|
|
4002
|
+
}, {
|
|
4003
|
+
readonly name: "hooks";
|
|
4004
|
+
readonly type: "address";
|
|
4005
|
+
readonly internalType: "contract IHooks";
|
|
4006
|
+
}, {
|
|
4007
|
+
readonly name: "hookData";
|
|
4008
|
+
readonly type: "bytes";
|
|
4009
|
+
readonly internalType: "bytes";
|
|
4010
|
+
}];
|
|
4011
|
+
}, {
|
|
4012
|
+
readonly name: "exactAmount";
|
|
4013
|
+
readonly type: "uint128";
|
|
4014
|
+
readonly internalType: "uint128";
|
|
4015
|
+
}];
|
|
4016
|
+
}];
|
|
4017
|
+
readonly outputs: readonly [{
|
|
4018
|
+
readonly name: "amountOut";
|
|
4019
|
+
readonly type: "uint256";
|
|
4020
|
+
readonly internalType: "uint256";
|
|
4021
|
+
}, {
|
|
4022
|
+
readonly name: "gasEstimate";
|
|
4023
|
+
readonly type: "uint256";
|
|
4024
|
+
readonly internalType: "uint256";
|
|
4025
|
+
}];
|
|
4026
|
+
readonly stateMutability: "nonpayable";
|
|
4027
|
+
}, {
|
|
4028
|
+
readonly type: "function";
|
|
4029
|
+
readonly name: "quoteExactInputSingle";
|
|
4030
|
+
readonly inputs: readonly [{
|
|
4031
|
+
readonly name: "poolManager";
|
|
4032
|
+
readonly type: "address";
|
|
4033
|
+
readonly internalType: "contract IPoolManager";
|
|
4034
|
+
}, {
|
|
4035
|
+
readonly name: "params";
|
|
4036
|
+
readonly type: "tuple";
|
|
4037
|
+
readonly internalType: "struct IV4Quoter.QuoteExactSingleParams";
|
|
4038
|
+
readonly components: readonly [{
|
|
4039
|
+
readonly name: "poolKey";
|
|
4040
|
+
readonly type: "tuple";
|
|
4041
|
+
readonly internalType: "struct PoolKey";
|
|
4042
|
+
readonly components: readonly [{
|
|
4043
|
+
readonly name: "currency0";
|
|
4044
|
+
readonly type: "address";
|
|
4045
|
+
readonly internalType: "Currency";
|
|
4046
|
+
}, {
|
|
4047
|
+
readonly name: "currency1";
|
|
4048
|
+
readonly type: "address";
|
|
4049
|
+
readonly internalType: "Currency";
|
|
4050
|
+
}, {
|
|
4051
|
+
readonly name: "fee";
|
|
4052
|
+
readonly type: "uint24";
|
|
4053
|
+
readonly internalType: "uint24";
|
|
4054
|
+
}, {
|
|
4055
|
+
readonly name: "tickSpacing";
|
|
4056
|
+
readonly type: "int24";
|
|
4057
|
+
readonly internalType: "int24";
|
|
4058
|
+
}, {
|
|
4059
|
+
readonly name: "hooks";
|
|
4060
|
+
readonly type: "address";
|
|
4061
|
+
readonly internalType: "contract IHooks";
|
|
4062
|
+
}];
|
|
4063
|
+
}, {
|
|
4064
|
+
readonly name: "zeroForOne";
|
|
4065
|
+
readonly type: "bool";
|
|
4066
|
+
readonly internalType: "bool";
|
|
4067
|
+
}, {
|
|
4068
|
+
readonly name: "exactAmount";
|
|
4069
|
+
readonly type: "uint128";
|
|
4070
|
+
readonly internalType: "uint128";
|
|
4071
|
+
}, {
|
|
4072
|
+
readonly name: "hookData";
|
|
4073
|
+
readonly type: "bytes";
|
|
4074
|
+
readonly internalType: "bytes";
|
|
4075
|
+
}];
|
|
4076
|
+
}];
|
|
4077
|
+
readonly outputs: readonly [{
|
|
4078
|
+
readonly name: "amountOut";
|
|
4079
|
+
readonly type: "uint256";
|
|
4080
|
+
readonly internalType: "uint256";
|
|
4081
|
+
}, {
|
|
4082
|
+
readonly name: "gasEstimate";
|
|
4083
|
+
readonly type: "uint256";
|
|
4084
|
+
readonly internalType: "uint256";
|
|
4085
|
+
}];
|
|
4086
|
+
readonly stateMutability: "nonpayable";
|
|
4087
|
+
}, {
|
|
4088
|
+
readonly type: "function";
|
|
4089
|
+
readonly name: "quoteExactOutput";
|
|
4090
|
+
readonly inputs: readonly [{
|
|
4091
|
+
readonly name: "poolManager";
|
|
4092
|
+
readonly type: "address";
|
|
4093
|
+
readonly internalType: "contract IPoolManager";
|
|
4094
|
+
}, {
|
|
4095
|
+
readonly name: "params";
|
|
4096
|
+
readonly type: "tuple";
|
|
4097
|
+
readonly internalType: "struct IV4Quoter.QuoteExactParams";
|
|
4098
|
+
readonly components: readonly [{
|
|
4099
|
+
readonly name: "exactCurrency";
|
|
4100
|
+
readonly type: "address";
|
|
4101
|
+
readonly internalType: "Currency";
|
|
4102
|
+
}, {
|
|
4103
|
+
readonly name: "path";
|
|
4104
|
+
readonly type: "tuple[]";
|
|
4105
|
+
readonly internalType: "struct PathKey[]";
|
|
4106
|
+
readonly components: readonly [{
|
|
4107
|
+
readonly name: "intermediateCurrency";
|
|
4108
|
+
readonly type: "address";
|
|
4109
|
+
readonly internalType: "Currency";
|
|
4110
|
+
}, {
|
|
4111
|
+
readonly name: "fee";
|
|
4112
|
+
readonly type: "uint24";
|
|
4113
|
+
readonly internalType: "uint24";
|
|
4114
|
+
}, {
|
|
4115
|
+
readonly name: "tickSpacing";
|
|
4116
|
+
readonly type: "int24";
|
|
4117
|
+
readonly internalType: "int24";
|
|
4118
|
+
}, {
|
|
4119
|
+
readonly name: "hooks";
|
|
4120
|
+
readonly type: "address";
|
|
4121
|
+
readonly internalType: "contract IHooks";
|
|
4122
|
+
}, {
|
|
4123
|
+
readonly name: "hookData";
|
|
4124
|
+
readonly type: "bytes";
|
|
4125
|
+
readonly internalType: "bytes";
|
|
4126
|
+
}];
|
|
4127
|
+
}, {
|
|
4128
|
+
readonly name: "exactAmount";
|
|
4129
|
+
readonly type: "uint128";
|
|
4130
|
+
readonly internalType: "uint128";
|
|
4131
|
+
}];
|
|
4132
|
+
}];
|
|
4133
|
+
readonly outputs: readonly [{
|
|
4134
|
+
readonly name: "amountIn";
|
|
4135
|
+
readonly type: "uint256";
|
|
4136
|
+
readonly internalType: "uint256";
|
|
4137
|
+
}, {
|
|
4138
|
+
readonly name: "gasEstimate";
|
|
4139
|
+
readonly type: "uint256";
|
|
4140
|
+
readonly internalType: "uint256";
|
|
4141
|
+
}];
|
|
4142
|
+
readonly stateMutability: "nonpayable";
|
|
4143
|
+
}, {
|
|
4144
|
+
readonly type: "function";
|
|
4145
|
+
readonly name: "quoteExactOutputSingle";
|
|
4146
|
+
readonly inputs: readonly [{
|
|
4147
|
+
readonly name: "poolManager";
|
|
4148
|
+
readonly type: "address";
|
|
4149
|
+
readonly internalType: "contract IPoolManager";
|
|
4150
|
+
}, {
|
|
4151
|
+
readonly name: "params";
|
|
4152
|
+
readonly type: "tuple";
|
|
4153
|
+
readonly internalType: "struct IV4Quoter.QuoteExactSingleParams";
|
|
4154
|
+
readonly components: readonly [{
|
|
4155
|
+
readonly name: "poolKey";
|
|
4156
|
+
readonly type: "tuple";
|
|
4157
|
+
readonly internalType: "struct PoolKey";
|
|
4158
|
+
readonly components: readonly [{
|
|
4159
|
+
readonly name: "currency0";
|
|
4160
|
+
readonly type: "address";
|
|
4161
|
+
readonly internalType: "Currency";
|
|
4162
|
+
}, {
|
|
4163
|
+
readonly name: "currency1";
|
|
4164
|
+
readonly type: "address";
|
|
4165
|
+
readonly internalType: "Currency";
|
|
4166
|
+
}, {
|
|
4167
|
+
readonly name: "fee";
|
|
4168
|
+
readonly type: "uint24";
|
|
4169
|
+
readonly internalType: "uint24";
|
|
4170
|
+
}, {
|
|
4171
|
+
readonly name: "tickSpacing";
|
|
4172
|
+
readonly type: "int24";
|
|
4173
|
+
readonly internalType: "int24";
|
|
4174
|
+
}, {
|
|
4175
|
+
readonly name: "hooks";
|
|
4176
|
+
readonly type: "address";
|
|
4177
|
+
readonly internalType: "contract IHooks";
|
|
4178
|
+
}];
|
|
4179
|
+
}, {
|
|
4180
|
+
readonly name: "zeroForOne";
|
|
4181
|
+
readonly type: "bool";
|
|
4182
|
+
readonly internalType: "bool";
|
|
4183
|
+
}, {
|
|
4184
|
+
readonly name: "exactAmount";
|
|
4185
|
+
readonly type: "uint128";
|
|
4186
|
+
readonly internalType: "uint128";
|
|
4187
|
+
}, {
|
|
4188
|
+
readonly name: "hookData";
|
|
4189
|
+
readonly type: "bytes";
|
|
4190
|
+
readonly internalType: "bytes";
|
|
4191
|
+
}];
|
|
4192
|
+
}];
|
|
4193
|
+
readonly outputs: readonly [{
|
|
4194
|
+
readonly name: "amountIn";
|
|
4195
|
+
readonly type: "uint256";
|
|
4196
|
+
readonly internalType: "uint256";
|
|
4197
|
+
}, {
|
|
4198
|
+
readonly name: "gasEstimate";
|
|
4199
|
+
readonly type: "uint256";
|
|
4200
|
+
readonly internalType: "uint256";
|
|
4201
|
+
}];
|
|
4202
|
+
readonly stateMutability: "nonpayable";
|
|
4203
|
+
}, {
|
|
4204
|
+
readonly type: "function";
|
|
4205
|
+
readonly name: "unlockCallback";
|
|
4206
|
+
readonly inputs: readonly [{
|
|
4207
|
+
readonly name: "data";
|
|
4208
|
+
readonly type: "bytes";
|
|
4209
|
+
readonly internalType: "bytes";
|
|
4210
|
+
}];
|
|
4211
|
+
readonly outputs: readonly [{
|
|
4212
|
+
readonly name: "";
|
|
4213
|
+
readonly type: "bytes";
|
|
4214
|
+
readonly internalType: "bytes";
|
|
4215
|
+
}];
|
|
4216
|
+
readonly stateMutability: "nonpayable";
|
|
4217
|
+
}, {
|
|
4218
|
+
readonly type: "error";
|
|
4219
|
+
readonly name: "NotEnoughLiquidity";
|
|
4220
|
+
readonly inputs: readonly [{
|
|
4221
|
+
readonly name: "poolId";
|
|
4222
|
+
readonly type: "bytes32";
|
|
4223
|
+
readonly internalType: "PoolId";
|
|
4224
|
+
}];
|
|
4225
|
+
}, {
|
|
4226
|
+
readonly type: "error";
|
|
4227
|
+
readonly name: "NotPoolManager";
|
|
4228
|
+
readonly inputs: readonly [];
|
|
4229
|
+
}, {
|
|
4230
|
+
readonly type: "error";
|
|
4231
|
+
readonly name: "NotSelf";
|
|
4232
|
+
readonly inputs: readonly [];
|
|
4233
|
+
}, {
|
|
4234
|
+
readonly type: "error";
|
|
4235
|
+
readonly name: "QuoteSwap";
|
|
4236
|
+
readonly inputs: readonly [{
|
|
4237
|
+
readonly name: "amount";
|
|
4238
|
+
readonly type: "uint256";
|
|
4239
|
+
readonly internalType: "uint256";
|
|
4240
|
+
}];
|
|
4241
|
+
}, {
|
|
4242
|
+
readonly type: "error";
|
|
4243
|
+
readonly name: "UnexpectedCallSuccess";
|
|
4244
|
+
readonly inputs: readonly [];
|
|
4245
|
+
}, {
|
|
4246
|
+
readonly type: "error";
|
|
4247
|
+
readonly name: "UnexpectedRevertBytes";
|
|
4248
|
+
readonly inputs: readonly [{
|
|
4249
|
+
readonly name: "revertData";
|
|
4250
|
+
readonly type: "bytes";
|
|
4251
|
+
readonly internalType: "bytes";
|
|
4252
|
+
}];
|
|
4253
|
+
}];
|
|
4254
|
+
//#endregion
|
|
4255
|
+
export { erc20Abi, factoryAbi, guardianAbi, lensAbi, optionsMarketAbi, poolManagerAbi, quoterAbi, singleOwnerVaultAbi, stateViewAbi };
|
|
3761
4256
|
//# sourceMappingURL=abis.d.cts.map
|