-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
52567ba
commit 3c891a6
Showing
2 changed files
with
36 additions
and
7 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
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,7 +1,36 @@ | ||
# SDK | ||
# Numo.ts | ||
|
||
Numo.ts is a TypeScript library for interacting with the Numo marketplace for efficiently buying and selling [European-style](https://en.wikipedia.org/wiki/European_option) call options. | ||
|
||
## Installation | ||
|
||
```bash | ||
npm install --save @numotrade/numo-ts | ||
``` | ||
|
||
## Getting Started | ||
|
||
Instantiate your of Numo using your etheres provider: | ||
|
||
### Examples | ||
|
||
#### Through a RPC Provider (i.e. QuickNode) | ||
|
||
```typescript | ||
import { Numo } from "@numotrade/numo-ts"; | ||
import { ethers } from "ethers"; | ||
|
||
const provider = new ethers.JsonRpcProvider(process.env.RPC_URL); | ||
|
||
const numo = new Numo(provider); | ||
``` | ||
|
||
#### Exercising a ERC-20 call option | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
The Numoen© software development kit (SDK) offers developer tools to interact with various automated market makers and liquidity management protocols on the Ethereum Virtual Machine (EVM). | ||
|
||
- [x] Numoen V1 | ||
- [x] Uniswap V3 | ||
- [x] Panoptic V1 |