four-flap-meme-sdk 1.5.66 → 1.5.67

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.
@@ -803,7 +803,8 @@ export function encodeExecute(dest, value, data) {
803
803
  */
804
804
  export function encodeExecuteBatch(dests, values, datas) {
805
805
  const iface = new Interface(SIMPLE_ACCOUNT_ABI);
806
- return iface.encodeFunctionData('executeBatch', [dests, values, datas]);
806
+ // 使用完整签名消除 ethers v6 对重载函数的歧义
807
+ return iface.encodeFunctionData('executeBatch(address[],uint256[],bytes[])', [dests, values, datas]);
807
808
  }
808
809
  /**
809
810
  * 创建 AA 账户管理器
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "four-flap-meme-sdk",
3
- "version": "1.5.66",
3
+ "version": "1.5.67",
4
4
  "description": "SDK for Flap bonding curve and four.meme TokenManager",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",