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