0.0.3 • Published 1 year ago

johnrjj-0x-sdk v0.0.3

Weekly downloads
-
License
MIT
Repository
-
Last release
1 year ago

0x-sdk

0x SDK is a TypeScript SDK for building exchange functionality on Ethereum and EVM-compatible chains. 0x SDK uses 0x API to aggregate liquidity. Building exchange functionality with the 0x API requires integrators to go through a number of steps. Integrators may need to manage chain IDs, API endpoints, convert numbers, approve tokens, sign messages, communicate with smart contracts, etc. The 0x SDK aims to simplify these steps.

Installation

As this sdk is published to Github Packages as a private package, instead of a public package in npm registry, users will need to create a credential (PAT in this case) and config npm before installing it.

Create a Github Personal access token (PAT)

Follow this instruction to create a PAT with access to read:packages.

Update your .npmrc

Add the following lines to your $HOME/.npmrc file (create it if not exists). Replace YOUR_PAT with your PAT generated in the first step.

//npm.pkg.github.com/:_authToken=YOUR_PAT
@0xproject:registry=https://npm.pkg.github.com/

Install package

npm install @0xproject/0x-sdk

# or

yarn add @0xproject/0x-sdk

Usage

Swap tokens with the 0x-sdk:

import { ZeroExSdk } from '@0xproject/0x-sdk';

// Instantiate SDK
const sdk = new ZeroExSdk();
const takerAddress = await signer.getAddress();

// Request params for the `/swap` resource to swap 1 WETH for DAI
const params = {
  sellToken: WETH_ADDRESS,
  buyToken: DAI_ADDRESS,
  sellAmount: '100000000000000000',
  takerAddress,
};

// Get price to swap 1 WETH for DAI
const price = await sdk.getIndicativePrice({
  resource: 'swap',
  params,
  chainId,
});

// Get firm quote to swap 1 WETH for DAI
const quote = await sdk.getFirmQuote({
  resource: 'swap',
  params,
  chainId,
});

// Approve ZeroEx Exchange Proxy to spend WETH
const contractTx = await sdk.approveToken({
  tokenContractAddress: WETH_ADDRESS,
  contractAddressToApprove: ZEROEX_CONTRACT_ADDRESS,
  signer,
});

await contractTx.wait();

// Submit the quote to ZeroEx Exchange Proxy
const txResponse = await sdk.fillOrder({ quote, signer, chainId });

// Wait for the transaction to be mined
const { transactionHash } = await txResponse.wait();

Example

This repository includes a basic example in the [/examples](/examples) folder which demonstrates basic exchange functionality. Follow these instructions to run the example:

  1. Navigate to the /example folder
cd /example
  1. Install the dependencies
yarn
  1. Run the example app
yarn dev

Contributing

Please follow this project's contributing guidelines.