Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@gnosis.pm/cow-sdk

Package Overview
Dependencies
Maintainers
18
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@gnosis.pm/cow-sdk

  • 0.0.4
  • npm
  • Socket score

Version published
Maintainers
18
Created
Source

CoW protocol SDK

Styled With Prettier

Getting started

Install the Cow SDK library:

yarn add cow-sdk

Then you need to instantiate the SDK object:

import { CowSdk } from 'cow-sdk'

const chainId = 4 // Rinkeby
const cowSdk = new CowSdk(chainId)

That should be enough to run queries against the CoW Protocol API:

const trades = await cowSdk.cowApi.getTrades({ owner: "0x1811be0994930fE9480eAEDe25165608B093ad7A" })
console.log(trades)

In case you want to execute a swap, the SDK must be initialized with a Signer:

import { Wallet } from 'ethers'
import { CowSdk, OrderKind } from 'cow-sdk'

const mnemonic = 'fall dirt bread cactus...'
const wallet = Wallet.fromMnemonic(mnemonic)
const cowSdk = new CowSdk(4, { signer: wallet })

// We will get a price quote for selling 1 WETH for USDC
const quoteResponse = await cowSdk.cowApi.getQuote({
  kind: OrderKind.SELL,
  amount: '1000000000000000000',
  sellToken: '0xc778417e063141139fce010982780140aa0cd5ab', // WETH
  buyToken: '0x4dbcdf9b62e891a7cec5a2568c3f4faf9e8abe2b',  // USDC
  userAddress: '0x1811be0994930fe9480eaede25165608b093ad7a',
  validTo: 2524608000,
})

const order = {
  kind: OrderKind.SELL,
  sellToken: quoteResponse.quote.sellToken,
  buyToken: quoteResponse.quote.buyToken,
  validTo: quoteResponse.quote.validTo,
  buyAmount: quoteResponse.quote.buyAmount,
  sellAmount: quoteResponse.quote.sellAmount,
  receiver: quoteResponse.quote.receiver,
  partiallyFillable: false,
  feeAmount: quoteResponse.quote.feeAmount,
}

const signedOrder = await cowSdk.signOrder(order)

const orderId = await cowSdk.cowApi.sendOrder({
  order: { ...order, ...signedOrder },
  owner: '0x1811be0994930fe9480eaede25165608b093ad7a',
})

// We can inspect the Order details in the CoW Protocol Explorer
console.log(`https://explorer.cow.fi/rinkeby/orders/${orderId}`)

Install Dependencies

yarn

Build

yarn build

Run

yarn start

Lint

yarn lint

Format

yarn format

Unit testing

yarn test

Keywords

FAQs

Package last updated on 12 Feb 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc