RETURN (object) Returns an instance of the Belugas.js SDK.
var belugas = new Belugas(window.ethereum); // web browser
var belugas = new Belugas('http://127.0.0.1:8545'); // HTTP provider
var belugas = new Belugas(); // Uses Ethers.js fallback mainnet (for testing only)
var belugas = new Belugas('ropsten'); // Uses Ethers.js fallback (for testing only)
// Init with private key (server side)
var belugas = new Belugas('https://mainnet.infura.io/v3/_your_project_id_', {
privateKey: '0x_your_private_key_', // preferably with environment variable
});
// Init with HD mnemonic (server side)
var belugas = new Belugas('mainnet' {
mnemonic: 'clutch captain shoe...', // preferably with environment variable
});