@b3dotfun/sdk 0.0.23 → 0.0.24

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 (252) hide show
  1. package/dist/cjs/anyspend/react/components/AnySpend.js +5 -8
  2. package/dist/cjs/anyspend/react/components/AnySpendBondKit.js +2 -2
  3. package/dist/cjs/anyspend/react/components/AnySpendBuySpin.js +35 -28
  4. package/dist/cjs/anyspend/react/components/AnySpendCustom.js +4 -4
  5. package/dist/cjs/anyspend/react/components/AnySpendStakeB3.js +35 -28
  6. package/dist/cjs/anyspend/react/components/common/Accordion.d.ts +7 -0
  7. package/dist/cjs/anyspend/react/components/common/Accordion.js +53 -0
  8. package/dist/cjs/anyspend/react/components/common/ConnectWalletPayment.js +3 -22
  9. package/dist/cjs/anyspend/react/components/common/FiatPaymentMethod.js +2 -2
  10. package/dist/cjs/anyspend/react/components/common/OrderDetails.js +76 -83
  11. package/dist/cjs/anyspend/react/components/common/OrderStatus.js +1 -1
  12. package/dist/cjs/anyspend/react/components/common/PanelOnramp.js +4 -3
  13. package/dist/cjs/anyspend/react/components/common/PanelOnrampPayment.js +1 -5
  14. package/dist/cjs/anyspend/react/components/common/StepProgress.js +2 -2
  15. package/dist/cjs/anyspend/react/components/common/TokenBalance.js +1 -1
  16. package/dist/cjs/anyspend/react/hooks/useGeoOnrampOptions.d.ts +0 -1
  17. package/dist/cjs/anyspend/react/hooks/useGeoOnrampOptions.js +2 -4
  18. package/dist/cjs/anyspend/react/hooks/useSigMint.d.ts +2 -2
  19. package/dist/cjs/anyspend/react/hooks/useStripeSupport.d.ts +0 -1
  20. package/dist/cjs/anyspend/react/hooks/useStripeSupport.js +0 -1
  21. package/dist/cjs/anyspend/utils/chain.js +1 -1
  22. package/dist/cjs/bondkit/abis/BondkitTokenABI.d.ts +1020 -0
  23. package/dist/cjs/bondkit/abis/BondkitTokenABI.js +1332 -0
  24. package/dist/cjs/bondkit/abis/BondkitTokenFactoryABI.d.ts +391 -0
  25. package/dist/cjs/bondkit/abis/BondkitTokenFactoryABI.js +514 -0
  26. package/dist/cjs/bondkit/abis/index.d.ts +2 -0
  27. package/dist/cjs/bondkit/abis/index.js +18 -0
  28. package/dist/cjs/bondkit/bondkitToken.d.ts +68 -0
  29. package/dist/cjs/bondkit/bondkitToken.js +456 -0
  30. package/dist/cjs/bondkit/bondkitTokenFactory.d.ts +60 -0
  31. package/dist/cjs/bondkit/bondkitTokenFactory.js +274 -0
  32. package/dist/cjs/bondkit/components/TradingView.d.ts +3 -0
  33. package/dist/cjs/bondkit/components/TradingView.js +296 -0
  34. package/dist/cjs/bondkit/components/config/cdn.d.ts +42 -0
  35. package/dist/cjs/bondkit/components/config/cdn.js +63 -0
  36. package/dist/cjs/bondkit/components/index.d.ts +5 -0
  37. package/dist/cjs/bondkit/components/index.js +25 -0
  38. package/dist/cjs/bondkit/components/types.d.ts +8 -0
  39. package/dist/cjs/bondkit/components/types.js +5 -0
  40. package/dist/cjs/bondkit/components/utils/cdn-loader.d.ts +24 -0
  41. package/dist/cjs/bondkit/components/utils/cdn-loader.js +73 -0
  42. package/dist/cjs/bondkit/components/utils/format.d.ts +4 -0
  43. package/dist/cjs/bondkit/components/utils/format.js +31 -0
  44. package/dist/cjs/bondkit/config.d.ts +10 -0
  45. package/dist/cjs/bondkit/config.js +18 -0
  46. package/dist/cjs/bondkit/constants.d.ts +3 -0
  47. package/dist/cjs/bondkit/constants.js +5 -0
  48. package/dist/cjs/bondkit/index.d.ts +7 -0
  49. package/dist/cjs/bondkit/index.js +33 -0
  50. package/dist/cjs/bondkit/json_abis/BondkitABI.json +1329 -0
  51. package/dist/cjs/bondkit/json_abis/BondkitFactoryABI.json +511 -0
  52. package/dist/cjs/bondkit/json_abis/index.d.ts +3 -0
  53. package/dist/cjs/bondkit/json_abis/index.js +10 -0
  54. package/dist/cjs/bondkit/json_abis/index.ts +4 -0
  55. package/dist/cjs/bondkit/types.d.ts +77 -0
  56. package/dist/cjs/bondkit/types.js +11 -0
  57. package/dist/cjs/global-account/react/components/B3DynamicModal.js +1 -1
  58. package/dist/cjs/global-account/react/components/MintButton/MintButton.js +0 -1
  59. package/dist/cjs/global-account/react/components/SendERC20Button/SendERC20Button.d.ts +13 -0
  60. package/dist/cjs/global-account/react/components/SendERC20Button/SendERC20Button.js +33 -0
  61. package/dist/cjs/global-account/react/components/SendETHButton/SendETHButton.d.ts +12 -0
  62. package/dist/cjs/global-account/react/components/SendETHButton/SendETHButton.js +23 -0
  63. package/dist/cjs/global-account/react/components/SignInWithB3/SignIn.js +4 -2
  64. package/dist/cjs/global-account/react/components/SignInWithB3/SignInWithB3Flow.js +2 -2
  65. package/dist/cjs/global-account/react/components/SignInWithB3/SignInWithB3Privy.js +1 -1
  66. package/dist/cjs/global-account/react/components/SignInWithB3/steps/LoginStep.js +2 -2
  67. package/dist/cjs/global-account/react/components/SignInWithB3/steps/LoginStepCustom.js +2 -2
  68. package/dist/cjs/global-account/react/components/index.d.ts +2 -0
  69. package/dist/cjs/global-account/react/components/index.js +8 -2
  70. package/dist/cjs/global-account/react/components/ui/scroll-area.js +1 -1
  71. package/dist/cjs/global-account/react/components/ui/tooltip.d.ts +1 -1
  72. package/dist/cjs/global-account/react/hooks/index.d.ts +2 -1
  73. package/dist/cjs/global-account/react/hooks/index.js +18 -3
  74. package/dist/cjs/global-account/react/hooks/useAccountWallet.js +8 -0
  75. package/dist/cjs/global-account/react/hooks/useAuthentication.js +4 -4
  76. package/dist/cjs/global-account/react/hooks/useChainSwitchWithAction.d.ts +1 -2
  77. package/dist/cjs/global-account/react/hooks/useChainSwitchWithAction.js +2 -2
  78. package/dist/cjs/global-account/react/hooks/useFirstEOA.js +9 -7
  79. package/dist/cjs/global-account/react/hooks/useUnifiedChainSwitchAndExecute.d.ts +11 -0
  80. package/dist/cjs/global-account/react/hooks/useUnifiedChainSwitchAndExecute.js +160 -0
  81. package/dist/cjs/shared/constants/chains/supported.d.ts +4 -0
  82. package/dist/cjs/shared/constants/chains/supported.js +11 -0
  83. package/dist/cjs/shared/generated/chain-networks.json +1 -1
  84. package/dist/esm/anyspend/react/components/AnySpend.js +5 -8
  85. package/dist/esm/anyspend/react/components/AnySpendBondKit.js +2 -2
  86. package/dist/esm/anyspend/react/components/AnySpendBuySpin.js +37 -30
  87. package/dist/esm/anyspend/react/components/AnySpendCustom.js +4 -4
  88. package/dist/esm/anyspend/react/components/AnySpendStakeB3.js +37 -30
  89. package/dist/esm/anyspend/react/components/common/Accordion.d.ts +7 -0
  90. package/dist/esm/anyspend/react/components/common/Accordion.js +14 -0
  91. package/dist/esm/anyspend/react/components/common/ConnectWalletPayment.js +3 -22
  92. package/dist/esm/anyspend/react/components/common/FiatPaymentMethod.js +2 -2
  93. package/dist/esm/anyspend/react/components/common/OrderDetails.js +79 -86
  94. package/dist/esm/anyspend/react/components/common/OrderStatus.js +1 -1
  95. package/dist/esm/anyspend/react/components/common/PanelOnramp.js +5 -4
  96. package/dist/esm/anyspend/react/components/common/PanelOnrampPayment.js +1 -5
  97. package/dist/esm/anyspend/react/components/common/StepProgress.js +2 -2
  98. package/dist/esm/anyspend/react/components/common/TokenBalance.js +1 -1
  99. package/dist/esm/anyspend/react/hooks/useGeoOnrampOptions.d.ts +0 -1
  100. package/dist/esm/anyspend/react/hooks/useGeoOnrampOptions.js +2 -4
  101. package/dist/esm/anyspend/react/hooks/useSigMint.d.ts +2 -2
  102. package/dist/esm/anyspend/react/hooks/useStripeSupport.d.ts +0 -1
  103. package/dist/esm/anyspend/react/hooks/useStripeSupport.js +0 -1
  104. package/dist/esm/anyspend/utils/chain.js +1 -1
  105. package/dist/esm/bondkit/abis/BondkitTokenABI.d.ts +1020 -0
  106. package/dist/esm/bondkit/abis/BondkitTokenABI.js +1329 -0
  107. package/dist/esm/bondkit/abis/BondkitTokenFactoryABI.d.ts +391 -0
  108. package/dist/esm/bondkit/abis/BondkitTokenFactoryABI.js +511 -0
  109. package/dist/esm/bondkit/abis/index.d.ts +2 -0
  110. package/dist/esm/bondkit/abis/index.js +2 -0
  111. package/dist/esm/bondkit/bondkitToken.d.ts +68 -0
  112. package/dist/esm/bondkit/bondkitToken.js +452 -0
  113. package/dist/esm/bondkit/bondkitTokenFactory.d.ts +60 -0
  114. package/dist/esm/bondkit/bondkitTokenFactory.js +270 -0
  115. package/dist/esm/bondkit/components/TradingView.d.ts +3 -0
  116. package/dist/esm/bondkit/components/TradingView.js +294 -0
  117. package/dist/esm/bondkit/components/config/cdn.d.ts +42 -0
  118. package/dist/esm/bondkit/components/config/cdn.js +55 -0
  119. package/dist/esm/bondkit/components/index.d.ts +5 -0
  120. package/dist/esm/bondkit/components/index.js +4 -0
  121. package/dist/esm/bondkit/components/types.d.ts +8 -0
  122. package/dist/esm/bondkit/components/types.js +4 -0
  123. package/dist/esm/bondkit/components/utils/cdn-loader.d.ts +24 -0
  124. package/dist/esm/bondkit/components/utils/cdn-loader.js +66 -0
  125. package/dist/esm/bondkit/components/utils/format.d.ts +4 -0
  126. package/dist/esm/bondkit/components/utils/format.js +28 -0
  127. package/dist/esm/bondkit/config.d.ts +10 -0
  128. package/dist/esm/bondkit/config.js +14 -0
  129. package/dist/esm/bondkit/constants.d.ts +3 -0
  130. package/dist/esm/bondkit/constants.js +2 -0
  131. package/dist/esm/bondkit/index.d.ts +7 -0
  132. package/dist/esm/bondkit/index.js +12 -0
  133. package/dist/esm/bondkit/json_abis/BondkitABI.json +1329 -0
  134. package/dist/esm/bondkit/json_abis/BondkitFactoryABI.json +511 -0
  135. package/dist/esm/bondkit/json_abis/index.d.ts +3 -0
  136. package/dist/esm/bondkit/json_abis/index.js +3 -0
  137. package/dist/esm/bondkit/json_abis/index.ts +4 -0
  138. package/dist/esm/bondkit/types.d.ts +77 -0
  139. package/dist/esm/bondkit/types.js +8 -0
  140. package/dist/esm/global-account/react/components/B3DynamicModal.js +1 -1
  141. package/dist/esm/global-account/react/components/MintButton/MintButton.js +0 -1
  142. package/dist/esm/global-account/react/components/SendERC20Button/SendERC20Button.d.ts +13 -0
  143. package/dist/esm/global-account/react/components/SendERC20Button/SendERC20Button.js +30 -0
  144. package/dist/esm/global-account/react/components/SendETHButton/SendETHButton.d.ts +12 -0
  145. package/dist/esm/global-account/react/components/SendETHButton/SendETHButton.js +20 -0
  146. package/dist/esm/global-account/react/components/SignInWithB3/SignIn.js +4 -2
  147. package/dist/esm/global-account/react/components/SignInWithB3/SignInWithB3Flow.js +2 -2
  148. package/dist/esm/global-account/react/components/SignInWithB3/SignInWithB3Privy.js +1 -1
  149. package/dist/esm/global-account/react/components/SignInWithB3/steps/LoginStep.js +2 -2
  150. package/dist/esm/global-account/react/components/SignInWithB3/steps/LoginStepCustom.js +2 -2
  151. package/dist/esm/global-account/react/components/index.d.ts +2 -0
  152. package/dist/esm/global-account/react/components/index.js +4 -0
  153. package/dist/esm/global-account/react/components/ui/scroll-area.js +1 -1
  154. package/dist/esm/global-account/react/components/ui/tooltip.d.ts +1 -1
  155. package/dist/esm/global-account/react/hooks/index.d.ts +2 -1
  156. package/dist/esm/global-account/react/hooks/index.js +2 -1
  157. package/dist/esm/global-account/react/hooks/useAccountWallet.js +8 -0
  158. package/dist/esm/global-account/react/hooks/useAuthentication.js +4 -4
  159. package/dist/esm/global-account/react/hooks/useChainSwitchWithAction.d.ts +1 -2
  160. package/dist/esm/global-account/react/hooks/useChainSwitchWithAction.js +2 -2
  161. package/dist/esm/global-account/react/hooks/useFirstEOA.js +9 -7
  162. package/dist/esm/global-account/react/hooks/useUnifiedChainSwitchAndExecute.d.ts +11 -0
  163. package/dist/esm/global-account/react/hooks/useUnifiedChainSwitchAndExecute.js +154 -0
  164. package/dist/esm/shared/constants/chains/supported.d.ts +4 -0
  165. package/dist/esm/shared/constants/chains/supported.js +10 -0
  166. package/dist/esm/shared/generated/chain-networks.json +1 -1
  167. package/dist/styles/index.css +1 -1
  168. package/dist/types/anyspend/react/components/common/Accordion.d.ts +7 -0
  169. package/dist/types/anyspend/react/hooks/useGeoOnrampOptions.d.ts +0 -1
  170. package/dist/types/anyspend/react/hooks/useSigMint.d.ts +2 -2
  171. package/dist/types/anyspend/react/hooks/useStripeSupport.d.ts +0 -1
  172. package/dist/types/bondkit/abis/BondkitTokenABI.d.ts +1020 -0
  173. package/dist/types/bondkit/abis/BondkitTokenFactoryABI.d.ts +391 -0
  174. package/dist/types/bondkit/abis/index.d.ts +2 -0
  175. package/dist/types/bondkit/bondkitToken.d.ts +68 -0
  176. package/dist/types/bondkit/bondkitTokenFactory.d.ts +60 -0
  177. package/dist/types/bondkit/components/TradingView.d.ts +3 -0
  178. package/dist/types/bondkit/components/config/cdn.d.ts +42 -0
  179. package/dist/types/bondkit/components/index.d.ts +5 -0
  180. package/dist/types/bondkit/components/types.d.ts +8 -0
  181. package/dist/types/bondkit/components/utils/cdn-loader.d.ts +24 -0
  182. package/dist/types/bondkit/components/utils/format.d.ts +4 -0
  183. package/dist/types/bondkit/config.d.ts +10 -0
  184. package/dist/types/bondkit/constants.d.ts +3 -0
  185. package/dist/types/bondkit/index.d.ts +7 -0
  186. package/dist/types/bondkit/json_abis/index.d.ts +3 -0
  187. package/dist/types/bondkit/types.d.ts +77 -0
  188. package/dist/types/global-account/react/components/SendERC20Button/SendERC20Button.d.ts +13 -0
  189. package/dist/types/global-account/react/components/SendETHButton/SendETHButton.d.ts +12 -0
  190. package/dist/types/global-account/react/components/index.d.ts +2 -0
  191. package/dist/types/global-account/react/components/ui/tooltip.d.ts +1 -1
  192. package/dist/types/global-account/react/hooks/index.d.ts +2 -1
  193. package/dist/types/global-account/react/hooks/useChainSwitchWithAction.d.ts +1 -2
  194. package/dist/types/global-account/react/hooks/useUnifiedChainSwitchAndExecute.d.ts +11 -0
  195. package/dist/types/shared/constants/chains/supported.d.ts +4 -0
  196. package/package.json +42 -7
  197. package/src/anyspend/react/components/AnySpend.tsx +5 -23
  198. package/src/anyspend/react/components/AnySpendBondKit.tsx +2 -2
  199. package/src/anyspend/react/components/AnySpendBuySpin.tsx +42 -32
  200. package/src/anyspend/react/components/AnySpendCustom.tsx +7 -13
  201. package/src/anyspend/react/components/AnySpendStakeB3.tsx +44 -34
  202. package/src/anyspend/react/components/common/Accordion.tsx +56 -0
  203. package/src/anyspend/react/components/common/ConnectWalletPayment.tsx +0 -25
  204. package/src/anyspend/react/components/common/FiatPaymentMethod.tsx +1 -2
  205. package/src/anyspend/react/components/common/OrderDetails.tsx +292 -260
  206. package/src/anyspend/react/components/common/OrderStatus.tsx +1 -1
  207. package/src/anyspend/react/components/common/PanelOnramp.tsx +7 -7
  208. package/src/anyspend/react/components/common/PanelOnrampPayment.tsx +0 -6
  209. package/src/anyspend/react/components/common/StepProgress.tsx +2 -2
  210. package/src/anyspend/react/components/common/TokenBalance.tsx +3 -3
  211. package/src/anyspend/react/hooks/useGeoOnrampOptions.ts +2 -4
  212. package/src/anyspend/react/hooks/useStripeSupport.ts +0 -1
  213. package/src/anyspend/utils/chain.ts +1 -1
  214. package/src/bondkit/abis/BondkitTokenABI.ts +1329 -0
  215. package/src/bondkit/abis/BondkitTokenFactoryABI.ts +511 -0
  216. package/src/bondkit/abis/index.ts +2 -0
  217. package/src/bondkit/bondkitToken.ts +539 -0
  218. package/src/bondkit/bondkitTokenFactory.ts +336 -0
  219. package/src/bondkit/components/TradingView.tsx +341 -0
  220. package/src/bondkit/components/config/cdn.ts +63 -0
  221. package/src/bondkit/components/index.ts +5 -0
  222. package/src/bondkit/components/types.ts +9 -0
  223. package/src/bondkit/components/utils/cdn-loader.ts +77 -0
  224. package/src/bondkit/components/utils/format.ts +36 -0
  225. package/src/bondkit/config.ts +26 -0
  226. package/src/bondkit/constants.ts +5 -0
  227. package/src/bondkit/index.ts +16 -0
  228. package/src/bondkit/json_abis/BondkitABI.json +1329 -0
  229. package/src/bondkit/json_abis/BondkitFactoryABI.json +511 -0
  230. package/src/bondkit/json_abis/index.ts +4 -0
  231. package/src/bondkit/types.ts +98 -0
  232. package/src/global-account/react/components/B3DynamicModal.tsx +2 -1
  233. package/src/global-account/react/components/MintButton/MintButton.tsx +0 -1
  234. package/src/global-account/react/components/SendERC20Button/SendERC20Button.tsx +57 -0
  235. package/src/global-account/react/components/SendETHButton/SendETHButton.tsx +37 -0
  236. package/src/global-account/react/components/SignInWithB3/SignIn.tsx +21 -22
  237. package/src/global-account/react/components/SignInWithB3/SignInWithB3Flow.tsx +2 -2
  238. package/src/global-account/react/components/SignInWithB3/SignInWithB3Privy.tsx +1 -1
  239. package/src/global-account/react/components/SignInWithB3/steps/LoginStep.tsx +2 -2
  240. package/src/global-account/react/components/SignInWithB3/steps/LoginStepCustom.tsx +2 -2
  241. package/src/global-account/react/components/index.ts +6 -0
  242. package/src/global-account/react/components/ui/scroll-area.tsx +2 -2
  243. package/src/global-account/react/components/ui/tooltip.tsx +1 -1
  244. package/src/global-account/react/hooks/index.ts +2 -1
  245. package/src/global-account/react/hooks/useAccountWallet.tsx +10 -1
  246. package/src/global-account/react/hooks/useAuthentication.ts +4 -4
  247. package/src/global-account/react/hooks/useChainSwitchWithAction.ts +3 -4
  248. package/src/global-account/react/hooks/useFirstEOA.tsx +10 -7
  249. package/src/global-account/react/hooks/useUnifiedChainSwitchAndExecute.ts +186 -0
  250. package/src/shared/constants/chains/supported.ts +11 -0
  251. package/src/shared/generated/chain-networks.json +1 -1
  252. package/src/styles/index.css +27 -0
