-
Notifications
You must be signed in to change notification settings - Fork 14
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 #115 from Polymarket/feat/spread-calculation
getting the orderbook spread
- Loading branch information
Showing
5 changed files
with
79 additions
and
1 deletion.
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 |
---|---|---|
@@ -0,0 +1,30 @@ | ||
import { ethers } from "ethers"; | ||
import { config as dotenvConfig } from "dotenv"; | ||
import { resolve } from "path"; | ||
import { ApiKeyCreds, Chain, ClobClient } from "../src"; | ||
|
||
dotenvConfig({ path: resolve(__dirname, "../.env") }); | ||
|
||
async function main() { | ||
const wallet = new ethers.Wallet(`${process.env.PK}`); | ||
const chainId = parseInt(`${process.env.CHAIN_ID || Chain.AMOY}`) as Chain; | ||
console.log(`Address: ${await wallet.getAddress()}, chainId: ${chainId}`); | ||
|
||
const host = process.env.CLOB_API_URL || "http://localhost:8080"; | ||
const creds: ApiKeyCreds = { | ||
key: `${process.env.CLOB_API_KEY}`, | ||
secret: `${process.env.CLOB_SECRET}`, | ||
passphrase: `${process.env.CLOB_PASS_PHRASE}`, | ||
}; | ||
const clobClient = new ClobClient(host, chainId, wallet, creds); | ||
|
||
const YES_TOKEN_ID = | ||
"71321045679252212594626385532706912750332728571942532289631379312455583992563"; | ||
const NO_TOKEN_ID = | ||
"52114319501245915516055106046884209969926127482827954674443846427813813222426"; | ||
|
||
clobClient.getSpread(YES_TOKEN_ID).then((spread: any) => console.log("YES", spread)); | ||
clobClient.getSpread(NO_TOKEN_ID).then((spread: any) => console.log("NO", spread)); | ||
} | ||
|
||
main(); |
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,32 @@ | ||
import { ethers } from "ethers"; | ||
import { config as dotenvConfig } from "dotenv"; | ||
import { resolve } from "path"; | ||
import { ApiKeyCreds, BookParams, Chain, ClobClient } from "../src"; | ||
|
||
dotenvConfig({ path: resolve(__dirname, "../.env") }); | ||
|
||
async function main() { | ||
const wallet = new ethers.Wallet(`${process.env.PK}`); | ||
const chainId = parseInt(`${process.env.CHAIN_ID || Chain.AMOY}`) as Chain; | ||
console.log(`Address: ${await wallet.getAddress()}, chainId: ${chainId}`); | ||
|
||
const host = process.env.CLOB_API_URL || "http://localhost:8080"; | ||
const creds: ApiKeyCreds = { | ||
key: `${process.env.CLOB_API_KEY}`, | ||
secret: `${process.env.CLOB_SECRET}`, | ||
passphrase: `${process.env.CLOB_PASS_PHRASE}`, | ||
}; | ||
const clobClient = new ClobClient(host, chainId, wallet, creds); | ||
|
||
const YES = "71321045679252212594626385532706912750332728571942532289631379312455583992563"; | ||
const NO = "52114319501245915516055106046884209969926127482827954674443846427813813222426"; | ||
|
||
const spreads = await clobClient.getSpreads([ | ||
{ token_id: YES }, | ||
{ token_id: NO }, | ||
] as BookParams[]); | ||
|
||
console.log(spreads); | ||
} | ||
|
||
main(); |
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