Skip to content

Commit

Permalink
chore: updated readme with examples
Browse files Browse the repository at this point in the history
  • Loading branch information
robertleifke committed Nov 2, 2024
1 parent 52567ba commit 3c891a6
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"editor.defaultFormatter": "biomejs.biome"
},
"editor.codeActionsOnSave": {
"source.organizeImports.biome": true,
"quickfix.biome": true
"source.organizeImports.biome": "explicit",
"quickfix.biome": "explicit"
}
}
39 changes: 34 additions & 5 deletions README.md
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

0 comments on commit 3c891a6

Please sign in to comment.