General
Is there a testnet deployment?
Is there a testnet deployment?
There is no testnet deployment and no plans for one. We recommend testing on NEAR mainnet using separate dev/test NEAR accounts.
Deposits
How does the deposit process work?
How does the deposit process work?
The deposit process begins once the transfer transaction on the foreign network has been completed. When the balance of the user’s unique deposit address becomes positive, our indexer generates a deposit event and assigns it a
PENDING status.The next step is collecting the current tokens in storage. The result of this process will be either a COMPLETED or FAILED status. Deposits with a FAILED status are currently handled manually and eventually updated to the COMPLETED status.On EVM networks, deposits can bypass the PENDING status due to faster processing and transfer completion times.BTC deposits: If you want to make a deposit to an account that hasn’t yet been connected to the application, this is possible but requires caution. You can request a deposit address by calling the bridge API (deposit_address) and specifying the account_id parameter. The account_id can be a NEAR account, an EVM address, or a SOL address to which you have access.Is there support for native NEAR deposits?
Is there support for native NEAR deposits?
Only Here is an example receipt.The
ft_transfer_call can be used to deposit NEP-141 tokens from NEAR to intents.near:msg parameter can also be empty, so that funds will be deposited to sender_id (i.e. the caller of ft_transfer_call). Here is an example of such a transaction.Can deposits be made via custom smart contract calls on EVM chains?
Can deposits be made via custom smart contract calls on EVM chains?
For EVM chains, NEAR Intents does not impose limitations on how deposits are executed at the smart contract level. Our listeners track the chain for:
- ERC-20
Transferevents - Regular or internal native transfers
Transfer event (or performs a native value transfer) to the deposit address, it will be detected—even if it originates from a custom contract method (for example, a custom withdraw() function instead of transfer / transferFrom).Why is tx_hash empty in the recent_deposit response for SOL deposits?
Why is tx_hash empty in the recent_deposit response for SOL deposits?
This information is not available for Solana because the mechanism of deposit tracking works differently on that chain.
Why aren't my BTC UTXOs being swept? I sent a small amount.
Why aren't my BTC UTXOs being swept? I sent a small amount.
Very small amounts (e.g., 5,000 sats) are considered “dust” and there is special business logic to process such small amounts. This may cause delays in sweeping.
ETH Connector Migration
What changed with the ETH connector split?
What changed with the ETH connector split?
Because of the split of ETH-connector, the
aurora contract now acts as a NEP-141 proxy to eth.bridge.near. This leads to some changes:-
All new deposits will be treated as
eth.bridge.near, even if triggered from theaurorasmart contract—even from inside Aurora Mainnet (example tx). All withdrawals of legacyaurorawill be received on NEAR as neweth.bridge.near. -
Migration of already deposited ETH@NEAR (
aurora) can be done permissionlessly by withdrawing fromintents.nearand depositing it back right away. This can be done in a single transaction thanks to this patch on the eth-connector side.
How do I migrate legacy aurora tokens to eth.bridge.near?
How do I migrate legacy aurora tokens to eth.bridge.near?
Users can migrate in two ways:Option 1: Via Option 2: Via
ft_withdraw() transactionExample transaction with the following params:ft_withdraw intentUse the same parameters as above.