ADR-004 Solana Integration
Status
Research
Context
The objective is to enable cross-chain transfers of SOL tokens using our bridge.
Requirements
- Int3face full-node
- Int3face Observer (with Int3face and Solana clients)
- Access to Solana RPC (either an own node or a third-party provider)
- Smart contract/vault on Solana
Approach
The flow should be pretty straightforward:
SOL -> INT3
- User deposits SOL tokens into the Solana smart contract/vault
- The Solana observer detects the deposit and signals Int3face about it
- Int3face waits for the confirmation count threshold
- Int3face mints the equivalent SOL tokens to the recipient's address
INT3 -> SOL
- User initiates an outbound transfer request on Int3face
- The Int3face observer detects the request and signals the Solana smart-contract about it
- The Solana smart contract waits for the confirmation count threshold
- The Solana smart contract releases the tokens to the recipient's address
Solana smart-contract/Vault
State
- List of signers
- Only these signers can acknowledge inbound transfer requests
- List of pending inbound transfers
- Amount of SOL tokens in the vault (maybe managed automatically)
- Internal parameters
- Minimum transfer size
- Confirmations required
API
- Inbound Transfer { recipient, amount }
- Acknowledges inbound transfer requests
- Counts the confirmations
- Releases tokens to the recipient's address once the confirmation threshold reached
- Outbound Transfer { sender, recipient, amount }
- Creates a transaction on-chain for the observers to witness
- Add Signer { signer_address }
- Adds a new signer to the signers pool
- Accessible only by the authority entity
- Remove Signer { signer_address }
- Removes a signer from the signers pool
- Accessible only by the authority entity
- Methods to modify internal parameters (minimum transfer size, confirmations required)
Steps to implement
- Research Solana smart contract development
- Implement the smart contract/vault on Solana
- Deploy the smart contract on Solana
- Implement the Solana Chain Client (RPC + observer)
- Integrate the Solana Chain Client into the Observer
- Add the new asset and parameters for Solana to the Bridge module