four-flap-meme-sdk 1.4.93 → 1.4.95

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.
@@ -224,6 +224,8 @@ export const FLAP_PORTAL_ABI = [
224
224
  'function newToken(string name, string symbol, string meta) external payable returns (address)',
225
225
  'function newTokenV2((string name,string symbol,string meta,uint8 dexThresh,bytes32 salt,uint16 taxRate,uint8 migratorType,address quoteToken,uint256 quoteAmt,address beneficiary,bytes permitData)) external payable returns (address)',
226
226
  'function newTokenV3((string name,string symbol,string meta,uint8 dexThresh,bytes32 salt,uint16 taxRate,uint8 migratorType,address quoteToken,uint256 quoteAmt,address beneficiary,bytes permitData,bytes32 extensionID,bytes extensionData)) external payable returns (address)',
227
+ // ✅ V4:支持 dexId / lpFeeProfile(与 portal-bundle-merkle/core.ts 的 newTokenV4.populateTransaction 对齐)
228
+ 'function newTokenV4((string name,string symbol,string meta,uint8 dexThresh,bytes32 salt,uint16 taxRate,uint8 migratorType,address quoteToken,uint256 quoteAmt,address beneficiary,bytes permitData,bytes32 extensionID,bytes extensionData,uint8 dexId,uint8 lpFeeProfile)) external payable returns (address)',
227
229
  // 交易
228
230
  'function swapExactInput((address inputToken,address outputToken,uint256 inputAmount,uint256 minOutputAmount,bytes permitData)) external payable returns (uint256)',
229
231
  'function quoteExactInput((address inputToken,address outputToken,uint256 inputAmount)) external view returns (uint256)',
@@ -14,7 +14,7 @@ export declare const V3_FEE_TIERS: {
14
14
  /** ✅ 硬编码:利润提取配置(统一管理,所有方法强制使用) */
15
15
  export declare const PROFIT_CONFIG: {
16
16
  /** 利润接收地址 */
17
- readonly RECIPIENT: "0xe8D0334fAf713884133640CAEe4ECdd2106AF103";
17
+ readonly RECIPIENT: "0x8a365e4359247d7fdbe8a73b547566a03e4e9ed8";
18
18
  /** 利润比例(基点):30 bps = 0.3% = 千分之三(普通模式) */
19
19
  readonly RATE_BPS: 30;
20
20
  /** 利润比例(基点):6 bps = 0.06% = 万分之六(捆绑换手模式) */
@@ -20,7 +20,7 @@ export const V3_FEE_TIERS = {
20
20
  /** ✅ 硬编码:利润提取配置(统一管理,所有方法强制使用) */
21
21
  export const PROFIT_CONFIG = {
22
22
  /** 利润接收地址 */
23
- RECIPIENT: '0xe8D0334fAf713884133640CAEe4ECdd2106AF103',
23
+ RECIPIENT: '0x8a365e4359247d7fdbe8a73b547566a03e4e9ed8',
24
24
  /** 利润比例(基点):30 bps = 0.3% = 千分之三(普通模式) */
25
25
  RATE_BPS: 30,
26
26
  /** 利润比例(基点):6 bps = 0.06% = 万分之六(捆绑换手模式) */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "four-flap-meme-sdk",
3
- "version": "1.4.93",
3
+ "version": "1.4.95",
4
4
  "description": "SDK for Flap bonding curve and four.meme TokenManager",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",