@swapkit/helpers 1.0.0-rc.69 → 1.0.0-rc.70

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.
@@ -64,8 +64,8 @@ export const getMemoFor = <T extends MemoType>(memoType: T, options: MemoOptions
64
64
  };
65
65
 
66
66
  return singleSide
67
- ? `${memoType}:${chain}/${symbol}::t:0`
68
- : `${memoType}:${getPoolIdentifier(chain, symbol)}:${address || ''}:t:0`;
67
+ ? `${memoType}:${chain}/${symbol}`
68
+ : `${memoType}:${getPoolIdentifier(chain, symbol)}:${address || ''}`;
69
69
  }
70
70
 
71
71
  case MemoType.WITHDRAW: {