@@ -0,0 +1,1332 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.BondkitTokenABI = void 0;
4
+ exports.BondkitTokenABI = [
5
+ {
6
+ inputs: [],
7
+ stateMutability: "nonpayable",
8
+ type: "constructor",
9
+ },
10
+ {
11
+ inputs: [],
12
+ name: "CalculatedEthOutIsZero",
13
+ type: "error",
14
+ },
15
+ {
16
+ inputs: [
17
+ {
18
+ internalType: "uint256",
19
+ name: "required",
20
+ type: "uint256",
21
+ },
22
+ {
23
+ internalType: "uint256",
24
+ name: "available",
25
+ type: "uint256",
26
+ },
27
+ ],
28
+ name: "CurveReserveInsufficient",
29
+ type: "error",
30
+ },
31
+ {
32
+ inputs: [
33
+ {
34
+ internalType: "uint256",
35
+ name: "currentRaised",
36
+ type: "uint256",
37
+ },
38
+ {
39
+ internalType: "uint256",
40
+ name: "threshold",
41
+ type: "uint256",
42
+ },
43
+ ],
44
+ name: "DexTriggerThresholdNotMet",
45
+ type: "error",
46
+ },
47
+ {
48
+ inputs: [
49
+ {
50
+ internalType: "address",
51
+ name: "spender",
52
+ type: "address",
53
+ },
54
+ {
55
+ internalType: "uint256",
56
+ name: "allowance",
57
+ type: "uint256",
58
+ },
59
+ {
60
+ internalType: "uint256",
61
+ name: "needed",
62
+ type: "uint256",
63
+ },
64
+ ],
65
+ name: "ERC20InsufficientAllowance",
66
+ type: "error",
67
+ },
68
+ {
69
+ inputs: [
70
+ {
71
+ internalType: "address",
72
+ name: "sender",
73
+ type: "address",
74
+ },
75
+ {
76
+ internalType: "uint256",
77
+ name: "balance",
78
+ type: "uint256",
79
+ },
80
+ {
81
+ internalType: "uint256",
82
+ name: "needed",
83
+ type: "uint256",
84
+ },
85
+ ],
86
+ name: "ERC20InsufficientBalance",
87
+ type: "error",
88
+ },
89
+ {
90
+ inputs: [
91
+ {
92
+ internalType: "address",
93
+ name: "approver",
94
+ type: "address",
95
+ },
96
+ ],
97
+ name: "ERC20InvalidApprover",
98
+ type: "error",
99
+ },
100
+ {
101
+ inputs: [
102
+ {
103
+ internalType: "address",
104
+ name: "receiver",
105
+ type: "address",
106
+ },
107
+ ],
108
+ name: "ERC20InvalidReceiver",
109
+ type: "error",
110
+ },
111
+ {
112
+ inputs: [
113
+ {
114
+ internalType: "address",
115
+ name: "sender",
116
+ type: "address",
117
+ },
118
+ ],
119
+ name: "ERC20InvalidSender",
120
+ type: "error",
121
+ },
122
+ {
123
+ inputs: [
124
+ {
125
+ internalType: "address",
126
+ name: "spender",
127
+ type: "address",
128
+ },
129
+ ],
130
+ name: "ERC20InvalidSpender",
131
+ type: "error",
132
+ },
133
+ {
134
+ inputs: [],
135
+ name: "EthAmountMustBePositive",
136
+ type: "error",
137
+ },
138
+ {
139
+ inputs: [],
140
+ name: "EthForCurveMustBePositive",
141
+ type: "error",
142
+ },
143
+ {
144
+ inputs: [
145
+ {
146
+ internalType: "address",
147
+ name: "recipient",
148
+ type: "address",
149
+ },
150
+ ],
151
+ name: "EthTransferFailed",
152
+ type: "error",
153
+ },
154
+ {
155
+ inputs: [],
156
+ name: "ExpectedBondingPhase",
157
+ type: "error",
158
+ },
159
+ {
160
+ inputs: [],
161
+ name: "FeeRecipientLPSplitPayoutFailed",
162
+ type: "error",
163
+ },
164
+ {
165
+ inputs: [],
166
+ name: "FeeTransferFailed",
167
+ type: "error",
168
+ },
169
+ {
170
+ inputs: [
171
+ {
172
+ internalType: "uint256",
173
+ name: "available",
174
+ type: "uint256",
175
+ },
176
+ ],
177
+ name: "InsufficientEthForLiquidity",
178
+ type: "error",
179
+ },
180
+ {
181
+ inputs: [
182
+ {
183
+ internalType: "address",
184
+ name: "owner",
185
+ type: "address",
186
+ },
187
+ {
188
+ internalType: "uint256",
189
+ name: "required",
190
+ type: "uint256",
191
+ },
192
+ {
193
+ internalType: "uint256",
194
+ name: "available",
195
+ type: "uint256",
196
+ },
197
+ ],
198
+ name: "InsufficientTokenBalance",
199
+ type: "error",
200
+ },
201
+ {
202
+ inputs: [
203
+ {
204
+ internalType: "uint256",
205
+ name: "value",
206
+ type: "uint256",
207
+ },
208
+ ],
209
+ name: "InvalidCurveExponent",
210
+ type: "error",
211
+ },
212
+ {
213
+ inputs: [
214
+ {
215
+ internalType: "enum Status",
216
+ name: "currentPhase",
217
+ type: "uint8",
218
+ },
219
+ {
220
+ internalType: "enum Status",
221
+ name: "requiredPhase",
222
+ type: "uint8",
223
+ },
224
+ ],
225
+ name: "InvalidPhaseForAction",
226
+ type: "error",
227
+ },
228
+ {
229
+ inputs: [],
230
+ name: "NoTokensForLiquidity",
231
+ type: "error",
232
+ },
233
+ {
234
+ inputs: [
235
+ {
236
+ internalType: "address",
237
+ name: "owner",
238
+ type: "address",
239
+ },
240
+ ],
241
+ name: "OwnableInvalidOwner",
242
+ type: "error",
243
+ },
244
+ {
245
+ inputs: [
246
+ {
247
+ internalType: "address",
248
+ name: "account",
249
+ type: "address",
250
+ },
251
+ ],
252
+ name: "OwnableUnauthorizedAccount",
253
+ type: "error",
254
+ },
255
+ {
256
+ inputs: [
257
+ {
258
+ internalType: "uint256",
259
+ name: "x",
260
+ type: "uint256",
261
+ },
262
+ {
263
+ internalType: "uint256",
264
+ name: "y",
265
+ type: "uint256",
266
+ },
267
+ ],
268
+ name: "PRBMath_MulDiv18_Overflow",
269
+ type: "error",
270
+ },
271
+ {
272
+ inputs: [
273
+ {
274
+ internalType: "uint256",
275
+ name: "x",
276
+ type: "uint256",
277
+ },
278
+ {
279
+ internalType: "uint256",
280
+ name: "y",
281
+ type: "uint256",
282
+ },
283
+ {
284
+ internalType: "uint256",
285
+ name: "denominator",
286
+ type: "uint256",
287
+ },
288
+ ],
289
+ name: "PRBMath_MulDiv_Overflow",
290
+ type: "error",
291
+ },
292
+ {
293
+ inputs: [
294
+ {
295
+ internalType: "UD60x18",
296
+ name: "x",
297
+ type: "uint256",
298
+ },
299
+ ],
300
+ name: "PRBMath_UD60x18_Exp2_InputTooBig",
301
+ type: "error",
302
+ },
303
+ {
304
+ inputs: [
305
+ {
306
+ internalType: "UD60x18",
307
+ name: "x",
308
+ type: "uint256",
309
+ },
310
+ ],
311
+ name: "PRBMath_UD60x18_Log_InputTooSmall",
312
+ type: "error",
313
+ },
314
+ {
315
+ inputs: [],
316
+ name: "ReentrancyGuardReentrantCall",
317
+ type: "error",
318
+ },
319
+ {
320
+ inputs: [
321
+ {
322
+ internalType: "uint256",
323
+ name: "ethToUser",
324
+ type: "uint256",
325
+ },
326
+ {
327
+ internalType: "uint256",
328
+ name: "minEthOut",
329
+ type: "uint256",
330
+ },
331
+ ],
332
+ name: "SlippageProtectionEth",
333
+ type: "error",
334
+ },
335
+ {
336
+ inputs: [
337
+ {
338
+ internalType: "uint256",
339
+ name: "tokensToMint",
340
+ type: "uint256",
341
+ },
342
+ {
343
+ internalType: "uint256",
344
+ name: "minTokensOut",
345
+ type: "uint256",
346
+ },
347
+ ],
348
+ name: "SlippageProtectionTokens",
349
+ type: "error",
350
+ },
351
+ {
352
+ inputs: [],
353
+ name: "TokenAmountMustBePositive",
354
+ type: "error",
355
+ },
356
+ {
357
+ inputs: [],
358
+ name: "TradingDisabledDexPhaseActive",
359
+ type: "error",
360
+ },
361
+ {
362
+ inputs: [
363
+ {
364
+ internalType: "uint256",
365
+ name: "value",
366
+ type: "uint256",
367
+ },
368
+ ],
369
+ name: "ValidationInvalidAggressivenessFactor",
370
+ type: "error",
371
+ },
372
+ {
373
+ inputs: [
374
+ {
375
+ internalType: "address",
376
+ name: "providedAddress",
377
+ type: "address",
378
+ },
379
+ ],
380
+ name: "ValidationInvalidFeeRecipientAddress",
381
+ type: "error",
382
+ },
383
+ {
384
+ inputs: [
385
+ {
386
+ internalType: "uint256",
387
+ name: "value",
388
+ type: "uint256",
389
+ },
390
+ ],
391
+ name: "ValidationInvalidFinalTokenSupply",
392
+ type: "error",
393
+ },
394
+ {
395
+ inputs: [
396
+ {
397
+ internalType: "uint256",
398
+ name: "value",
399
+ type: "uint256",
400
+ },
401
+ ],
402
+ name: "ValidationInvalidLPSplitRatio",
403
+ type: "error",
404
+ },
405
+ {
406
+ inputs: [
407
+ {
408
+ internalType: "address",
409
+ name: "providedAddress",
410
+ type: "address",
411
+ },
412
+ ],
413
+ name: "ValidationInvalidMigrationAdminAddress",
414
+ type: "error",
415
+ },
416
+ {
417
+ inputs: [
418
+ {
419
+ internalType: "address",
420
+ name: "providedAddress",
421
+ type: "address",
422
+ },
423
+ ],
424
+ name: "ValidationInvalidRouterAddress",
425
+ type: "error",
426
+ },
427
+ {
428
+ anonymous: false,
429
+ inputs: [
430
+ {
431
+ indexed: true,
432
+ internalType: "address",
433
+ name: "owner",
434
+ type: "address",
435
+ },
436
+ {
437
+ indexed: true,
438
+ internalType: "address",
439
+ name: "spender",
440
+ type: "address",
441
+ },
442
+ {
443
+ indexed: false,
444
+ internalType: "uint256",
445
+ name: "value",
446
+ type: "uint256",
447
+ },
448
+ ],
449
+ name: "Approval",
450
+ type: "event",
451
+ },
452
+ {
453
+ anonymous: false,
454
+ inputs: [
455
+ {
456
+ indexed: true,
457
+ internalType: "address",
458
+ name: "payer",
459
+ type: "address",
460
+ },
461
+ {
462
+ indexed: true,
463
+ internalType: "address",
464
+ name: "recipient",
465
+ type: "address",
466
+ },
467
+ {
468
+ indexed: false,
469
+ internalType: "uint256",
470
+ name: "ethIn",
471
+ type: "uint256",
472
+ },
473
+ {
474
+ indexed: false,
475
+ internalType: "uint256",
476
+ name: "tokensOut",
477
+ type: "uint256",
478
+ },
479
+ {
480
+ indexed: false,
481
+ internalType: "uint256",
482
+ name: "fee",
483
+ type: "uint256",
484
+ },
485
+ {
486
+ indexed: false,
487
+ internalType: "uint256",
488
+ name: "totalEthRaisedBonding",
489
+ type: "uint256",
490
+ },
491
+ ],
492
+ name: "BondingCurveBuy",
493
+ type: "event",
494
+ },
495
+ {
496
+ anonymous: false,
497
+ inputs: [
498
+ {
499
+ indexed: true,
500
+ internalType: "address",
501
+ name: "seller",
502
+ type: "address",
503
+ },
504
+ {
505
+ indexed: false,
506
+ internalType: "uint256",
507
+ name: "tokensIn",
508
+ type: "uint256",
509
+ },
510
+ {
511
+ indexed: false,
512
+ internalType: "uint256",
513
+ name: "ethOut",
514
+ type: "uint256",
515
+ },
516
+ {
517
+ indexed: false,
518
+ internalType: "uint256",
519
+ name: "fee",
520
+ type: "uint256",
521
+ },
522
+ {
523
+ indexed: false,
524
+ internalType: "uint256",
525
+ name: "totalEthRaisedBonding",
526
+ type: "uint256",
527
+ },
528
+ ],
529
+ name: "BondingCurveSell",
530
+ type: "event",
531
+ },
532
+ {
533
+ anonymous: false,
534
+ inputs: [
535
+ {
536
+ indexed: true,
537
+ internalType: "address",
538
+ name: "initializer",
539
+ type: "address",
540
+ },
541
+ {
542
+ indexed: false,
543
+ internalType: "string",
544
+ name: "name",
545
+ type: "string",
546
+ },
547
+ {
548
+ indexed: false,
549
+ internalType: "string",
550
+ name: "symbol",
551
+ type: "string",
552
+ },
553
+ {
554
+ indexed: false,
555
+ internalType: "address",
556
+ name: "feeRecipient",
557
+ type: "address",
558
+ },
559
+ {
560
+ indexed: false,
561
+ internalType: "uint256",
562
+ name: "finalTokenSupply",
563
+ type: "uint256",
564
+ },
565
+ {
566
+ indexed: false,
567
+ internalType: "uint8",
568
+ name: "aggressivenessFactor",
569
+ type: "uint8",
570
+ },
571
+ {
572
+ indexed: false,
573
+ internalType: "uint256",
574
+ name: "lpSplitRatioFeeRecipientBps",
575
+ type: "uint256",
576
+ },
577
+ {
578
+ indexed: false,
579
+ internalType: "uint256",
580
+ name: "targetEth",
581
+ type: "uint256",
582
+ },
583
+ ],
584
+ name: "BondkitTokenInitialized",
585
+ type: "event",
586
+ },
587
+ {
588
+ anonymous: false,
589
+ inputs: [
590
+ {
591
+ indexed: false,
592
+ internalType: "uint256",
593
+ name: "ethForLp",
594
+ type: "uint256",
595
+ },
596
+ {
597
+ indexed: false,
598
+ internalType: "uint256",
599
+ name: "tokensForLp",
600
+ type: "uint256",
601
+ },
602
+ {
603
+ indexed: false,
604
+ internalType: "uint256",
605
+ name: "ethForFeeRecipient",
606
+ type: "uint256",
607
+ },
608
+ ],
609
+ name: "BondkitTokenMigrated",
610
+ type: "event",
611
+ },
612
+ {
613
+ anonymous: false,
614
+ inputs: [
615
+ {
616
+ indexed: true,
617
+ internalType: "address",
618
+ name: "previousOwner",
619
+ type: "address",
620
+ },
621
+ {
622
+ indexed: true,
623
+ internalType: "address",
624
+ name: "newOwner",
625
+ type: "address",
626
+ },
627
+ ],
628
+ name: "OwnershipTransferred",
629
+ type: "event",
630
+ },
631
+ {
632
+ anonymous: false,
633
+ inputs: [
634
+ {
635
+ indexed: true,
636
+ internalType: "address",
637
+ name: "from",
638
+ type: "address",
639
+ },
640
+ {
641
+ indexed: true,
642
+ internalType: "address",
643
+ name: "to",
644
+ type: "address",
645
+ },
646
+ {
647
+ indexed: false,
648
+ internalType: "uint256",
649
+ name: "value",
650
+ type: "uint256",
651
+ },
652
+ ],
653
+ name: "Transfer",
654
+ type: "event",
655
+ },
656
+ {
657
+ inputs: [
658
+ {
659
+ internalType: "address",
660
+ name: "owner",
661
+ type: "address",
662
+ },
663
+ {
664
+ internalType: "address",
665
+ name: "spender",
666
+ type: "address",
667
+ },
668
+ ],
669
+ name: "allowance",
670
+ outputs: [
671
+ {
672
+ internalType: "uint256",
673
+ name: "",
674
+ type: "uint256",
675
+ },
676
+ ],
677
+ stateMutability: "view",
678
+ type: "function",
679
+ },
680
+ {
681
+ inputs: [
682
+ {
683
+ internalType: "address",
684
+ name: "spender",
685
+ type: "address",
686
+ },
687
+ {
688
+ internalType: "uint256",
689
+ name: "value",
690
+ type: "uint256",
691
+ },
692
+ ],
693
+ name: "approve",
694
+ outputs: [
695
+ {
696
+ internalType: "bool",
697
+ name: "",
698
+ type: "bool",
699
+ },
700
+ ],
701
+ stateMutability: "nonpayable",
702
+ type: "function",
703
+ },
704
+ {
705
+ inputs: [
706
+ {
707
+ internalType: "address",
708
+ name: "account",
709
+ type: "address",
710
+ },
711
+ ],
712
+ name: "balanceOf",
713
+ outputs: [
714
+ {
715
+ internalType: "uint256",
716
+ name: "",
717
+ type: "uint256",
718
+ },
719
+ ],
720
+ stateMutability: "view",
721
+ type: "function",
722
+ },
723
+ {
724
+ inputs: [
725
+ {
726
+ internalType: "uint256",
727
+ name: "_minTokensOut",
728
+ type: "uint256",
729
+ },
730
+ ],
731
+ name: "buy",
732
+ outputs: [],
733
+ stateMutability: "payable",
734
+ type: "function",
735
+ },
736
+ {
737
+ inputs: [
738
+ {
739
+ internalType: "address",
740
+ name: "_recipient",
741
+ type: "address",
742
+ },
743
+ {
744
+ internalType: "uint256",
745
+ name: "_minTokensOut",
746
+ type: "uint256",
747
+ },
748
+ ],
749
+ name: "buyFor",
750
+ outputs: [],
751
+ stateMutability: "payable",
752
+ type: "function",
753
+ },
754
+ {
755
+ inputs: [],
756
+ name: "circulatingSupply",
757
+ outputs: [
758
+ {
759
+ internalType: "uint256",
760
+ name: "",
761
+ type: "uint256",
762
+ },
763
+ ],
764
+ stateMutability: "view",
765
+ type: "function",
766
+ },
767
+ {
768
+ inputs: [],
769
+ name: "currentStatus",
770
+ outputs: [
771
+ {
772
+ internalType: "enum Status",
773
+ name: "",
774
+ type: "uint8",
775
+ },
776
+ ],
777
+ stateMutability: "view",
778
+ type: "function",
779
+ },
780
+ {
781
+ inputs: [],
782
+ name: "decimals",
783
+ outputs: [
784
+ {
785
+ internalType: "uint8",
786
+ name: "",
787
+ type: "uint8",
788
+ },
789
+ ],
790
+ stateMutability: "view",
791
+ type: "function",
792
+ },
793
+ {
794
+ inputs: [],
795
+ name: "feeRecipient",
796
+ outputs: [
797
+ {
798
+ internalType: "address",
799
+ name: "",
800
+ type: "address",
801
+ },
802
+ ],
803
+ stateMutability: "view",
804
+ type: "function",
805
+ },
806
+ {
807
+ inputs: [],
808
+ name: "finalTokenSupply",
809
+ outputs: [
810
+ {
811
+ internalType: "uint256",
812
+ name: "",
813
+ type: "uint256",
814
+ },
815
+ ],
816
+ stateMutability: "view",
817
+ type: "function",
818
+ },
819
+ {
820
+ inputs: [
821
+ {
822
+ internalType: "uint256",
823
+ name: "_tokenAmount",
824
+ type: "uint256",
825
+ },
826
+ ],
827
+ name: "getAmountOfEthToSell",
828
+ outputs: [
829
+ {
830
+ internalType: "uint256",
831
+ name: "ethToUser",
832
+ type: "uint256",
833
+ },
834
+ ],
835
+ stateMutability: "view",
836
+ type: "function",
837
+ },
838
+ {
839
+ inputs: [
840
+ {
841
+ internalType: "uint256",
842
+ name: "_ethAmount",
843
+ type: "uint256",
844
+ },
845
+ ],
846
+ name: "getAmountOfTokensToBuy",
847
+ outputs: [
848
+ {
849
+ internalType: "uint256",
850
+ name: "tokensToMint",
851
+ type: "uint256",
852
+ },
853
+ ],
854
+ stateMutability: "view",
855
+ type: "function",
856
+ },
857
+ {
858
+ inputs: [],
859
+ name: "getBondingCurveConfig",
860
+ outputs: [
861
+ {
862
+ internalType: "uint256",
863
+ name: "num",
864
+ type: "uint256",
865
+ },
866
+ {
867
+ internalType: "uint256",
868
+ name: "den",
869
+ type: "uint256",
870
+ },
871
+ ],
872
+ stateMutability: "view",
873
+ type: "function",
874
+ },
875
+ {
876
+ inputs: [],
877
+ name: "getBondingProgressPercent",
878
+ outputs: [
879
+ {
880
+ internalType: "uint256",
881
+ name: "progressBps",
882
+ type: "uint256",
883
+ },
884
+ {
885
+ internalType: "uint256",
886
+ name: "raised",
887
+ type: "uint256",
888
+ },
889
+ {
890
+ internalType: "uint256",
891
+ name: "threshold",
892
+ type: "uint256",
893
+ },
894
+ ],
895
+ stateMutability: "view",
896
+ type: "function",
897
+ },
898
+ {
899
+ inputs: [],
900
+ name: "getCurrentBondingCurvePricePerToken",
901
+ outputs: [
902
+ {
903
+ internalType: "uint256",
904
+ name: "currentPriceWei",
905
+ type: "uint256",
906
+ },
907
+ ],
908
+ stateMutability: "view",
909
+ type: "function",
910
+ },
911
+ {
912
+ inputs: [],
913
+ name: "getCurrentPhase",
914
+ outputs: [
915
+ {
916
+ internalType: "string",
917
+ name: "phase",
918
+ type: "string",
919
+ },
920
+ ],
921
+ stateMutability: "view",
922
+ type: "function",
923
+ },
924
+ {
925
+ inputs: [],
926
+ name: "getCurrentStatusEnum",
927
+ outputs: [
928
+ {
929
+ internalType: "enum Status",
930
+ name: "",
931
+ type: "uint8",
932
+ },
933
+ ],
934
+ stateMutability: "view",
935
+ type: "function",
936
+ },
937
+ {
938
+ inputs: [],
939
+ name: "getFeeRecipient",
940
+ outputs: [
941
+ {
942
+ internalType: "address",
943
+ name: "",
944
+ type: "address",
945
+ },
946
+ ],
947
+ stateMutability: "view",
948
+ type: "function",
949
+ },
950
+ {
951
+ inputs: [],
952
+ name: "getLPSplitRatioFeeRecipientBps",
953
+ outputs: [
954
+ {
955
+ internalType: "uint256",
956
+ name: "",
957
+ type: "uint256",
958
+ },
959
+ ],
960
+ stateMutability: "view",
961
+ type: "function",
962
+ },
963
+ {
964
+ inputs: [
965
+ {
966
+ internalType: "uint256",
967
+ name: "_startIndex",
968
+ type: "uint256",
969
+ },
970
+ {
971
+ internalType: "uint256",
972
+ name: "_count",
973
+ type: "uint256",
974
+ },
975
+ ],
976
+ name: "getPaginatedHolders",
977
+ outputs: [
978
+ {
979
+ internalType: "address[]",
980
+ name: "holders",
981
+ type: "address[]",
982
+ },
983
+ {
984
+ internalType: "uint256[]",
985
+ name: "balances",
986
+ type: "uint256[]",
987
+ },
988
+ ],
989
+ stateMutability: "view",
990
+ type: "function",
991
+ },
992
+ {
993
+ inputs: [],
994
+ name: "getTargetEth",
995
+ outputs: [
996
+ {
997
+ internalType: "uint256",
998
+ name: "",
999
+ type: "uint256",
1000
+ },
1001
+ ],
1002
+ stateMutability: "view",
1003
+ type: "function",
1004
+ },
1005
+ {
1006
+ inputs: [],
1007
+ name: "getUniswapV2Router",
1008
+ outputs: [
1009
+ {
1010
+ internalType: "address",
1011
+ name: "",
1012
+ type: "address",
1013
+ },
1014
+ ],
1015
+ stateMutability: "view",
1016
+ type: "function",
1017
+ },
1018
+ {
1019
+ inputs: [
1020
+ {
1021
+ internalType: "address",
1022
+ name: "user",
1023
+ type: "address",
1024
+ },
1025
+ ],
1026
+ name: "getUserQuote",
1027
+ outputs: [
1028
+ {
1029
+ internalType: "uint256",
1030
+ name: "balance",
1031
+ type: "uint256",
1032
+ },
1033
+ {
1034
+ internalType: "uint256",
1035
+ name: "tokensFor1Eth",
1036
+ type: "uint256",
1037
+ },
1038
+ {
1039
+ internalType: "uint256",
1040
+ name: "ethFor1Token",
1041
+ type: "uint256",
1042
+ },
1043
+ ],
1044
+ stateMutability: "view",
1045
+ type: "function",
1046
+ },
1047
+ {
1048
+ inputs: [
1049
+ {
1050
+ components: [
1051
+ {
1052
+ internalType: "string",
1053
+ name: "name",
1054
+ type: "string",
1055
+ },
1056
+ {
1057
+ internalType: "string",
1058
+ name: "symbol",
1059
+ type: "string",
1060
+ },
1061
+ {
1062
+ internalType: "address",
1063
+ name: "feeRecipient",
1064
+ type: "address",
1065
+ },
1066
+ {
1067
+ internalType: "uint256",
1068
+ name: "finalTokenSupply",
1069
+ type: "uint256",
1070
+ },
1071
+ {
1072
+ internalType: "uint8",
1073
+ name: "aggressivenessFactor",
1074
+ type: "uint8",
1075
+ },
1076
+ {
1077
+ internalType: "uint256",
1078
+ name: "lpSplitRatioFeeRecipientBps",
1079
+ type: "uint256",
1080
+ },
1081
+ {
1082
+ internalType: "uint256",
1083
+ name: "targetEth",
1084
+ type: "uint256",
1085
+ },
1086
+ {
1087
+ internalType: "address",
1088
+ name: "uniswapV2RouterAddress",
1089
+ type: "address",
1090
+ },
1091
+ {
1092
+ internalType: "address",
1093
+ name: "migrationAdminAddress",
1094
+ type: "address",
1095
+ },
1096
+ ],
1097
+ internalType: "struct BondkitTokenConfigLib.Config",
1098
+ name: "_config",
1099
+ type: "tuple",
1100
+ },
1101
+ ],
1102
+ name: "initialize",
1103
+ outputs: [
1104
+ {
1105
+ internalType: "bool",
1106
+ name: "success",
1107
+ type: "bool",
1108
+ },
1109
+ ],
1110
+ stateMutability: "nonpayable",
1111
+ type: "function",
1112
+ },
1113
+ {
1114
+ inputs: [],
1115
+ name: "lpSplitRatioFeeRecipientBps",
1116
+ outputs: [
1117
+ {
1118
+ internalType: "uint256",
1119
+ name: "",
1120
+ type: "uint256",
1121
+ },
1122
+ ],
1123
+ stateMutability: "view",
1124
+ type: "function",
1125
+ },
1126
+ {
1127
+ inputs: [],
1128
+ name: "migrateToDex",
1129
+ outputs: [],
1130
+ stateMutability: "nonpayable",
1131
+ type: "function",
1132
+ },
1133
+ {
1134
+ inputs: [],
1135
+ name: "name",
1136
+ outputs: [
1137
+ {
1138
+ internalType: "string",
1139
+ name: "",
1140
+ type: "string",
1141
+ },
1142
+ ],
1143
+ stateMutability: "view",
1144
+ type: "function",
1145
+ },
1146
+ {
1147
+ inputs: [],
1148
+ name: "owner",
1149
+ outputs: [
1150
+ {
1151
+ internalType: "address",
1152
+ name: "",
1153
+ type: "address",
1154
+ },
1155
+ ],
1156
+ stateMutability: "view",
1157
+ type: "function",
1158
+ },
1159
+ {
1160
+ inputs: [],
1161
+ name: "renounceOwnership",
1162
+ outputs: [],
1163
+ stateMutability: "nonpayable",
1164
+ type: "function",
1165
+ },
1166
+ {
1167
+ inputs: [],
1168
+ name: "scaledCurveExponent",
1169
+ outputs: [
1170
+ {
1171
+ internalType: "UD60x18",
1172
+ name: "",
1173
+ type: "uint256",
1174
+ },
1175
+ ],
1176
+ stateMutability: "view",
1177
+ type: "function",
1178
+ },
1179
+ {
1180
+ inputs: [
1181
+ {
1182
+ internalType: "uint256",
1183
+ name: "_tokenAmount",
1184
+ type: "uint256",
1185
+ },
1186
+ {
1187
+ internalType: "uint256",
1188
+ name: "_minEthOut",
1189
+ type: "uint256",
1190
+ },
1191
+ ],
1192
+ name: "sell",
1193
+ outputs: [],
1194
+ stateMutability: "nonpayable",
1195
+ type: "function",
1196
+ },
1197
+ {
1198
+ inputs: [],
1199
+ name: "symbol",
1200
+ outputs: [
1201
+ {
1202
+ internalType: "string",
1203
+ name: "",
1204
+ type: "string",
1205
+ },
1206
+ ],
1207
+ stateMutability: "view",
1208
+ type: "function",
1209
+ },
1210
+ {
1211
+ inputs: [],
1212
+ name: "targetEth",
1213
+ outputs: [
1214
+ {
1215
+ internalType: "uint256",
1216
+ name: "",
1217
+ type: "uint256",
1218
+ },
1219
+ ],
1220
+ stateMutability: "view",
1221
+ type: "function",
1222
+ },
1223
+ {
1224
+ inputs: [],
1225
+ name: "totalEthRaisedBonding",
1226
+ outputs: [
1227
+ {
1228
+ internalType: "uint256",
1229
+ name: "",
1230
+ type: "uint256",
1231
+ },
1232
+ ],
1233
+ stateMutability: "view",
1234
+ type: "function",
1235
+ },
1236
+ {
1237
+ inputs: [],
1238
+ name: "totalSupply",
1239
+ outputs: [
1240
+ {
1241
+ internalType: "uint256",
1242
+ name: "",
1243
+ type: "uint256",
1244
+ },
1245
+ ],
1246
+ stateMutability: "view",
1247
+ type: "function",
1248
+ },
1249
+ {
1250
+ inputs: [
1251
+ {
1252
+ internalType: "address",
1253
+ name: "to",
1254
+ type: "address",
1255
+ },
1256
+ {
1257
+ internalType: "uint256",
1258
+ name: "value",
1259
+ type: "uint256",
1260
+ },
1261
+ ],
1262
+ name: "transfer",
1263
+ outputs: [
1264
+ {
1265
+ internalType: "bool",
1266
+ name: "",
1267
+ type: "bool",
1268
+ },
1269
+ ],
1270
+ stateMutability: "nonpayable",
1271
+ type: "function",
1272
+ },
1273
+ {
1274
+ inputs: [
1275
+ {
1276
+ internalType: "address",
1277
+ name: "from",
1278
+ type: "address",
1279
+ },
1280
+ {
1281
+ internalType: "address",
1282
+ name: "to",
1283
+ type: "address",
1284
+ },
1285
+ {
1286
+ internalType: "uint256",
1287
+ name: "value",
1288
+ type: "uint256",
1289
+ },
1290
+ ],
1291
+ name: "transferFrom",
1292
+ outputs: [
1293
+ {
1294
+ internalType: "bool",
1295
+ name: "",
1296
+ type: "bool",
1297
+ },
1298
+ ],
1299
+ stateMutability: "nonpayable",
1300
+ type: "function",
1301
+ },
1302
+ {
1303
+ inputs: [
1304
+ {
1305
+ internalType: "address",
1306
+ name: "newOwner",
1307
+ type: "address",
1308
+ },
1309
+ ],
1310
+ name: "transferOwnership",
1311
+ outputs: [],
1312
+ stateMutability: "nonpayable",
1313
+ type: "function",
1314
+ },
1315
+ {
1316
+ inputs: [],
1317
+ name: "uniswapV2Router",
1318
+ outputs: [
1319
+ {
1320
+ internalType: "contract IUniswapV2Router02",
1321
+ name: "",
1322
+ type: "address",
1323
+ },
1324
+ ],
1325
+ stateMutability: "view",
1326
+ type: "function",
1327
+ },
1328
+ {
1329
+ stateMutability: "payable",
1330
+ type: "receive",
1331
+ },
1332
+ ];