@funkit/core 2.0.1 → 2.1.1

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.
Files changed (154) hide show
  1. package/dist/index.js +11 -27
  2. package/dist/index.js.map +1 -1
  3. package/dist/src/abis/ApproveAndExec.json +45 -9
  4. package/dist/src/abis/ApproveAndSwap.json +141 -1
  5. package/dist/src/abis/CheckoutPaymaster.json +3358 -1
  6. package/dist/src/abis/EntryPoint.json +590 -113
  7. package/dist/src/abis/EstimationPaymaster.json +134 -24
  8. package/dist/src/abis/FeePercentOracle.json +94 -18
  9. package/dist/src/abis/FunWallet.json +280 -56
  10. package/dist/src/abis/FunWalletFactory.json +112 -21
  11. package/dist/src/abis/GaslessPaymaster.json +279 -50
  12. package/dist/src/abis/RoleBasedAccessControl.json +2 -1
  13. package/dist/src/abis/TestNFT.json +71 -15
  14. package/dist/src/abis/TokenPriceOracle.json +17 -4
  15. package/dist/src/abis/UserAuthentication.json +147 -32
  16. package/dist/src/actions/AccessControl.js +39 -48
  17. package/dist/src/actions/AccessControl.js.map +1 -1
  18. package/dist/src/actions/BatchActions.js +3 -7
  19. package/dist/src/actions/BatchActions.js.map +1 -1
  20. package/dist/src/actions/Bridge.js +16 -20
  21. package/dist/src/actions/Bridge.js.map +1 -1
  22. package/dist/src/actions/FirstClassActions.js +74 -77
  23. package/dist/src/actions/FirstClassActions.js.map +1 -1
  24. package/dist/src/actions/Group.js +14 -20
  25. package/dist/src/actions/Group.js.map +1 -1
  26. package/dist/src/actions/LimitOrder.js +18 -22
  27. package/dist/src/actions/LimitOrder.js.map +1 -1
  28. package/dist/src/actions/Stake.js +40 -43
  29. package/dist/src/actions/Stake.js.map +1 -1
  30. package/dist/src/actions/Swap.js +40 -46
  31. package/dist/src/actions/Swap.js.map +1 -1
  32. package/dist/src/actions/Token.js +41 -53
  33. package/dist/src/actions/Token.js.map +1 -1
  34. package/dist/src/actions/index.js +7 -23
  35. package/dist/src/actions/index.js.map +1 -1
  36. package/dist/src/actions/types.js +4 -7
  37. package/dist/src/actions/types.js.map +1 -1
  38. package/dist/src/apis/AccessControlApis.js +10 -16
  39. package/dist/src/apis/AccessControlApis.js.map +1 -1
  40. package/dist/src/apis/BridgeApis.js +14 -20
  41. package/dist/src/apis/BridgeApis.js.map +1 -1
  42. package/dist/src/apis/ContractApis.js +4 -7
  43. package/dist/src/apis/ContractApis.js.map +1 -1
  44. package/dist/src/apis/GroupApis.js +6 -10
  45. package/dist/src/apis/GroupApis.js.map +1 -1
  46. package/dist/src/apis/InfoApis.js +16 -23
  47. package/dist/src/apis/InfoApis.js.map +1 -1
  48. package/dist/src/apis/ListenerApis.js +9 -13
  49. package/dist/src/apis/ListenerApis.js.map +1 -1
  50. package/dist/src/apis/NFTApis.js +6 -10
  51. package/dist/src/apis/NFTApis.js.map +1 -1
  52. package/dist/src/apis/OperationApis.js +26 -40
  53. package/dist/src/apis/OperationApis.js.map +1 -1
  54. package/dist/src/apis/PaymasterApis.js +4 -7
  55. package/dist/src/apis/PaymasterApis.js.map +1 -1
  56. package/dist/src/apis/SwapApis.js +8 -13
  57. package/dist/src/apis/SwapApis.js.map +1 -1
  58. package/dist/src/apis/UserApis.js +20 -29
  59. package/dist/src/apis/UserApis.js.map +1 -1
  60. package/dist/src/apis/index.js +8 -24
  61. package/dist/src/apis/index.js.map +1 -1
  62. package/dist/src/apis/types.js +1 -2
  63. package/dist/src/auth/Auth.js +60 -76
  64. package/dist/src/auth/Auth.js.map +1 -1
  65. package/dist/src/auth/SessionKeyAuth.js +30 -33
  66. package/dist/src/auth/SessionKeyAuth.js.map +1 -1
  67. package/dist/src/auth/index.js +2 -18
  68. package/dist/src/auth/index.js.map +1 -1
  69. package/dist/src/auth/types.js +1 -2
  70. package/dist/src/common/constants.d.ts +141 -3
  71. package/dist/src/common/constants.js +211 -191
  72. package/dist/src/common/constants.js.map +1 -1
  73. package/dist/src/common/index.js +2 -18
  74. package/dist/src/common/index.js.map +1 -1
  75. package/dist/src/common/types.js +1 -2
  76. package/dist/src/config/Config.js +8 -13
  77. package/dist/src/config/Config.js.map +1 -1
  78. package/dist/src/config/index.js +2 -18
  79. package/dist/src/config/index.js.map +1 -1
  80. package/dist/src/config/types.js +1 -2
  81. package/dist/src/data/Chain.js +35 -33
  82. package/dist/src/data/Chain.js.map +1 -1
  83. package/dist/src/data/NFT.js +28 -31
  84. package/dist/src/data/NFT.js.map +1 -1
  85. package/dist/src/data/Operation.js +28 -11
  86. package/dist/src/data/Operation.js.map +1 -1
  87. package/dist/src/data/SolidityData.js +23 -30
  88. package/dist/src/data/SolidityData.js.map +1 -1
  89. package/dist/src/data/Token.js +21 -23
  90. package/dist/src/data/Token.js.map +1 -1
  91. package/dist/src/data/index.js +6 -22
  92. package/dist/src/data/index.js.map +1 -1
  93. package/dist/src/data/types.js +6 -9
  94. package/dist/src/data/types.js.map +1 -1
  95. package/dist/src/errors/BaseError.js +6 -5
  96. package/dist/src/errors/BaseError.js.map +1 -1
  97. package/dist/src/errors/ClientError.js +21 -34
  98. package/dist/src/errors/ClientError.js.map +1 -1
  99. package/dist/src/errors/ServerError.js +6 -11
  100. package/dist/src/errors/ServerError.js.map +1 -1
  101. package/dist/src/errors/index.js +4 -20
  102. package/dist/src/errors/index.js.map +1 -1
  103. package/dist/src/errors/types.js +6 -9
  104. package/dist/src/errors/types.js.map +1 -1
  105. package/dist/src/sponsors/CheckoutSponsor.js +10 -14
  106. package/dist/src/sponsors/CheckoutSponsor.js.map +1 -1
  107. package/dist/src/sponsors/GaslessSponsor.js +23 -27
  108. package/dist/src/sponsors/GaslessSponsor.js.map +1 -1
  109. package/dist/src/sponsors/Sponsor.js +10 -8
  110. package/dist/src/sponsors/Sponsor.js.map +1 -1
  111. package/dist/src/sponsors/TokenSponsor.js +79 -82
  112. package/dist/src/sponsors/TokenSponsor.js.map +1 -1
  113. package/dist/src/sponsors/index.js +4 -20
  114. package/dist/src/sponsors/index.js.map +1 -1
  115. package/dist/src/sponsors/types.js +2 -5
  116. package/dist/src/sponsors/types.js.map +1 -1
  117. package/dist/src/utils/ApiUtils.js +30 -38
  118. package/dist/src/utils/ApiUtils.js.map +1 -1
  119. package/dist/src/utils/AuthUtils.js +9 -14
  120. package/dist/src/utils/AuthUtils.js.map +1 -1
  121. package/dist/src/utils/ChainUtils.js +38 -49
  122. package/dist/src/utils/ChainUtils.js.map +1 -1
  123. package/dist/src/utils/CheckoutUtils.js +13 -18
  124. package/dist/src/utils/CheckoutUtils.js.map +1 -1
  125. package/dist/src/utils/GroupUtils.js +6 -9
  126. package/dist/src/utils/GroupUtils.js.map +1 -1
  127. package/dist/src/utils/MerkleUtils.js +34 -47
  128. package/dist/src/utils/MerkleUtils.js.map +1 -1
  129. package/dist/src/utils/PaymasterUtils.js +5 -9
  130. package/dist/src/utils/PaymasterUtils.js.map +1 -1
  131. package/dist/src/utils/SwapUtils.js +44 -43
  132. package/dist/src/utils/SwapUtils.js.map +1 -1
  133. package/dist/src/utils/TypeUtils.js +5 -9
  134. package/dist/src/utils/TypeUtils.js.map +1 -1
  135. package/dist/src/utils/UserOpUtils.js +20 -29
  136. package/dist/src/utils/UserOpUtils.js.map +1 -1
  137. package/dist/src/utils/ViemUtils.js +6 -12
  138. package/dist/src/utils/ViemUtils.js.map +1 -1
  139. package/dist/src/utils/WalletUtils.js +28 -42
  140. package/dist/src/utils/WalletUtils.js.map +1 -1
  141. package/dist/src/utils/index.js +8 -24
  142. package/dist/src/utils/index.js.map +1 -1
  143. package/dist/src/viem/ContractInterface.js +14 -18
  144. package/dist/src/viem/ContractInterface.js.map +1 -1
  145. package/dist/src/viem/Converter.js +15 -20
  146. package/dist/src/viem/Converter.js.map +1 -1
  147. package/dist/src/viem/index.js +2 -18
  148. package/dist/src/viem/index.js.map +1 -1
  149. package/dist/src/wallet/FunWallet.js +141 -142
  150. package/dist/src/wallet/FunWallet.js.map +1 -1
  151. package/dist/src/wallet/index.js +2 -18
  152. package/dist/src/wallet/index.js.map +1 -1
  153. package/dist/src/wallet/types.js +1 -2
  154. package/package.json +4 -2
