1.1.5 • Published 5 months ago

@balancer-labs/sdk v1.1.5

Weekly downloads
-
License
GPL-3.0-only
Repository
github
Last release
5 months ago

Balancer Javascript SDK

A JavaScript SDK which provides commonly used utilties for interacting with Balancer Protocol V2.

How to run the examples (Javascript)?

In order to run the examples provided, you need to follow the next steps:

  1. git clone https://github.com/balancer-labs/balancer-sdk.git
  2. cd balancer-sdk
  3. cd balancer-js
  4. Create a .env file in the balancer-js folder
  5. In the .env file you will need to define and initialize the following variables

    ALCHEMY_URL=ALCHEMY HTTPS ENDPOINT
    INFURA=Infura API KEY
    TRADER_KEY=MetaMask PRIVATE KEY
    We have defined both Alchemy and Infura, because some of the examples use Infura, others use Alchemy. However, feel free to modify accordingly and use your favourite one.

  6. Run 'npm run node', this runs a local Hardhat Network

  7. Open a new terminal
  8. cd to balancer-js
  9. Install ts-node using: npm install ts-node
  10. Install tsconfig-paths using: npm install --save-dev tsconfig-paths
  11. Run one of the provided examples (eg: npm run examples:run -- examples/join.ts)

Installation

Getting Started

import { BalancerSDK, BalancerSdkConfig, Network } from '@balancer-labs/sdk';

const config: BalancerSdkConfig = {
  network: Network.MAINNET,
  rpcUrl: `https://mainnet.infura.io/v3/${process.env.INFURA}`,
};
const balancer = new BalancerSDK(config);

In some examples we present a way to make end to end trades against mainnet state. To run them you will need to setup a localhost test node using tools like ganache, hardhat, anvil.

Installation instructions for:

  • Hardhat

    To start a forked node:

    npm run node
  • Anvil - use with caution, still experimental.

    To start a forked node:

    anvil -f FORKABLE_RPC_URL (optional pinned block: --fork-block-number XXX)

Swaps Module

Exposes complete functionality for token swapping. An example of using the module with data fetched from the subgraph:

// Uses SOR to find optimal route for a trading pair and amount
const route = balancer.swaps.findRouteGivenIn({
  tokenIn,
  tokenOut,
  amount,
  gasPrice,
  maxPools,
});

// Prepares transaction attributes based on the route
const transactionAttributes = balancer.swaps.buildSwap({
  userAddress,
  swapInfo: route,
  kind: 0, // 0 - givenIn, 1 - givenOut
  deadline,
  maxSlippage,
});

// Extract parameters required for sendTransaction
const { to, data, value } = transactionAttributes;

// Execution with ethers.js
const transactionResponse = await signer.sendTransaction({ to, data, value });

SwapsService

The SwapsService provides function to query and make swaps using Balancer V2 liquidity.

const swaps = new swapService({
  network: Network;
  rpcUrl: string;
});

Examples

You can run each example with npm run examples:run -- examples/exampleName.ts

#queryBatchSwap

The Balancer Vault provides a method to simulate a call to batchSwap. This function performs no checks on the sender or recipient or token balances or approvals. Note that this function is not 'view' (due to implementation details): the client code must explicitly execute eth_call instead of eth_sendTransaction.

@param batchSwap - BatchSwap information used for query. @param batchSwap.kind - either exactIn or exactOut. @param batchSwap.swaps - sequence of swaps. @param batchSwap.assets - array contains the addresses of all assets involved in the swaps. @returns Returns an array with the net Vault asset balance deltas. Positive amounts represent tokens (or ETH) sent to the Vault, and negative amounts represent tokens (or ETH) sent by the Vault. Each delta corresponds to the asset at the same index in the assets array.

swaps.queryBatchSwap(batchSwap: {
    kind: SwapType,
    swaps: BatchSwapStep[],
    assets: string[]
}): Promise<BigNumberish[]>

Example

#queryBatchSwapWithSor

Uses SOR to create and query a batchSwap for multiple tokens in > multiple tokensOut.

@param queryWithSor - Swap information used for querying using SOR. @param queryWithSor.tokensIn - Array of addresses of assets in. @param queryWithSor.tokensOut - Array of addresses of assets out. @param queryWithSor.swapType - Type of Swap, ExactIn/Out. @param queryWithSor.amounts - Array of amounts used in swap. @param queryWithSor.fetchPools - Set whether SOR will fetch updated pool info. @returns Returns amount of tokens swaps along with swap and asset info that can be submitted to a batchSwap call.

swaps.queryBatchSwapWithSor(queryWithSor: {
    tokensIn: string[],
    tokensOut: string[],
    swapType: SwapType,
    amounts: BigNumberish[],
    fetchPools: FetchPoolsInput;
}):
Promise<QueryWithSorOutput {
    returnAmounts: string[];
    swaps: BatchSwapStep[];
    assets: string[];
    deltas: string[];
}>

#encodeBatchSwap

Static method to encode a batch swap.

NB: This method doesn't execute a batchSwap -- it returns an ABI byte string containing the data of the function call on a contract, which can then be sent to the network (ex. sendTransaction). to be executed. See example for more info.

/**
 * @param {BatchSwap}           batchSwap - BatchSwap information used for query.
 * @param {SwapType}            batchSwap.kind - either exactIn or exactOut
 * @param {BatchSwapSteps[]}    batchSwap.swaps - sequence of swaps
 * @param {string[]}            batchSwap.assets - array contains the addresses of all assets involved in the swaps
 * @param {FundManagement}      batchSwap.funds - object containing information about where funds should be taken/sent
 * @param {number[]}            batchSwap.limits - limits for each token involved in the swap, where either the maximum number of tokens to send (by passing a positive value) or the minimum amount of tokens to receive (by passing a negative value) is specified
 * @param {string}              batchSwap.deadline -  time (in Unix timestamp) after which it will no longer attempt to make a trade
 * @returns {string}            encodedBatchSwapData - Returns an ABI byte string containing the data of the function call on a contract
*/
Swaps.encodeBatchSwap(batchSwap: {
    kind: SwapType,
    swaps: BatchSwapStep[],
    assets: string[],
    funds: FundManagement,
    limits: number[],
    deadline: string
}): string

Example

Swap Service: Flash Swaps

A Flash Swap is a special type of batch swap where the caller doesn't need to own or provide any of the input tokens -- the caller is essentially taking a "flash loan" (an uncollateralized loan) from the Balancer Vault. The full amount of the input token must be returned to the Vault by the end of the batch (plus any swap fees), however any excess of an output tokens can be sent to any address.

IMPORTANT: A "simple" flash swap is an arbitrage executed with only two tokens and two pools, swapping in the first pool and then back in the second pool for a profit. For more complex flash swaps, you will have to use batch swap directly.

Gotchas:

  • Both pools must have both assets (tokens) for swaps to work
  • No pool token balances can be zero
  • If the flash swap isn't profitable, the internal flash loan will fail.

#encodeSimpleFlashSwap

Static method to encode a simple flash swap method for a batchSwap.

NB: This method doesn't execute any swaps -- it returns an ABI byte string containing the data of the function call on a contract, which can then be sent to the network (ex. sendTransaction). to be executed. See example for more info.

/**
 * @param {SimpleFlashSwapParameters}   params - BatchSwap information used for query.
 * @param {string}                      params.flashLoanAmount - initial input amount for the flash loan (first asset)
 * @param {string[]}                    params.poolIds - array of Balancer pool ids
 * @param {string[]}                    params.assets - array of token addresses
 * @param {string}                      params.walletAddress - array of token addresses
 * @returns {string}            encodedBatchSwapData - Returns an ABI byte string containing the data of the function call on a contract
*/
Swaps.encodeSimpleFlashSwap(simpleFlashSwap: {
    flashLoanAmount: string,
    poolIds: string[],
    assets: string[]
    walletAddress: string[]
}): string

Example

#querySimpleFlashSwap

Method to test if a simple flash swap is valid and see potential profits.

/**
 * @param {SimpleFlashSwapParameters}   params - BatchSwap information used for query.
 * @param {string}                      params.flashLoanAmount - initial input amount for the flash loan (first asset)
 * @param {string[]}                    params.poolIds - array of Balancer pool ids
 * @param {string[]}                    params.assets - array of token addresses
 * @returns {Promise<{profits: Record<string, string>, isProfitable: boolean}>}       Returns an ethersjs transaction response
*/
swaps.querySimpleFlashSwap(batchSwap: {
    kind: SwapType,
    swaps: BatchSwapStep[],
    assets: string[]
}): string

Example

Pricing

Spot Price functionality allowing user to query spot price for token pair.

calcSpotPrice

Find Spot Price for pair in specific pool.

const balancer = new BalancerSDK(sdkConfig);
const pool = await balancer.pools.find(poolId);
const spotPrice = await pool.calcSpotPrice(
    ADDRESSES[network].DAI.address,
    ADDRESSES[network].BAL.address,
  );

#getSpotPrice

Find Spot Price for a token pair - finds most liquid path and uses this as reference SP.

const pricing = new Pricing(sdkConfig);

@param { string } tokenIn Token in address. @param { string } tokenOut Token out address. @param { SubgraphPoolBase[] } pools Optional - Pool data. Will be fetched via dataProvider if not supplied. @returns { string } Spot price.

async getSpotPrice(
    tokenIn: string,
    tokenOut: string,
    pools: SubgraphPoolBase[] = []
): Promise<string>

Example

Joining Pools

Joining with pool tokens

Exposes Join functionality allowing user to join pools with its pool tokens.

const balancer = new BalancerSDK(sdkConfig);
const pool = await balancer.pools.find(poolId);
const { to, functionName, attributes, data } = pool.buildJoin(params);

#buildJoin

Builds a join transaction.

/**
 * @param { string }   joiner - Address used to exit pool.
 * @param { string[] } tokensIn - Token addresses provided for joining pool (same length and order as amountsIn).
 * @param { string[] } amountsIn - Token amounts provided for joining pool in EVM amounts.
 * @param { string }   slippage - Maximum slippage tolerance in bps i.e. 50 = 0.5%.
 * @returns { Promise<JoinPoolAttributes> } Returns join transaction ready to send with signer.sendTransaction.
*/
buildJoin: (
  joiner: string,
  tokensIn: string[],
  amountsIn: string[],
  slippage: string
) => Promise<JoinPoolAttributes>;

Example

Joining nested pools

Exposes Join functionality allowing user to join a pool that has pool tokens that are BPTs of other pools, e.g.:

                  CS0
              /        \
            CS1        CS2
          /    \      /   \
         DAI   USDC  USDT  FRAX

Can join with tokens: DAI, USDC, USDT, FRAX, CS1_BPT, CS2_BPT
  /**
   * Builds generalised join transaction
   *
   * @param poolId          Pool id
   * @param tokens          Token addresses
   * @param amounts         Token amounts in EVM scale
   * @param userAddress     User address
   * @param wrapMainTokens  Indicates whether main tokens should be wrapped before being used
   * @param slippage        Maximum slippage tolerance in bps i.e. 50 = 0.5%.
   * @param signer          Signer (used for simulating tx to get accurate amounts)
   * @param authorisation   Optional auhtorisation call to be added to the chained transaction
   * @returns transaction data ready to be sent to the network along with min and expected BPT amounts out.
   */
  async generalisedJoin(
    poolId: string,
    tokens: string[],
    amounts: string[],
    userAddress: string,
    wrapMainTokens: boolean,
    slippage: string,
    signer: JsonRpcSigner,
    authorisation?: string
  ): Promise<{
    to: string;
    callData: string;
    minOut: string;
    expectedOut: string;
  }>

Example

Exit Pool

Exposes Exit functionality allowing user to exit pools.

const balancer = new BalancerSDK(sdkConfig);
const pool = await balancer.pools.find(poolId);
const { to, functionName, attributes, data } = pool.buildExitExactBPTIn(params);

#buildExitExactBPTIn

Builds an exit transaction with exact BPT in and minimum token amounts out based on slippage tolerance.

  /**
   * @param {string}  exiter - Account address exiting pool
   * @param {string}  bptIn - BPT provided for exiting pool
   * @param {string}  slippage - Maximum slippage tolerance in percentage. i.e. 0.05 = 5%
   * @param {string}  singleTokenMaxOut - Optional: token address that if provided will exit to given token
   * @returns         transaction request ready to send with signer.sendTransaction
   */
  buildExitExactBPTIn: (
    exiter: string,
    bptIn: string,
    slippage: string,
    singleTokenMaxOut?: string
  ) => Promise<ExitPoolAttributes>;

Example

#buildExitExactTokensOut

Builds an exit transaction with exact tokens out and maximum BPT in based on slippage tolerance.

  /**
   * @param {string}    exiter - Account address exiting pool
   * @param {string[]}  tokensOut - Tokens provided for exiting pool
   * @param {string[]}  amountsOut - Amounts provided for exiting pool
   * @param {string}    slippage - Maximum slippage tolerance in percentage. i.e. 0.05 = 5%
   * @returns           transaction request ready to send with signer.sendTransaction
   */
  buildExitExactTokensOut: (
    exiter: string,
    tokensOut: string[],
    amountsOut: string[],
    slippage: string
  ) => Promise<ExitPoolAttributes>;

Example

RelayerService

Relayers are (user opt-in, audited) contracts that can make calls to the vault (with the transaction “sender” being any arbitrary address) and use the sender’s ERC20 vault allowance, internal balance or BPTs on their behalf.

const relayer = new relayerService(
    swapsService: SwapsService;
    rpcUrl: string;
);

#swapUnwrapAaveStaticExactIn

Finds swaps for tokenIn>wrapped Aave static tokens and chains with unwrap to underlying stable. ExactIn - Exact amount of tokenIn to use in swap.

@param tokensIn - array to token addresses for swapping as tokens in. @param aaveStaticTokens - array contains the addresses of the Aave static tokens that tokenIn will be swapped to. These will be unwrapped. @param amountsIn - amounts to be swapped for each token in. @param rates - The rate used to convert wrappedToken to underlying. @param funds - Funding info for swap. Note - recipient should be relayer and sender should be caller. @param slippage - Slippage to be applied to swap section. i.e. 5%=50000000000000000. @param fetchPools - Set whether SOR will fetch updated pool info. @returns Transaction data with calldata. Outputs.amountsOut has final amounts out of unwrapped tokens.

async relayer.swapUnwrapAaveStaticExactIn(
    tokensIn: string[],
    aaveStaticTokens: string[],
    amountsIn: BigNumberish[],
    rates: BigNumberish[],
    funds: FundManagement,
    slippage: BigNumberish,
    fetchPools: FetchPoolsInput = {
        fetchPools: true,
        fetchOnChain: false
    }
): Promise<TransactionData>

Example

#swapUnwrapAaveStaticExactOut

Finds swaps for tokenIn>wrapped Aave static tokens and chains with unwrap to underlying stable. ExactOut - Exact amount of tokens out are used for swaps.

@param tokensIn - array to token addresses for swapping as tokens in. @param aaveStaticTokens - array contains the addresses of the Aave static tokens that tokenIn will be swapped to. These will be unwrapped. @param amountsUnwrapped - amounts of unwrapped tokens out. @param rates - The rate used to convert wrappedToken to underlying. @param funds - Funding info for swap. Note - recipient should be relayer and sender should be caller. @param slippage - Slippage to be applied to swap section. i.e. 5%=50000000000000000. @param fetchPools - Set whether SOR will fetch updated pool info. @returns Transaction data with calldata. Outputs.amountsIn has the amounts of tokensIn.

async relayer.swapUnwrapAaveStaticExactOut(
    tokensIn: string[],
    aaveStaticTokens: string[],
    amountsUnwrapped: BigNumberish[],
    rates: BigNumberish[],
    funds: FundManagement,
    slippage: BigNumberish,
    fetchPools: FetchPoolsInput = {
        fetchPools: true,
        fetchOnChain: false
    }
): Promise<TransactionData>

Example

#exitPoolAndBatchSwap

Chains poolExit with batchSwap to final tokens.

@param params: @param exiter - Address used to exit pool. @param swapRecipient - Address that receives final tokens. @param poolId - Id of pool being exited. @param exitTokens - Array containing addresses of tokens to receive after exiting pool. (must have the same length and order as the array returned by getPoolTokens.) @param userData - Encoded exitPool data. @param minExitAmountsOut - Minimum amounts of exitTokens to receive when exiting pool. @param finalTokensOut - Array containing the addresses of the final tokens out. @param slippage - Slippage to be applied to swap section. i.e. 5%=50000000000000000. @param fetchPools - Set whether SOR will fetch updated pool info. @returns Transaction data with calldata. Outputs.amountsOut has amounts of finalTokensOut returned.

async relayer.exitPoolAndBatchSwap(
    params: ExitAndBatchSwapInput {
        exiter: string;
        swapRecipient: string;
        poolId: string;
        exitTokens: string[];
        userData: string;
        minExitAmountsOut: string[];
        finalTokensOut: string[];
        slippage: string;
        fetchPools: FetchPoolsInput;
    }
): Promise<TransactionData>

Example

Licensing

GNU General Public License Version 3 (GPL v3).

1.1.4-beta.10

9 months ago

1.1.4-beta.11

9 months ago

1.1.4-beta.12

9 months ago

1.1.4-beta.13

9 months ago

1.1.4-beta.14

9 months ago

1.1.4-beta.15

9 months ago

1.1.4-beta.16

9 months ago

1.1.4-beta.17

9 months ago

1.1.4-beta.18

8 months ago

1.1.4-beta.19

8 months ago

1.1.4-beta.20

8 months ago

1.1.4-beta.21

8 months ago

1.1.4-beta.22

8 months ago

1.1.4-beta.23

8 months ago

1.1.4-beta.1

9 months ago

1.1.4-beta.2

9 months ago

1.1.4-beta.0

9 months ago

1.1.4-beta.9

9 months ago

1.1.4-beta.7

9 months ago

1.1.4-beta.8

9 months ago

1.1.4-beta.5

9 months ago

1.1.4-beta.6

9 months ago

1.1.4-beta.3

9 months ago

1.1.4-beta.4

9 months ago

1.1.6-beta.1

7 months ago

1.1.6-beta.2

7 months ago

1.1.6-beta.3

6 months ago

1.1.6-beta.4

5 months ago

1.1.6-beta.0

7 months ago

1.1.5-beta.1

8 months ago

1.1.5-beta.0

8 months ago

1.1.5-beta.3

8 months ago

1.1.5-beta.2

8 months ago

1.1.5-beta.5

7 months ago

1.1.5-beta.4

8 months ago

1.1.5-beta.7

7 months ago

1.1.5-beta.6

7 months ago

1.1.3-beta.13

9 months ago

1.1.3-beta.14

9 months ago

1.1.3-beta.15

9 months ago

1.1.3-beta.16

9 months ago

1.1.5

7 months ago

1.1.4

8 months ago

1.1.3-beta.10

9 months ago

1.1.3

9 months ago

1.1.3-beta.11

9 months ago

1.1.3-beta.12

9 months ago

1.1.2

10 months ago

1.1.3-beta.17

9 months ago

1.1.3-beta.18

9 months ago

1.1.3-beta.1

10 months ago

1.1.3-beta.0

10 months ago

1.1.3-beta.9

9 months ago

1.1.3-beta.8

9 months ago

1.1.3-beta.7

9 months ago

1.1.3-beta.6

9 months ago

1.1.3-beta.5

10 months ago

1.1.3-beta.4

10 months ago

1.1.3-beta.3

10 months ago

1.1.3-beta.2

10 months ago

1.1.2-beta.2

11 months ago

1.1.2-beta.1

11 months ago

1.1.2-beta.4

11 months ago

1.1.2-beta.3

11 months ago

1.1.2-beta.6

10 months ago

1.1.2-beta.5

11 months ago

1.1.2-beta.8

10 months ago

1.1.2-beta.7

10 months ago

1.1.2-beta.0

11 months ago

1.1.1-beta.19

11 months ago

1.1.1-beta.23

11 months ago

1.1.1-beta.22

11 months ago

1.1.1-beta.25

11 months ago

1.1.1-beta.24

11 months ago

1.1.1-beta.21

11 months ago

1.1.1-beta.20

11 months ago

1.1.1

11 months ago

1.1.1-beta.8

11 months ago

1.1.1-beta.9

11 months ago

1.1.1-beta.2

11 months ago

1.1.1-beta.3

11 months ago

1.1.1-beta.0

11 months ago

1.1.1-beta.1

11 months ago

1.1.1-beta.6

11 months ago

1.1.1-beta.7

11 months ago

1.1.1-beta.4

11 months ago

1.1.1-beta.5

11 months ago

1.1.1-beta.16

11 months ago

1.1.1-beta.15

11 months ago

1.1.1-beta.18

11 months ago

1.1.1-beta.17

11 months ago

1.1.1-beta.12

11 months ago

1.1.1-beta.11

11 months ago

1.1.1-beta.14

11 months ago

1.1.1-beta.13

11 months ago

1.1.1-beta.10

11 months ago

1.1.0

11 months ago

1.0.6-beta.9

11 months ago

1.0.6-beta.8

11 months ago

1.0.6-beta.5

12 months ago

1.0.6-beta.4

12 months ago

1.0.6-beta.7

11 months ago

1.0.6-beta.6

11 months ago

1.0.6-beta.1

12 months ago

1.0.6-beta.0

12 months ago

1.0.6-beta.3

12 months ago

1.0.6-beta.2

12 months ago

1.0.5-beta.9

1 year ago

1.0.5-beta.7

1 year ago

1.0.5-beta.8

1 year ago

1.0.5-beta.5

1 year ago

1.0.5-beta.6

1 year ago

1.0.5-beta.3

1 year ago

1.0.5-beta.4

1 year ago

1.0.5-beta.1

1 year ago

1.0.5-beta.2

1 year ago

1.0.5-beta.0

1 year ago

1.0.5

1 year ago

1.0.4

1 year ago

1.0.4-beta.1

1 year ago

1.0.5-beta.10

1 year ago

1.0.1-beta.21

1 year ago

1.0.1-beta.22

1 year ago

1.0.1-beta.20

1 year ago

1.0.1-beta.25

1 year ago

1.0.1-beta.26

1 year ago

1.0.1-beta.23

1 year ago

1.0.1-beta.24

1 year ago

1.0.1-beta.29

1 year ago

1.0.1-beta.27

1 year ago

1.0.1-beta.28

1 year ago

1.0.3-beta.0

1 year ago

1.0.3-beta.2

1 year ago

1.0.1-beta.2

1 year ago

1.0.3-beta.1

1 year ago

1.0.1-beta.1

1 year ago

1.0.3-beta.4

1 year ago

1.0.1-beta.0

1 year ago

1.0.3-beta.3

1 year ago

1.0.3-beta.6

1 year ago

1.0.1-beta.6

1 year ago

1.0.3-beta.5

1 year ago

1.0.1-beta.5

1 year ago

1.0.3-beta.8

1 year ago

1.0.1-beta.4

1 year ago

1.0.3-beta.7

1 year ago

1.0.1-beta.3

1 year ago

1.0.3-beta.9

1 year ago

1.0.1-beta.9

1 year ago

1.0.1-beta.8

1 year ago

1.0.1-beta.7

1 year ago

1.0.1-beta.10

1 year ago

1.0.1-beta.11

1 year ago

1.0.1-beta.14

1 year ago

1.0.1-beta.15

1 year ago

1.0.1-beta.12

1 year ago

1.0.1-beta.13

1 year ago

1.0.1-beta.18

1 year ago

1.0.1-beta.19

1 year ago

1.0.1-beta.16

1 year ago

1.0.1-beta.17

1 year ago

1.0.0-hotfix.1

1 year ago

1.0.3-beta.11

1 year ago

1.0.3-beta.10

1 year ago

1.0.1

1 year ago

1.0.0

1 year ago

1.0.3

1 year ago

1.0.0-beta.22

1 year ago

1.0.0-beta.23

1 year ago

1.0.0-beta.20

1 year ago

1.0.0-beta.21

1 year ago

1.0.0-beta.26

1 year ago

1.0.0-beta.24

1 year ago

1.0.0-beta.25

1 year ago

1.0.0-beta.11

1 year ago

1.0.0-beta.12

1 year ago

1.0.0-beta.10

1 year ago

1.0.0-beta.19

1 year ago

1.0.0-beta.17

1 year ago

1.0.0-beta.18

1 year ago

1.0.0-beta.15

1 year ago

1.0.0-beta.16

1 year ago

1.0.0-beta.13

1 year ago

1.0.0-beta.14

1 year ago

1.0.4-beta.0

1 year ago

1.0.0-beta.7

1 year ago

1.0.0-beta.8

1 year ago

1.0.0-beta.9

1 year ago

0.1.48-beta.9

1 year ago

0.1.48-beta.8

1 year ago

0.1.48-beta.1

1 year ago

0.1.44-beta.2

1 year ago

0.1.48-beta.0

1 year ago

0.1.48-beta.3

1 year ago

0.1.48-beta.2

1 year ago

0.1.44-beta.1

1 year ago

0.1.48-beta.5

1 year ago

0.1.48-beta.4

1 year ago

0.1.48-beta.7

1 year ago

0.1.48-beta.6

1 year ago

0.1.49

1 year ago

0.1.44

1 year ago

0.1.45

1 year ago

0.1.46

1 year ago

0.1.47

1 year ago

0.1.48

1 year ago

0.1.48-beta.10

1 year ago

0.1.48-beta.13

1 year ago

0.1.48-beta.11

1 year ago

0.1.48-beta.12

1 year ago

0.1.45-beta.12

1 year ago

0.1.45-beta.11

1 year ago

0.1.45-beta.10

1 year ago

0.1.46-beta.1

1 year ago

0.1.46-beta.0

1 year ago

0.1.46-beta.2

1 year ago

0.1.45-beta.9

1 year ago

0.1.45-beta.5

1 year ago

0.1.45-beta.6

1 year ago

0.1.45-beta.7

1 year ago

0.1.45-beta.8

1 year ago

0.1.45-beta.1

1 year ago

0.1.45-beta.2

1 year ago

0.1.45-beta.3

1 year ago

0.1.45-beta.4

1 year ago

0.1.45-beta.0

1 year ago

1.0.0-beta.2

1 year ago

1.0.0-beta.3

1 year ago

1.0.0-beta.4

1 year ago

1.0.0-beta.5

1 year ago

1.0.0-beta.1

1 year ago

1.0.0-beta.6

1 year ago

0.1.39-beta.6

1 year ago

0.1.39-beta.7

1 year ago

0.1.39-beta.8

1 year ago

0.1.39-beta.9

1 year ago

0.1.39-beta.2

1 year ago

0.1.39-beta.3

1 year ago

0.1.39-beta.4

1 year ago

0.1.37-beta.0

1 year ago

0.1.39-beta.5

1 year ago

0.1.31-beta.0

2 years ago

0.1.31-beta.1

1 year ago

0.1.39-beta.13

1 year ago

0.1.35-beta.0

1 year ago

0.1.39-beta.12

1 year ago

0.1.39-beta.11

1 year ago

0.1.39-beta.10

1 year ago

0.1.40-beta.0

1 year ago

0.1.38-hotfix.0

1 year ago

0.1.31-beta.2

1 year ago

0.1.31-beta.3

1 year ago

0.1.41

1 year ago

0.1.43

1 year ago

0.1.40

1 year ago

0.1.38

1 year ago

0.1.39

1 year ago

0.1.30

2 years ago

0.1.31

1 year ago

0.1.32

1 year ago

0.1.33

1 year ago

0.1.34

1 year ago

0.1.35

1 year ago

0.1.36

1 year ago

0.1.37

1 year ago

0.1.41-beta.0

1 year ago

0.1.29

2 years ago

0.1.39-beta.0

1 year ago

0.1.39-beta.1

1 year ago

0.1.27-beta.1

2 years ago

0.1.27

2 years ago

0.1.28

2 years ago

0.1.26

2 years ago

0.1.27-beta.0

2 years ago

0.1.21

2 years ago

0.1.22

2 years ago

0.1.23

2 years ago

0.1.24

2 years ago

0.1.25

2 years ago

0.1.12

2 years ago

0.1.13

2 years ago

0.1.14

2 years ago

0.1.15

2 years ago

0.1.20

2 years ago

0.1.16

2 years ago

0.1.17

2 years ago

0.1.18

2 years ago

0.1.19

2 years ago

0.1.10

2 years ago

0.1.11

2 years ago

0.1.8

2 years ago

0.1.9

2 years ago

0.1.7

2 years ago

0.1.4

2 years ago

0.1.6

2 years ago

0.1.5

2 years ago

0.1.2

2 years ago

0.1.3

2 years ago

0.0.10

2 years ago

0.0.11

2 years ago

0.0.12

2 years ago

0.0.13

2 years ago

0.0.14

2 years ago

0.1.0

2 years ago

0.0.3

2 years ago

0.1.1

2 years ago

0.0.15

2 years ago

0.0.9

2 years ago

0.0.8

2 years ago

0.0.5

2 years ago

0.0.4

2 years ago

0.0.7

2 years ago

0.0.6

2 years ago

0.0.2

2 years ago

0.0.1

2 years ago