optics-multi-provider-community
v0.1.26
Published
multi-provider for Optics
Downloads
25
Keywords
Readme
Optics Provider
Optics Provider is a management system for ethers.js providers and signers that helps developers connect to multiple networks simultaneously. It is part of the Optics project, but may be useful to other multi-chain systems.
This package includes the MultiProvider
, as well as an OpticsContext
for
interacting with deployed Optics systems. The dev, staging, and mainnet Optics
systems have pre-built objects for quick development.
Intended Usage
import * as ethers from 'ethers';
import { mainnet } from 'optics-provider';
// Set up providers and signers
const someEthersProvider = ethers.providers.WsProvider('...');
const someEthersSigner = new AnySigner(...);
mainnet.registerProvider('ethereum', someEthersProvider);
mainnet.registerSigner('ethereum', someEthersSigner);
// We have shortcuts for common provider/signer types
mainnet.registerRpcProvider('celo', 'https://forno.celo.org');
mainnet.registerWalletSigner('celo', '0xabcd...');
// Interact with the Optics Bridge
// Send ETH from ethereum to celo
await mainnet.sendNative(
'ethereum', // source
'celo', // destination
ethers.constants.WeiPerEther, // amount
'0x1234...', // recipient
);
// Send Tokens from celo to ethereum
await mainnet.send(
'celo', // source
'ethereum', // destination
{ domain: 'ethereum', id: "0xabcd..."} // token information
ethers.constants.WeiPerEther, // amount
'0x1234...' // recipient
{ gasLimit: 300_000 } // standard ethers tx overrides
);
// so easy.