AptosApiError when using aptos.transaction.submit.multiAgent #372
-
Hi team, when using aptos.transaction.submit.multiAgent, it showed the error: POST https://api.devnet.aptoslabs.com/v1/transactions 400 (Bad Request) Tutorial: The code:
How can i do in this case? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
You'll have to create the accounts that sign the function first. await aptos.fundAccount({accountAddress: ownerAccount});
await aptos.fundAccount({accountAddress: bob}); |
Beta Was this translation helpful? Give feedback.
-
anyone know how to solve it ? thanks |
Beta Was this translation helpful? Give feedback.
SENDING_ACCOUNT_DOES_NOT_EXIST
means that the account that is the first signer account does not exist on chain.You'll have to create the accounts that sign the function first.