A brief overview of the Go Fast Transfer system
submitOrder
function on the protocol contract on your current blockchain (source chain). In this step, you specify the assets, any message you want to send, and the address on the destination chain. This information is then broadcasted as an intent.
Permissionless participants called solvers, who watch for these intents, ingest the event emitted from the Go Fast contracts. When they see the intent submitted, they evaluate whether they can fulfill the intent based on their resources on the destination chain and the potential reward for fulfilling it. If a solver agrees to fulfill the intent, they call the fillOrder
function on the protocol contract deployed on the destination chain.
This step transfers the specified assets and processes any additional actions, like executing a contract call with the provided message payload. From your perspective, the assets or messages appear on the destination chain almost instantly, marking the transfer as complete.
After fulfilling the transfer, the solver seeks to recover the assets they fronted, plus any earned fees. They do this by calling the initiateSettlement
function on the destination chain’s Go Fast smart contract, listing the intents they fulfilled. The protocol verifies the solver’s actions, then sends a secure message back to the source chain through a cross-chain messaging system.
A relayer delivers this message to the source chain, where the settle function on the protocol contract verifies the solver’s fulfillment of each intent. Once confirmed, the solver receives back the assets they provided and any earned fees on the source chain.
Source Chain | Minimum Transfer Size (in USD) | Maximum Transfer Size (in USD) |
---|---|---|
Ethereum Mainnet | 50 | 25,000 |
Arbitrum | 1 | 25,000 |
Avalanche | 1 | 25,000 |
Base | 1 | 25,000 |
Optimism | 1 | 25,000 |
Polygon | 1 | 25,000 |
@skip-go/client
, see the Advanced Features guide.
If you’re using the Widget, refer to the Widget Configuration.
Note that enabling Go Fast prioritizes speed over lower fees. For more cost-efficient routes, it’s recommended to leave Go Fast disabled.