@@ -2,15 +2,31 @@
2
2
  "name": "EstimationPaymaster",
3
3
  "abi": [
4
4
  {
5
- "inputs": [{ "internalType": "contract IEntryPoint", "name": "_entryPoint", "type": "address" }],
5
+ "inputs": [
6
+ {
7
+ "internalType": "contract IEntryPoint",
8
+ "name": "_entryPoint",
9
+ "type": "address"
10
+ }
11
+ ],
6
12
  "stateMutability": "nonpayable",
7
13
  "type": "constructor"
8
14
  },
9
15
  {
10
16
  "anonymous": false,
11
17
  "inputs": [
12
- { "indexed": true, "internalType": "address", "name": "previousOwner", "type": "address" },
13
- { "indexed": true, "internalType": "address", "name": "newOwner", "type": "address" }
18
+ {
19
+ "indexed": true,
20
+ "internalType": "address",
21
+ "name": "previousOwner",
22
+ "type": "address"
23
+ },
24
+ {
25
+ "indexed": true,
26
+ "internalType": "address",
27
+ "name": "newOwner",
28
+ "type": "address"
29
+ }
14
30
  ],
15
31
  "name": "OwnershipTransferStarted",
16
32
  "type": "event"
@@ -18,28 +34,59 @@
18
34
  {
19
35
  "anonymous": false,
20
36
  "inputs": [
21
- { "indexed": true, "internalType": "address", "name": "previousOwner", "type": "address" },
22
- { "indexed": true, "internalType": "address", "name": "newOwner", "type": "address" }
37
+ {
38
+ "indexed": true,
39
+ "internalType": "address",
40
+ "name": "previousOwner",
41
+ "type": "address"
42
+ },
43
+ {
44
+ "indexed": true,
45
+ "internalType": "address",
46
+ "name": "newOwner",
47
+ "type": "address"
48
+ }
23
49
  ],
24
50
  "name": "OwnershipTransferred",
25
51
  "type": "event"
26
52
  },
27
53
  {
28
54
  "anonymous": false,
29
- "inputs": [{ "indexed": false, "internalType": "contract IEntryPoint", "name": "entryPoint", "type": "address" }],
55
+ "inputs": [
56
+ {
57
+ "indexed": false,
58
+ "internalType": "contract IEntryPoint",
59
+ "name": "entryPoint",
60
+ "type": "address"
61
+ }
62
+ ],
30
63
  "name": "PaymasterCreated",
31
64
  "type": "event"
32
65
  },
33
- { "inputs": [], "name": "acceptOwnership", "outputs": [], "stateMutability": "nonpayable", "type": "function" },
34
66
  {
35
- "inputs": [{ "internalType": "address", "name": "sponsor", "type": "address" }],
67
+ "inputs": [],
68
+ "name": "acceptOwnership",
69
+ "outputs": [],
70
+ "stateMutability": "nonpayable",
71
+ "type": "function"
72
+ },
73
+ {
74
+ "inputs": [
75
+ { "internalType": "address", "name": "sponsor", "type": "address" }
76
+ ],
36
77
  "name": "addDepositTo",
37
78
  "outputs": [],
38
79
  "stateMutability": "payable",
39
80
  "type": "function"
40
81
  },
41
82
  {
42
- "inputs": [{ "internalType": "uint32", "name": "unstakeDelaySec", "type": "uint32" }],
83
+ "inputs": [
84
+ {
85
+ "internalType": "uint32",
86
+ "name": "unstakeDelaySec",
87
+ "type": "uint32"
88
+ }
89
+ ],
43
90
  "name": "addStakeToEntryPoint",
44
91
  "outputs": [],
45
92
  "stateMutability": "payable",
@@ -55,7 +102,13 @@
55
102
  {
56
103
  "inputs": [],
57
104
  "name": "entryPoint",
58
- "outputs": [{ "internalType": "contract IEntryPoint", "name": "", "type": "address" }],
105
+ "outputs": [
106
+ {
107
+ "internalType": "contract IEntryPoint",
108
+ "name": "",
109
+ "type": "address"
110
+ }
111
+ ],
59
112
  "stateMutability": "view",
60
113
  "type": "function"
61
114
  },
@@ -75,24 +128,46 @@
75
128
  },
76
129
  {
77
130
  "inputs": [
78
- { "internalType": "enum IPaymaster.PostOpMode", "name": "mode", "type": "uint8" },
131
+ {
132
+ "internalType": "enum IPaymaster.PostOpMode",
133
+ "name": "mode",
134
+ "type": "uint8"
135
+ },
79
136
  { "internalType": "bytes", "name": "context", "type": "bytes" },
80
- { "internalType": "uint256", "name": "actualGasCost", "type": "uint256" }
137
+ {
138
+ "internalType": "uint256",
139
+ "name": "actualGasCost",
140
+ "type": "uint256"
141
+ }
81
142
  ],
82
143
  "name": "postOp",
83
144
  "outputs": [],
84
145
  "stateMutability": "nonpayable",
85
146
  "type": "function"
86
147
  },
87
- { "inputs": [], "name": "renounceOwnership", "outputs": [], "stateMutability": "nonpayable", "type": "function" },
88
148
  {
89
- "inputs": [{ "internalType": "address", "name": "newOwner", "type": "address" }],
149
+ "inputs": [],
150
+ "name": "renounceOwnership",
151
+ "outputs": [],
152
+ "stateMutability": "nonpayable",
153
+ "type": "function"
154
+ },
155
+ {
156
+ "inputs": [
157
+ { "internalType": "address", "name": "newOwner", "type": "address" }
158
+ ],
90
159
  "name": "transferOwnership",
91
160
  "outputs": [],
92
161
  "stateMutability": "nonpayable",
93
162
  "type": "function"
94
163
  },
95
- { "inputs": [], "name": "unlockStakeFromEntryPoint", "outputs": [], "stateMutability": "nonpayable", "type": "function" },
164
+ {
165
+ "inputs": [],
166
+ "name": "unlockStakeFromEntryPoint",
167
+ "outputs": [],
168
+ "stateMutability": "nonpayable",
169
+ "type": "function"
170
+ },
96
171
  {
97
172
  "inputs": [
98
173
  {
@@ -101,12 +176,36 @@
101
176
  { "internalType": "uint256", "name": "nonce", "type": "uint256" },
102
177
  { "internalType": "bytes", "name": "initCode", "type": "bytes" },
103
178
  { "internalType": "bytes", "name": "callData", "type": "bytes" },
104
- { "internalType": "uint256", "name": "callGasLimit", "type": "uint256" },
105
- { "internalType": "uint256", "name": "verificationGasLimit", "type": "uint256" },
106
- { "internalType": "uint256", "name": "preVerificationGas", "type": "uint256" },
107
- { "internalType": "uint256", "name": "maxFeePerGas", "type": "uint256" },
108
- { "internalType": "uint256", "name": "maxPriorityFeePerGas", "type": "uint256" },
109
- { "internalType": "bytes", "name": "paymasterAndData", "type": "bytes" },
179
+ {
180
+ "internalType": "uint256",
181
+ "name": "callGasLimit",
182
+ "type": "uint256"
183
+ },
184
+ {
185
+ "internalType": "uint256",
186
+ "name": "verificationGasLimit",
187
+ "type": "uint256"
188
+ },
189
+ {
190
+ "internalType": "uint256",
191
+ "name": "preVerificationGas",
192
+ "type": "uint256"
193
+ },
194
+ {
195
+ "internalType": "uint256",
196
+ "name": "maxFeePerGas",
197
+ "type": "uint256"
198
+ },
199
+ {
200
+ "internalType": "uint256",
201
+ "name": "maxPriorityFeePerGas",
202
+ "type": "uint256"
203
+ },
204
+ {
205
+ "internalType": "bytes",
206
+ "name": "paymasterAndData",
207
+ "type": "bytes"
208
+ },
110
209
  { "internalType": "bytes", "name": "signature", "type": "bytes" }
111
210
  ],
112
211
  "internalType": "struct UserOperation",
@@ -127,7 +226,11 @@
127
226
  {
128
227
  "inputs": [
129
228
  { "internalType": "uint256", "name": "amount", "type": "uint256" },
130
- { "internalType": "address payable", "name": "target", "type": "address" }
229
+ {
230
+ "internalType": "address payable",
231
+ "name": "target",
232
+ "type": "address"
233
+ }
131
234
  ],
132
235
  "name": "withdrawDepositTo",
133
236
  "outputs": [],
@@ -135,7 +238,13 @@
135
238
  "type": "function"
136
239
  },
137
240
  {
138
- "inputs": [{ "internalType": "address payable", "name": "withdrawAddress", "type": "address" }],
241
+ "inputs": [
242
+ {
243
+ "internalType": "address payable",
244
+ "name": "withdrawAddress",
245
+ "type": "address"
246
+ }
247
+ ],
139
248
  "name": "withdrawStakeFromEntryPoint",
140
249
  "outputs": [],
141
250
  "stateMutability": "nonpayable",
@@ -151,6 +260,7 @@
151
260
  "36865": "0xe1B7B9d686948745a6425DF97a6480f5Bf75e508",
152
261
  "42161": "0x5ceb145d53841d2f6255fE668e5eBbd286B2C862",
153
262
  "421614": "0xaB9893703641d1B871B0F47f597CcAD7f922503E",
154
- "5000": "0x091a5301c118A8832B4574e8B88c94A14343eb52"
263
+ "5000": "0x091a5301c118A8832B4574e8B88c94A14343eb52",
264
+ "534352": "0x5ceb145d53841d2f6255fE668e5eBbd286B2C862"
155
265
  }
156
266
  }
@@ -2,16 +2,33 @@
2
2
  "name": "FeePercentOracle",
3
3
  "abi": [
4
4
  {
5
- "inputs": [{ "internalType": "address", "name": "owner", "type": "address" }],
5
+ "inputs": [
6
+ { "internalType": "address", "name": "owner", "type": "address" }
7
+ ],
6
8
  "stateMutability": "nonpayable",
7
9
  "type": "constructor"
8
10
  },
9
11
  {
10
12
  "anonymous": false,
11
13
  "inputs": [
12
- { "indexed": true, "internalType": "address", "name": "token", "type": "address" },
13
- { "indexed": true, "internalType": "address", "name": "to", "type": "address" },
14
- { "indexed": true, "internalType": "uint256", "name": "amount", "type": "uint256" }
14
+ {
15
+ "indexed": true,
16
+ "internalType": "address",
17
+ "name": "token",
18
+ "type": "address"
19
+ },
20
+ {
21
+ "indexed": true,
22
+ "internalType": "address",
23
+ "name": "to",
24
+ "type": "address"
25
+ },
26
+ {
27
+ "indexed": true,
28
+ "internalType": "uint256",
29
+ "name": "amount",
30
+ "type": "uint256"
31
+ }
15
32
  ],
16
33
  "name": "Erc20Withdrawn",
17
34
  "type": "event"
@@ -19,8 +36,18 @@
19
36
  {
20
37
  "anonymous": false,
21
38
  "inputs": [
22
- { "indexed": true, "internalType": "uint256", "name": "amount", "type": "uint256" },
23
- { "indexed": true, "internalType": "address", "name": "to", "type": "address" }
39
+ {
40
+ "indexed": true,
41
+ "internalType": "uint256",
42
+ "name": "amount",
43
+ "type": "uint256"
44
+ },
45
+ {
46
+ "indexed": true,
47
+ "internalType": "address",
48
+ "name": "to",
49
+ "type": "address"
50
+ }
24
51
  ],
25
52
  "name": "EthWithdrawn",
26
53
  "type": "event"
@@ -28,8 +55,18 @@
28
55
  {
29
56
  "anonymous": false,
30
57
  "inputs": [
31
- { "indexed": true, "internalType": "uint120", "name": "feepercent", "type": "uint120" },
32
- { "indexed": true, "internalType": "uint8", "name": "decimals", "type": "uint8" }
58
+ {
59
+ "indexed": true,
60
+ "internalType": "uint120",
61
+ "name": "feepercent",
62
+ "type": "uint120"
63
+ },
64
+ {
65
+ "indexed": true,
66
+ "internalType": "uint8",
67
+ "name": "decimals",
68
+ "type": "uint8"
69
+ }
33
70
  ],
34
71
  "name": "FeePercentSet",
35
72
  "type": "event"
@@ -37,8 +74,18 @@
37
74
  {
38
75
  "anonymous": false,
39
76
  "inputs": [
40
- { "indexed": true, "internalType": "address", "name": "previousOwner", "type": "address" },
41
- { "indexed": true, "internalType": "address", "name": "newOwner", "type": "address" }
77
+ {
78
+ "indexed": true,
79
+ "internalType": "address",
80
+ "name": "previousOwner",
81
+ "type": "address"
82
+ },
83
+ {
84
+ "indexed": true,
85
+ "internalType": "address",
86
+ "name": "newOwner",
87
+ "type": "address"
88
+ }
42
89
  ],
43
90
  "name": "OwnershipTransferStarted",
44
91
  "type": "event"
@@ -46,13 +93,29 @@
46
93
  {
47
94
  "anonymous": false,
48
95
  "inputs": [
49
- { "indexed": true, "internalType": "address", "name": "previousOwner", "type": "address" },
50
- { "indexed": true, "internalType": "address", "name": "newOwner", "type": "address" }
96
+ {
97
+ "indexed": true,
98
+ "internalType": "address",
99
+ "name": "previousOwner",
100
+ "type": "address"
101
+ },
102
+ {
103
+ "indexed": true,
104
+ "internalType": "address",
105
+ "name": "newOwner",
106
+ "type": "address"
107
+ }
51
108
  ],
52
109
  "name": "OwnershipTransferred",
53
110
  "type": "event"
54
111
  },
55
- { "inputs": [], "name": "acceptOwnership", "outputs": [], "stateMutability": "nonpayable", "type": "function" },
112
+ {
113
+ "inputs": [],
114
+ "name": "acceptOwnership",
115
+ "outputs": [],
116
+ "stateMutability": "nonpayable",
117
+ "type": "function"
118
+ },
56
119
  {
57
120
  "inputs": [],
58
121
  "name": "decimals",
@@ -68,7 +131,9 @@
68
131
  "type": "function"
69
132
  },
70
133
  {
71
- "inputs": [{ "internalType": "uint256", "name": "amount", "type": "uint256" }],
134
+ "inputs": [
135
+ { "internalType": "uint256", "name": "amount", "type": "uint256" }
136
+ ],
72
137
  "name": "getFee",
73
138
  "outputs": [
74
139
  { "internalType": "uint256", "name": "funCut", "type": "uint256" },
@@ -91,7 +156,13 @@
91
156
  "stateMutability": "view",
92
157
  "type": "function"
93
158
  },
94
- { "inputs": [], "name": "renounceOwnership", "outputs": [], "stateMutability": "nonpayable", "type": "function" },
159
+ {
160
+ "inputs": [],
161
+ "name": "renounceOwnership",
162
+ "outputs": [],
163
+ "stateMutability": "nonpayable",
164
+ "type": "function"
165
+ },
95
166
  {
96
167
  "inputs": [
97
168
  { "internalType": "uint120", "name": "_feepercent", "type": "uint120" },
@@ -103,7 +174,9 @@
103
174
  "type": "function"
104
175
  },
105
176
  {
106
- "inputs": [{ "internalType": "address", "name": "newOwner", "type": "address" }],
177
+ "inputs": [
178
+ { "internalType": "address", "name": "newOwner", "type": "address" }
179
+ ],
107
180
  "name": "transferOwnership",
108
181
  "outputs": [],
109
182
  "stateMutability": "nonpayable",
@@ -120,7 +193,9 @@
120
193
  "type": "function"
121
194
  },
122
195
  {
123
- "inputs": [{ "internalType": "uint256", "name": "amount", "type": "uint256" }],
196
+ "inputs": [
197
+ { "internalType": "uint256", "name": "amount", "type": "uint256" }
198
+ ],
124
199
  "name": "withdrawEth",
125
200
  "outputs": [],
126
201
  "stateMutability": "nonpayable",
@@ -137,6 +212,7 @@
137
212
  "36865": "0x118c66c1D05F80784E164541b1556045c9018261",
138
213
  "42161": "0xDDcD7DF0558536472eD448846C6608bace86f7aC",
139
214
  "421614": "0x327f55ECAAa8A38BA71a1594EEFDc96F8f1b7f28",
140
- "5000": "0x00422527E4b6A898F3CDA4f43Dd456daD7633c4D"
215
+ "5000": "0x00422527E4b6A898F3CDA4f43Dd456daD7633c4D",
216
+ "534352": "0x1CaD2167bd7C42aF6ED8E2079558D43A8fC72f0b"
141
217
  }
142
218
  }