Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/core/src/lib/orchestrator/payload-builders.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ export function buildExecuteMulticall({
// Only add ERC-20 transfer for non-native tokens AND when NOT in array multicall mode
// - Native tokens (ETH/SOL) are bridged as native PC on Push Chain, not as PRC-20
// - When execute.data is an array (explicit multicall), user handles fund transfers in their calls
if (!isArrayMulticall) {
if (!isNative && !isArrayMulticall) {
const erc20Transfer = encodeFunctionData({
abi: ERC20_EVM,
functionName: 'transfer',
Expand Down