Last active
April 30, 2020 21:04
-
-
Save erin-koen/d8963863febe0b4fc8ecc6a638786916 to your computer and use it in GitHub Desktop.
The Melon Bot's Environment Configuration
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { DeployedEnvironment } from '@melonproject/melonjs'; | |
import { Eth } from 'web3-eth'; | |
import { HttpProvider, WebsocketProvider, HttpProviderOptions, WebsocketProviderOptions } from 'web3-providers'; | |
import deployment from '../deployments/mainnet-deployment.json'; | |
function createProvider(endpoint: string, options?: HttpProviderOptions | WebsocketProviderOptions) { | |
if (endpoint.startsWith('https://') || endpoint.startsWith('http://')) { | |
return new HttpProvider(endpoint, options as HttpProviderOptions); | |
} | |
if (endpoint.startsWith('wss://') || endpoint.startsWith('ws://')) { | |
return new WebsocketProvider(endpoint, options as WebsocketProviderOptions); | |
} | |
throw new Error('Invalid endpoint protocol.'); | |
} | |
export function createEnvironment() { | |
const provider = createProvider(process.env.PROVIDER_ENDPOINT); | |
const client = new Eth(provider, undefined, { | |
transactionConfirmationBlocks: 1, | |
}); | |
const wallet = client.accounts.privateKeyToAccount(process.env.ETH_PRIVATE_KEY); | |
client.accounts.wallet.add(wallet); | |
return new DeployedEnvironment(client, 1, deployment as any); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment