Compare commits

...

4 Commits

Author SHA1 Message Date
Github Actions
70d2117470 Publish
- @0x/contracts-integrations@2.7.43
 - @0x/asset-swapper@6.13.0
2021-05-11 03:18:25 +00:00
Github Actions
2c173ccaf3 Updated CHANGELOGS & MD docs 2021-05-11 03:18:20 +00:00
mzhu25
d2f4a0c5f3 Updated config.yml 2021-05-10 19:51:12 -07:00
mzhu25
0d6021e5e3 Add LiquidityProvider to BSC sources (#234) 2021-05-10 18:27:52 -07:00
6 changed files with 21 additions and 5 deletions

View File

@@ -2,11 +2,11 @@ version: 2.1
jobs: jobs:
build: build:
resource_class: large resource_class: xlarge
docker: docker:
- image: node:12 - image: node:12
environment: environment:
NODE_OPTIONS: '--max-old-space-size=6442' NODE_OPTIONS: '--max-old-space-size=16384'
working_directory: ~/repo working_directory: ~/repo
steps: steps:
- checkout - checkout

View File

@@ -1,6 +1,6 @@
{ {
"name": "@0x/contracts-integrations", "name": "@0x/contracts-integrations",
"version": "2.7.42", "version": "2.7.43",
"private": true, "private": true,
"engines": { "engines": {
"node": ">=6.12" "node": ">=6.12"
@@ -93,7 +93,7 @@
"typescript": "4.2.2" "typescript": "4.2.2"
}, },
"dependencies": { "dependencies": {
"@0x/asset-swapper": "^6.12.0", "@0x/asset-swapper": "^6.13.0",
"@0x/base-contract": "^6.4.0", "@0x/base-contract": "^6.4.0",
"@0x/contracts-asset-proxy": "^3.7.11", "@0x/contracts-asset-proxy": "^3.7.11",
"@0x/contracts-erc1155": "^2.1.29", "@0x/contracts-erc1155": "^2.1.29",

View File

@@ -1,4 +1,14 @@
[ [
{
"version": "6.13.0",
"changes": [
{
"note": "Add LiquidityProvider to BSC sources",
"pr": 234
}
],
"timestamp": 1620703098
},
{ {
"version": "6.12.0", "version": "6.12.0",
"changes": [ "changes": [

View File

@@ -5,6 +5,10 @@ Edit the package's CHANGELOG.json file only.
CHANGELOG CHANGELOG
## v6.13.0 - _May 11, 2021_
* Add LiquidityProvider to BSC sources (#234)
## v6.12.0 - _May 10, 2021_ ## v6.12.0 - _May 10, 2021_
* `TwoHopSampler` to use `call` over `staticcall` in order to support sources like `Uniswap_V3` and `Balancer_V2` (#233) * `TwoHopSampler` to use `call` over `staticcall` in order to support sources like `Uniswap_V3` and `Balancer_V2` (#233)

View File

@@ -1,6 +1,6 @@
{ {
"name": "@0x/asset-swapper", "name": "@0x/asset-swapper",
"version": "6.12.0", "version": "6.13.0",
"engines": { "engines": {
"node": ">=6.12" "node": ">=6.12"
}, },

View File

@@ -120,6 +120,7 @@ export const SELL_SOURCE_FILTER_BY_CHAIN_ID = valueByChainId<SourceFilters>(
ERC20BridgeSource.CafeSwap, ERC20BridgeSource.CafeSwap,
ERC20BridgeSource.CheeseSwap, ERC20BridgeSource.CheeseSwap,
ERC20BridgeSource.JulSwap, ERC20BridgeSource.JulSwap,
ERC20BridgeSource.LiquidityProvider,
]), ]),
}, },
@@ -190,6 +191,7 @@ export const BUY_SOURCE_FILTER_BY_CHAIN_ID = valueByChainId<SourceFilters>(
ERC20BridgeSource.CafeSwap, ERC20BridgeSource.CafeSwap,
ERC20BridgeSource.CheeseSwap, ERC20BridgeSource.CheeseSwap,
ERC20BridgeSource.JulSwap, ERC20BridgeSource.JulSwap,
ERC20BridgeSource.LiquidityProvider,
]), ]),
}, },
new SourceFilters([]), new SourceFilters([]),