Skip to content

holyaustin/holyaustin-elf-sdk

Repository files navigation

ELF SDK

Build Status License

⚠️ This is a work in progress! ⚠️

This repo provides an SDK for developers to use when interacting with and building on Element smart contracts.

Install

npm install
npm run load-contracts
npm run generate-interfaces

Build

npm run build

Configure

To use the Element SDK you need to configure some env variables. For linux and mac run the following:

  1. Copy elf.default.env
cp elf.default.env elf.env
  1. Update elf.env with your private key and alchemy api key
export MAINNET_PROVIDER_URL=[MAINNET_PROVIDER_URL_HERE]
export GOERLI_PROVIDER_URL=[GOERLI_PROVIDER_URL_HERE]
export PRIVATE_KEY=[PRIVATE_KEY_HERE]
  1. Source the env file
source elf.env

Run Example Script:

npx hardhat run examples/spotPrice.ts --network goerli