-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from bonedaddy/misc
cleanup code, update docs
- Loading branch information
Showing
8 changed files
with
228 additions
and
14 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,38 @@ | ||
# go-defi | ||
|
||
a golang sdk for working with DeFi protocols and general utilities for working with ethereum-compatible blockchains. | ||
A golang sdk for working with DeFi protocols and general utilities for working with ethereum-compatible blockchains. | ||
|
||
# packages | ||
|
||
* cli | ||
* config | ||
* database | ||
* sushiswap | ||
* uniswap | ||
* testenv | ||
* utils | ||
|
||
## cli | ||
|
||
cli package | ||
|
||
## config | ||
|
||
configuration management package | ||
|
||
## database | ||
|
||
database management packlage | ||
|
||
## sushiswap | ||
|
||
Wrapper around go-ethereum's `ethclient` package for using sushiswap v2. | ||
|
||
## uniswap | ||
|
||
Wrapper around go-ethereum's `ethclient` package for using uniswap v2. | ||
|
||
## testenv | ||
|
||
Provides a wrapper around the SimulatedBackend allowing for an in-memory blockchain. It is particularly useful for local smart contract development, or developing backend dApps. | ||
|
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
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
This file was deleted.
Oops, something went wrong.
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
// Package utils provides a set of interfaces, helper functions, and authentication management helpers | ||
package utils |