Skip to content

Commit

Permalink
2244, enable proxy OO (5.4.2)
Browse files Browse the repository at this point in the history
  • Loading branch information
axtezy authored Mar 6, 2024
2 parents 40178f5 + 0113834 commit 04482e2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 9 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "rubic-sdk",
"version": "5.4.1",
"version": "5.4.2",
"description": "Simplify dApp creation",
"main": "lib/index.js",
"types": "lib/index.d.ts",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,7 @@ import { PriceToken, PriceTokenAmount, Token } from 'src/common/tokens';
import { notNull } from 'src/common/utils/object';
import { combineOptions } from 'src/common/utils/options';
import pTimeout from 'src/common/utils/p-timeout';
import {
BLOCKCHAIN_NAME,
BlockchainName,
EvmBlockchainName
} from 'src/core/blockchain/models/blockchain-name';
import { BlockchainName, EvmBlockchainName } from 'src/core/blockchain/models/blockchain-name';
import { BlockchainsInfo } from 'src/core/blockchain/utils/blockchains-info/blockchains-info';
import { ProviderAddress } from 'src/core/sdk/models/provider-address';
import { getPriceTokensFromInputTokens } from 'src/features/common/utils/get-price-tokens-from-input-tokens';
Expand Down Expand Up @@ -193,9 +189,6 @@ export class OnChainManager {
let useProxy: boolean;
if (options?.useProxy === false) {
useProxy = options.useProxy;
//@TODO enable Proxy after fix OO Blast
} else if (from.blockchain === BLOCKCHAIN_NAME.BLAST) {
useProxy = false;
} else {
useProxy =
OnChainProxyService.isSupportedBlockchain(from.blockchain) &&
Expand Down

0 comments on commit 04482e2

Please sign in to comment.