@alchemy/smart-accounts 0.0.0-alpha.2 → 0.0.0-alpha.21
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/esm/index.d.ts +4 -3
- package/dist/esm/index.js +3 -3
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/light-account/accounts/account.d.ts +9 -4
- package/dist/esm/light-account/accounts/account.js +29 -18
- package/dist/esm/light-account/accounts/account.js.map +1 -1
- package/dist/esm/light-account/accounts/base.d.ts +4 -4
- package/dist/esm/light-account/accounts/base.js +51 -24
- package/dist/esm/light-account/accounts/base.js.map +1 -1
- package/dist/esm/light-account/accounts/multi-owner-account.d.ts +9 -4
- package/dist/esm/light-account/accounts/multi-owner-account.js +23 -14
- package/dist/esm/light-account/accounts/multi-owner-account.js.map +1 -1
- package/dist/esm/light-account/decorators/multiOwner.js +2 -1
- package/dist/esm/light-account/decorators/multiOwner.js.map +1 -1
- package/dist/esm/light-account/decorators/singleOwner.js +1 -1
- package/dist/esm/light-account/decorators/singleOwner.js.map +1 -1
- package/dist/esm/light-account/lightAccountStaticImpl.d.ts +3 -1
- package/dist/esm/light-account/lightAccountStaticImpl.js +57 -7
- package/dist/esm/light-account/lightAccountStaticImpl.js.map +1 -1
- package/dist/esm/light-account/predictAddress.d.ts +40 -2
- package/dist/esm/light-account/predictAddress.js +83 -3
- package/dist/esm/light-account/predictAddress.js.map +1 -1
- package/dist/esm/light-account/registry.d.ts +3411 -1
- package/dist/esm/light-account/registry.js +33 -1
- package/dist/esm/light-account/registry.js.map +1 -1
- package/dist/esm/light-account/utils.js +1 -1
- package/dist/esm/light-account/utils.js.map +1 -1
- package/dist/esm/ma-v1/accounts/base.d.ts +4 -4
- package/dist/esm/ma-v1/accounts/base.js +1 -1
- package/dist/esm/ma-v1/accounts/base.js.map +1 -1
- package/dist/esm/ma-v1/accounts/multi-owner-account.d.ts +9 -4
- package/dist/esm/ma-v1/accounts/multi-owner-account.js +26 -14
- package/dist/esm/ma-v1/accounts/multi-owner-account.js.map +1 -1
- package/dist/esm/ma-v1/decorators/multiOwner.js +2 -1
- package/dist/esm/ma-v1/decorators/multiOwner.js.map +1 -1
- package/dist/esm/ma-v1/predictAddress.d.ts +20 -1
- package/dist/esm/ma-v1/predictAddress.js +37 -1
- package/dist/esm/ma-v1/predictAddress.js.map +1 -1
- package/dist/esm/ma-v2/accounts/account.d.ts +10 -7
- package/dist/esm/ma-v2/accounts/account.js +24 -43
- package/dist/esm/ma-v2/accounts/account.js.map +1 -1
- package/dist/esm/ma-v2/accounts/base.d.ts +5 -5
- package/dist/esm/ma-v2/accounts/base.js +18 -60
- package/dist/esm/ma-v2/accounts/base.js.map +1 -1
- package/dist/esm/ma-v2/mav2StaticImpl.d.ts +1 -15
- package/dist/esm/ma-v2/mav2StaticImpl.js +0 -33
- package/dist/esm/ma-v2/mav2StaticImpl.js.map +1 -1
- package/dist/esm/ma-v2/predictAddress.d.ts +22 -6
- package/dist/esm/ma-v2/predictAddress.js +46 -12
- package/dist/esm/ma-v2/predictAddress.js.map +1 -1
- package/dist/esm/ma-v2/utils/account.d.ts +0 -3
- package/dist/esm/ma-v2/utils/account.js +2 -4
- package/dist/esm/ma-v2/utils/account.js.map +1 -1
- package/dist/esm/ma-v2/utils/signature.d.ts +1 -12
- package/dist/esm/ma-v2/utils/signature.js +1 -34
- package/dist/esm/ma-v2/utils/signature.js.map +1 -1
- package/dist/esm/types.d.ts +8 -1
- package/dist/esm/types.js.map +1 -1
- package/dist/esm/utils.d.ts +32 -2
- package/dist/esm/utils.js +75 -5
- package/dist/esm/utils.js.map +1 -1
- package/dist/esm/version.d.ts +1 -1
- package/dist/esm/version.js +1 -1
- package/dist/esm/version.js.map +1 -1
- package/dist/types/index.d.ts +4 -3
- package/dist/types/index.d.ts.map +1 -1
- package/dist/types/light-account/accounts/account.d.ts +9 -4
- package/dist/types/light-account/accounts/account.d.ts.map +1 -1
- package/dist/types/light-account/accounts/base.d.ts +4 -4
- package/dist/types/light-account/accounts/base.d.ts.map +1 -1
- package/dist/types/light-account/accounts/multi-owner-account.d.ts +9 -4
- package/dist/types/light-account/accounts/multi-owner-account.d.ts.map +1 -1
- package/dist/types/light-account/decorators/multiOwner.d.ts.map +1 -1
- package/dist/types/light-account/decorators/singleOwner.d.ts.map +1 -1
- package/dist/types/light-account/lightAccountStaticImpl.d.ts +3 -1
- package/dist/types/light-account/lightAccountStaticImpl.d.ts.map +1 -1
- package/dist/types/light-account/predictAddress.d.ts +40 -2
- package/dist/types/light-account/predictAddress.d.ts.map +1 -1
- package/dist/types/light-account/registry.d.ts +3411 -1
- package/dist/types/light-account/registry.d.ts.map +1 -1
- package/dist/types/ma-v1/accounts/base.d.ts +4 -4
- package/dist/types/ma-v1/accounts/base.d.ts.map +1 -1
- package/dist/types/ma-v1/accounts/multi-owner-account.d.ts +9 -4
- package/dist/types/ma-v1/accounts/multi-owner-account.d.ts.map +1 -1
- package/dist/types/ma-v1/decorators/multiOwner.d.ts.map +1 -1
- package/dist/types/ma-v1/predictAddress.d.ts +20 -1
- package/dist/types/ma-v1/predictAddress.d.ts.map +1 -1
- package/dist/types/ma-v2/accounts/account.d.ts +10 -7
- package/dist/types/ma-v2/accounts/account.d.ts.map +1 -1
- package/dist/types/ma-v2/accounts/base.d.ts +5 -5
- package/dist/types/ma-v2/accounts/base.d.ts.map +1 -1
- package/dist/types/ma-v2/mav2StaticImpl.d.ts +1 -15
- package/dist/types/ma-v2/mav2StaticImpl.d.ts.map +1 -1
- package/dist/types/ma-v2/predictAddress.d.ts +22 -6
- package/dist/types/ma-v2/predictAddress.d.ts.map +1 -1
- package/dist/types/ma-v2/utils/account.d.ts +0 -3
- package/dist/types/ma-v2/utils/account.d.ts.map +1 -1
- package/dist/types/ma-v2/utils/signature.d.ts +1 -12
- package/dist/types/ma-v2/utils/signature.d.ts.map +1 -1
- package/dist/types/types.d.ts +8 -1
- package/dist/types/types.d.ts.map +1 -1
- package/dist/types/utils.d.ts +32 -2
- package/dist/types/utils.d.ts.map +1 -1
- package/dist/types/version.d.ts +1 -1
- package/dist/types/version.d.ts.map +1 -1
- package/package.json +5 -6
- package/src/index.ts +4 -3
- package/src/light-account/accounts/account.ts +42 -26
- package/src/light-account/accounts/base.ts +66 -27
- package/src/light-account/accounts/multi-owner-account.ts +33 -16
- package/src/light-account/decorators/multiOwner.ts +4 -1
- package/src/light-account/decorators/singleOwner.ts +3 -1
- package/src/light-account/lightAccountStaticImpl.ts +84 -11
- package/src/light-account/predictAddress.ts +124 -3
- package/src/light-account/registry.ts +47 -1
- package/src/light-account/utils.ts +1 -1
- package/src/ma-v1/accounts/base.ts +8 -5
- package/src/ma-v1/accounts/multi-owner-account.ts +37 -18
- package/src/ma-v1/decorators/multiOwner.ts +4 -1
- package/src/ma-v1/predictAddress.ts +59 -2
- package/src/ma-v2/accounts/account.ts +42 -55
- package/src/ma-v2/accounts/base.ts +24 -88
- package/src/ma-v2/mav2StaticImpl.ts +1 -52
- package/src/ma-v2/predictAddress.ts +68 -30
- package/src/ma-v2/utils/account.ts +4 -4
- package/src/ma-v2/utils/signature.ts +2 -51
- package/src/types.ts +15 -1
- package/src/utils.ts +119 -6
- package/src/version.ts +1 -1
- package/dist/esm/ma-v2/abis/webAuthnFactoryAbi.d.ts +0 -330
- package/dist/esm/ma-v2/abis/webAuthnFactoryAbi.js +0 -260
- package/dist/esm/ma-v2/abis/webAuthnFactoryAbi.js.map +0 -1
- package/dist/esm/ma-v2/modules/webauthn-validation/abis/webauthnValidationAbi.d.ts +0 -287
- package/dist/esm/ma-v2/modules/webauthn-validation/abis/webauthnValidationAbi.js +0 -374
- package/dist/esm/ma-v2/modules/webauthn-validation/abis/webauthnValidationAbi.js.map +0 -1
- package/dist/esm/ma-v2/modules/webauthn-validation/module.d.ts +0 -11
- package/dist/esm/ma-v2/modules/webauthn-validation/module.js +0 -16
- package/dist/esm/ma-v2/modules/webauthn-validation/module.js.map +0 -1
- package/dist/types/ma-v2/abis/webAuthnFactoryAbi.d.ts +0 -331
- package/dist/types/ma-v2/abis/webAuthnFactoryAbi.d.ts.map +0 -1
- package/dist/types/ma-v2/modules/webauthn-validation/abis/webauthnValidationAbi.d.ts +0 -288
- package/dist/types/ma-v2/modules/webauthn-validation/abis/webauthnValidationAbi.d.ts.map +0 -1
- package/dist/types/ma-v2/modules/webauthn-validation/module.d.ts +0 -12
- package/dist/types/ma-v2/modules/webauthn-validation/module.d.ts.map +0 -1
- package/src/ma-v2/abis/webAuthnFactoryAbi.ts +0 -259
- package/src/ma-v2/modules/webauthn-validation/abis/webauthnValidationAbi.ts +0 -373
- package/src/ma-v2/modules/webauthn-validation/module.ts +0 -28
|
@@ -5664,6 +5664,3394 @@ export declare const AccountVersionRegistry: {
|
|
|
5664
5664
|
readonly name: "ZeroAddressNotAllowed";
|
|
5665
5665
|
readonly inputs: readonly [];
|
|
5666
5666
|
}]>;
|
|
5667
|
+
"v2.1.0": StaticSmartAccountImplementation<false, "0.8", import("./lightAccountStaticImpl.js").LightAccountFactoryArgs, readonly [{
|
|
5668
|
+
readonly inputs: readonly [];
|
|
5669
|
+
readonly stateMutability: "nonpayable";
|
|
5670
|
+
readonly type: "constructor";
|
|
5671
|
+
}, {
|
|
5672
|
+
readonly inputs: readonly [{
|
|
5673
|
+
readonly internalType: "bool";
|
|
5674
|
+
readonly name: "success";
|
|
5675
|
+
readonly type: "bool";
|
|
5676
|
+
}, {
|
|
5677
|
+
readonly internalType: "bytes";
|
|
5678
|
+
readonly name: "ret";
|
|
5679
|
+
readonly type: "bytes";
|
|
5680
|
+
}];
|
|
5681
|
+
readonly name: "DelegateAndRevert";
|
|
5682
|
+
readonly type: "error";
|
|
5683
|
+
}, {
|
|
5684
|
+
readonly inputs: readonly [{
|
|
5685
|
+
readonly internalType: "uint256";
|
|
5686
|
+
readonly name: "opIndex";
|
|
5687
|
+
readonly type: "uint256";
|
|
5688
|
+
}, {
|
|
5689
|
+
readonly internalType: "string";
|
|
5690
|
+
readonly name: "reason";
|
|
5691
|
+
readonly type: "string";
|
|
5692
|
+
}];
|
|
5693
|
+
readonly name: "FailedOp";
|
|
5694
|
+
readonly type: "error";
|
|
5695
|
+
}, {
|
|
5696
|
+
readonly inputs: readonly [{
|
|
5697
|
+
readonly internalType: "uint256";
|
|
5698
|
+
readonly name: "opIndex";
|
|
5699
|
+
readonly type: "uint256";
|
|
5700
|
+
}, {
|
|
5701
|
+
readonly internalType: "string";
|
|
5702
|
+
readonly name: "reason";
|
|
5703
|
+
readonly type: "string";
|
|
5704
|
+
}, {
|
|
5705
|
+
readonly internalType: "bytes";
|
|
5706
|
+
readonly name: "inner";
|
|
5707
|
+
readonly type: "bytes";
|
|
5708
|
+
}];
|
|
5709
|
+
readonly name: "FailedOpWithRevert";
|
|
5710
|
+
readonly type: "error";
|
|
5711
|
+
}, {
|
|
5712
|
+
readonly inputs: readonly [];
|
|
5713
|
+
readonly name: "InvalidShortString";
|
|
5714
|
+
readonly type: "error";
|
|
5715
|
+
}, {
|
|
5716
|
+
readonly inputs: readonly [{
|
|
5717
|
+
readonly internalType: "bytes";
|
|
5718
|
+
readonly name: "returnData";
|
|
5719
|
+
readonly type: "bytes";
|
|
5720
|
+
}];
|
|
5721
|
+
readonly name: "PostOpReverted";
|
|
5722
|
+
readonly type: "error";
|
|
5723
|
+
}, {
|
|
5724
|
+
readonly inputs: readonly [];
|
|
5725
|
+
readonly name: "ReentrancyGuardReentrantCall";
|
|
5726
|
+
readonly type: "error";
|
|
5727
|
+
}, {
|
|
5728
|
+
readonly inputs: readonly [{
|
|
5729
|
+
readonly internalType: "address";
|
|
5730
|
+
readonly name: "sender";
|
|
5731
|
+
readonly type: "address";
|
|
5732
|
+
}];
|
|
5733
|
+
readonly name: "SenderAddressResult";
|
|
5734
|
+
readonly type: "error";
|
|
5735
|
+
}, {
|
|
5736
|
+
readonly inputs: readonly [{
|
|
5737
|
+
readonly internalType: "address";
|
|
5738
|
+
readonly name: "aggregator";
|
|
5739
|
+
readonly type: "address";
|
|
5740
|
+
}];
|
|
5741
|
+
readonly name: "SignatureValidationFailed";
|
|
5742
|
+
readonly type: "error";
|
|
5743
|
+
}, {
|
|
5744
|
+
readonly inputs: readonly [{
|
|
5745
|
+
readonly internalType: "string";
|
|
5746
|
+
readonly name: "str";
|
|
5747
|
+
readonly type: "string";
|
|
5748
|
+
}];
|
|
5749
|
+
readonly name: "StringTooLong";
|
|
5750
|
+
readonly type: "error";
|
|
5751
|
+
}, {
|
|
5752
|
+
readonly anonymous: false;
|
|
5753
|
+
readonly inputs: readonly [{
|
|
5754
|
+
readonly indexed: true;
|
|
5755
|
+
readonly internalType: "bytes32";
|
|
5756
|
+
readonly name: "userOpHash";
|
|
5757
|
+
readonly type: "bytes32";
|
|
5758
|
+
}, {
|
|
5759
|
+
readonly indexed: true;
|
|
5760
|
+
readonly internalType: "address";
|
|
5761
|
+
readonly name: "sender";
|
|
5762
|
+
readonly type: "address";
|
|
5763
|
+
}, {
|
|
5764
|
+
readonly indexed: false;
|
|
5765
|
+
readonly internalType: "address";
|
|
5766
|
+
readonly name: "factory";
|
|
5767
|
+
readonly type: "address";
|
|
5768
|
+
}, {
|
|
5769
|
+
readonly indexed: false;
|
|
5770
|
+
readonly internalType: "address";
|
|
5771
|
+
readonly name: "paymaster";
|
|
5772
|
+
readonly type: "address";
|
|
5773
|
+
}];
|
|
5774
|
+
readonly name: "AccountDeployed";
|
|
5775
|
+
readonly type: "event";
|
|
5776
|
+
}, {
|
|
5777
|
+
readonly anonymous: false;
|
|
5778
|
+
readonly inputs: readonly [];
|
|
5779
|
+
readonly name: "BeforeExecution";
|
|
5780
|
+
readonly type: "event";
|
|
5781
|
+
}, {
|
|
5782
|
+
readonly anonymous: false;
|
|
5783
|
+
readonly inputs: readonly [{
|
|
5784
|
+
readonly indexed: true;
|
|
5785
|
+
readonly internalType: "address";
|
|
5786
|
+
readonly name: "account";
|
|
5787
|
+
readonly type: "address";
|
|
5788
|
+
}, {
|
|
5789
|
+
readonly indexed: false;
|
|
5790
|
+
readonly internalType: "uint256";
|
|
5791
|
+
readonly name: "totalDeposit";
|
|
5792
|
+
readonly type: "uint256";
|
|
5793
|
+
}];
|
|
5794
|
+
readonly name: "Deposited";
|
|
5795
|
+
readonly type: "event";
|
|
5796
|
+
}, {
|
|
5797
|
+
readonly anonymous: false;
|
|
5798
|
+
readonly inputs: readonly [];
|
|
5799
|
+
readonly name: "EIP712DomainChanged";
|
|
5800
|
+
readonly type: "event";
|
|
5801
|
+
}, {
|
|
5802
|
+
readonly anonymous: false;
|
|
5803
|
+
readonly inputs: readonly [{
|
|
5804
|
+
readonly indexed: true;
|
|
5805
|
+
readonly internalType: "bytes32";
|
|
5806
|
+
readonly name: "userOpHash";
|
|
5807
|
+
readonly type: "bytes32";
|
|
5808
|
+
}, {
|
|
5809
|
+
readonly indexed: true;
|
|
5810
|
+
readonly internalType: "address";
|
|
5811
|
+
readonly name: "sender";
|
|
5812
|
+
readonly type: "address";
|
|
5813
|
+
}, {
|
|
5814
|
+
readonly indexed: false;
|
|
5815
|
+
readonly internalType: "uint256";
|
|
5816
|
+
readonly name: "nonce";
|
|
5817
|
+
readonly type: "uint256";
|
|
5818
|
+
}, {
|
|
5819
|
+
readonly indexed: false;
|
|
5820
|
+
readonly internalType: "bytes";
|
|
5821
|
+
readonly name: "revertReason";
|
|
5822
|
+
readonly type: "bytes";
|
|
5823
|
+
}];
|
|
5824
|
+
readonly name: "PostOpRevertReason";
|
|
5825
|
+
readonly type: "event";
|
|
5826
|
+
}, {
|
|
5827
|
+
readonly anonymous: false;
|
|
5828
|
+
readonly inputs: readonly [{
|
|
5829
|
+
readonly indexed: true;
|
|
5830
|
+
readonly internalType: "address";
|
|
5831
|
+
readonly name: "aggregator";
|
|
5832
|
+
readonly type: "address";
|
|
5833
|
+
}];
|
|
5834
|
+
readonly name: "SignatureAggregatorChanged";
|
|
5835
|
+
readonly type: "event";
|
|
5836
|
+
}, {
|
|
5837
|
+
readonly anonymous: false;
|
|
5838
|
+
readonly inputs: readonly [{
|
|
5839
|
+
readonly indexed: true;
|
|
5840
|
+
readonly internalType: "address";
|
|
5841
|
+
readonly name: "account";
|
|
5842
|
+
readonly type: "address";
|
|
5843
|
+
}, {
|
|
5844
|
+
readonly indexed: false;
|
|
5845
|
+
readonly internalType: "uint256";
|
|
5846
|
+
readonly name: "totalStaked";
|
|
5847
|
+
readonly type: "uint256";
|
|
5848
|
+
}, {
|
|
5849
|
+
readonly indexed: false;
|
|
5850
|
+
readonly internalType: "uint256";
|
|
5851
|
+
readonly name: "unstakeDelaySec";
|
|
5852
|
+
readonly type: "uint256";
|
|
5853
|
+
}];
|
|
5854
|
+
readonly name: "StakeLocked";
|
|
5855
|
+
readonly type: "event";
|
|
5856
|
+
}, {
|
|
5857
|
+
readonly anonymous: false;
|
|
5858
|
+
readonly inputs: readonly [{
|
|
5859
|
+
readonly indexed: true;
|
|
5860
|
+
readonly internalType: "address";
|
|
5861
|
+
readonly name: "account";
|
|
5862
|
+
readonly type: "address";
|
|
5863
|
+
}, {
|
|
5864
|
+
readonly indexed: false;
|
|
5865
|
+
readonly internalType: "uint256";
|
|
5866
|
+
readonly name: "withdrawTime";
|
|
5867
|
+
readonly type: "uint256";
|
|
5868
|
+
}];
|
|
5869
|
+
readonly name: "StakeUnlocked";
|
|
5870
|
+
readonly type: "event";
|
|
5871
|
+
}, {
|
|
5872
|
+
readonly anonymous: false;
|
|
5873
|
+
readonly inputs: readonly [{
|
|
5874
|
+
readonly indexed: true;
|
|
5875
|
+
readonly internalType: "address";
|
|
5876
|
+
readonly name: "account";
|
|
5877
|
+
readonly type: "address";
|
|
5878
|
+
}, {
|
|
5879
|
+
readonly indexed: false;
|
|
5880
|
+
readonly internalType: "address";
|
|
5881
|
+
readonly name: "withdrawAddress";
|
|
5882
|
+
readonly type: "address";
|
|
5883
|
+
}, {
|
|
5884
|
+
readonly indexed: false;
|
|
5885
|
+
readonly internalType: "uint256";
|
|
5886
|
+
readonly name: "amount";
|
|
5887
|
+
readonly type: "uint256";
|
|
5888
|
+
}];
|
|
5889
|
+
readonly name: "StakeWithdrawn";
|
|
5890
|
+
readonly type: "event";
|
|
5891
|
+
}, {
|
|
5892
|
+
readonly anonymous: false;
|
|
5893
|
+
readonly inputs: readonly [{
|
|
5894
|
+
readonly indexed: true;
|
|
5895
|
+
readonly internalType: "bytes32";
|
|
5896
|
+
readonly name: "userOpHash";
|
|
5897
|
+
readonly type: "bytes32";
|
|
5898
|
+
}, {
|
|
5899
|
+
readonly indexed: true;
|
|
5900
|
+
readonly internalType: "address";
|
|
5901
|
+
readonly name: "sender";
|
|
5902
|
+
readonly type: "address";
|
|
5903
|
+
}, {
|
|
5904
|
+
readonly indexed: true;
|
|
5905
|
+
readonly internalType: "address";
|
|
5906
|
+
readonly name: "paymaster";
|
|
5907
|
+
readonly type: "address";
|
|
5908
|
+
}, {
|
|
5909
|
+
readonly indexed: false;
|
|
5910
|
+
readonly internalType: "uint256";
|
|
5911
|
+
readonly name: "nonce";
|
|
5912
|
+
readonly type: "uint256";
|
|
5913
|
+
}, {
|
|
5914
|
+
readonly indexed: false;
|
|
5915
|
+
readonly internalType: "bool";
|
|
5916
|
+
readonly name: "success";
|
|
5917
|
+
readonly type: "bool";
|
|
5918
|
+
}, {
|
|
5919
|
+
readonly indexed: false;
|
|
5920
|
+
readonly internalType: "uint256";
|
|
5921
|
+
readonly name: "actualGasCost";
|
|
5922
|
+
readonly type: "uint256";
|
|
5923
|
+
}, {
|
|
5924
|
+
readonly indexed: false;
|
|
5925
|
+
readonly internalType: "uint256";
|
|
5926
|
+
readonly name: "actualGasUsed";
|
|
5927
|
+
readonly type: "uint256";
|
|
5928
|
+
}];
|
|
5929
|
+
readonly name: "UserOperationEvent";
|
|
5930
|
+
readonly type: "event";
|
|
5931
|
+
}, {
|
|
5932
|
+
readonly anonymous: false;
|
|
5933
|
+
readonly inputs: readonly [{
|
|
5934
|
+
readonly indexed: true;
|
|
5935
|
+
readonly internalType: "bytes32";
|
|
5936
|
+
readonly name: "userOpHash";
|
|
5937
|
+
readonly type: "bytes32";
|
|
5938
|
+
}, {
|
|
5939
|
+
readonly indexed: true;
|
|
5940
|
+
readonly internalType: "address";
|
|
5941
|
+
readonly name: "sender";
|
|
5942
|
+
readonly type: "address";
|
|
5943
|
+
}, {
|
|
5944
|
+
readonly indexed: false;
|
|
5945
|
+
readonly internalType: "uint256";
|
|
5946
|
+
readonly name: "nonce";
|
|
5947
|
+
readonly type: "uint256";
|
|
5948
|
+
}];
|
|
5949
|
+
readonly name: "UserOperationPrefundTooLow";
|
|
5950
|
+
readonly type: "event";
|
|
5951
|
+
}, {
|
|
5952
|
+
readonly anonymous: false;
|
|
5953
|
+
readonly inputs: readonly [{
|
|
5954
|
+
readonly indexed: true;
|
|
5955
|
+
readonly internalType: "bytes32";
|
|
5956
|
+
readonly name: "userOpHash";
|
|
5957
|
+
readonly type: "bytes32";
|
|
5958
|
+
}, {
|
|
5959
|
+
readonly indexed: true;
|
|
5960
|
+
readonly internalType: "address";
|
|
5961
|
+
readonly name: "sender";
|
|
5962
|
+
readonly type: "address";
|
|
5963
|
+
}, {
|
|
5964
|
+
readonly indexed: false;
|
|
5965
|
+
readonly internalType: "uint256";
|
|
5966
|
+
readonly name: "nonce";
|
|
5967
|
+
readonly type: "uint256";
|
|
5968
|
+
}, {
|
|
5969
|
+
readonly indexed: false;
|
|
5970
|
+
readonly internalType: "bytes";
|
|
5971
|
+
readonly name: "revertReason";
|
|
5972
|
+
readonly type: "bytes";
|
|
5973
|
+
}];
|
|
5974
|
+
readonly name: "UserOperationRevertReason";
|
|
5975
|
+
readonly type: "event";
|
|
5976
|
+
}, {
|
|
5977
|
+
readonly anonymous: false;
|
|
5978
|
+
readonly inputs: readonly [{
|
|
5979
|
+
readonly indexed: true;
|
|
5980
|
+
readonly internalType: "address";
|
|
5981
|
+
readonly name: "account";
|
|
5982
|
+
readonly type: "address";
|
|
5983
|
+
}, {
|
|
5984
|
+
readonly indexed: false;
|
|
5985
|
+
readonly internalType: "address";
|
|
5986
|
+
readonly name: "withdrawAddress";
|
|
5987
|
+
readonly type: "address";
|
|
5988
|
+
}, {
|
|
5989
|
+
readonly indexed: false;
|
|
5990
|
+
readonly internalType: "uint256";
|
|
5991
|
+
readonly name: "amount";
|
|
5992
|
+
readonly type: "uint256";
|
|
5993
|
+
}];
|
|
5994
|
+
readonly name: "Withdrawn";
|
|
5995
|
+
readonly type: "event";
|
|
5996
|
+
}, {
|
|
5997
|
+
readonly inputs: readonly [{
|
|
5998
|
+
readonly internalType: "uint32";
|
|
5999
|
+
readonly name: "unstakeDelaySec";
|
|
6000
|
+
readonly type: "uint32";
|
|
6001
|
+
}];
|
|
6002
|
+
readonly name: "addStake";
|
|
6003
|
+
readonly outputs: readonly [];
|
|
6004
|
+
readonly stateMutability: "payable";
|
|
6005
|
+
readonly type: "function";
|
|
6006
|
+
}, {
|
|
6007
|
+
readonly inputs: readonly [{
|
|
6008
|
+
readonly internalType: "address";
|
|
6009
|
+
readonly name: "account";
|
|
6010
|
+
readonly type: "address";
|
|
6011
|
+
}];
|
|
6012
|
+
readonly name: "balanceOf";
|
|
6013
|
+
readonly outputs: readonly [{
|
|
6014
|
+
readonly internalType: "uint256";
|
|
6015
|
+
readonly name: "";
|
|
6016
|
+
readonly type: "uint256";
|
|
6017
|
+
}];
|
|
6018
|
+
readonly stateMutability: "view";
|
|
6019
|
+
readonly type: "function";
|
|
6020
|
+
}, {
|
|
6021
|
+
readonly inputs: readonly [{
|
|
6022
|
+
readonly internalType: "address";
|
|
6023
|
+
readonly name: "target";
|
|
6024
|
+
readonly type: "address";
|
|
6025
|
+
}, {
|
|
6026
|
+
readonly internalType: "bytes";
|
|
6027
|
+
readonly name: "data";
|
|
6028
|
+
readonly type: "bytes";
|
|
6029
|
+
}];
|
|
6030
|
+
readonly name: "delegateAndRevert";
|
|
6031
|
+
readonly outputs: readonly [];
|
|
6032
|
+
readonly stateMutability: "nonpayable";
|
|
6033
|
+
readonly type: "function";
|
|
6034
|
+
}, {
|
|
6035
|
+
readonly inputs: readonly [{
|
|
6036
|
+
readonly internalType: "address";
|
|
6037
|
+
readonly name: "account";
|
|
6038
|
+
readonly type: "address";
|
|
6039
|
+
}];
|
|
6040
|
+
readonly name: "depositTo";
|
|
6041
|
+
readonly outputs: readonly [];
|
|
6042
|
+
readonly stateMutability: "payable";
|
|
6043
|
+
readonly type: "function";
|
|
6044
|
+
}, {
|
|
6045
|
+
readonly inputs: readonly [];
|
|
6046
|
+
readonly name: "eip712Domain";
|
|
6047
|
+
readonly outputs: readonly [{
|
|
6048
|
+
readonly internalType: "bytes1";
|
|
6049
|
+
readonly name: "fields";
|
|
6050
|
+
readonly type: "bytes1";
|
|
6051
|
+
}, {
|
|
6052
|
+
readonly internalType: "string";
|
|
6053
|
+
readonly name: "name";
|
|
6054
|
+
readonly type: "string";
|
|
6055
|
+
}, {
|
|
6056
|
+
readonly internalType: "string";
|
|
6057
|
+
readonly name: "version";
|
|
6058
|
+
readonly type: "string";
|
|
6059
|
+
}, {
|
|
6060
|
+
readonly internalType: "uint256";
|
|
6061
|
+
readonly name: "chainId";
|
|
6062
|
+
readonly type: "uint256";
|
|
6063
|
+
}, {
|
|
6064
|
+
readonly internalType: "address";
|
|
6065
|
+
readonly name: "verifyingContract";
|
|
6066
|
+
readonly type: "address";
|
|
6067
|
+
}, {
|
|
6068
|
+
readonly internalType: "bytes32";
|
|
6069
|
+
readonly name: "salt";
|
|
6070
|
+
readonly type: "bytes32";
|
|
6071
|
+
}, {
|
|
6072
|
+
readonly internalType: "uint256[]";
|
|
6073
|
+
readonly name: "extensions";
|
|
6074
|
+
readonly type: "uint256[]";
|
|
6075
|
+
}];
|
|
6076
|
+
readonly stateMutability: "view";
|
|
6077
|
+
readonly type: "function";
|
|
6078
|
+
}, {
|
|
6079
|
+
readonly inputs: readonly [{
|
|
6080
|
+
readonly internalType: "address";
|
|
6081
|
+
readonly name: "account";
|
|
6082
|
+
readonly type: "address";
|
|
6083
|
+
}];
|
|
6084
|
+
readonly name: "getDepositInfo";
|
|
6085
|
+
readonly outputs: readonly [{
|
|
6086
|
+
readonly components: readonly [{
|
|
6087
|
+
readonly internalType: "uint256";
|
|
6088
|
+
readonly name: "deposit";
|
|
6089
|
+
readonly type: "uint256";
|
|
6090
|
+
}, {
|
|
6091
|
+
readonly internalType: "bool";
|
|
6092
|
+
readonly name: "staked";
|
|
6093
|
+
readonly type: "bool";
|
|
6094
|
+
}, {
|
|
6095
|
+
readonly internalType: "uint112";
|
|
6096
|
+
readonly name: "stake";
|
|
6097
|
+
readonly type: "uint112";
|
|
6098
|
+
}, {
|
|
6099
|
+
readonly internalType: "uint32";
|
|
6100
|
+
readonly name: "unstakeDelaySec";
|
|
6101
|
+
readonly type: "uint32";
|
|
6102
|
+
}, {
|
|
6103
|
+
readonly internalType: "uint48";
|
|
6104
|
+
readonly name: "withdrawTime";
|
|
6105
|
+
readonly type: "uint48";
|
|
6106
|
+
}];
|
|
6107
|
+
readonly internalType: "struct IStakeManager.DepositInfo";
|
|
6108
|
+
readonly name: "info";
|
|
6109
|
+
readonly type: "tuple";
|
|
6110
|
+
}];
|
|
6111
|
+
readonly stateMutability: "view";
|
|
6112
|
+
readonly type: "function";
|
|
6113
|
+
}, {
|
|
6114
|
+
readonly inputs: readonly [];
|
|
6115
|
+
readonly name: "getDomainSeparatorV4";
|
|
6116
|
+
readonly outputs: readonly [{
|
|
6117
|
+
readonly internalType: "bytes32";
|
|
6118
|
+
readonly name: "";
|
|
6119
|
+
readonly type: "bytes32";
|
|
6120
|
+
}];
|
|
6121
|
+
readonly stateMutability: "view";
|
|
6122
|
+
readonly type: "function";
|
|
6123
|
+
}, {
|
|
6124
|
+
readonly inputs: readonly [{
|
|
6125
|
+
readonly internalType: "address";
|
|
6126
|
+
readonly name: "sender";
|
|
6127
|
+
readonly type: "address";
|
|
6128
|
+
}, {
|
|
6129
|
+
readonly internalType: "uint192";
|
|
6130
|
+
readonly name: "key";
|
|
6131
|
+
readonly type: "uint192";
|
|
6132
|
+
}];
|
|
6133
|
+
readonly name: "getNonce";
|
|
6134
|
+
readonly outputs: readonly [{
|
|
6135
|
+
readonly internalType: "uint256";
|
|
6136
|
+
readonly name: "nonce";
|
|
6137
|
+
readonly type: "uint256";
|
|
6138
|
+
}];
|
|
6139
|
+
readonly stateMutability: "view";
|
|
6140
|
+
readonly type: "function";
|
|
6141
|
+
}, {
|
|
6142
|
+
readonly inputs: readonly [];
|
|
6143
|
+
readonly name: "getPackedUserOpTypeHash";
|
|
6144
|
+
readonly outputs: readonly [{
|
|
6145
|
+
readonly internalType: "bytes32";
|
|
6146
|
+
readonly name: "";
|
|
6147
|
+
readonly type: "bytes32";
|
|
6148
|
+
}];
|
|
6149
|
+
readonly stateMutability: "pure";
|
|
6150
|
+
readonly type: "function";
|
|
6151
|
+
}, {
|
|
6152
|
+
readonly inputs: readonly [{
|
|
6153
|
+
readonly internalType: "bytes";
|
|
6154
|
+
readonly name: "initCode";
|
|
6155
|
+
readonly type: "bytes";
|
|
6156
|
+
}];
|
|
6157
|
+
readonly name: "getSenderAddress";
|
|
6158
|
+
readonly outputs: readonly [];
|
|
6159
|
+
readonly stateMutability: "nonpayable";
|
|
6160
|
+
readonly type: "function";
|
|
6161
|
+
}, {
|
|
6162
|
+
readonly inputs: readonly [{
|
|
6163
|
+
readonly components: readonly [{
|
|
6164
|
+
readonly internalType: "address";
|
|
6165
|
+
readonly name: "sender";
|
|
6166
|
+
readonly type: "address";
|
|
6167
|
+
}, {
|
|
6168
|
+
readonly internalType: "uint256";
|
|
6169
|
+
readonly name: "nonce";
|
|
6170
|
+
readonly type: "uint256";
|
|
6171
|
+
}, {
|
|
6172
|
+
readonly internalType: "bytes";
|
|
6173
|
+
readonly name: "initCode";
|
|
6174
|
+
readonly type: "bytes";
|
|
6175
|
+
}, {
|
|
6176
|
+
readonly internalType: "bytes";
|
|
6177
|
+
readonly name: "callData";
|
|
6178
|
+
readonly type: "bytes";
|
|
6179
|
+
}, {
|
|
6180
|
+
readonly internalType: "bytes32";
|
|
6181
|
+
readonly name: "accountGasLimits";
|
|
6182
|
+
readonly type: "bytes32";
|
|
6183
|
+
}, {
|
|
6184
|
+
readonly internalType: "uint256";
|
|
6185
|
+
readonly name: "preVerificationGas";
|
|
6186
|
+
readonly type: "uint256";
|
|
6187
|
+
}, {
|
|
6188
|
+
readonly internalType: "bytes32";
|
|
6189
|
+
readonly name: "gasFees";
|
|
6190
|
+
readonly type: "bytes32";
|
|
6191
|
+
}, {
|
|
6192
|
+
readonly internalType: "bytes";
|
|
6193
|
+
readonly name: "paymasterAndData";
|
|
6194
|
+
readonly type: "bytes";
|
|
6195
|
+
}, {
|
|
6196
|
+
readonly internalType: "bytes";
|
|
6197
|
+
readonly name: "signature";
|
|
6198
|
+
readonly type: "bytes";
|
|
6199
|
+
}];
|
|
6200
|
+
readonly internalType: "struct PackedUserOperation";
|
|
6201
|
+
readonly name: "userOp";
|
|
6202
|
+
readonly type: "tuple";
|
|
6203
|
+
}];
|
|
6204
|
+
readonly name: "getUserOpHash";
|
|
6205
|
+
readonly outputs: readonly [{
|
|
6206
|
+
readonly internalType: "bytes32";
|
|
6207
|
+
readonly name: "";
|
|
6208
|
+
readonly type: "bytes32";
|
|
6209
|
+
}];
|
|
6210
|
+
readonly stateMutability: "view";
|
|
6211
|
+
readonly type: "function";
|
|
6212
|
+
}, {
|
|
6213
|
+
readonly inputs: readonly [{
|
|
6214
|
+
readonly components: readonly [{
|
|
6215
|
+
readonly components: readonly [{
|
|
6216
|
+
readonly internalType: "address";
|
|
6217
|
+
readonly name: "sender";
|
|
6218
|
+
readonly type: "address";
|
|
6219
|
+
}, {
|
|
6220
|
+
readonly internalType: "uint256";
|
|
6221
|
+
readonly name: "nonce";
|
|
6222
|
+
readonly type: "uint256";
|
|
6223
|
+
}, {
|
|
6224
|
+
readonly internalType: "bytes";
|
|
6225
|
+
readonly name: "initCode";
|
|
6226
|
+
readonly type: "bytes";
|
|
6227
|
+
}, {
|
|
6228
|
+
readonly internalType: "bytes";
|
|
6229
|
+
readonly name: "callData";
|
|
6230
|
+
readonly type: "bytes";
|
|
6231
|
+
}, {
|
|
6232
|
+
readonly internalType: "bytes32";
|
|
6233
|
+
readonly name: "accountGasLimits";
|
|
6234
|
+
readonly type: "bytes32";
|
|
6235
|
+
}, {
|
|
6236
|
+
readonly internalType: "uint256";
|
|
6237
|
+
readonly name: "preVerificationGas";
|
|
6238
|
+
readonly type: "uint256";
|
|
6239
|
+
}, {
|
|
6240
|
+
readonly internalType: "bytes32";
|
|
6241
|
+
readonly name: "gasFees";
|
|
6242
|
+
readonly type: "bytes32";
|
|
6243
|
+
}, {
|
|
6244
|
+
readonly internalType: "bytes";
|
|
6245
|
+
readonly name: "paymasterAndData";
|
|
6246
|
+
readonly type: "bytes";
|
|
6247
|
+
}, {
|
|
6248
|
+
readonly internalType: "bytes";
|
|
6249
|
+
readonly name: "signature";
|
|
6250
|
+
readonly type: "bytes";
|
|
6251
|
+
}];
|
|
6252
|
+
readonly internalType: "struct PackedUserOperation[]";
|
|
6253
|
+
readonly name: "userOps";
|
|
6254
|
+
readonly type: "tuple[]";
|
|
6255
|
+
}, {
|
|
6256
|
+
readonly internalType: "contract IAggregator";
|
|
6257
|
+
readonly name: "aggregator";
|
|
6258
|
+
readonly type: "address";
|
|
6259
|
+
}, {
|
|
6260
|
+
readonly internalType: "bytes";
|
|
6261
|
+
readonly name: "signature";
|
|
6262
|
+
readonly type: "bytes";
|
|
6263
|
+
}];
|
|
6264
|
+
readonly internalType: "struct IEntryPoint.UserOpsPerAggregator[]";
|
|
6265
|
+
readonly name: "opsPerAggregator";
|
|
6266
|
+
readonly type: "tuple[]";
|
|
6267
|
+
}, {
|
|
6268
|
+
readonly internalType: "address payable";
|
|
6269
|
+
readonly name: "beneficiary";
|
|
6270
|
+
readonly type: "address";
|
|
6271
|
+
}];
|
|
6272
|
+
readonly name: "handleAggregatedOps";
|
|
6273
|
+
readonly outputs: readonly [];
|
|
6274
|
+
readonly stateMutability: "nonpayable";
|
|
6275
|
+
readonly type: "function";
|
|
6276
|
+
}, {
|
|
6277
|
+
readonly inputs: readonly [{
|
|
6278
|
+
readonly components: readonly [{
|
|
6279
|
+
readonly internalType: "address";
|
|
6280
|
+
readonly name: "sender";
|
|
6281
|
+
readonly type: "address";
|
|
6282
|
+
}, {
|
|
6283
|
+
readonly internalType: "uint256";
|
|
6284
|
+
readonly name: "nonce";
|
|
6285
|
+
readonly type: "uint256";
|
|
6286
|
+
}, {
|
|
6287
|
+
readonly internalType: "bytes";
|
|
6288
|
+
readonly name: "initCode";
|
|
6289
|
+
readonly type: "bytes";
|
|
6290
|
+
}, {
|
|
6291
|
+
readonly internalType: "bytes";
|
|
6292
|
+
readonly name: "callData";
|
|
6293
|
+
readonly type: "bytes";
|
|
6294
|
+
}, {
|
|
6295
|
+
readonly internalType: "bytes32";
|
|
6296
|
+
readonly name: "accountGasLimits";
|
|
6297
|
+
readonly type: "bytes32";
|
|
6298
|
+
}, {
|
|
6299
|
+
readonly internalType: "uint256";
|
|
6300
|
+
readonly name: "preVerificationGas";
|
|
6301
|
+
readonly type: "uint256";
|
|
6302
|
+
}, {
|
|
6303
|
+
readonly internalType: "bytes32";
|
|
6304
|
+
readonly name: "gasFees";
|
|
6305
|
+
readonly type: "bytes32";
|
|
6306
|
+
}, {
|
|
6307
|
+
readonly internalType: "bytes";
|
|
6308
|
+
readonly name: "paymasterAndData";
|
|
6309
|
+
readonly type: "bytes";
|
|
6310
|
+
}, {
|
|
6311
|
+
readonly internalType: "bytes";
|
|
6312
|
+
readonly name: "signature";
|
|
6313
|
+
readonly type: "bytes";
|
|
6314
|
+
}];
|
|
6315
|
+
readonly internalType: "struct PackedUserOperation[]";
|
|
6316
|
+
readonly name: "ops";
|
|
6317
|
+
readonly type: "tuple[]";
|
|
6318
|
+
}, {
|
|
6319
|
+
readonly internalType: "address payable";
|
|
6320
|
+
readonly name: "beneficiary";
|
|
6321
|
+
readonly type: "address";
|
|
6322
|
+
}];
|
|
6323
|
+
readonly name: "handleOps";
|
|
6324
|
+
readonly outputs: readonly [];
|
|
6325
|
+
readonly stateMutability: "nonpayable";
|
|
6326
|
+
readonly type: "function";
|
|
6327
|
+
}, {
|
|
6328
|
+
readonly inputs: readonly [{
|
|
6329
|
+
readonly internalType: "uint192";
|
|
6330
|
+
readonly name: "key";
|
|
6331
|
+
readonly type: "uint192";
|
|
6332
|
+
}];
|
|
6333
|
+
readonly name: "incrementNonce";
|
|
6334
|
+
readonly outputs: readonly [];
|
|
6335
|
+
readonly stateMutability: "nonpayable";
|
|
6336
|
+
readonly type: "function";
|
|
6337
|
+
}, {
|
|
6338
|
+
readonly inputs: readonly [{
|
|
6339
|
+
readonly internalType: "bytes";
|
|
6340
|
+
readonly name: "callData";
|
|
6341
|
+
readonly type: "bytes";
|
|
6342
|
+
}, {
|
|
6343
|
+
readonly components: readonly [{
|
|
6344
|
+
readonly components: readonly [{
|
|
6345
|
+
readonly internalType: "address";
|
|
6346
|
+
readonly name: "sender";
|
|
6347
|
+
readonly type: "address";
|
|
6348
|
+
}, {
|
|
6349
|
+
readonly internalType: "uint256";
|
|
6350
|
+
readonly name: "nonce";
|
|
6351
|
+
readonly type: "uint256";
|
|
6352
|
+
}, {
|
|
6353
|
+
readonly internalType: "uint256";
|
|
6354
|
+
readonly name: "verificationGasLimit";
|
|
6355
|
+
readonly type: "uint256";
|
|
6356
|
+
}, {
|
|
6357
|
+
readonly internalType: "uint256";
|
|
6358
|
+
readonly name: "callGasLimit";
|
|
6359
|
+
readonly type: "uint256";
|
|
6360
|
+
}, {
|
|
6361
|
+
readonly internalType: "uint256";
|
|
6362
|
+
readonly name: "paymasterVerificationGasLimit";
|
|
6363
|
+
readonly type: "uint256";
|
|
6364
|
+
}, {
|
|
6365
|
+
readonly internalType: "uint256";
|
|
6366
|
+
readonly name: "paymasterPostOpGasLimit";
|
|
6367
|
+
readonly type: "uint256";
|
|
6368
|
+
}, {
|
|
6369
|
+
readonly internalType: "uint256";
|
|
6370
|
+
readonly name: "preVerificationGas";
|
|
6371
|
+
readonly type: "uint256";
|
|
6372
|
+
}, {
|
|
6373
|
+
readonly internalType: "address";
|
|
6374
|
+
readonly name: "paymaster";
|
|
6375
|
+
readonly type: "address";
|
|
6376
|
+
}, {
|
|
6377
|
+
readonly internalType: "uint256";
|
|
6378
|
+
readonly name: "maxFeePerGas";
|
|
6379
|
+
readonly type: "uint256";
|
|
6380
|
+
}, {
|
|
6381
|
+
readonly internalType: "uint256";
|
|
6382
|
+
readonly name: "maxPriorityFeePerGas";
|
|
6383
|
+
readonly type: "uint256";
|
|
6384
|
+
}];
|
|
6385
|
+
readonly internalType: "struct EntryPoint.MemoryUserOp";
|
|
6386
|
+
readonly name: "mUserOp";
|
|
6387
|
+
readonly type: "tuple";
|
|
6388
|
+
}, {
|
|
6389
|
+
readonly internalType: "bytes32";
|
|
6390
|
+
readonly name: "userOpHash";
|
|
6391
|
+
readonly type: "bytes32";
|
|
6392
|
+
}, {
|
|
6393
|
+
readonly internalType: "uint256";
|
|
6394
|
+
readonly name: "prefund";
|
|
6395
|
+
readonly type: "uint256";
|
|
6396
|
+
}, {
|
|
6397
|
+
readonly internalType: "uint256";
|
|
6398
|
+
readonly name: "contextOffset";
|
|
6399
|
+
readonly type: "uint256";
|
|
6400
|
+
}, {
|
|
6401
|
+
readonly internalType: "uint256";
|
|
6402
|
+
readonly name: "preOpGas";
|
|
6403
|
+
readonly type: "uint256";
|
|
6404
|
+
}];
|
|
6405
|
+
readonly internalType: "struct EntryPoint.UserOpInfo";
|
|
6406
|
+
readonly name: "opInfo";
|
|
6407
|
+
readonly type: "tuple";
|
|
6408
|
+
}, {
|
|
6409
|
+
readonly internalType: "bytes";
|
|
6410
|
+
readonly name: "context";
|
|
6411
|
+
readonly type: "bytes";
|
|
6412
|
+
}];
|
|
6413
|
+
readonly name: "innerHandleOp";
|
|
6414
|
+
readonly outputs: readonly [{
|
|
6415
|
+
readonly internalType: "uint256";
|
|
6416
|
+
readonly name: "actualGasCost";
|
|
6417
|
+
readonly type: "uint256";
|
|
6418
|
+
}];
|
|
6419
|
+
readonly stateMutability: "nonpayable";
|
|
6420
|
+
readonly type: "function";
|
|
6421
|
+
}, {
|
|
6422
|
+
readonly inputs: readonly [{
|
|
6423
|
+
readonly internalType: "address";
|
|
6424
|
+
readonly name: "";
|
|
6425
|
+
readonly type: "address";
|
|
6426
|
+
}, {
|
|
6427
|
+
readonly internalType: "uint192";
|
|
6428
|
+
readonly name: "";
|
|
6429
|
+
readonly type: "uint192";
|
|
6430
|
+
}];
|
|
6431
|
+
readonly name: "nonceSequenceNumber";
|
|
6432
|
+
readonly outputs: readonly [{
|
|
6433
|
+
readonly internalType: "uint256";
|
|
6434
|
+
readonly name: "";
|
|
6435
|
+
readonly type: "uint256";
|
|
6436
|
+
}];
|
|
6437
|
+
readonly stateMutability: "view";
|
|
6438
|
+
readonly type: "function";
|
|
6439
|
+
}, {
|
|
6440
|
+
readonly inputs: readonly [];
|
|
6441
|
+
readonly name: "senderCreator";
|
|
6442
|
+
readonly outputs: readonly [{
|
|
6443
|
+
readonly internalType: "contract ISenderCreator";
|
|
6444
|
+
readonly name: "";
|
|
6445
|
+
readonly type: "address";
|
|
6446
|
+
}];
|
|
6447
|
+
readonly stateMutability: "view";
|
|
6448
|
+
readonly type: "function";
|
|
6449
|
+
}, {
|
|
6450
|
+
readonly inputs: readonly [{
|
|
6451
|
+
readonly internalType: "bytes4";
|
|
6452
|
+
readonly name: "interfaceId";
|
|
6453
|
+
readonly type: "bytes4";
|
|
6454
|
+
}];
|
|
6455
|
+
readonly name: "supportsInterface";
|
|
6456
|
+
readonly outputs: readonly [{
|
|
6457
|
+
readonly internalType: "bool";
|
|
6458
|
+
readonly name: "";
|
|
6459
|
+
readonly type: "bool";
|
|
6460
|
+
}];
|
|
6461
|
+
readonly stateMutability: "view";
|
|
6462
|
+
readonly type: "function";
|
|
6463
|
+
}, {
|
|
6464
|
+
readonly inputs: readonly [];
|
|
6465
|
+
readonly name: "unlockStake";
|
|
6466
|
+
readonly outputs: readonly [];
|
|
6467
|
+
readonly stateMutability: "nonpayable";
|
|
6468
|
+
readonly type: "function";
|
|
6469
|
+
}, {
|
|
6470
|
+
readonly inputs: readonly [{
|
|
6471
|
+
readonly internalType: "address payable";
|
|
6472
|
+
readonly name: "withdrawAddress";
|
|
6473
|
+
readonly type: "address";
|
|
6474
|
+
}];
|
|
6475
|
+
readonly name: "withdrawStake";
|
|
6476
|
+
readonly outputs: readonly [];
|
|
6477
|
+
readonly stateMutability: "nonpayable";
|
|
6478
|
+
readonly type: "function";
|
|
6479
|
+
}, {
|
|
6480
|
+
readonly inputs: readonly [{
|
|
6481
|
+
readonly internalType: "address payable";
|
|
6482
|
+
readonly name: "withdrawAddress";
|
|
6483
|
+
readonly type: "address";
|
|
6484
|
+
}, {
|
|
6485
|
+
readonly internalType: "uint256";
|
|
6486
|
+
readonly name: "withdrawAmount";
|
|
6487
|
+
readonly type: "uint256";
|
|
6488
|
+
}];
|
|
6489
|
+
readonly name: "withdrawTo";
|
|
6490
|
+
readonly outputs: readonly [];
|
|
6491
|
+
readonly stateMutability: "nonpayable";
|
|
6492
|
+
readonly type: "function";
|
|
6493
|
+
}, {
|
|
6494
|
+
readonly stateMutability: "payable";
|
|
6495
|
+
readonly type: "receive";
|
|
6496
|
+
}], readonly [{
|
|
6497
|
+
readonly type: "constructor";
|
|
6498
|
+
readonly inputs: readonly [{
|
|
6499
|
+
readonly name: "entryPoint_";
|
|
6500
|
+
readonly type: "address";
|
|
6501
|
+
readonly internalType: "contract IEntryPoint";
|
|
6502
|
+
}];
|
|
6503
|
+
readonly stateMutability: "nonpayable";
|
|
6504
|
+
}, {
|
|
6505
|
+
readonly type: "receive";
|
|
6506
|
+
readonly stateMutability: "payable";
|
|
6507
|
+
}, {
|
|
6508
|
+
readonly type: "function";
|
|
6509
|
+
readonly name: "addDeposit";
|
|
6510
|
+
readonly inputs: readonly [];
|
|
6511
|
+
readonly outputs: readonly [];
|
|
6512
|
+
readonly stateMutability: "payable";
|
|
6513
|
+
}, {
|
|
6514
|
+
readonly type: "function";
|
|
6515
|
+
readonly name: "eip712Domain";
|
|
6516
|
+
readonly inputs: readonly [];
|
|
6517
|
+
readonly outputs: readonly [{
|
|
6518
|
+
readonly name: "fields";
|
|
6519
|
+
readonly type: "bytes1";
|
|
6520
|
+
readonly internalType: "bytes1";
|
|
6521
|
+
}, {
|
|
6522
|
+
readonly name: "name";
|
|
6523
|
+
readonly type: "string";
|
|
6524
|
+
readonly internalType: "string";
|
|
6525
|
+
}, {
|
|
6526
|
+
readonly name: "version";
|
|
6527
|
+
readonly type: "string";
|
|
6528
|
+
readonly internalType: "string";
|
|
6529
|
+
}, {
|
|
6530
|
+
readonly name: "chainId";
|
|
6531
|
+
readonly type: "uint256";
|
|
6532
|
+
readonly internalType: "uint256";
|
|
6533
|
+
}, {
|
|
6534
|
+
readonly name: "verifyingContract";
|
|
6535
|
+
readonly type: "address";
|
|
6536
|
+
readonly internalType: "address";
|
|
6537
|
+
}, {
|
|
6538
|
+
readonly name: "salt";
|
|
6539
|
+
readonly type: "bytes32";
|
|
6540
|
+
readonly internalType: "bytes32";
|
|
6541
|
+
}, {
|
|
6542
|
+
readonly name: "extensions";
|
|
6543
|
+
readonly type: "uint256[]";
|
|
6544
|
+
readonly internalType: "uint256[]";
|
|
6545
|
+
}];
|
|
6546
|
+
readonly stateMutability: "view";
|
|
6547
|
+
}, {
|
|
6548
|
+
readonly type: "function";
|
|
6549
|
+
readonly name: "entryPoint";
|
|
6550
|
+
readonly inputs: readonly [];
|
|
6551
|
+
readonly outputs: readonly [{
|
|
6552
|
+
readonly name: "";
|
|
6553
|
+
readonly type: "address";
|
|
6554
|
+
readonly internalType: "contract IEntryPoint";
|
|
6555
|
+
}];
|
|
6556
|
+
readonly stateMutability: "view";
|
|
6557
|
+
}, {
|
|
6558
|
+
readonly type: "function";
|
|
6559
|
+
readonly name: "execute";
|
|
6560
|
+
readonly inputs: readonly [{
|
|
6561
|
+
readonly name: "dest";
|
|
6562
|
+
readonly type: "address";
|
|
6563
|
+
readonly internalType: "address";
|
|
6564
|
+
}, {
|
|
6565
|
+
readonly name: "value";
|
|
6566
|
+
readonly type: "uint256";
|
|
6567
|
+
readonly internalType: "uint256";
|
|
6568
|
+
}, {
|
|
6569
|
+
readonly name: "func";
|
|
6570
|
+
readonly type: "bytes";
|
|
6571
|
+
readonly internalType: "bytes";
|
|
6572
|
+
}];
|
|
6573
|
+
readonly outputs: readonly [];
|
|
6574
|
+
readonly stateMutability: "nonpayable";
|
|
6575
|
+
}, {
|
|
6576
|
+
readonly type: "function";
|
|
6577
|
+
readonly name: "executeBatch";
|
|
6578
|
+
readonly inputs: readonly [{
|
|
6579
|
+
readonly name: "dest";
|
|
6580
|
+
readonly type: "address[]";
|
|
6581
|
+
readonly internalType: "address[]";
|
|
6582
|
+
}, {
|
|
6583
|
+
readonly name: "func";
|
|
6584
|
+
readonly type: "bytes[]";
|
|
6585
|
+
readonly internalType: "bytes[]";
|
|
6586
|
+
}];
|
|
6587
|
+
readonly outputs: readonly [];
|
|
6588
|
+
readonly stateMutability: "nonpayable";
|
|
6589
|
+
}, {
|
|
6590
|
+
readonly type: "function";
|
|
6591
|
+
readonly name: "executeBatch";
|
|
6592
|
+
readonly inputs: readonly [{
|
|
6593
|
+
readonly name: "dest";
|
|
6594
|
+
readonly type: "address[]";
|
|
6595
|
+
readonly internalType: "address[]";
|
|
6596
|
+
}, {
|
|
6597
|
+
readonly name: "value";
|
|
6598
|
+
readonly type: "uint256[]";
|
|
6599
|
+
readonly internalType: "uint256[]";
|
|
6600
|
+
}, {
|
|
6601
|
+
readonly name: "func";
|
|
6602
|
+
readonly type: "bytes[]";
|
|
6603
|
+
readonly internalType: "bytes[]";
|
|
6604
|
+
}];
|
|
6605
|
+
readonly outputs: readonly [];
|
|
6606
|
+
readonly stateMutability: "nonpayable";
|
|
6607
|
+
}, {
|
|
6608
|
+
readonly type: "function";
|
|
6609
|
+
readonly name: "getDeposit";
|
|
6610
|
+
readonly inputs: readonly [];
|
|
6611
|
+
readonly outputs: readonly [{
|
|
6612
|
+
readonly name: "";
|
|
6613
|
+
readonly type: "uint256";
|
|
6614
|
+
readonly internalType: "uint256";
|
|
6615
|
+
}];
|
|
6616
|
+
readonly stateMutability: "view";
|
|
6617
|
+
}, {
|
|
6618
|
+
readonly type: "function";
|
|
6619
|
+
readonly name: "getNonce";
|
|
6620
|
+
readonly inputs: readonly [];
|
|
6621
|
+
readonly outputs: readonly [{
|
|
6622
|
+
readonly name: "";
|
|
6623
|
+
readonly type: "uint256";
|
|
6624
|
+
readonly internalType: "uint256";
|
|
6625
|
+
}];
|
|
6626
|
+
readonly stateMutability: "view";
|
|
6627
|
+
}, {
|
|
6628
|
+
readonly type: "function";
|
|
6629
|
+
readonly name: "initialize";
|
|
6630
|
+
readonly inputs: readonly [{
|
|
6631
|
+
readonly name: "owner_";
|
|
6632
|
+
readonly type: "address";
|
|
6633
|
+
readonly internalType: "address";
|
|
6634
|
+
}];
|
|
6635
|
+
readonly outputs: readonly [];
|
|
6636
|
+
readonly stateMutability: "nonpayable";
|
|
6637
|
+
}, {
|
|
6638
|
+
readonly type: "function";
|
|
6639
|
+
readonly name: "isValidSignature";
|
|
6640
|
+
readonly inputs: readonly [{
|
|
6641
|
+
readonly name: "hash";
|
|
6642
|
+
readonly type: "bytes32";
|
|
6643
|
+
readonly internalType: "bytes32";
|
|
6644
|
+
}, {
|
|
6645
|
+
readonly name: "signature";
|
|
6646
|
+
readonly type: "bytes";
|
|
6647
|
+
readonly internalType: "bytes";
|
|
6648
|
+
}];
|
|
6649
|
+
readonly outputs: readonly [{
|
|
6650
|
+
readonly name: "result";
|
|
6651
|
+
readonly type: "bytes4";
|
|
6652
|
+
readonly internalType: "bytes4";
|
|
6653
|
+
}];
|
|
6654
|
+
readonly stateMutability: "view";
|
|
6655
|
+
}, {
|
|
6656
|
+
readonly type: "function";
|
|
6657
|
+
readonly name: "onERC1155BatchReceived";
|
|
6658
|
+
readonly inputs: readonly [{
|
|
6659
|
+
readonly name: "";
|
|
6660
|
+
readonly type: "address";
|
|
6661
|
+
readonly internalType: "address";
|
|
6662
|
+
}, {
|
|
6663
|
+
readonly name: "";
|
|
6664
|
+
readonly type: "address";
|
|
6665
|
+
readonly internalType: "address";
|
|
6666
|
+
}, {
|
|
6667
|
+
readonly name: "";
|
|
6668
|
+
readonly type: "uint256[]";
|
|
6669
|
+
readonly internalType: "uint256[]";
|
|
6670
|
+
}, {
|
|
6671
|
+
readonly name: "";
|
|
6672
|
+
readonly type: "uint256[]";
|
|
6673
|
+
readonly internalType: "uint256[]";
|
|
6674
|
+
}, {
|
|
6675
|
+
readonly name: "";
|
|
6676
|
+
readonly type: "bytes";
|
|
6677
|
+
readonly internalType: "bytes";
|
|
6678
|
+
}];
|
|
6679
|
+
readonly outputs: readonly [{
|
|
6680
|
+
readonly name: "";
|
|
6681
|
+
readonly type: "bytes4";
|
|
6682
|
+
readonly internalType: "bytes4";
|
|
6683
|
+
}];
|
|
6684
|
+
readonly stateMutability: "pure";
|
|
6685
|
+
}, {
|
|
6686
|
+
readonly type: "function";
|
|
6687
|
+
readonly name: "onERC1155Received";
|
|
6688
|
+
readonly inputs: readonly [{
|
|
6689
|
+
readonly name: "";
|
|
6690
|
+
readonly type: "address";
|
|
6691
|
+
readonly internalType: "address";
|
|
6692
|
+
}, {
|
|
6693
|
+
readonly name: "";
|
|
6694
|
+
readonly type: "address";
|
|
6695
|
+
readonly internalType: "address";
|
|
6696
|
+
}, {
|
|
6697
|
+
readonly name: "";
|
|
6698
|
+
readonly type: "uint256";
|
|
6699
|
+
readonly internalType: "uint256";
|
|
6700
|
+
}, {
|
|
6701
|
+
readonly name: "";
|
|
6702
|
+
readonly type: "uint256";
|
|
6703
|
+
readonly internalType: "uint256";
|
|
6704
|
+
}, {
|
|
6705
|
+
readonly name: "";
|
|
6706
|
+
readonly type: "bytes";
|
|
6707
|
+
readonly internalType: "bytes";
|
|
6708
|
+
}];
|
|
6709
|
+
readonly outputs: readonly [{
|
|
6710
|
+
readonly name: "";
|
|
6711
|
+
readonly type: "bytes4";
|
|
6712
|
+
readonly internalType: "bytes4";
|
|
6713
|
+
}];
|
|
6714
|
+
readonly stateMutability: "pure";
|
|
6715
|
+
}, {
|
|
6716
|
+
readonly type: "function";
|
|
6717
|
+
readonly name: "onERC721Received";
|
|
6718
|
+
readonly inputs: readonly [{
|
|
6719
|
+
readonly name: "";
|
|
6720
|
+
readonly type: "address";
|
|
6721
|
+
readonly internalType: "address";
|
|
6722
|
+
}, {
|
|
6723
|
+
readonly name: "";
|
|
6724
|
+
readonly type: "address";
|
|
6725
|
+
readonly internalType: "address";
|
|
6726
|
+
}, {
|
|
6727
|
+
readonly name: "";
|
|
6728
|
+
readonly type: "uint256";
|
|
6729
|
+
readonly internalType: "uint256";
|
|
6730
|
+
}, {
|
|
6731
|
+
readonly name: "";
|
|
6732
|
+
readonly type: "bytes";
|
|
6733
|
+
readonly internalType: "bytes";
|
|
6734
|
+
}];
|
|
6735
|
+
readonly outputs: readonly [{
|
|
6736
|
+
readonly name: "";
|
|
6737
|
+
readonly type: "bytes4";
|
|
6738
|
+
readonly internalType: "bytes4";
|
|
6739
|
+
}];
|
|
6740
|
+
readonly stateMutability: "pure";
|
|
6741
|
+
}, {
|
|
6742
|
+
readonly type: "function";
|
|
6743
|
+
readonly name: "owner";
|
|
6744
|
+
readonly inputs: readonly [];
|
|
6745
|
+
readonly outputs: readonly [{
|
|
6746
|
+
readonly name: "";
|
|
6747
|
+
readonly type: "address";
|
|
6748
|
+
readonly internalType: "address";
|
|
6749
|
+
}];
|
|
6750
|
+
readonly stateMutability: "view";
|
|
6751
|
+
}, {
|
|
6752
|
+
readonly type: "function";
|
|
6753
|
+
readonly name: "proxiableUUID";
|
|
6754
|
+
readonly inputs: readonly [];
|
|
6755
|
+
readonly outputs: readonly [{
|
|
6756
|
+
readonly name: "";
|
|
6757
|
+
readonly type: "bytes32";
|
|
6758
|
+
readonly internalType: "bytes32";
|
|
6759
|
+
}];
|
|
6760
|
+
readonly stateMutability: "view";
|
|
6761
|
+
}, {
|
|
6762
|
+
readonly type: "function";
|
|
6763
|
+
readonly name: "supportsInterface";
|
|
6764
|
+
readonly inputs: readonly [{
|
|
6765
|
+
readonly name: "interfaceId";
|
|
6766
|
+
readonly type: "bytes4";
|
|
6767
|
+
readonly internalType: "bytes4";
|
|
6768
|
+
}];
|
|
6769
|
+
readonly outputs: readonly [{
|
|
6770
|
+
readonly name: "";
|
|
6771
|
+
readonly type: "bool";
|
|
6772
|
+
readonly internalType: "bool";
|
|
6773
|
+
}];
|
|
6774
|
+
readonly stateMutability: "view";
|
|
6775
|
+
}, {
|
|
6776
|
+
readonly type: "function";
|
|
6777
|
+
readonly name: "transferOwnership";
|
|
6778
|
+
readonly inputs: readonly [{
|
|
6779
|
+
readonly name: "newOwner";
|
|
6780
|
+
readonly type: "address";
|
|
6781
|
+
readonly internalType: "address";
|
|
6782
|
+
}];
|
|
6783
|
+
readonly outputs: readonly [];
|
|
6784
|
+
readonly stateMutability: "nonpayable";
|
|
6785
|
+
}, {
|
|
6786
|
+
readonly type: "function";
|
|
6787
|
+
readonly name: "upgradeToAndCall";
|
|
6788
|
+
readonly inputs: readonly [{
|
|
6789
|
+
readonly name: "newImplementation";
|
|
6790
|
+
readonly type: "address";
|
|
6791
|
+
readonly internalType: "address";
|
|
6792
|
+
}, {
|
|
6793
|
+
readonly name: "data";
|
|
6794
|
+
readonly type: "bytes";
|
|
6795
|
+
readonly internalType: "bytes";
|
|
6796
|
+
}];
|
|
6797
|
+
readonly outputs: readonly [];
|
|
6798
|
+
readonly stateMutability: "payable";
|
|
6799
|
+
}, {
|
|
6800
|
+
readonly type: "function";
|
|
6801
|
+
readonly name: "validateUserOp";
|
|
6802
|
+
readonly inputs: readonly [{
|
|
6803
|
+
readonly name: "userOp";
|
|
6804
|
+
readonly type: "tuple";
|
|
6805
|
+
readonly internalType: "struct PackedUserOperation";
|
|
6806
|
+
readonly components: readonly [{
|
|
6807
|
+
readonly name: "sender";
|
|
6808
|
+
readonly type: "address";
|
|
6809
|
+
readonly internalType: "address";
|
|
6810
|
+
}, {
|
|
6811
|
+
readonly name: "nonce";
|
|
6812
|
+
readonly type: "uint256";
|
|
6813
|
+
readonly internalType: "uint256";
|
|
6814
|
+
}, {
|
|
6815
|
+
readonly name: "initCode";
|
|
6816
|
+
readonly type: "bytes";
|
|
6817
|
+
readonly internalType: "bytes";
|
|
6818
|
+
}, {
|
|
6819
|
+
readonly name: "callData";
|
|
6820
|
+
readonly type: "bytes";
|
|
6821
|
+
readonly internalType: "bytes";
|
|
6822
|
+
}, {
|
|
6823
|
+
readonly name: "accountGasLimits";
|
|
6824
|
+
readonly type: "bytes32";
|
|
6825
|
+
readonly internalType: "bytes32";
|
|
6826
|
+
}, {
|
|
6827
|
+
readonly name: "preVerificationGas";
|
|
6828
|
+
readonly type: "uint256";
|
|
6829
|
+
readonly internalType: "uint256";
|
|
6830
|
+
}, {
|
|
6831
|
+
readonly name: "gasFees";
|
|
6832
|
+
readonly type: "bytes32";
|
|
6833
|
+
readonly internalType: "bytes32";
|
|
6834
|
+
}, {
|
|
6835
|
+
readonly name: "paymasterAndData";
|
|
6836
|
+
readonly type: "bytes";
|
|
6837
|
+
readonly internalType: "bytes";
|
|
6838
|
+
}, {
|
|
6839
|
+
readonly name: "signature";
|
|
6840
|
+
readonly type: "bytes";
|
|
6841
|
+
readonly internalType: "bytes";
|
|
6842
|
+
}];
|
|
6843
|
+
}, {
|
|
6844
|
+
readonly name: "userOpHash";
|
|
6845
|
+
readonly type: "bytes32";
|
|
6846
|
+
readonly internalType: "bytes32";
|
|
6847
|
+
}, {
|
|
6848
|
+
readonly name: "missingAccountFunds";
|
|
6849
|
+
readonly type: "uint256";
|
|
6850
|
+
readonly internalType: "uint256";
|
|
6851
|
+
}];
|
|
6852
|
+
readonly outputs: readonly [{
|
|
6853
|
+
readonly name: "validationData";
|
|
6854
|
+
readonly type: "uint256";
|
|
6855
|
+
readonly internalType: "uint256";
|
|
6856
|
+
}];
|
|
6857
|
+
readonly stateMutability: "nonpayable";
|
|
6858
|
+
}, {
|
|
6859
|
+
readonly type: "function";
|
|
6860
|
+
readonly name: "withdrawDepositTo";
|
|
6861
|
+
readonly inputs: readonly [{
|
|
6862
|
+
readonly name: "withdrawAddress";
|
|
6863
|
+
readonly type: "address";
|
|
6864
|
+
readonly internalType: "address payable";
|
|
6865
|
+
}, {
|
|
6866
|
+
readonly name: "amount";
|
|
6867
|
+
readonly type: "uint256";
|
|
6868
|
+
readonly internalType: "uint256";
|
|
6869
|
+
}];
|
|
6870
|
+
readonly outputs: readonly [];
|
|
6871
|
+
readonly stateMutability: "nonpayable";
|
|
6872
|
+
}, {
|
|
6873
|
+
readonly type: "event";
|
|
6874
|
+
readonly name: "Initialized";
|
|
6875
|
+
readonly inputs: readonly [{
|
|
6876
|
+
readonly name: "version";
|
|
6877
|
+
readonly type: "uint64";
|
|
6878
|
+
readonly indexed: false;
|
|
6879
|
+
readonly internalType: "uint64";
|
|
6880
|
+
}];
|
|
6881
|
+
readonly anonymous: false;
|
|
6882
|
+
}, {
|
|
6883
|
+
readonly type: "event";
|
|
6884
|
+
readonly name: "LightAccountInitialized";
|
|
6885
|
+
readonly inputs: readonly [{
|
|
6886
|
+
readonly name: "entryPoint";
|
|
6887
|
+
readonly type: "address";
|
|
6888
|
+
readonly indexed: true;
|
|
6889
|
+
readonly internalType: "contract IEntryPoint";
|
|
6890
|
+
}, {
|
|
6891
|
+
readonly name: "owner";
|
|
6892
|
+
readonly type: "address";
|
|
6893
|
+
readonly indexed: true;
|
|
6894
|
+
readonly internalType: "address";
|
|
6895
|
+
}];
|
|
6896
|
+
readonly anonymous: false;
|
|
6897
|
+
}, {
|
|
6898
|
+
readonly type: "event";
|
|
6899
|
+
readonly name: "OwnershipTransferred";
|
|
6900
|
+
readonly inputs: readonly [{
|
|
6901
|
+
readonly name: "previousOwner";
|
|
6902
|
+
readonly type: "address";
|
|
6903
|
+
readonly indexed: true;
|
|
6904
|
+
readonly internalType: "address";
|
|
6905
|
+
}, {
|
|
6906
|
+
readonly name: "newOwner";
|
|
6907
|
+
readonly type: "address";
|
|
6908
|
+
readonly indexed: true;
|
|
6909
|
+
readonly internalType: "address";
|
|
6910
|
+
}];
|
|
6911
|
+
readonly anonymous: false;
|
|
6912
|
+
}, {
|
|
6913
|
+
readonly type: "event";
|
|
6914
|
+
readonly name: "Upgraded";
|
|
6915
|
+
readonly inputs: readonly [{
|
|
6916
|
+
readonly name: "implementation";
|
|
6917
|
+
readonly type: "address";
|
|
6918
|
+
readonly indexed: true;
|
|
6919
|
+
readonly internalType: "address";
|
|
6920
|
+
}];
|
|
6921
|
+
readonly anonymous: false;
|
|
6922
|
+
}, {
|
|
6923
|
+
readonly type: "error";
|
|
6924
|
+
readonly name: "ArrayLengthMismatch";
|
|
6925
|
+
readonly inputs: readonly [];
|
|
6926
|
+
}, {
|
|
6927
|
+
readonly type: "error";
|
|
6928
|
+
readonly name: "ECDSAInvalidSignature";
|
|
6929
|
+
readonly inputs: readonly [];
|
|
6930
|
+
}, {
|
|
6931
|
+
readonly type: "error";
|
|
6932
|
+
readonly name: "ECDSAInvalidSignatureLength";
|
|
6933
|
+
readonly inputs: readonly [{
|
|
6934
|
+
readonly name: "length";
|
|
6935
|
+
readonly type: "uint256";
|
|
6936
|
+
readonly internalType: "uint256";
|
|
6937
|
+
}];
|
|
6938
|
+
}, {
|
|
6939
|
+
readonly type: "error";
|
|
6940
|
+
readonly name: "ECDSAInvalidSignatureS";
|
|
6941
|
+
readonly inputs: readonly [{
|
|
6942
|
+
readonly name: "s";
|
|
6943
|
+
readonly type: "bytes32";
|
|
6944
|
+
readonly internalType: "bytes32";
|
|
6945
|
+
}];
|
|
6946
|
+
}, {
|
|
6947
|
+
readonly type: "error";
|
|
6948
|
+
readonly name: "InvalidInitialization";
|
|
6949
|
+
readonly inputs: readonly [];
|
|
6950
|
+
}, {
|
|
6951
|
+
readonly type: "error";
|
|
6952
|
+
readonly name: "InvalidOwner";
|
|
6953
|
+
readonly inputs: readonly [{
|
|
6954
|
+
readonly name: "owner";
|
|
6955
|
+
readonly type: "address";
|
|
6956
|
+
readonly internalType: "address";
|
|
6957
|
+
}];
|
|
6958
|
+
}, {
|
|
6959
|
+
readonly type: "error";
|
|
6960
|
+
readonly name: "InvalidSignatureType";
|
|
6961
|
+
readonly inputs: readonly [];
|
|
6962
|
+
}, {
|
|
6963
|
+
readonly type: "error";
|
|
6964
|
+
readonly name: "NotAuthorized";
|
|
6965
|
+
readonly inputs: readonly [{
|
|
6966
|
+
readonly name: "caller";
|
|
6967
|
+
readonly type: "address";
|
|
6968
|
+
readonly internalType: "address";
|
|
6969
|
+
}];
|
|
6970
|
+
}, {
|
|
6971
|
+
readonly type: "error";
|
|
6972
|
+
readonly name: "NotInitializing";
|
|
6973
|
+
readonly inputs: readonly [];
|
|
6974
|
+
}, {
|
|
6975
|
+
readonly type: "error";
|
|
6976
|
+
readonly name: "UnauthorizedCallContext";
|
|
6977
|
+
readonly inputs: readonly [];
|
|
6978
|
+
}, {
|
|
6979
|
+
readonly type: "error";
|
|
6980
|
+
readonly name: "UpgradeFailed";
|
|
6981
|
+
readonly inputs: readonly [];
|
|
6982
|
+
}, {
|
|
6983
|
+
readonly type: "error";
|
|
6984
|
+
readonly name: "ZeroAddressNotAllowed";
|
|
6985
|
+
readonly inputs: readonly [];
|
|
6986
|
+
}], readonly [{
|
|
6987
|
+
readonly type: "constructor";
|
|
6988
|
+
readonly inputs: readonly [{
|
|
6989
|
+
readonly name: "owner";
|
|
6990
|
+
readonly type: "address";
|
|
6991
|
+
readonly internalType: "address";
|
|
6992
|
+
}, {
|
|
6993
|
+
readonly name: "entryPoint";
|
|
6994
|
+
readonly type: "address";
|
|
6995
|
+
readonly internalType: "contract IEntryPoint";
|
|
6996
|
+
}];
|
|
6997
|
+
readonly stateMutability: "nonpayable";
|
|
6998
|
+
}, {
|
|
6999
|
+
readonly type: "receive";
|
|
7000
|
+
readonly stateMutability: "payable";
|
|
7001
|
+
}, {
|
|
7002
|
+
readonly type: "function";
|
|
7003
|
+
readonly name: "ACCOUNT_IMPLEMENTATION";
|
|
7004
|
+
readonly inputs: readonly [];
|
|
7005
|
+
readonly outputs: readonly [{
|
|
7006
|
+
readonly name: "";
|
|
7007
|
+
readonly type: "address";
|
|
7008
|
+
readonly internalType: "contract LightAccount";
|
|
7009
|
+
}];
|
|
7010
|
+
readonly stateMutability: "view";
|
|
7011
|
+
}, {
|
|
7012
|
+
readonly type: "function";
|
|
7013
|
+
readonly name: "ENTRY_POINT";
|
|
7014
|
+
readonly inputs: readonly [];
|
|
7015
|
+
readonly outputs: readonly [{
|
|
7016
|
+
readonly name: "";
|
|
7017
|
+
readonly type: "address";
|
|
7018
|
+
readonly internalType: "contract IEntryPoint";
|
|
7019
|
+
}];
|
|
7020
|
+
readonly stateMutability: "view";
|
|
7021
|
+
}, {
|
|
7022
|
+
readonly type: "function";
|
|
7023
|
+
readonly name: "acceptOwnership";
|
|
7024
|
+
readonly inputs: readonly [];
|
|
7025
|
+
readonly outputs: readonly [];
|
|
7026
|
+
readonly stateMutability: "nonpayable";
|
|
7027
|
+
}, {
|
|
7028
|
+
readonly type: "function";
|
|
7029
|
+
readonly name: "addStake";
|
|
7030
|
+
readonly inputs: readonly [{
|
|
7031
|
+
readonly name: "unstakeDelay";
|
|
7032
|
+
readonly type: "uint32";
|
|
7033
|
+
readonly internalType: "uint32";
|
|
7034
|
+
}, {
|
|
7035
|
+
readonly name: "amount";
|
|
7036
|
+
readonly type: "uint256";
|
|
7037
|
+
readonly internalType: "uint256";
|
|
7038
|
+
}];
|
|
7039
|
+
readonly outputs: readonly [];
|
|
7040
|
+
readonly stateMutability: "payable";
|
|
7041
|
+
}, {
|
|
7042
|
+
readonly type: "function";
|
|
7043
|
+
readonly name: "createAccount";
|
|
7044
|
+
readonly inputs: readonly [{
|
|
7045
|
+
readonly name: "owner";
|
|
7046
|
+
readonly type: "address";
|
|
7047
|
+
readonly internalType: "address";
|
|
7048
|
+
}, {
|
|
7049
|
+
readonly name: "salt";
|
|
7050
|
+
readonly type: "uint256";
|
|
7051
|
+
readonly internalType: "uint256";
|
|
7052
|
+
}];
|
|
7053
|
+
readonly outputs: readonly [{
|
|
7054
|
+
readonly name: "account";
|
|
7055
|
+
readonly type: "address";
|
|
7056
|
+
readonly internalType: "contract LightAccount";
|
|
7057
|
+
}];
|
|
7058
|
+
readonly stateMutability: "nonpayable";
|
|
7059
|
+
}, {
|
|
7060
|
+
readonly type: "function";
|
|
7061
|
+
readonly name: "getAddress";
|
|
7062
|
+
readonly inputs: readonly [{
|
|
7063
|
+
readonly name: "owner";
|
|
7064
|
+
readonly type: "address";
|
|
7065
|
+
readonly internalType: "address";
|
|
7066
|
+
}, {
|
|
7067
|
+
readonly name: "salt";
|
|
7068
|
+
readonly type: "uint256";
|
|
7069
|
+
readonly internalType: "uint256";
|
|
7070
|
+
}];
|
|
7071
|
+
readonly outputs: readonly [{
|
|
7072
|
+
readonly name: "";
|
|
7073
|
+
readonly type: "address";
|
|
7074
|
+
readonly internalType: "address";
|
|
7075
|
+
}];
|
|
7076
|
+
readonly stateMutability: "view";
|
|
7077
|
+
}, {
|
|
7078
|
+
readonly type: "function";
|
|
7079
|
+
readonly name: "owner";
|
|
7080
|
+
readonly inputs: readonly [];
|
|
7081
|
+
readonly outputs: readonly [{
|
|
7082
|
+
readonly name: "";
|
|
7083
|
+
readonly type: "address";
|
|
7084
|
+
readonly internalType: "address";
|
|
7085
|
+
}];
|
|
7086
|
+
readonly stateMutability: "view";
|
|
7087
|
+
}, {
|
|
7088
|
+
readonly type: "function";
|
|
7089
|
+
readonly name: "pendingOwner";
|
|
7090
|
+
readonly inputs: readonly [];
|
|
7091
|
+
readonly outputs: readonly [{
|
|
7092
|
+
readonly name: "";
|
|
7093
|
+
readonly type: "address";
|
|
7094
|
+
readonly internalType: "address";
|
|
7095
|
+
}];
|
|
7096
|
+
readonly stateMutability: "view";
|
|
7097
|
+
}, {
|
|
7098
|
+
readonly type: "function";
|
|
7099
|
+
readonly name: "renounceOwnership";
|
|
7100
|
+
readonly inputs: readonly [];
|
|
7101
|
+
readonly outputs: readonly [];
|
|
7102
|
+
readonly stateMutability: "view";
|
|
7103
|
+
}, {
|
|
7104
|
+
readonly type: "function";
|
|
7105
|
+
readonly name: "transferOwnership";
|
|
7106
|
+
readonly inputs: readonly [{
|
|
7107
|
+
readonly name: "newOwner";
|
|
7108
|
+
readonly type: "address";
|
|
7109
|
+
readonly internalType: "address";
|
|
7110
|
+
}];
|
|
7111
|
+
readonly outputs: readonly [];
|
|
7112
|
+
readonly stateMutability: "nonpayable";
|
|
7113
|
+
}, {
|
|
7114
|
+
readonly type: "function";
|
|
7115
|
+
readonly name: "unlockStake";
|
|
7116
|
+
readonly inputs: readonly [];
|
|
7117
|
+
readonly outputs: readonly [];
|
|
7118
|
+
readonly stateMutability: "nonpayable";
|
|
7119
|
+
}, {
|
|
7120
|
+
readonly type: "function";
|
|
7121
|
+
readonly name: "withdraw";
|
|
7122
|
+
readonly inputs: readonly [{
|
|
7123
|
+
readonly name: "to";
|
|
7124
|
+
readonly type: "address";
|
|
7125
|
+
readonly internalType: "address payable";
|
|
7126
|
+
}, {
|
|
7127
|
+
readonly name: "token";
|
|
7128
|
+
readonly type: "address";
|
|
7129
|
+
readonly internalType: "address";
|
|
7130
|
+
}, {
|
|
7131
|
+
readonly name: "amount";
|
|
7132
|
+
readonly type: "uint256";
|
|
7133
|
+
readonly internalType: "uint256";
|
|
7134
|
+
}];
|
|
7135
|
+
readonly outputs: readonly [];
|
|
7136
|
+
readonly stateMutability: "nonpayable";
|
|
7137
|
+
}, {
|
|
7138
|
+
readonly type: "function";
|
|
7139
|
+
readonly name: "withdrawStake";
|
|
7140
|
+
readonly inputs: readonly [{
|
|
7141
|
+
readonly name: "to";
|
|
7142
|
+
readonly type: "address";
|
|
7143
|
+
readonly internalType: "address payable";
|
|
7144
|
+
}];
|
|
7145
|
+
readonly outputs: readonly [];
|
|
7146
|
+
readonly stateMutability: "nonpayable";
|
|
7147
|
+
}, {
|
|
7148
|
+
readonly type: "event";
|
|
7149
|
+
readonly name: "OwnershipTransferStarted";
|
|
7150
|
+
readonly inputs: readonly [{
|
|
7151
|
+
readonly name: "previousOwner";
|
|
7152
|
+
readonly type: "address";
|
|
7153
|
+
readonly indexed: true;
|
|
7154
|
+
readonly internalType: "address";
|
|
7155
|
+
}, {
|
|
7156
|
+
readonly name: "newOwner";
|
|
7157
|
+
readonly type: "address";
|
|
7158
|
+
readonly indexed: true;
|
|
7159
|
+
readonly internalType: "address";
|
|
7160
|
+
}];
|
|
7161
|
+
readonly anonymous: false;
|
|
7162
|
+
}, {
|
|
7163
|
+
readonly type: "event";
|
|
7164
|
+
readonly name: "OwnershipTransferred";
|
|
7165
|
+
readonly inputs: readonly [{
|
|
7166
|
+
readonly name: "previousOwner";
|
|
7167
|
+
readonly type: "address";
|
|
7168
|
+
readonly indexed: true;
|
|
7169
|
+
readonly internalType: "address";
|
|
7170
|
+
}, {
|
|
7171
|
+
readonly name: "newOwner";
|
|
7172
|
+
readonly type: "address";
|
|
7173
|
+
readonly indexed: true;
|
|
7174
|
+
readonly internalType: "address";
|
|
7175
|
+
}];
|
|
7176
|
+
readonly anonymous: false;
|
|
7177
|
+
}, {
|
|
7178
|
+
readonly type: "error";
|
|
7179
|
+
readonly name: "AddressEmptyCode";
|
|
7180
|
+
readonly inputs: readonly [{
|
|
7181
|
+
readonly name: "target";
|
|
7182
|
+
readonly type: "address";
|
|
7183
|
+
readonly internalType: "address";
|
|
7184
|
+
}];
|
|
7185
|
+
}, {
|
|
7186
|
+
readonly type: "error";
|
|
7187
|
+
readonly name: "AddressInsufficientBalance";
|
|
7188
|
+
readonly inputs: readonly [{
|
|
7189
|
+
readonly name: "account";
|
|
7190
|
+
readonly type: "address";
|
|
7191
|
+
readonly internalType: "address";
|
|
7192
|
+
}];
|
|
7193
|
+
}, {
|
|
7194
|
+
readonly type: "error";
|
|
7195
|
+
readonly name: "FailedInnerCall";
|
|
7196
|
+
readonly inputs: readonly [];
|
|
7197
|
+
}, {
|
|
7198
|
+
readonly type: "error";
|
|
7199
|
+
readonly name: "InvalidAction";
|
|
7200
|
+
readonly inputs: readonly [];
|
|
7201
|
+
}, {
|
|
7202
|
+
readonly type: "error";
|
|
7203
|
+
readonly name: "InvalidEntryPoint";
|
|
7204
|
+
readonly inputs: readonly [{
|
|
7205
|
+
readonly name: "entryPoint";
|
|
7206
|
+
readonly type: "address";
|
|
7207
|
+
readonly internalType: "address";
|
|
7208
|
+
}];
|
|
7209
|
+
}, {
|
|
7210
|
+
readonly type: "error";
|
|
7211
|
+
readonly name: "OwnableInvalidOwner";
|
|
7212
|
+
readonly inputs: readonly [{
|
|
7213
|
+
readonly name: "owner";
|
|
7214
|
+
readonly type: "address";
|
|
7215
|
+
readonly internalType: "address";
|
|
7216
|
+
}];
|
|
7217
|
+
}, {
|
|
7218
|
+
readonly type: "error";
|
|
7219
|
+
readonly name: "OwnableUnauthorizedAccount";
|
|
7220
|
+
readonly inputs: readonly [{
|
|
7221
|
+
readonly name: "account";
|
|
7222
|
+
readonly type: "address";
|
|
7223
|
+
readonly internalType: "address";
|
|
7224
|
+
}];
|
|
7225
|
+
}, {
|
|
7226
|
+
readonly type: "error";
|
|
7227
|
+
readonly name: "SafeERC20FailedOperation";
|
|
7228
|
+
readonly inputs: readonly [{
|
|
7229
|
+
readonly name: "token";
|
|
7230
|
+
readonly type: "address";
|
|
7231
|
+
readonly internalType: "address";
|
|
7232
|
+
}];
|
|
7233
|
+
}, {
|
|
7234
|
+
readonly type: "error";
|
|
7235
|
+
readonly name: "TransferFailed";
|
|
7236
|
+
readonly inputs: readonly [];
|
|
7237
|
+
}, {
|
|
7238
|
+
readonly type: "error";
|
|
7239
|
+
readonly name: "ZeroAddressNotAllowed";
|
|
7240
|
+
readonly inputs: readonly [];
|
|
7241
|
+
}]>;
|
|
7242
|
+
"v2.2.0": StaticSmartAccountImplementation<false, "0.9", import("./lightAccountStaticImpl.js").LightAccountFactoryArgs, readonly [{
|
|
7243
|
+
readonly inputs: readonly [];
|
|
7244
|
+
readonly stateMutability: "nonpayable";
|
|
7245
|
+
readonly type: "constructor";
|
|
7246
|
+
}, {
|
|
7247
|
+
readonly inputs: readonly [{
|
|
7248
|
+
readonly internalType: "bool";
|
|
7249
|
+
readonly name: "success";
|
|
7250
|
+
readonly type: "bool";
|
|
7251
|
+
}, {
|
|
7252
|
+
readonly internalType: "bytes";
|
|
7253
|
+
readonly name: "ret";
|
|
7254
|
+
readonly type: "bytes";
|
|
7255
|
+
}];
|
|
7256
|
+
readonly name: "DelegateAndRevert";
|
|
7257
|
+
readonly type: "error";
|
|
7258
|
+
}, {
|
|
7259
|
+
readonly inputs: readonly [{
|
|
7260
|
+
readonly internalType: "address";
|
|
7261
|
+
readonly name: "account";
|
|
7262
|
+
readonly type: "address";
|
|
7263
|
+
}, {
|
|
7264
|
+
readonly internalType: "address";
|
|
7265
|
+
readonly name: "withdrawAddress";
|
|
7266
|
+
readonly type: "address";
|
|
7267
|
+
}, {
|
|
7268
|
+
readonly internalType: "uint256";
|
|
7269
|
+
readonly name: "amount";
|
|
7270
|
+
readonly type: "uint256";
|
|
7271
|
+
}, {
|
|
7272
|
+
readonly internalType: "bytes";
|
|
7273
|
+
readonly name: "revertReason";
|
|
7274
|
+
readonly type: "bytes";
|
|
7275
|
+
}];
|
|
7276
|
+
readonly name: "DepositWithdrawalFailed";
|
|
7277
|
+
readonly type: "error";
|
|
7278
|
+
}, {
|
|
7279
|
+
readonly inputs: readonly [{
|
|
7280
|
+
readonly internalType: "address";
|
|
7281
|
+
readonly name: "sender";
|
|
7282
|
+
readonly type: "address";
|
|
7283
|
+
}];
|
|
7284
|
+
readonly name: "Eip7702SenderNotDelegate";
|
|
7285
|
+
readonly type: "error";
|
|
7286
|
+
}, {
|
|
7287
|
+
readonly inputs: readonly [{
|
|
7288
|
+
readonly internalType: "address";
|
|
7289
|
+
readonly name: "sender";
|
|
7290
|
+
readonly type: "address";
|
|
7291
|
+
}];
|
|
7292
|
+
readonly name: "Eip7702SenderWithoutCode";
|
|
7293
|
+
readonly type: "error";
|
|
7294
|
+
}, {
|
|
7295
|
+
readonly inputs: readonly [{
|
|
7296
|
+
readonly internalType: "uint256";
|
|
7297
|
+
readonly name: "opIndex";
|
|
7298
|
+
readonly type: "uint256";
|
|
7299
|
+
}, {
|
|
7300
|
+
readonly internalType: "string";
|
|
7301
|
+
readonly name: "reason";
|
|
7302
|
+
readonly type: "string";
|
|
7303
|
+
}];
|
|
7304
|
+
readonly name: "FailedOp";
|
|
7305
|
+
readonly type: "error";
|
|
7306
|
+
}, {
|
|
7307
|
+
readonly inputs: readonly [{
|
|
7308
|
+
readonly internalType: "uint256";
|
|
7309
|
+
readonly name: "opIndex";
|
|
7310
|
+
readonly type: "uint256";
|
|
7311
|
+
}, {
|
|
7312
|
+
readonly internalType: "string";
|
|
7313
|
+
readonly name: "reason";
|
|
7314
|
+
readonly type: "string";
|
|
7315
|
+
}, {
|
|
7316
|
+
readonly internalType: "bytes";
|
|
7317
|
+
readonly name: "inner";
|
|
7318
|
+
readonly type: "bytes";
|
|
7319
|
+
}];
|
|
7320
|
+
readonly name: "FailedOpWithRevert";
|
|
7321
|
+
readonly type: "error";
|
|
7322
|
+
}, {
|
|
7323
|
+
readonly inputs: readonly [{
|
|
7324
|
+
readonly internalType: "address";
|
|
7325
|
+
readonly name: "beneficiary";
|
|
7326
|
+
readonly type: "address";
|
|
7327
|
+
}, {
|
|
7328
|
+
readonly internalType: "uint256";
|
|
7329
|
+
readonly name: "amount";
|
|
7330
|
+
readonly type: "uint256";
|
|
7331
|
+
}, {
|
|
7332
|
+
readonly internalType: "bytes";
|
|
7333
|
+
readonly name: "revertData";
|
|
7334
|
+
readonly type: "bytes";
|
|
7335
|
+
}];
|
|
7336
|
+
readonly name: "FailedSendToBeneficiary";
|
|
7337
|
+
readonly type: "error";
|
|
7338
|
+
}, {
|
|
7339
|
+
readonly inputs: readonly [{
|
|
7340
|
+
readonly internalType: "uint256";
|
|
7341
|
+
readonly name: "currentDeposit";
|
|
7342
|
+
readonly type: "uint256";
|
|
7343
|
+
}, {
|
|
7344
|
+
readonly internalType: "uint256";
|
|
7345
|
+
readonly name: "withdrawAmount";
|
|
7346
|
+
readonly type: "uint256";
|
|
7347
|
+
}];
|
|
7348
|
+
readonly name: "InsufficientDeposit";
|
|
7349
|
+
readonly type: "error";
|
|
7350
|
+
}, {
|
|
7351
|
+
readonly inputs: readonly [];
|
|
7352
|
+
readonly name: "InternalFunction";
|
|
7353
|
+
readonly type: "error";
|
|
7354
|
+
}, {
|
|
7355
|
+
readonly inputs: readonly [{
|
|
7356
|
+
readonly internalType: "address";
|
|
7357
|
+
readonly name: "beneficiary";
|
|
7358
|
+
readonly type: "address";
|
|
7359
|
+
}];
|
|
7360
|
+
readonly name: "InvalidBeneficiary";
|
|
7361
|
+
readonly type: "error";
|
|
7362
|
+
}, {
|
|
7363
|
+
readonly inputs: readonly [{
|
|
7364
|
+
readonly internalType: "address";
|
|
7365
|
+
readonly name: "paymaster";
|
|
7366
|
+
readonly type: "address";
|
|
7367
|
+
}];
|
|
7368
|
+
readonly name: "InvalidPaymaster";
|
|
7369
|
+
readonly type: "error";
|
|
7370
|
+
}, {
|
|
7371
|
+
readonly inputs: readonly [{
|
|
7372
|
+
readonly internalType: "uint256";
|
|
7373
|
+
readonly name: "paymasterAndDataLength";
|
|
7374
|
+
readonly type: "uint256";
|
|
7375
|
+
}];
|
|
7376
|
+
readonly name: "InvalidPaymasterData";
|
|
7377
|
+
readonly type: "error";
|
|
7378
|
+
}, {
|
|
7379
|
+
readonly inputs: readonly [{
|
|
7380
|
+
readonly internalType: "uint256";
|
|
7381
|
+
readonly name: "dataLength";
|
|
7382
|
+
readonly type: "uint256";
|
|
7383
|
+
}, {
|
|
7384
|
+
readonly internalType: "uint256";
|
|
7385
|
+
readonly name: "pmSignatureLength";
|
|
7386
|
+
readonly type: "uint256";
|
|
7387
|
+
}];
|
|
7388
|
+
readonly name: "InvalidPaymasterSignatureLength";
|
|
7389
|
+
readonly type: "error";
|
|
7390
|
+
}, {
|
|
7391
|
+
readonly inputs: readonly [];
|
|
7392
|
+
readonly name: "InvalidShortString";
|
|
7393
|
+
readonly type: "error";
|
|
7394
|
+
}, {
|
|
7395
|
+
readonly inputs: readonly [{
|
|
7396
|
+
readonly internalType: "uint256";
|
|
7397
|
+
readonly name: "msgValue";
|
|
7398
|
+
readonly type: "uint256";
|
|
7399
|
+
}, {
|
|
7400
|
+
readonly internalType: "uint256";
|
|
7401
|
+
readonly name: "currentStake";
|
|
7402
|
+
readonly type: "uint256";
|
|
7403
|
+
}];
|
|
7404
|
+
readonly name: "InvalidStake";
|
|
7405
|
+
readonly type: "error";
|
|
7406
|
+
}, {
|
|
7407
|
+
readonly inputs: readonly [{
|
|
7408
|
+
readonly internalType: "uint256";
|
|
7409
|
+
readonly name: "newUnstakeDelaySec";
|
|
7410
|
+
readonly type: "uint256";
|
|
7411
|
+
}, {
|
|
7412
|
+
readonly internalType: "uint256";
|
|
7413
|
+
readonly name: "currentUnstakeDelaySec";
|
|
7414
|
+
readonly type: "uint256";
|
|
7415
|
+
}];
|
|
7416
|
+
readonly name: "InvalidUnstakeDelay";
|
|
7417
|
+
readonly type: "error";
|
|
7418
|
+
}, {
|
|
7419
|
+
readonly inputs: readonly [{
|
|
7420
|
+
readonly internalType: "uint256";
|
|
7421
|
+
readonly name: "currentStake";
|
|
7422
|
+
readonly type: "uint256";
|
|
7423
|
+
}, {
|
|
7424
|
+
readonly internalType: "uint256";
|
|
7425
|
+
readonly name: "unstakeDelaySec";
|
|
7426
|
+
readonly type: "uint256";
|
|
7427
|
+
}, {
|
|
7428
|
+
readonly internalType: "bool";
|
|
7429
|
+
readonly name: "staked";
|
|
7430
|
+
readonly type: "bool";
|
|
7431
|
+
}];
|
|
7432
|
+
readonly name: "NotStaked";
|
|
7433
|
+
readonly type: "error";
|
|
7434
|
+
}, {
|
|
7435
|
+
readonly inputs: readonly [{
|
|
7436
|
+
readonly internalType: "bytes";
|
|
7437
|
+
readonly name: "returnData";
|
|
7438
|
+
readonly type: "bytes";
|
|
7439
|
+
}];
|
|
7440
|
+
readonly name: "PostOpReverted";
|
|
7441
|
+
readonly type: "error";
|
|
7442
|
+
}, {
|
|
7443
|
+
readonly inputs: readonly [];
|
|
7444
|
+
readonly name: "Reentrancy";
|
|
7445
|
+
readonly type: "error";
|
|
7446
|
+
}, {
|
|
7447
|
+
readonly inputs: readonly [{
|
|
7448
|
+
readonly internalType: "address";
|
|
7449
|
+
readonly name: "sender";
|
|
7450
|
+
readonly type: "address";
|
|
7451
|
+
}];
|
|
7452
|
+
readonly name: "SenderAddressResult";
|
|
7453
|
+
readonly type: "error";
|
|
7454
|
+
}, {
|
|
7455
|
+
readonly inputs: readonly [{
|
|
7456
|
+
readonly internalType: "address";
|
|
7457
|
+
readonly name: "aggregator";
|
|
7458
|
+
readonly type: "address";
|
|
7459
|
+
}];
|
|
7460
|
+
readonly name: "SignatureValidationFailed";
|
|
7461
|
+
readonly type: "error";
|
|
7462
|
+
}, {
|
|
7463
|
+
readonly inputs: readonly [{
|
|
7464
|
+
readonly internalType: "uint256";
|
|
7465
|
+
readonly name: "withdrawTime";
|
|
7466
|
+
readonly type: "uint256";
|
|
7467
|
+
}, {
|
|
7468
|
+
readonly internalType: "uint256";
|
|
7469
|
+
readonly name: "blockTimestamp";
|
|
7470
|
+
readonly type: "uint256";
|
|
7471
|
+
}];
|
|
7472
|
+
readonly name: "StakeNotUnlocked";
|
|
7473
|
+
readonly type: "error";
|
|
7474
|
+
}, {
|
|
7475
|
+
readonly inputs: readonly [{
|
|
7476
|
+
readonly internalType: "address";
|
|
7477
|
+
readonly name: "account";
|
|
7478
|
+
readonly type: "address";
|
|
7479
|
+
}, {
|
|
7480
|
+
readonly internalType: "address";
|
|
7481
|
+
readonly name: "withdrawAddress";
|
|
7482
|
+
readonly type: "address";
|
|
7483
|
+
}, {
|
|
7484
|
+
readonly internalType: "uint256";
|
|
7485
|
+
readonly name: "amount";
|
|
7486
|
+
readonly type: "uint256";
|
|
7487
|
+
}, {
|
|
7488
|
+
readonly internalType: "bytes";
|
|
7489
|
+
readonly name: "revertReason";
|
|
7490
|
+
readonly type: "bytes";
|
|
7491
|
+
}];
|
|
7492
|
+
readonly name: "StakeWithdrawalFailed";
|
|
7493
|
+
readonly type: "error";
|
|
7494
|
+
}, {
|
|
7495
|
+
readonly inputs: readonly [{
|
|
7496
|
+
readonly internalType: "string";
|
|
7497
|
+
readonly name: "str";
|
|
7498
|
+
readonly type: "string";
|
|
7499
|
+
}];
|
|
7500
|
+
readonly name: "StringTooLong";
|
|
7501
|
+
readonly type: "error";
|
|
7502
|
+
}, {
|
|
7503
|
+
readonly inputs: readonly [{
|
|
7504
|
+
readonly internalType: "uint256";
|
|
7505
|
+
readonly name: "withdrawTime";
|
|
7506
|
+
readonly type: "uint256";
|
|
7507
|
+
}, {
|
|
7508
|
+
readonly internalType: "uint256";
|
|
7509
|
+
readonly name: "blockTimestamp";
|
|
7510
|
+
readonly type: "uint256";
|
|
7511
|
+
}];
|
|
7512
|
+
readonly name: "WithdrawalNotDue";
|
|
7513
|
+
readonly type: "error";
|
|
7514
|
+
}, {
|
|
7515
|
+
readonly anonymous: false;
|
|
7516
|
+
readonly inputs: readonly [{
|
|
7517
|
+
readonly indexed: true;
|
|
7518
|
+
readonly internalType: "bytes32";
|
|
7519
|
+
readonly name: "userOpHash";
|
|
7520
|
+
readonly type: "bytes32";
|
|
7521
|
+
}, {
|
|
7522
|
+
readonly indexed: true;
|
|
7523
|
+
readonly internalType: "address";
|
|
7524
|
+
readonly name: "sender";
|
|
7525
|
+
readonly type: "address";
|
|
7526
|
+
}, {
|
|
7527
|
+
readonly indexed: false;
|
|
7528
|
+
readonly internalType: "address";
|
|
7529
|
+
readonly name: "factory";
|
|
7530
|
+
readonly type: "address";
|
|
7531
|
+
}, {
|
|
7532
|
+
readonly indexed: false;
|
|
7533
|
+
readonly internalType: "address";
|
|
7534
|
+
readonly name: "paymaster";
|
|
7535
|
+
readonly type: "address";
|
|
7536
|
+
}];
|
|
7537
|
+
readonly name: "AccountDeployed";
|
|
7538
|
+
readonly type: "event";
|
|
7539
|
+
}, {
|
|
7540
|
+
readonly anonymous: false;
|
|
7541
|
+
readonly inputs: readonly [];
|
|
7542
|
+
readonly name: "BeforeExecution";
|
|
7543
|
+
readonly type: "event";
|
|
7544
|
+
}, {
|
|
7545
|
+
readonly anonymous: false;
|
|
7546
|
+
readonly inputs: readonly [{
|
|
7547
|
+
readonly indexed: true;
|
|
7548
|
+
readonly internalType: "address";
|
|
7549
|
+
readonly name: "account";
|
|
7550
|
+
readonly type: "address";
|
|
7551
|
+
}, {
|
|
7552
|
+
readonly indexed: false;
|
|
7553
|
+
readonly internalType: "uint256";
|
|
7554
|
+
readonly name: "totalDeposit";
|
|
7555
|
+
readonly type: "uint256";
|
|
7556
|
+
}];
|
|
7557
|
+
readonly name: "Deposited";
|
|
7558
|
+
readonly type: "event";
|
|
7559
|
+
}, {
|
|
7560
|
+
readonly anonymous: false;
|
|
7561
|
+
readonly inputs: readonly [];
|
|
7562
|
+
readonly name: "EIP712DomainChanged";
|
|
7563
|
+
readonly type: "event";
|
|
7564
|
+
}, {
|
|
7565
|
+
readonly anonymous: false;
|
|
7566
|
+
readonly inputs: readonly [{
|
|
7567
|
+
readonly indexed: true;
|
|
7568
|
+
readonly internalType: "bytes32";
|
|
7569
|
+
readonly name: "userOpHash";
|
|
7570
|
+
readonly type: "bytes32";
|
|
7571
|
+
}, {
|
|
7572
|
+
readonly indexed: true;
|
|
7573
|
+
readonly internalType: "address";
|
|
7574
|
+
readonly name: "sender";
|
|
7575
|
+
readonly type: "address";
|
|
7576
|
+
}, {
|
|
7577
|
+
readonly indexed: true;
|
|
7578
|
+
readonly internalType: "address";
|
|
7579
|
+
readonly name: "delegate";
|
|
7580
|
+
readonly type: "address";
|
|
7581
|
+
}];
|
|
7582
|
+
readonly name: "EIP7702AccountInitialized";
|
|
7583
|
+
readonly type: "event";
|
|
7584
|
+
}, {
|
|
7585
|
+
readonly anonymous: false;
|
|
7586
|
+
readonly inputs: readonly [{
|
|
7587
|
+
readonly indexed: true;
|
|
7588
|
+
readonly internalType: "bytes32";
|
|
7589
|
+
readonly name: "userOpHash";
|
|
7590
|
+
readonly type: "bytes32";
|
|
7591
|
+
}, {
|
|
7592
|
+
readonly indexed: true;
|
|
7593
|
+
readonly internalType: "address";
|
|
7594
|
+
readonly name: "sender";
|
|
7595
|
+
readonly type: "address";
|
|
7596
|
+
}, {
|
|
7597
|
+
readonly indexed: false;
|
|
7598
|
+
readonly internalType: "address";
|
|
7599
|
+
readonly name: "unusedFactory";
|
|
7600
|
+
readonly type: "address";
|
|
7601
|
+
}];
|
|
7602
|
+
readonly name: "IgnoredInitCode";
|
|
7603
|
+
readonly type: "event";
|
|
7604
|
+
}, {
|
|
7605
|
+
readonly anonymous: false;
|
|
7606
|
+
readonly inputs: readonly [{
|
|
7607
|
+
readonly indexed: true;
|
|
7608
|
+
readonly internalType: "bytes32";
|
|
7609
|
+
readonly name: "userOpHash";
|
|
7610
|
+
readonly type: "bytes32";
|
|
7611
|
+
}, {
|
|
7612
|
+
readonly indexed: true;
|
|
7613
|
+
readonly internalType: "address";
|
|
7614
|
+
readonly name: "sender";
|
|
7615
|
+
readonly type: "address";
|
|
7616
|
+
}, {
|
|
7617
|
+
readonly indexed: false;
|
|
7618
|
+
readonly internalType: "uint256";
|
|
7619
|
+
readonly name: "nonce";
|
|
7620
|
+
readonly type: "uint256";
|
|
7621
|
+
}, {
|
|
7622
|
+
readonly indexed: false;
|
|
7623
|
+
readonly internalType: "bytes";
|
|
7624
|
+
readonly name: "revertReason";
|
|
7625
|
+
readonly type: "bytes";
|
|
7626
|
+
}];
|
|
7627
|
+
readonly name: "PostOpRevertReason";
|
|
7628
|
+
readonly type: "event";
|
|
7629
|
+
}, {
|
|
7630
|
+
readonly anonymous: false;
|
|
7631
|
+
readonly inputs: readonly [{
|
|
7632
|
+
readonly indexed: true;
|
|
7633
|
+
readonly internalType: "address";
|
|
7634
|
+
readonly name: "aggregator";
|
|
7635
|
+
readonly type: "address";
|
|
7636
|
+
}];
|
|
7637
|
+
readonly name: "SignatureAggregatorChanged";
|
|
7638
|
+
readonly type: "event";
|
|
7639
|
+
}, {
|
|
7640
|
+
readonly anonymous: false;
|
|
7641
|
+
readonly inputs: readonly [{
|
|
7642
|
+
readonly indexed: true;
|
|
7643
|
+
readonly internalType: "address";
|
|
7644
|
+
readonly name: "account";
|
|
7645
|
+
readonly type: "address";
|
|
7646
|
+
}, {
|
|
7647
|
+
readonly indexed: false;
|
|
7648
|
+
readonly internalType: "uint256";
|
|
7649
|
+
readonly name: "totalStaked";
|
|
7650
|
+
readonly type: "uint256";
|
|
7651
|
+
}, {
|
|
7652
|
+
readonly indexed: false;
|
|
7653
|
+
readonly internalType: "uint256";
|
|
7654
|
+
readonly name: "unstakeDelaySec";
|
|
7655
|
+
readonly type: "uint256";
|
|
7656
|
+
}];
|
|
7657
|
+
readonly name: "StakeLocked";
|
|
7658
|
+
readonly type: "event";
|
|
7659
|
+
}, {
|
|
7660
|
+
readonly anonymous: false;
|
|
7661
|
+
readonly inputs: readonly [{
|
|
7662
|
+
readonly indexed: true;
|
|
7663
|
+
readonly internalType: "address";
|
|
7664
|
+
readonly name: "account";
|
|
7665
|
+
readonly type: "address";
|
|
7666
|
+
}, {
|
|
7667
|
+
readonly indexed: false;
|
|
7668
|
+
readonly internalType: "uint256";
|
|
7669
|
+
readonly name: "withdrawTime";
|
|
7670
|
+
readonly type: "uint256";
|
|
7671
|
+
}];
|
|
7672
|
+
readonly name: "StakeUnlocked";
|
|
7673
|
+
readonly type: "event";
|
|
7674
|
+
}, {
|
|
7675
|
+
readonly anonymous: false;
|
|
7676
|
+
readonly inputs: readonly [{
|
|
7677
|
+
readonly indexed: true;
|
|
7678
|
+
readonly internalType: "address";
|
|
7679
|
+
readonly name: "account";
|
|
7680
|
+
readonly type: "address";
|
|
7681
|
+
}, {
|
|
7682
|
+
readonly indexed: false;
|
|
7683
|
+
readonly internalType: "address";
|
|
7684
|
+
readonly name: "withdrawAddress";
|
|
7685
|
+
readonly type: "address";
|
|
7686
|
+
}, {
|
|
7687
|
+
readonly indexed: false;
|
|
7688
|
+
readonly internalType: "uint256";
|
|
7689
|
+
readonly name: "amount";
|
|
7690
|
+
readonly type: "uint256";
|
|
7691
|
+
}];
|
|
7692
|
+
readonly name: "StakeWithdrawn";
|
|
7693
|
+
readonly type: "event";
|
|
7694
|
+
}, {
|
|
7695
|
+
readonly anonymous: false;
|
|
7696
|
+
readonly inputs: readonly [{
|
|
7697
|
+
readonly indexed: true;
|
|
7698
|
+
readonly internalType: "bytes32";
|
|
7699
|
+
readonly name: "userOpHash";
|
|
7700
|
+
readonly type: "bytes32";
|
|
7701
|
+
}, {
|
|
7702
|
+
readonly indexed: true;
|
|
7703
|
+
readonly internalType: "address";
|
|
7704
|
+
readonly name: "sender";
|
|
7705
|
+
readonly type: "address";
|
|
7706
|
+
}, {
|
|
7707
|
+
readonly indexed: true;
|
|
7708
|
+
readonly internalType: "address";
|
|
7709
|
+
readonly name: "paymaster";
|
|
7710
|
+
readonly type: "address";
|
|
7711
|
+
}, {
|
|
7712
|
+
readonly indexed: false;
|
|
7713
|
+
readonly internalType: "uint256";
|
|
7714
|
+
readonly name: "nonce";
|
|
7715
|
+
readonly type: "uint256";
|
|
7716
|
+
}, {
|
|
7717
|
+
readonly indexed: false;
|
|
7718
|
+
readonly internalType: "bool";
|
|
7719
|
+
readonly name: "success";
|
|
7720
|
+
readonly type: "bool";
|
|
7721
|
+
}, {
|
|
7722
|
+
readonly indexed: false;
|
|
7723
|
+
readonly internalType: "uint256";
|
|
7724
|
+
readonly name: "actualGasCost";
|
|
7725
|
+
readonly type: "uint256";
|
|
7726
|
+
}, {
|
|
7727
|
+
readonly indexed: false;
|
|
7728
|
+
readonly internalType: "uint256";
|
|
7729
|
+
readonly name: "actualGasUsed";
|
|
7730
|
+
readonly type: "uint256";
|
|
7731
|
+
}];
|
|
7732
|
+
readonly name: "UserOperationEvent";
|
|
7733
|
+
readonly type: "event";
|
|
7734
|
+
}, {
|
|
7735
|
+
readonly anonymous: false;
|
|
7736
|
+
readonly inputs: readonly [{
|
|
7737
|
+
readonly indexed: true;
|
|
7738
|
+
readonly internalType: "bytes32";
|
|
7739
|
+
readonly name: "userOpHash";
|
|
7740
|
+
readonly type: "bytes32";
|
|
7741
|
+
}, {
|
|
7742
|
+
readonly indexed: true;
|
|
7743
|
+
readonly internalType: "address";
|
|
7744
|
+
readonly name: "sender";
|
|
7745
|
+
readonly type: "address";
|
|
7746
|
+
}, {
|
|
7747
|
+
readonly indexed: false;
|
|
7748
|
+
readonly internalType: "uint256";
|
|
7749
|
+
readonly name: "nonce";
|
|
7750
|
+
readonly type: "uint256";
|
|
7751
|
+
}];
|
|
7752
|
+
readonly name: "UserOperationPrefundTooLow";
|
|
7753
|
+
readonly type: "event";
|
|
7754
|
+
}, {
|
|
7755
|
+
readonly anonymous: false;
|
|
7756
|
+
readonly inputs: readonly [{
|
|
7757
|
+
readonly indexed: true;
|
|
7758
|
+
readonly internalType: "bytes32";
|
|
7759
|
+
readonly name: "userOpHash";
|
|
7760
|
+
readonly type: "bytes32";
|
|
7761
|
+
}, {
|
|
7762
|
+
readonly indexed: true;
|
|
7763
|
+
readonly internalType: "address";
|
|
7764
|
+
readonly name: "sender";
|
|
7765
|
+
readonly type: "address";
|
|
7766
|
+
}, {
|
|
7767
|
+
readonly indexed: false;
|
|
7768
|
+
readonly internalType: "uint256";
|
|
7769
|
+
readonly name: "nonce";
|
|
7770
|
+
readonly type: "uint256";
|
|
7771
|
+
}, {
|
|
7772
|
+
readonly indexed: false;
|
|
7773
|
+
readonly internalType: "bytes";
|
|
7774
|
+
readonly name: "revertReason";
|
|
7775
|
+
readonly type: "bytes";
|
|
7776
|
+
}];
|
|
7777
|
+
readonly name: "UserOperationRevertReason";
|
|
7778
|
+
readonly type: "event";
|
|
7779
|
+
}, {
|
|
7780
|
+
readonly anonymous: false;
|
|
7781
|
+
readonly inputs: readonly [{
|
|
7782
|
+
readonly indexed: true;
|
|
7783
|
+
readonly internalType: "address";
|
|
7784
|
+
readonly name: "account";
|
|
7785
|
+
readonly type: "address";
|
|
7786
|
+
}, {
|
|
7787
|
+
readonly indexed: false;
|
|
7788
|
+
readonly internalType: "address";
|
|
7789
|
+
readonly name: "withdrawAddress";
|
|
7790
|
+
readonly type: "address";
|
|
7791
|
+
}, {
|
|
7792
|
+
readonly indexed: false;
|
|
7793
|
+
readonly internalType: "uint256";
|
|
7794
|
+
readonly name: "amount";
|
|
7795
|
+
readonly type: "uint256";
|
|
7796
|
+
}];
|
|
7797
|
+
readonly name: "Withdrawn";
|
|
7798
|
+
readonly type: "event";
|
|
7799
|
+
}, {
|
|
7800
|
+
readonly inputs: readonly [{
|
|
7801
|
+
readonly internalType: "uint32";
|
|
7802
|
+
readonly name: "unstakeDelaySec";
|
|
7803
|
+
readonly type: "uint32";
|
|
7804
|
+
}];
|
|
7805
|
+
readonly name: "addStake";
|
|
7806
|
+
readonly outputs: readonly [];
|
|
7807
|
+
readonly stateMutability: "payable";
|
|
7808
|
+
readonly type: "function";
|
|
7809
|
+
}, {
|
|
7810
|
+
readonly inputs: readonly [{
|
|
7811
|
+
readonly internalType: "address";
|
|
7812
|
+
readonly name: "account";
|
|
7813
|
+
readonly type: "address";
|
|
7814
|
+
}];
|
|
7815
|
+
readonly name: "balanceOf";
|
|
7816
|
+
readonly outputs: readonly [{
|
|
7817
|
+
readonly internalType: "uint256";
|
|
7818
|
+
readonly name: "";
|
|
7819
|
+
readonly type: "uint256";
|
|
7820
|
+
}];
|
|
7821
|
+
readonly stateMutability: "view";
|
|
7822
|
+
readonly type: "function";
|
|
7823
|
+
}, {
|
|
7824
|
+
readonly inputs: readonly [{
|
|
7825
|
+
readonly internalType: "address";
|
|
7826
|
+
readonly name: "target";
|
|
7827
|
+
readonly type: "address";
|
|
7828
|
+
}, {
|
|
7829
|
+
readonly internalType: "bytes";
|
|
7830
|
+
readonly name: "data";
|
|
7831
|
+
readonly type: "bytes";
|
|
7832
|
+
}];
|
|
7833
|
+
readonly name: "delegateAndRevert";
|
|
7834
|
+
readonly outputs: readonly [];
|
|
7835
|
+
readonly stateMutability: "nonpayable";
|
|
7836
|
+
readonly type: "function";
|
|
7837
|
+
}, {
|
|
7838
|
+
readonly inputs: readonly [{
|
|
7839
|
+
readonly internalType: "address";
|
|
7840
|
+
readonly name: "account";
|
|
7841
|
+
readonly type: "address";
|
|
7842
|
+
}];
|
|
7843
|
+
readonly name: "depositTo";
|
|
7844
|
+
readonly outputs: readonly [];
|
|
7845
|
+
readonly stateMutability: "payable";
|
|
7846
|
+
readonly type: "function";
|
|
7847
|
+
}, {
|
|
7848
|
+
readonly inputs: readonly [];
|
|
7849
|
+
readonly name: "eip712Domain";
|
|
7850
|
+
readonly outputs: readonly [{
|
|
7851
|
+
readonly internalType: "bytes1";
|
|
7852
|
+
readonly name: "fields";
|
|
7853
|
+
readonly type: "bytes1";
|
|
7854
|
+
}, {
|
|
7855
|
+
readonly internalType: "string";
|
|
7856
|
+
readonly name: "name";
|
|
7857
|
+
readonly type: "string";
|
|
7858
|
+
}, {
|
|
7859
|
+
readonly internalType: "string";
|
|
7860
|
+
readonly name: "version";
|
|
7861
|
+
readonly type: "string";
|
|
7862
|
+
}, {
|
|
7863
|
+
readonly internalType: "uint256";
|
|
7864
|
+
readonly name: "chainId";
|
|
7865
|
+
readonly type: "uint256";
|
|
7866
|
+
}, {
|
|
7867
|
+
readonly internalType: "address";
|
|
7868
|
+
readonly name: "verifyingContract";
|
|
7869
|
+
readonly type: "address";
|
|
7870
|
+
}, {
|
|
7871
|
+
readonly internalType: "bytes32";
|
|
7872
|
+
readonly name: "salt";
|
|
7873
|
+
readonly type: "bytes32";
|
|
7874
|
+
}, {
|
|
7875
|
+
readonly internalType: "uint256[]";
|
|
7876
|
+
readonly name: "extensions";
|
|
7877
|
+
readonly type: "uint256[]";
|
|
7878
|
+
}];
|
|
7879
|
+
readonly stateMutability: "view";
|
|
7880
|
+
readonly type: "function";
|
|
7881
|
+
}, {
|
|
7882
|
+
readonly inputs: readonly [];
|
|
7883
|
+
readonly name: "getCurrentUserOpHash";
|
|
7884
|
+
readonly outputs: readonly [{
|
|
7885
|
+
readonly internalType: "bytes32";
|
|
7886
|
+
readonly name: "";
|
|
7887
|
+
readonly type: "bytes32";
|
|
7888
|
+
}];
|
|
7889
|
+
readonly stateMutability: "view";
|
|
7890
|
+
readonly type: "function";
|
|
7891
|
+
}, {
|
|
7892
|
+
readonly inputs: readonly [{
|
|
7893
|
+
readonly internalType: "address";
|
|
7894
|
+
readonly name: "account";
|
|
7895
|
+
readonly type: "address";
|
|
7896
|
+
}];
|
|
7897
|
+
readonly name: "getDepositInfo";
|
|
7898
|
+
readonly outputs: readonly [{
|
|
7899
|
+
readonly components: readonly [{
|
|
7900
|
+
readonly internalType: "uint256";
|
|
7901
|
+
readonly name: "deposit";
|
|
7902
|
+
readonly type: "uint256";
|
|
7903
|
+
}, {
|
|
7904
|
+
readonly internalType: "bool";
|
|
7905
|
+
readonly name: "staked";
|
|
7906
|
+
readonly type: "bool";
|
|
7907
|
+
}, {
|
|
7908
|
+
readonly internalType: "uint112";
|
|
7909
|
+
readonly name: "stake";
|
|
7910
|
+
readonly type: "uint112";
|
|
7911
|
+
}, {
|
|
7912
|
+
readonly internalType: "uint32";
|
|
7913
|
+
readonly name: "unstakeDelaySec";
|
|
7914
|
+
readonly type: "uint32";
|
|
7915
|
+
}, {
|
|
7916
|
+
readonly internalType: "uint48";
|
|
7917
|
+
readonly name: "withdrawTime";
|
|
7918
|
+
readonly type: "uint48";
|
|
7919
|
+
}];
|
|
7920
|
+
readonly internalType: "struct IStakeManager.DepositInfo";
|
|
7921
|
+
readonly name: "info";
|
|
7922
|
+
readonly type: "tuple";
|
|
7923
|
+
}];
|
|
7924
|
+
readonly stateMutability: "view";
|
|
7925
|
+
readonly type: "function";
|
|
7926
|
+
}, {
|
|
7927
|
+
readonly inputs: readonly [];
|
|
7928
|
+
readonly name: "getDomainSeparatorV4";
|
|
7929
|
+
readonly outputs: readonly [{
|
|
7930
|
+
readonly internalType: "bytes32";
|
|
7931
|
+
readonly name: "";
|
|
7932
|
+
readonly type: "bytes32";
|
|
7933
|
+
}];
|
|
7934
|
+
readonly stateMutability: "view";
|
|
7935
|
+
readonly type: "function";
|
|
7936
|
+
}, {
|
|
7937
|
+
readonly inputs: readonly [{
|
|
7938
|
+
readonly internalType: "address";
|
|
7939
|
+
readonly name: "sender";
|
|
7940
|
+
readonly type: "address";
|
|
7941
|
+
}, {
|
|
7942
|
+
readonly internalType: "uint192";
|
|
7943
|
+
readonly name: "key";
|
|
7944
|
+
readonly type: "uint192";
|
|
7945
|
+
}];
|
|
7946
|
+
readonly name: "getNonce";
|
|
7947
|
+
readonly outputs: readonly [{
|
|
7948
|
+
readonly internalType: "uint256";
|
|
7949
|
+
readonly name: "nonce";
|
|
7950
|
+
readonly type: "uint256";
|
|
7951
|
+
}];
|
|
7952
|
+
readonly stateMutability: "view";
|
|
7953
|
+
readonly type: "function";
|
|
7954
|
+
}, {
|
|
7955
|
+
readonly inputs: readonly [];
|
|
7956
|
+
readonly name: "getPackedUserOpTypeHash";
|
|
7957
|
+
readonly outputs: readonly [{
|
|
7958
|
+
readonly internalType: "bytes32";
|
|
7959
|
+
readonly name: "";
|
|
7960
|
+
readonly type: "bytes32";
|
|
7961
|
+
}];
|
|
7962
|
+
readonly stateMutability: "pure";
|
|
7963
|
+
readonly type: "function";
|
|
7964
|
+
}, {
|
|
7965
|
+
readonly inputs: readonly [{
|
|
7966
|
+
readonly internalType: "bytes";
|
|
7967
|
+
readonly name: "initCode";
|
|
7968
|
+
readonly type: "bytes";
|
|
7969
|
+
}];
|
|
7970
|
+
readonly name: "getSenderAddress";
|
|
7971
|
+
readonly outputs: readonly [];
|
|
7972
|
+
readonly stateMutability: "nonpayable";
|
|
7973
|
+
readonly type: "function";
|
|
7974
|
+
}, {
|
|
7975
|
+
readonly inputs: readonly [{
|
|
7976
|
+
readonly components: readonly [{
|
|
7977
|
+
readonly internalType: "address";
|
|
7978
|
+
readonly name: "sender";
|
|
7979
|
+
readonly type: "address";
|
|
7980
|
+
}, {
|
|
7981
|
+
readonly internalType: "uint256";
|
|
7982
|
+
readonly name: "nonce";
|
|
7983
|
+
readonly type: "uint256";
|
|
7984
|
+
}, {
|
|
7985
|
+
readonly internalType: "bytes";
|
|
7986
|
+
readonly name: "initCode";
|
|
7987
|
+
readonly type: "bytes";
|
|
7988
|
+
}, {
|
|
7989
|
+
readonly internalType: "bytes";
|
|
7990
|
+
readonly name: "callData";
|
|
7991
|
+
readonly type: "bytes";
|
|
7992
|
+
}, {
|
|
7993
|
+
readonly internalType: "bytes32";
|
|
7994
|
+
readonly name: "accountGasLimits";
|
|
7995
|
+
readonly type: "bytes32";
|
|
7996
|
+
}, {
|
|
7997
|
+
readonly internalType: "uint256";
|
|
7998
|
+
readonly name: "preVerificationGas";
|
|
7999
|
+
readonly type: "uint256";
|
|
8000
|
+
}, {
|
|
8001
|
+
readonly internalType: "bytes32";
|
|
8002
|
+
readonly name: "gasFees";
|
|
8003
|
+
readonly type: "bytes32";
|
|
8004
|
+
}, {
|
|
8005
|
+
readonly internalType: "bytes";
|
|
8006
|
+
readonly name: "paymasterAndData";
|
|
8007
|
+
readonly type: "bytes";
|
|
8008
|
+
}, {
|
|
8009
|
+
readonly internalType: "bytes";
|
|
8010
|
+
readonly name: "signature";
|
|
8011
|
+
readonly type: "bytes";
|
|
8012
|
+
}];
|
|
8013
|
+
readonly internalType: "struct PackedUserOperation";
|
|
8014
|
+
readonly name: "userOp";
|
|
8015
|
+
readonly type: "tuple";
|
|
8016
|
+
}];
|
|
8017
|
+
readonly name: "getUserOpHash";
|
|
8018
|
+
readonly outputs: readonly [{
|
|
8019
|
+
readonly internalType: "bytes32";
|
|
8020
|
+
readonly name: "";
|
|
8021
|
+
readonly type: "bytes32";
|
|
8022
|
+
}];
|
|
8023
|
+
readonly stateMutability: "view";
|
|
8024
|
+
readonly type: "function";
|
|
8025
|
+
}, {
|
|
8026
|
+
readonly inputs: readonly [{
|
|
8027
|
+
readonly components: readonly [{
|
|
8028
|
+
readonly components: readonly [{
|
|
8029
|
+
readonly internalType: "address";
|
|
8030
|
+
readonly name: "sender";
|
|
8031
|
+
readonly type: "address";
|
|
8032
|
+
}, {
|
|
8033
|
+
readonly internalType: "uint256";
|
|
8034
|
+
readonly name: "nonce";
|
|
8035
|
+
readonly type: "uint256";
|
|
8036
|
+
}, {
|
|
8037
|
+
readonly internalType: "bytes";
|
|
8038
|
+
readonly name: "initCode";
|
|
8039
|
+
readonly type: "bytes";
|
|
8040
|
+
}, {
|
|
8041
|
+
readonly internalType: "bytes";
|
|
8042
|
+
readonly name: "callData";
|
|
8043
|
+
readonly type: "bytes";
|
|
8044
|
+
}, {
|
|
8045
|
+
readonly internalType: "bytes32";
|
|
8046
|
+
readonly name: "accountGasLimits";
|
|
8047
|
+
readonly type: "bytes32";
|
|
8048
|
+
}, {
|
|
8049
|
+
readonly internalType: "uint256";
|
|
8050
|
+
readonly name: "preVerificationGas";
|
|
8051
|
+
readonly type: "uint256";
|
|
8052
|
+
}, {
|
|
8053
|
+
readonly internalType: "bytes32";
|
|
8054
|
+
readonly name: "gasFees";
|
|
8055
|
+
readonly type: "bytes32";
|
|
8056
|
+
}, {
|
|
8057
|
+
readonly internalType: "bytes";
|
|
8058
|
+
readonly name: "paymasterAndData";
|
|
8059
|
+
readonly type: "bytes";
|
|
8060
|
+
}, {
|
|
8061
|
+
readonly internalType: "bytes";
|
|
8062
|
+
readonly name: "signature";
|
|
8063
|
+
readonly type: "bytes";
|
|
8064
|
+
}];
|
|
8065
|
+
readonly internalType: "struct PackedUserOperation[]";
|
|
8066
|
+
readonly name: "userOps";
|
|
8067
|
+
readonly type: "tuple[]";
|
|
8068
|
+
}, {
|
|
8069
|
+
readonly internalType: "contract IAggregator";
|
|
8070
|
+
readonly name: "aggregator";
|
|
8071
|
+
readonly type: "address";
|
|
8072
|
+
}, {
|
|
8073
|
+
readonly internalType: "bytes";
|
|
8074
|
+
readonly name: "signature";
|
|
8075
|
+
readonly type: "bytes";
|
|
8076
|
+
}];
|
|
8077
|
+
readonly internalType: "struct IEntryPoint.UserOpsPerAggregator[]";
|
|
8078
|
+
readonly name: "opsPerAggregator";
|
|
8079
|
+
readonly type: "tuple[]";
|
|
8080
|
+
}, {
|
|
8081
|
+
readonly internalType: "address payable";
|
|
8082
|
+
readonly name: "beneficiary";
|
|
8083
|
+
readonly type: "address";
|
|
8084
|
+
}];
|
|
8085
|
+
readonly name: "handleAggregatedOps";
|
|
8086
|
+
readonly outputs: readonly [];
|
|
8087
|
+
readonly stateMutability: "nonpayable";
|
|
8088
|
+
readonly type: "function";
|
|
8089
|
+
}, {
|
|
8090
|
+
readonly inputs: readonly [{
|
|
8091
|
+
readonly components: readonly [{
|
|
8092
|
+
readonly internalType: "address";
|
|
8093
|
+
readonly name: "sender";
|
|
8094
|
+
readonly type: "address";
|
|
8095
|
+
}, {
|
|
8096
|
+
readonly internalType: "uint256";
|
|
8097
|
+
readonly name: "nonce";
|
|
8098
|
+
readonly type: "uint256";
|
|
8099
|
+
}, {
|
|
8100
|
+
readonly internalType: "bytes";
|
|
8101
|
+
readonly name: "initCode";
|
|
8102
|
+
readonly type: "bytes";
|
|
8103
|
+
}, {
|
|
8104
|
+
readonly internalType: "bytes";
|
|
8105
|
+
readonly name: "callData";
|
|
8106
|
+
readonly type: "bytes";
|
|
8107
|
+
}, {
|
|
8108
|
+
readonly internalType: "bytes32";
|
|
8109
|
+
readonly name: "accountGasLimits";
|
|
8110
|
+
readonly type: "bytes32";
|
|
8111
|
+
}, {
|
|
8112
|
+
readonly internalType: "uint256";
|
|
8113
|
+
readonly name: "preVerificationGas";
|
|
8114
|
+
readonly type: "uint256";
|
|
8115
|
+
}, {
|
|
8116
|
+
readonly internalType: "bytes32";
|
|
8117
|
+
readonly name: "gasFees";
|
|
8118
|
+
readonly type: "bytes32";
|
|
8119
|
+
}, {
|
|
8120
|
+
readonly internalType: "bytes";
|
|
8121
|
+
readonly name: "paymasterAndData";
|
|
8122
|
+
readonly type: "bytes";
|
|
8123
|
+
}, {
|
|
8124
|
+
readonly internalType: "bytes";
|
|
8125
|
+
readonly name: "signature";
|
|
8126
|
+
readonly type: "bytes";
|
|
8127
|
+
}];
|
|
8128
|
+
readonly internalType: "struct PackedUserOperation[]";
|
|
8129
|
+
readonly name: "ops";
|
|
8130
|
+
readonly type: "tuple[]";
|
|
8131
|
+
}, {
|
|
8132
|
+
readonly internalType: "address payable";
|
|
8133
|
+
readonly name: "beneficiary";
|
|
8134
|
+
readonly type: "address";
|
|
8135
|
+
}];
|
|
8136
|
+
readonly name: "handleOps";
|
|
8137
|
+
readonly outputs: readonly [];
|
|
8138
|
+
readonly stateMutability: "nonpayable";
|
|
8139
|
+
readonly type: "function";
|
|
8140
|
+
}, {
|
|
8141
|
+
readonly inputs: readonly [{
|
|
8142
|
+
readonly internalType: "uint192";
|
|
8143
|
+
readonly name: "key";
|
|
8144
|
+
readonly type: "uint192";
|
|
8145
|
+
}];
|
|
8146
|
+
readonly name: "incrementNonce";
|
|
8147
|
+
readonly outputs: readonly [];
|
|
8148
|
+
readonly stateMutability: "nonpayable";
|
|
8149
|
+
readonly type: "function";
|
|
8150
|
+
}, {
|
|
8151
|
+
readonly inputs: readonly [{
|
|
8152
|
+
readonly internalType: "bytes";
|
|
8153
|
+
readonly name: "callData";
|
|
8154
|
+
readonly type: "bytes";
|
|
8155
|
+
}, {
|
|
8156
|
+
readonly components: readonly [{
|
|
8157
|
+
readonly components: readonly [{
|
|
8158
|
+
readonly internalType: "address";
|
|
8159
|
+
readonly name: "sender";
|
|
8160
|
+
readonly type: "address";
|
|
8161
|
+
}, {
|
|
8162
|
+
readonly internalType: "uint256";
|
|
8163
|
+
readonly name: "nonce";
|
|
8164
|
+
readonly type: "uint256";
|
|
8165
|
+
}, {
|
|
8166
|
+
readonly internalType: "uint256";
|
|
8167
|
+
readonly name: "verificationGasLimit";
|
|
8168
|
+
readonly type: "uint256";
|
|
8169
|
+
}, {
|
|
8170
|
+
readonly internalType: "uint256";
|
|
8171
|
+
readonly name: "callGasLimit";
|
|
8172
|
+
readonly type: "uint256";
|
|
8173
|
+
}, {
|
|
8174
|
+
readonly internalType: "uint256";
|
|
8175
|
+
readonly name: "paymasterVerificationGasLimit";
|
|
8176
|
+
readonly type: "uint256";
|
|
8177
|
+
}, {
|
|
8178
|
+
readonly internalType: "uint256";
|
|
8179
|
+
readonly name: "paymasterPostOpGasLimit";
|
|
8180
|
+
readonly type: "uint256";
|
|
8181
|
+
}, {
|
|
8182
|
+
readonly internalType: "uint256";
|
|
8183
|
+
readonly name: "preVerificationGas";
|
|
8184
|
+
readonly type: "uint256";
|
|
8185
|
+
}, {
|
|
8186
|
+
readonly internalType: "address";
|
|
8187
|
+
readonly name: "paymaster";
|
|
8188
|
+
readonly type: "address";
|
|
8189
|
+
}, {
|
|
8190
|
+
readonly internalType: "uint256";
|
|
8191
|
+
readonly name: "maxFeePerGas";
|
|
8192
|
+
readonly type: "uint256";
|
|
8193
|
+
}, {
|
|
8194
|
+
readonly internalType: "uint256";
|
|
8195
|
+
readonly name: "maxPriorityFeePerGas";
|
|
8196
|
+
readonly type: "uint256";
|
|
8197
|
+
}];
|
|
8198
|
+
readonly internalType: "struct EntryPoint.MemoryUserOp";
|
|
8199
|
+
readonly name: "mUserOp";
|
|
8200
|
+
readonly type: "tuple";
|
|
8201
|
+
}, {
|
|
8202
|
+
readonly internalType: "bytes32";
|
|
8203
|
+
readonly name: "userOpHash";
|
|
8204
|
+
readonly type: "bytes32";
|
|
8205
|
+
}, {
|
|
8206
|
+
readonly internalType: "uint256";
|
|
8207
|
+
readonly name: "prefund";
|
|
8208
|
+
readonly type: "uint256";
|
|
8209
|
+
}, {
|
|
8210
|
+
readonly internalType: "uint256";
|
|
8211
|
+
readonly name: "contextOffset";
|
|
8212
|
+
readonly type: "uint256";
|
|
8213
|
+
}, {
|
|
8214
|
+
readonly internalType: "uint256";
|
|
8215
|
+
readonly name: "preOpGas";
|
|
8216
|
+
readonly type: "uint256";
|
|
8217
|
+
}];
|
|
8218
|
+
readonly internalType: "struct EntryPoint.UserOpInfo";
|
|
8219
|
+
readonly name: "opInfo";
|
|
8220
|
+
readonly type: "tuple";
|
|
8221
|
+
}, {
|
|
8222
|
+
readonly internalType: "bytes";
|
|
8223
|
+
readonly name: "context";
|
|
8224
|
+
readonly type: "bytes";
|
|
8225
|
+
}];
|
|
8226
|
+
readonly name: "innerHandleOp";
|
|
8227
|
+
readonly outputs: readonly [{
|
|
8228
|
+
readonly internalType: "uint256";
|
|
8229
|
+
readonly name: "actualGasCost";
|
|
8230
|
+
readonly type: "uint256";
|
|
8231
|
+
}];
|
|
8232
|
+
readonly stateMutability: "nonpayable";
|
|
8233
|
+
readonly type: "function";
|
|
8234
|
+
}, {
|
|
8235
|
+
readonly inputs: readonly [{
|
|
8236
|
+
readonly internalType: "address";
|
|
8237
|
+
readonly name: "";
|
|
8238
|
+
readonly type: "address";
|
|
8239
|
+
}, {
|
|
8240
|
+
readonly internalType: "uint192";
|
|
8241
|
+
readonly name: "";
|
|
8242
|
+
readonly type: "uint192";
|
|
8243
|
+
}];
|
|
8244
|
+
readonly name: "nonceSequenceNumber";
|
|
8245
|
+
readonly outputs: readonly [{
|
|
8246
|
+
readonly internalType: "uint256";
|
|
8247
|
+
readonly name: "";
|
|
8248
|
+
readonly type: "uint256";
|
|
8249
|
+
}];
|
|
8250
|
+
readonly stateMutability: "view";
|
|
8251
|
+
readonly type: "function";
|
|
8252
|
+
}, {
|
|
8253
|
+
readonly inputs: readonly [];
|
|
8254
|
+
readonly name: "senderCreator";
|
|
8255
|
+
readonly outputs: readonly [{
|
|
8256
|
+
readonly internalType: "contract ISenderCreator";
|
|
8257
|
+
readonly name: "";
|
|
8258
|
+
readonly type: "address";
|
|
8259
|
+
}];
|
|
8260
|
+
readonly stateMutability: "view";
|
|
8261
|
+
readonly type: "function";
|
|
8262
|
+
}, {
|
|
8263
|
+
readonly inputs: readonly [{
|
|
8264
|
+
readonly internalType: "bytes4";
|
|
8265
|
+
readonly name: "interfaceId";
|
|
8266
|
+
readonly type: "bytes4";
|
|
8267
|
+
}];
|
|
8268
|
+
readonly name: "supportsInterface";
|
|
8269
|
+
readonly outputs: readonly [{
|
|
8270
|
+
readonly internalType: "bool";
|
|
8271
|
+
readonly name: "";
|
|
8272
|
+
readonly type: "bool";
|
|
8273
|
+
}];
|
|
8274
|
+
readonly stateMutability: "view";
|
|
8275
|
+
readonly type: "function";
|
|
8276
|
+
}, {
|
|
8277
|
+
readonly inputs: readonly [];
|
|
8278
|
+
readonly name: "unlockStake";
|
|
8279
|
+
readonly outputs: readonly [];
|
|
8280
|
+
readonly stateMutability: "nonpayable";
|
|
8281
|
+
readonly type: "function";
|
|
8282
|
+
}, {
|
|
8283
|
+
readonly inputs: readonly [{
|
|
8284
|
+
readonly internalType: "address payable";
|
|
8285
|
+
readonly name: "withdrawAddress";
|
|
8286
|
+
readonly type: "address";
|
|
8287
|
+
}];
|
|
8288
|
+
readonly name: "withdrawStake";
|
|
8289
|
+
readonly outputs: readonly [];
|
|
8290
|
+
readonly stateMutability: "nonpayable";
|
|
8291
|
+
readonly type: "function";
|
|
8292
|
+
}, {
|
|
8293
|
+
readonly inputs: readonly [{
|
|
8294
|
+
readonly internalType: "address payable";
|
|
8295
|
+
readonly name: "withdrawAddress";
|
|
8296
|
+
readonly type: "address";
|
|
8297
|
+
}, {
|
|
8298
|
+
readonly internalType: "uint256";
|
|
8299
|
+
readonly name: "withdrawAmount";
|
|
8300
|
+
readonly type: "uint256";
|
|
8301
|
+
}];
|
|
8302
|
+
readonly name: "withdrawTo";
|
|
8303
|
+
readonly outputs: readonly [];
|
|
8304
|
+
readonly stateMutability: "nonpayable";
|
|
8305
|
+
readonly type: "function";
|
|
8306
|
+
}, {
|
|
8307
|
+
readonly stateMutability: "payable";
|
|
8308
|
+
readonly type: "receive";
|
|
8309
|
+
}], readonly [{
|
|
8310
|
+
readonly type: "constructor";
|
|
8311
|
+
readonly inputs: readonly [{
|
|
8312
|
+
readonly name: "entryPoint_";
|
|
8313
|
+
readonly type: "address";
|
|
8314
|
+
readonly internalType: "contract IEntryPoint";
|
|
8315
|
+
}];
|
|
8316
|
+
readonly stateMutability: "nonpayable";
|
|
8317
|
+
}, {
|
|
8318
|
+
readonly type: "receive";
|
|
8319
|
+
readonly stateMutability: "payable";
|
|
8320
|
+
}, {
|
|
8321
|
+
readonly type: "function";
|
|
8322
|
+
readonly name: "addDeposit";
|
|
8323
|
+
readonly inputs: readonly [];
|
|
8324
|
+
readonly outputs: readonly [];
|
|
8325
|
+
readonly stateMutability: "payable";
|
|
8326
|
+
}, {
|
|
8327
|
+
readonly type: "function";
|
|
8328
|
+
readonly name: "eip712Domain";
|
|
8329
|
+
readonly inputs: readonly [];
|
|
8330
|
+
readonly outputs: readonly [{
|
|
8331
|
+
readonly name: "fields";
|
|
8332
|
+
readonly type: "bytes1";
|
|
8333
|
+
readonly internalType: "bytes1";
|
|
8334
|
+
}, {
|
|
8335
|
+
readonly name: "name";
|
|
8336
|
+
readonly type: "string";
|
|
8337
|
+
readonly internalType: "string";
|
|
8338
|
+
}, {
|
|
8339
|
+
readonly name: "version";
|
|
8340
|
+
readonly type: "string";
|
|
8341
|
+
readonly internalType: "string";
|
|
8342
|
+
}, {
|
|
8343
|
+
readonly name: "chainId";
|
|
8344
|
+
readonly type: "uint256";
|
|
8345
|
+
readonly internalType: "uint256";
|
|
8346
|
+
}, {
|
|
8347
|
+
readonly name: "verifyingContract";
|
|
8348
|
+
readonly type: "address";
|
|
8349
|
+
readonly internalType: "address";
|
|
8350
|
+
}, {
|
|
8351
|
+
readonly name: "salt";
|
|
8352
|
+
readonly type: "bytes32";
|
|
8353
|
+
readonly internalType: "bytes32";
|
|
8354
|
+
}, {
|
|
8355
|
+
readonly name: "extensions";
|
|
8356
|
+
readonly type: "uint256[]";
|
|
8357
|
+
readonly internalType: "uint256[]";
|
|
8358
|
+
}];
|
|
8359
|
+
readonly stateMutability: "view";
|
|
8360
|
+
}, {
|
|
8361
|
+
readonly type: "function";
|
|
8362
|
+
readonly name: "entryPoint";
|
|
8363
|
+
readonly inputs: readonly [];
|
|
8364
|
+
readonly outputs: readonly [{
|
|
8365
|
+
readonly name: "";
|
|
8366
|
+
readonly type: "address";
|
|
8367
|
+
readonly internalType: "contract IEntryPoint";
|
|
8368
|
+
}];
|
|
8369
|
+
readonly stateMutability: "view";
|
|
8370
|
+
}, {
|
|
8371
|
+
readonly type: "function";
|
|
8372
|
+
readonly name: "execute";
|
|
8373
|
+
readonly inputs: readonly [{
|
|
8374
|
+
readonly name: "dest";
|
|
8375
|
+
readonly type: "address";
|
|
8376
|
+
readonly internalType: "address";
|
|
8377
|
+
}, {
|
|
8378
|
+
readonly name: "value";
|
|
8379
|
+
readonly type: "uint256";
|
|
8380
|
+
readonly internalType: "uint256";
|
|
8381
|
+
}, {
|
|
8382
|
+
readonly name: "func";
|
|
8383
|
+
readonly type: "bytes";
|
|
8384
|
+
readonly internalType: "bytes";
|
|
8385
|
+
}];
|
|
8386
|
+
readonly outputs: readonly [];
|
|
8387
|
+
readonly stateMutability: "nonpayable";
|
|
8388
|
+
}, {
|
|
8389
|
+
readonly type: "function";
|
|
8390
|
+
readonly name: "executeBatch";
|
|
8391
|
+
readonly inputs: readonly [{
|
|
8392
|
+
readonly name: "dest";
|
|
8393
|
+
readonly type: "address[]";
|
|
8394
|
+
readonly internalType: "address[]";
|
|
8395
|
+
}, {
|
|
8396
|
+
readonly name: "func";
|
|
8397
|
+
readonly type: "bytes[]";
|
|
8398
|
+
readonly internalType: "bytes[]";
|
|
8399
|
+
}];
|
|
8400
|
+
readonly outputs: readonly [];
|
|
8401
|
+
readonly stateMutability: "nonpayable";
|
|
8402
|
+
}, {
|
|
8403
|
+
readonly type: "function";
|
|
8404
|
+
readonly name: "executeBatch";
|
|
8405
|
+
readonly inputs: readonly [{
|
|
8406
|
+
readonly name: "dest";
|
|
8407
|
+
readonly type: "address[]";
|
|
8408
|
+
readonly internalType: "address[]";
|
|
8409
|
+
}, {
|
|
8410
|
+
readonly name: "value";
|
|
8411
|
+
readonly type: "uint256[]";
|
|
8412
|
+
readonly internalType: "uint256[]";
|
|
8413
|
+
}, {
|
|
8414
|
+
readonly name: "func";
|
|
8415
|
+
readonly type: "bytes[]";
|
|
8416
|
+
readonly internalType: "bytes[]";
|
|
8417
|
+
}];
|
|
8418
|
+
readonly outputs: readonly [];
|
|
8419
|
+
readonly stateMutability: "nonpayable";
|
|
8420
|
+
}, {
|
|
8421
|
+
readonly type: "function";
|
|
8422
|
+
readonly name: "getDeposit";
|
|
8423
|
+
readonly inputs: readonly [];
|
|
8424
|
+
readonly outputs: readonly [{
|
|
8425
|
+
readonly name: "";
|
|
8426
|
+
readonly type: "uint256";
|
|
8427
|
+
readonly internalType: "uint256";
|
|
8428
|
+
}];
|
|
8429
|
+
readonly stateMutability: "view";
|
|
8430
|
+
}, {
|
|
8431
|
+
readonly type: "function";
|
|
8432
|
+
readonly name: "getNonce";
|
|
8433
|
+
readonly inputs: readonly [];
|
|
8434
|
+
readonly outputs: readonly [{
|
|
8435
|
+
readonly name: "";
|
|
8436
|
+
readonly type: "uint256";
|
|
8437
|
+
readonly internalType: "uint256";
|
|
8438
|
+
}];
|
|
8439
|
+
readonly stateMutability: "view";
|
|
8440
|
+
}, {
|
|
8441
|
+
readonly type: "function";
|
|
8442
|
+
readonly name: "initialize";
|
|
8443
|
+
readonly inputs: readonly [{
|
|
8444
|
+
readonly name: "owner_";
|
|
8445
|
+
readonly type: "address";
|
|
8446
|
+
readonly internalType: "address";
|
|
8447
|
+
}];
|
|
8448
|
+
readonly outputs: readonly [];
|
|
8449
|
+
readonly stateMutability: "nonpayable";
|
|
8450
|
+
}, {
|
|
8451
|
+
readonly type: "function";
|
|
8452
|
+
readonly name: "isValidSignature";
|
|
8453
|
+
readonly inputs: readonly [{
|
|
8454
|
+
readonly name: "hash";
|
|
8455
|
+
readonly type: "bytes32";
|
|
8456
|
+
readonly internalType: "bytes32";
|
|
8457
|
+
}, {
|
|
8458
|
+
readonly name: "signature";
|
|
8459
|
+
readonly type: "bytes";
|
|
8460
|
+
readonly internalType: "bytes";
|
|
8461
|
+
}];
|
|
8462
|
+
readonly outputs: readonly [{
|
|
8463
|
+
readonly name: "result";
|
|
8464
|
+
readonly type: "bytes4";
|
|
8465
|
+
readonly internalType: "bytes4";
|
|
8466
|
+
}];
|
|
8467
|
+
readonly stateMutability: "view";
|
|
8468
|
+
}, {
|
|
8469
|
+
readonly type: "function";
|
|
8470
|
+
readonly name: "onERC1155BatchReceived";
|
|
8471
|
+
readonly inputs: readonly [{
|
|
8472
|
+
readonly name: "";
|
|
8473
|
+
readonly type: "address";
|
|
8474
|
+
readonly internalType: "address";
|
|
8475
|
+
}, {
|
|
8476
|
+
readonly name: "";
|
|
8477
|
+
readonly type: "address";
|
|
8478
|
+
readonly internalType: "address";
|
|
8479
|
+
}, {
|
|
8480
|
+
readonly name: "";
|
|
8481
|
+
readonly type: "uint256[]";
|
|
8482
|
+
readonly internalType: "uint256[]";
|
|
8483
|
+
}, {
|
|
8484
|
+
readonly name: "";
|
|
8485
|
+
readonly type: "uint256[]";
|
|
8486
|
+
readonly internalType: "uint256[]";
|
|
8487
|
+
}, {
|
|
8488
|
+
readonly name: "";
|
|
8489
|
+
readonly type: "bytes";
|
|
8490
|
+
readonly internalType: "bytes";
|
|
8491
|
+
}];
|
|
8492
|
+
readonly outputs: readonly [{
|
|
8493
|
+
readonly name: "";
|
|
8494
|
+
readonly type: "bytes4";
|
|
8495
|
+
readonly internalType: "bytes4";
|
|
8496
|
+
}];
|
|
8497
|
+
readonly stateMutability: "pure";
|
|
8498
|
+
}, {
|
|
8499
|
+
readonly type: "function";
|
|
8500
|
+
readonly name: "onERC1155Received";
|
|
8501
|
+
readonly inputs: readonly [{
|
|
8502
|
+
readonly name: "";
|
|
8503
|
+
readonly type: "address";
|
|
8504
|
+
readonly internalType: "address";
|
|
8505
|
+
}, {
|
|
8506
|
+
readonly name: "";
|
|
8507
|
+
readonly type: "address";
|
|
8508
|
+
readonly internalType: "address";
|
|
8509
|
+
}, {
|
|
8510
|
+
readonly name: "";
|
|
8511
|
+
readonly type: "uint256";
|
|
8512
|
+
readonly internalType: "uint256";
|
|
8513
|
+
}, {
|
|
8514
|
+
readonly name: "";
|
|
8515
|
+
readonly type: "uint256";
|
|
8516
|
+
readonly internalType: "uint256";
|
|
8517
|
+
}, {
|
|
8518
|
+
readonly name: "";
|
|
8519
|
+
readonly type: "bytes";
|
|
8520
|
+
readonly internalType: "bytes";
|
|
8521
|
+
}];
|
|
8522
|
+
readonly outputs: readonly [{
|
|
8523
|
+
readonly name: "";
|
|
8524
|
+
readonly type: "bytes4";
|
|
8525
|
+
readonly internalType: "bytes4";
|
|
8526
|
+
}];
|
|
8527
|
+
readonly stateMutability: "pure";
|
|
8528
|
+
}, {
|
|
8529
|
+
readonly type: "function";
|
|
8530
|
+
readonly name: "onERC721Received";
|
|
8531
|
+
readonly inputs: readonly [{
|
|
8532
|
+
readonly name: "";
|
|
8533
|
+
readonly type: "address";
|
|
8534
|
+
readonly internalType: "address";
|
|
8535
|
+
}, {
|
|
8536
|
+
readonly name: "";
|
|
8537
|
+
readonly type: "address";
|
|
8538
|
+
readonly internalType: "address";
|
|
8539
|
+
}, {
|
|
8540
|
+
readonly name: "";
|
|
8541
|
+
readonly type: "uint256";
|
|
8542
|
+
readonly internalType: "uint256";
|
|
8543
|
+
}, {
|
|
8544
|
+
readonly name: "";
|
|
8545
|
+
readonly type: "bytes";
|
|
8546
|
+
readonly internalType: "bytes";
|
|
8547
|
+
}];
|
|
8548
|
+
readonly outputs: readonly [{
|
|
8549
|
+
readonly name: "";
|
|
8550
|
+
readonly type: "bytes4";
|
|
8551
|
+
readonly internalType: "bytes4";
|
|
8552
|
+
}];
|
|
8553
|
+
readonly stateMutability: "pure";
|
|
8554
|
+
}, {
|
|
8555
|
+
readonly type: "function";
|
|
8556
|
+
readonly name: "owner";
|
|
8557
|
+
readonly inputs: readonly [];
|
|
8558
|
+
readonly outputs: readonly [{
|
|
8559
|
+
readonly name: "";
|
|
8560
|
+
readonly type: "address";
|
|
8561
|
+
readonly internalType: "address";
|
|
8562
|
+
}];
|
|
8563
|
+
readonly stateMutability: "view";
|
|
8564
|
+
}, {
|
|
8565
|
+
readonly type: "function";
|
|
8566
|
+
readonly name: "proxiableUUID";
|
|
8567
|
+
readonly inputs: readonly [];
|
|
8568
|
+
readonly outputs: readonly [{
|
|
8569
|
+
readonly name: "";
|
|
8570
|
+
readonly type: "bytes32";
|
|
8571
|
+
readonly internalType: "bytes32";
|
|
8572
|
+
}];
|
|
8573
|
+
readonly stateMutability: "view";
|
|
8574
|
+
}, {
|
|
8575
|
+
readonly type: "function";
|
|
8576
|
+
readonly name: "supportsInterface";
|
|
8577
|
+
readonly inputs: readonly [{
|
|
8578
|
+
readonly name: "interfaceId";
|
|
8579
|
+
readonly type: "bytes4";
|
|
8580
|
+
readonly internalType: "bytes4";
|
|
8581
|
+
}];
|
|
8582
|
+
readonly outputs: readonly [{
|
|
8583
|
+
readonly name: "";
|
|
8584
|
+
readonly type: "bool";
|
|
8585
|
+
readonly internalType: "bool";
|
|
8586
|
+
}];
|
|
8587
|
+
readonly stateMutability: "view";
|
|
8588
|
+
}, {
|
|
8589
|
+
readonly type: "function";
|
|
8590
|
+
readonly name: "transferOwnership";
|
|
8591
|
+
readonly inputs: readonly [{
|
|
8592
|
+
readonly name: "newOwner";
|
|
8593
|
+
readonly type: "address";
|
|
8594
|
+
readonly internalType: "address";
|
|
8595
|
+
}];
|
|
8596
|
+
readonly outputs: readonly [];
|
|
8597
|
+
readonly stateMutability: "nonpayable";
|
|
8598
|
+
}, {
|
|
8599
|
+
readonly type: "function";
|
|
8600
|
+
readonly name: "upgradeToAndCall";
|
|
8601
|
+
readonly inputs: readonly [{
|
|
8602
|
+
readonly name: "newImplementation";
|
|
8603
|
+
readonly type: "address";
|
|
8604
|
+
readonly internalType: "address";
|
|
8605
|
+
}, {
|
|
8606
|
+
readonly name: "data";
|
|
8607
|
+
readonly type: "bytes";
|
|
8608
|
+
readonly internalType: "bytes";
|
|
8609
|
+
}];
|
|
8610
|
+
readonly outputs: readonly [];
|
|
8611
|
+
readonly stateMutability: "payable";
|
|
8612
|
+
}, {
|
|
8613
|
+
readonly type: "function";
|
|
8614
|
+
readonly name: "validateUserOp";
|
|
8615
|
+
readonly inputs: readonly [{
|
|
8616
|
+
readonly name: "userOp";
|
|
8617
|
+
readonly type: "tuple";
|
|
8618
|
+
readonly internalType: "struct PackedUserOperation";
|
|
8619
|
+
readonly components: readonly [{
|
|
8620
|
+
readonly name: "sender";
|
|
8621
|
+
readonly type: "address";
|
|
8622
|
+
readonly internalType: "address";
|
|
8623
|
+
}, {
|
|
8624
|
+
readonly name: "nonce";
|
|
8625
|
+
readonly type: "uint256";
|
|
8626
|
+
readonly internalType: "uint256";
|
|
8627
|
+
}, {
|
|
8628
|
+
readonly name: "initCode";
|
|
8629
|
+
readonly type: "bytes";
|
|
8630
|
+
readonly internalType: "bytes";
|
|
8631
|
+
}, {
|
|
8632
|
+
readonly name: "callData";
|
|
8633
|
+
readonly type: "bytes";
|
|
8634
|
+
readonly internalType: "bytes";
|
|
8635
|
+
}, {
|
|
8636
|
+
readonly name: "accountGasLimits";
|
|
8637
|
+
readonly type: "bytes32";
|
|
8638
|
+
readonly internalType: "bytes32";
|
|
8639
|
+
}, {
|
|
8640
|
+
readonly name: "preVerificationGas";
|
|
8641
|
+
readonly type: "uint256";
|
|
8642
|
+
readonly internalType: "uint256";
|
|
8643
|
+
}, {
|
|
8644
|
+
readonly name: "gasFees";
|
|
8645
|
+
readonly type: "bytes32";
|
|
8646
|
+
readonly internalType: "bytes32";
|
|
8647
|
+
}, {
|
|
8648
|
+
readonly name: "paymasterAndData";
|
|
8649
|
+
readonly type: "bytes";
|
|
8650
|
+
readonly internalType: "bytes";
|
|
8651
|
+
}, {
|
|
8652
|
+
readonly name: "signature";
|
|
8653
|
+
readonly type: "bytes";
|
|
8654
|
+
readonly internalType: "bytes";
|
|
8655
|
+
}];
|
|
8656
|
+
}, {
|
|
8657
|
+
readonly name: "userOpHash";
|
|
8658
|
+
readonly type: "bytes32";
|
|
8659
|
+
readonly internalType: "bytes32";
|
|
8660
|
+
}, {
|
|
8661
|
+
readonly name: "missingAccountFunds";
|
|
8662
|
+
readonly type: "uint256";
|
|
8663
|
+
readonly internalType: "uint256";
|
|
8664
|
+
}];
|
|
8665
|
+
readonly outputs: readonly [{
|
|
8666
|
+
readonly name: "validationData";
|
|
8667
|
+
readonly type: "uint256";
|
|
8668
|
+
readonly internalType: "uint256";
|
|
8669
|
+
}];
|
|
8670
|
+
readonly stateMutability: "nonpayable";
|
|
8671
|
+
}, {
|
|
8672
|
+
readonly type: "function";
|
|
8673
|
+
readonly name: "withdrawDepositTo";
|
|
8674
|
+
readonly inputs: readonly [{
|
|
8675
|
+
readonly name: "withdrawAddress";
|
|
8676
|
+
readonly type: "address";
|
|
8677
|
+
readonly internalType: "address payable";
|
|
8678
|
+
}, {
|
|
8679
|
+
readonly name: "amount";
|
|
8680
|
+
readonly type: "uint256";
|
|
8681
|
+
readonly internalType: "uint256";
|
|
8682
|
+
}];
|
|
8683
|
+
readonly outputs: readonly [];
|
|
8684
|
+
readonly stateMutability: "nonpayable";
|
|
8685
|
+
}, {
|
|
8686
|
+
readonly type: "event";
|
|
8687
|
+
readonly name: "Initialized";
|
|
8688
|
+
readonly inputs: readonly [{
|
|
8689
|
+
readonly name: "version";
|
|
8690
|
+
readonly type: "uint64";
|
|
8691
|
+
readonly indexed: false;
|
|
8692
|
+
readonly internalType: "uint64";
|
|
8693
|
+
}];
|
|
8694
|
+
readonly anonymous: false;
|
|
8695
|
+
}, {
|
|
8696
|
+
readonly type: "event";
|
|
8697
|
+
readonly name: "LightAccountInitialized";
|
|
8698
|
+
readonly inputs: readonly [{
|
|
8699
|
+
readonly name: "entryPoint";
|
|
8700
|
+
readonly type: "address";
|
|
8701
|
+
readonly indexed: true;
|
|
8702
|
+
readonly internalType: "contract IEntryPoint";
|
|
8703
|
+
}, {
|
|
8704
|
+
readonly name: "owner";
|
|
8705
|
+
readonly type: "address";
|
|
8706
|
+
readonly indexed: true;
|
|
8707
|
+
readonly internalType: "address";
|
|
8708
|
+
}];
|
|
8709
|
+
readonly anonymous: false;
|
|
8710
|
+
}, {
|
|
8711
|
+
readonly type: "event";
|
|
8712
|
+
readonly name: "OwnershipTransferred";
|
|
8713
|
+
readonly inputs: readonly [{
|
|
8714
|
+
readonly name: "previousOwner";
|
|
8715
|
+
readonly type: "address";
|
|
8716
|
+
readonly indexed: true;
|
|
8717
|
+
readonly internalType: "address";
|
|
8718
|
+
}, {
|
|
8719
|
+
readonly name: "newOwner";
|
|
8720
|
+
readonly type: "address";
|
|
8721
|
+
readonly indexed: true;
|
|
8722
|
+
readonly internalType: "address";
|
|
8723
|
+
}];
|
|
8724
|
+
readonly anonymous: false;
|
|
8725
|
+
}, {
|
|
8726
|
+
readonly type: "event";
|
|
8727
|
+
readonly name: "Upgraded";
|
|
8728
|
+
readonly inputs: readonly [{
|
|
8729
|
+
readonly name: "implementation";
|
|
8730
|
+
readonly type: "address";
|
|
8731
|
+
readonly indexed: true;
|
|
8732
|
+
readonly internalType: "address";
|
|
8733
|
+
}];
|
|
8734
|
+
readonly anonymous: false;
|
|
8735
|
+
}, {
|
|
8736
|
+
readonly type: "error";
|
|
8737
|
+
readonly name: "ArrayLengthMismatch";
|
|
8738
|
+
readonly inputs: readonly [];
|
|
8739
|
+
}, {
|
|
8740
|
+
readonly type: "error";
|
|
8741
|
+
readonly name: "ECDSAInvalidSignature";
|
|
8742
|
+
readonly inputs: readonly [];
|
|
8743
|
+
}, {
|
|
8744
|
+
readonly type: "error";
|
|
8745
|
+
readonly name: "ECDSAInvalidSignatureLength";
|
|
8746
|
+
readonly inputs: readonly [{
|
|
8747
|
+
readonly name: "length";
|
|
8748
|
+
readonly type: "uint256";
|
|
8749
|
+
readonly internalType: "uint256";
|
|
8750
|
+
}];
|
|
8751
|
+
}, {
|
|
8752
|
+
readonly type: "error";
|
|
8753
|
+
readonly name: "ECDSAInvalidSignatureS";
|
|
8754
|
+
readonly inputs: readonly [{
|
|
8755
|
+
readonly name: "s";
|
|
8756
|
+
readonly type: "bytes32";
|
|
8757
|
+
readonly internalType: "bytes32";
|
|
8758
|
+
}];
|
|
8759
|
+
}, {
|
|
8760
|
+
readonly type: "error";
|
|
8761
|
+
readonly name: "InvalidInitialization";
|
|
8762
|
+
readonly inputs: readonly [];
|
|
8763
|
+
}, {
|
|
8764
|
+
readonly type: "error";
|
|
8765
|
+
readonly name: "InvalidOwner";
|
|
8766
|
+
readonly inputs: readonly [{
|
|
8767
|
+
readonly name: "owner";
|
|
8768
|
+
readonly type: "address";
|
|
8769
|
+
readonly internalType: "address";
|
|
8770
|
+
}];
|
|
8771
|
+
}, {
|
|
8772
|
+
readonly type: "error";
|
|
8773
|
+
readonly name: "InvalidSignatureType";
|
|
8774
|
+
readonly inputs: readonly [];
|
|
8775
|
+
}, {
|
|
8776
|
+
readonly type: "error";
|
|
8777
|
+
readonly name: "NotAuthorized";
|
|
8778
|
+
readonly inputs: readonly [{
|
|
8779
|
+
readonly name: "caller";
|
|
8780
|
+
readonly type: "address";
|
|
8781
|
+
readonly internalType: "address";
|
|
8782
|
+
}];
|
|
8783
|
+
}, {
|
|
8784
|
+
readonly type: "error";
|
|
8785
|
+
readonly name: "NotInitializing";
|
|
8786
|
+
readonly inputs: readonly [];
|
|
8787
|
+
}, {
|
|
8788
|
+
readonly type: "error";
|
|
8789
|
+
readonly name: "UnauthorizedCallContext";
|
|
8790
|
+
readonly inputs: readonly [];
|
|
8791
|
+
}, {
|
|
8792
|
+
readonly type: "error";
|
|
8793
|
+
readonly name: "UpgradeFailed";
|
|
8794
|
+
readonly inputs: readonly [];
|
|
8795
|
+
}, {
|
|
8796
|
+
readonly type: "error";
|
|
8797
|
+
readonly name: "ZeroAddressNotAllowed";
|
|
8798
|
+
readonly inputs: readonly [];
|
|
8799
|
+
}], readonly [{
|
|
8800
|
+
readonly type: "constructor";
|
|
8801
|
+
readonly inputs: readonly [{
|
|
8802
|
+
readonly name: "owner";
|
|
8803
|
+
readonly type: "address";
|
|
8804
|
+
readonly internalType: "address";
|
|
8805
|
+
}, {
|
|
8806
|
+
readonly name: "entryPoint";
|
|
8807
|
+
readonly type: "address";
|
|
8808
|
+
readonly internalType: "contract IEntryPoint";
|
|
8809
|
+
}];
|
|
8810
|
+
readonly stateMutability: "nonpayable";
|
|
8811
|
+
}, {
|
|
8812
|
+
readonly type: "receive";
|
|
8813
|
+
readonly stateMutability: "payable";
|
|
8814
|
+
}, {
|
|
8815
|
+
readonly type: "function";
|
|
8816
|
+
readonly name: "ACCOUNT_IMPLEMENTATION";
|
|
8817
|
+
readonly inputs: readonly [];
|
|
8818
|
+
readonly outputs: readonly [{
|
|
8819
|
+
readonly name: "";
|
|
8820
|
+
readonly type: "address";
|
|
8821
|
+
readonly internalType: "contract LightAccount";
|
|
8822
|
+
}];
|
|
8823
|
+
readonly stateMutability: "view";
|
|
8824
|
+
}, {
|
|
8825
|
+
readonly type: "function";
|
|
8826
|
+
readonly name: "ENTRY_POINT";
|
|
8827
|
+
readonly inputs: readonly [];
|
|
8828
|
+
readonly outputs: readonly [{
|
|
8829
|
+
readonly name: "";
|
|
8830
|
+
readonly type: "address";
|
|
8831
|
+
readonly internalType: "contract IEntryPoint";
|
|
8832
|
+
}];
|
|
8833
|
+
readonly stateMutability: "view";
|
|
8834
|
+
}, {
|
|
8835
|
+
readonly type: "function";
|
|
8836
|
+
readonly name: "acceptOwnership";
|
|
8837
|
+
readonly inputs: readonly [];
|
|
8838
|
+
readonly outputs: readonly [];
|
|
8839
|
+
readonly stateMutability: "nonpayable";
|
|
8840
|
+
}, {
|
|
8841
|
+
readonly type: "function";
|
|
8842
|
+
readonly name: "addStake";
|
|
8843
|
+
readonly inputs: readonly [{
|
|
8844
|
+
readonly name: "unstakeDelay";
|
|
8845
|
+
readonly type: "uint32";
|
|
8846
|
+
readonly internalType: "uint32";
|
|
8847
|
+
}, {
|
|
8848
|
+
readonly name: "amount";
|
|
8849
|
+
readonly type: "uint256";
|
|
8850
|
+
readonly internalType: "uint256";
|
|
8851
|
+
}];
|
|
8852
|
+
readonly outputs: readonly [];
|
|
8853
|
+
readonly stateMutability: "payable";
|
|
8854
|
+
}, {
|
|
8855
|
+
readonly type: "function";
|
|
8856
|
+
readonly name: "createAccount";
|
|
8857
|
+
readonly inputs: readonly [{
|
|
8858
|
+
readonly name: "owner";
|
|
8859
|
+
readonly type: "address";
|
|
8860
|
+
readonly internalType: "address";
|
|
8861
|
+
}, {
|
|
8862
|
+
readonly name: "salt";
|
|
8863
|
+
readonly type: "uint256";
|
|
8864
|
+
readonly internalType: "uint256";
|
|
8865
|
+
}];
|
|
8866
|
+
readonly outputs: readonly [{
|
|
8867
|
+
readonly name: "account";
|
|
8868
|
+
readonly type: "address";
|
|
8869
|
+
readonly internalType: "contract LightAccount";
|
|
8870
|
+
}];
|
|
8871
|
+
readonly stateMutability: "nonpayable";
|
|
8872
|
+
}, {
|
|
8873
|
+
readonly type: "function";
|
|
8874
|
+
readonly name: "getAddress";
|
|
8875
|
+
readonly inputs: readonly [{
|
|
8876
|
+
readonly name: "owner";
|
|
8877
|
+
readonly type: "address";
|
|
8878
|
+
readonly internalType: "address";
|
|
8879
|
+
}, {
|
|
8880
|
+
readonly name: "salt";
|
|
8881
|
+
readonly type: "uint256";
|
|
8882
|
+
readonly internalType: "uint256";
|
|
8883
|
+
}];
|
|
8884
|
+
readonly outputs: readonly [{
|
|
8885
|
+
readonly name: "";
|
|
8886
|
+
readonly type: "address";
|
|
8887
|
+
readonly internalType: "address";
|
|
8888
|
+
}];
|
|
8889
|
+
readonly stateMutability: "view";
|
|
8890
|
+
}, {
|
|
8891
|
+
readonly type: "function";
|
|
8892
|
+
readonly name: "owner";
|
|
8893
|
+
readonly inputs: readonly [];
|
|
8894
|
+
readonly outputs: readonly [{
|
|
8895
|
+
readonly name: "";
|
|
8896
|
+
readonly type: "address";
|
|
8897
|
+
readonly internalType: "address";
|
|
8898
|
+
}];
|
|
8899
|
+
readonly stateMutability: "view";
|
|
8900
|
+
}, {
|
|
8901
|
+
readonly type: "function";
|
|
8902
|
+
readonly name: "pendingOwner";
|
|
8903
|
+
readonly inputs: readonly [];
|
|
8904
|
+
readonly outputs: readonly [{
|
|
8905
|
+
readonly name: "";
|
|
8906
|
+
readonly type: "address";
|
|
8907
|
+
readonly internalType: "address";
|
|
8908
|
+
}];
|
|
8909
|
+
readonly stateMutability: "view";
|
|
8910
|
+
}, {
|
|
8911
|
+
readonly type: "function";
|
|
8912
|
+
readonly name: "renounceOwnership";
|
|
8913
|
+
readonly inputs: readonly [];
|
|
8914
|
+
readonly outputs: readonly [];
|
|
8915
|
+
readonly stateMutability: "view";
|
|
8916
|
+
}, {
|
|
8917
|
+
readonly type: "function";
|
|
8918
|
+
readonly name: "transferOwnership";
|
|
8919
|
+
readonly inputs: readonly [{
|
|
8920
|
+
readonly name: "newOwner";
|
|
8921
|
+
readonly type: "address";
|
|
8922
|
+
readonly internalType: "address";
|
|
8923
|
+
}];
|
|
8924
|
+
readonly outputs: readonly [];
|
|
8925
|
+
readonly stateMutability: "nonpayable";
|
|
8926
|
+
}, {
|
|
8927
|
+
readonly type: "function";
|
|
8928
|
+
readonly name: "unlockStake";
|
|
8929
|
+
readonly inputs: readonly [];
|
|
8930
|
+
readonly outputs: readonly [];
|
|
8931
|
+
readonly stateMutability: "nonpayable";
|
|
8932
|
+
}, {
|
|
8933
|
+
readonly type: "function";
|
|
8934
|
+
readonly name: "withdraw";
|
|
8935
|
+
readonly inputs: readonly [{
|
|
8936
|
+
readonly name: "to";
|
|
8937
|
+
readonly type: "address";
|
|
8938
|
+
readonly internalType: "address payable";
|
|
8939
|
+
}, {
|
|
8940
|
+
readonly name: "token";
|
|
8941
|
+
readonly type: "address";
|
|
8942
|
+
readonly internalType: "address";
|
|
8943
|
+
}, {
|
|
8944
|
+
readonly name: "amount";
|
|
8945
|
+
readonly type: "uint256";
|
|
8946
|
+
readonly internalType: "uint256";
|
|
8947
|
+
}];
|
|
8948
|
+
readonly outputs: readonly [];
|
|
8949
|
+
readonly stateMutability: "nonpayable";
|
|
8950
|
+
}, {
|
|
8951
|
+
readonly type: "function";
|
|
8952
|
+
readonly name: "withdrawStake";
|
|
8953
|
+
readonly inputs: readonly [{
|
|
8954
|
+
readonly name: "to";
|
|
8955
|
+
readonly type: "address";
|
|
8956
|
+
readonly internalType: "address payable";
|
|
8957
|
+
}];
|
|
8958
|
+
readonly outputs: readonly [];
|
|
8959
|
+
readonly stateMutability: "nonpayable";
|
|
8960
|
+
}, {
|
|
8961
|
+
readonly type: "event";
|
|
8962
|
+
readonly name: "OwnershipTransferStarted";
|
|
8963
|
+
readonly inputs: readonly [{
|
|
8964
|
+
readonly name: "previousOwner";
|
|
8965
|
+
readonly type: "address";
|
|
8966
|
+
readonly indexed: true;
|
|
8967
|
+
readonly internalType: "address";
|
|
8968
|
+
}, {
|
|
8969
|
+
readonly name: "newOwner";
|
|
8970
|
+
readonly type: "address";
|
|
8971
|
+
readonly indexed: true;
|
|
8972
|
+
readonly internalType: "address";
|
|
8973
|
+
}];
|
|
8974
|
+
readonly anonymous: false;
|
|
8975
|
+
}, {
|
|
8976
|
+
readonly type: "event";
|
|
8977
|
+
readonly name: "OwnershipTransferred";
|
|
8978
|
+
readonly inputs: readonly [{
|
|
8979
|
+
readonly name: "previousOwner";
|
|
8980
|
+
readonly type: "address";
|
|
8981
|
+
readonly indexed: true;
|
|
8982
|
+
readonly internalType: "address";
|
|
8983
|
+
}, {
|
|
8984
|
+
readonly name: "newOwner";
|
|
8985
|
+
readonly type: "address";
|
|
8986
|
+
readonly indexed: true;
|
|
8987
|
+
readonly internalType: "address";
|
|
8988
|
+
}];
|
|
8989
|
+
readonly anonymous: false;
|
|
8990
|
+
}, {
|
|
8991
|
+
readonly type: "error";
|
|
8992
|
+
readonly name: "AddressEmptyCode";
|
|
8993
|
+
readonly inputs: readonly [{
|
|
8994
|
+
readonly name: "target";
|
|
8995
|
+
readonly type: "address";
|
|
8996
|
+
readonly internalType: "address";
|
|
8997
|
+
}];
|
|
8998
|
+
}, {
|
|
8999
|
+
readonly type: "error";
|
|
9000
|
+
readonly name: "AddressInsufficientBalance";
|
|
9001
|
+
readonly inputs: readonly [{
|
|
9002
|
+
readonly name: "account";
|
|
9003
|
+
readonly type: "address";
|
|
9004
|
+
readonly internalType: "address";
|
|
9005
|
+
}];
|
|
9006
|
+
}, {
|
|
9007
|
+
readonly type: "error";
|
|
9008
|
+
readonly name: "FailedInnerCall";
|
|
9009
|
+
readonly inputs: readonly [];
|
|
9010
|
+
}, {
|
|
9011
|
+
readonly type: "error";
|
|
9012
|
+
readonly name: "InvalidAction";
|
|
9013
|
+
readonly inputs: readonly [];
|
|
9014
|
+
}, {
|
|
9015
|
+
readonly type: "error";
|
|
9016
|
+
readonly name: "InvalidEntryPoint";
|
|
9017
|
+
readonly inputs: readonly [{
|
|
9018
|
+
readonly name: "entryPoint";
|
|
9019
|
+
readonly type: "address";
|
|
9020
|
+
readonly internalType: "address";
|
|
9021
|
+
}];
|
|
9022
|
+
}, {
|
|
9023
|
+
readonly type: "error";
|
|
9024
|
+
readonly name: "OwnableInvalidOwner";
|
|
9025
|
+
readonly inputs: readonly [{
|
|
9026
|
+
readonly name: "owner";
|
|
9027
|
+
readonly type: "address";
|
|
9028
|
+
readonly internalType: "address";
|
|
9029
|
+
}];
|
|
9030
|
+
}, {
|
|
9031
|
+
readonly type: "error";
|
|
9032
|
+
readonly name: "OwnableUnauthorizedAccount";
|
|
9033
|
+
readonly inputs: readonly [{
|
|
9034
|
+
readonly name: "account";
|
|
9035
|
+
readonly type: "address";
|
|
9036
|
+
readonly internalType: "address";
|
|
9037
|
+
}];
|
|
9038
|
+
}, {
|
|
9039
|
+
readonly type: "error";
|
|
9040
|
+
readonly name: "SafeERC20FailedOperation";
|
|
9041
|
+
readonly inputs: readonly [{
|
|
9042
|
+
readonly name: "token";
|
|
9043
|
+
readonly type: "address";
|
|
9044
|
+
readonly internalType: "address";
|
|
9045
|
+
}];
|
|
9046
|
+
}, {
|
|
9047
|
+
readonly type: "error";
|
|
9048
|
+
readonly name: "TransferFailed";
|
|
9049
|
+
readonly inputs: readonly [];
|
|
9050
|
+
}, {
|
|
9051
|
+
readonly type: "error";
|
|
9052
|
+
readonly name: "ZeroAddressNotAllowed";
|
|
9053
|
+
readonly inputs: readonly [];
|
|
9054
|
+
}]>;
|
|
5667
9055
|
};
|
|
5668
9056
|
MultiOwnerLightAccount: {
|
|
5669
9057
|
"v2.0.0": StaticSmartAccountImplementation<false, "0.7", import("./lightAccountStaticImpl.js").MultiOwnerLightAccountFactoryArgs, readonly [{
|
|
@@ -7103,7 +10491,29 @@ export declare const AccountVersionRegistry: {
|
|
|
7103
10491
|
};
|
|
7104
10492
|
export type LightAccountType = Extract<keyof typeof AccountVersionRegistry, "LightAccount" | "MultiOwnerLightAccount">;
|
|
7105
10493
|
export type LightAccountVersion<TAccountType extends LightAccountType> = keyof (typeof AccountVersionRegistry)[TAccountType];
|
|
7106
|
-
|
|
10494
|
+
/**
|
|
10495
|
+
* Light Account v1 versions
|
|
10496
|
+
*/
|
|
10497
|
+
export declare const LightAccountV1Versions: ["v1.0.1", "v1.0.2", "v1.1.0"];
|
|
10498
|
+
/**
|
|
10499
|
+
* Light Account v2 versions
|
|
10500
|
+
*/
|
|
10501
|
+
export declare const LightAccountV2Versions: ["v2.0.0", "v2.1.0", "v2.2.0"];
|
|
10502
|
+
/**
|
|
10503
|
+
* Type guard to check if a version is a Light Account v1 version
|
|
10504
|
+
*
|
|
10505
|
+
* @param {LightAccountVersion<"LightAccount">} version - The version to check.
|
|
10506
|
+
* @returns {boolean} True if the version is a v1 version.
|
|
10507
|
+
*/
|
|
10508
|
+
export declare const isLightAccountVersion1: (version: LightAccountVersion<"LightAccount">) => version is (typeof LightAccountV1Versions)[number];
|
|
10509
|
+
/**
|
|
10510
|
+
* Type guard to check if a version is a Light Account v2 version
|
|
10511
|
+
*
|
|
10512
|
+
* @param {LightAccountVersion<"LightAccount">} version - The version to check.
|
|
10513
|
+
* @returns {boolean} True if the version is a v2 version.
|
|
10514
|
+
*/
|
|
10515
|
+
export declare const isLightAccountVersion2: (version: LightAccountVersion<"LightAccount">) => version is (typeof LightAccountV2Versions)[number];
|
|
10516
|
+
export type GetLightAccountType<TAccount extends LightAccountBase> = TAccount["smartAccountType"] extends LightAccountType ? TAccount["smartAccountType"] : never;
|
|
7107
10517
|
export type LightAccountAbi<TAccountType extends LightAccountType, TAccountVersion extends LightAccountVersion<TAccountType>> = TAccountVersion extends keyof (typeof AccountVersionRegistry)[TAccountType] ? (typeof AccountVersionRegistry)[TAccountType][TAccountVersion] extends StaticSmartAccountImplementation ? (typeof AccountVersionRegistry)[TAccountType][TAccountVersion]["accountAbi"] : never : never;
|
|
7108
10518
|
/**
|
|
7109
10519
|
* Infers the EntryPoint details as a type, given the account type and version.
|