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