rubic-sdk
Version:
Simplify dApp creation
167 lines • 8.77 kB
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.PulseChainCrossChainTrade = void 0;
const blockchain_name_1 = require("../../../../../core/blockchain/models/blockchain-name");
const evm_web3_pure_1 = require("../../../../../core/blockchain/web3-pure/typed-web3-pure/evm-web3-pure/evm-web3-pure");
const web3_pure_1 = require("../../../../../core/blockchain/web3-pure/web3-pure");
const get_from_without_fee_1 = require("../../../../common/utils/get-from-without-fee");
const cross_chain_trade_type_1 = require("../../models/cross-chain-trade-type");
const rubic_proxy_contract_address_1 = require("../common/constants/rubic-proxy-contract-address");
const evm_common_cross_chain_abi_1 = require("../common/evm-cross-chain-trade/constants/evm-common-cross-chain-abi");
const gateway_rubic_cross_chain_abi_1 = require("../common/evm-cross-chain-trade/constants/gateway-rubic-cross-chain-abi");
const evm_cross_chain_trade_1 = require("../common/evm-cross-chain-trade/evm-cross-chain-trade");
const bridge_type_1 = require("../common/models/bridge-type");
const proxy_cross_chain_evm_trade_1 = require("../common/proxy-cross-chain-evm-facade/proxy-cross-chain-evm-trade");
const bridge_manager_1 = require("./omni-bridge-entities/bridge-manager");
const omni_bridge_1 = require("./omni-bridge-entities/omni-bridge");
class PulseChainCrossChainTrade extends evm_cross_chain_trade_1.EvmCrossChainTrade {
get fromBlockchain() {
return this.from.blockchain;
}
get fromContractAddress() {
return this.isProxyTrade
? rubic_proxy_contract_address_1.rubicProxyContractAddress[this.fromBlockchain].gateway
: this.routerAddress;
}
get methodName() {
if (this.isErc677 && this.from.blockchain === blockchain_name_1.BLOCKCHAIN_NAME.ETHEREUM) {
return this.onChainTrade
? 'swapAndStartBridgeTokensViaTransferAndCall'
: 'startBridgeTokensViaTransferAndCall';
}
return this.onChainTrade
? 'swapAndStartBridgeTokensViaGenericCrossChain'
: 'startBridgeTokensViaGenericCrossChain';
}
get isErc677() {
return !this.isTokenRegistered || omni_bridge_1.OmniBridge.isCustomWrap(this.from);
}
constructor(crossChainTrade, providerAddress, routePath, useProxy) {
super(providerAddress, routePath, useProxy);
this.type = cross_chain_trade_type_1.CROSS_CHAIN_TRADE_TYPE.PULSE_CHAIN_BRIDGE;
this.isAggregator = false;
this.bridgeType = bridge_type_1.BRIDGE_TYPE.PULSE_CHAIN_BRIDGE;
this.from = crossChainTrade.from;
this.to = crossChainTrade.to;
this.gasData = crossChainTrade.gasData;
this.slippage = crossChainTrade.slippage;
this.toTokenAmountMin = web3_pure_1.Web3Pure.fromWei(crossChainTrade.toTokenAmountMin, crossChainTrade.to.decimals);
this.feeInfo = crossChainTrade.feeInfo;
this.priceImpact = crossChainTrade.priceImpact;
this.routerAddress = crossChainTrade.routerAddress;
this.onChainSubtype = crossChainTrade.onChainTrade
? { from: crossChainTrade.onChainTrade.type, to: undefined }
: { from: undefined, to: undefined };
this.onChainTrade = crossChainTrade.onChainTrade;
this.isTokenRegistered = crossChainTrade.tokenRegistered;
}
async needApprove() {
this.checkWalletConnected();
if (this.from.isNative || (this.isErc677 && !this.isProxyTrade)) {
return false;
}
const allowance = await this.fromWeb3Public.getAllowance(this.from.address, this.walletAddress, this.fromContractAddress);
return this.from.weiAmount.gt(allowance);
}
async swapDirect(options = {}) {
await this.checkTradeErrors();
if (!this.isProxyTrade || this.isTokenRegistered) {
await this.checkAllowanceAndApprove(options);
}
const { onConfirm, gasPriceOptions } = options;
let transactionHash;
const onTransactionHash = (hash) => {
if (onConfirm) {
onConfirm(hash);
}
transactionHash = hash;
};
// eslint-disable-next-line no-useless-catch
try {
const { data, to, value } = await this.setTransactionConfig(false, options?.useCacheData || false, options.receiverAddress || this.walletAddress);
await this.web3Private.trySendTransaction(to, {
data,
value,
onTransactionHash,
gasPriceOptions
});
return transactionHash;
}
catch (err) {
throw err;
}
}
async getContractParams(options) {
const receiverAddress = options?.receiverAddress || this.walletAddress;
const { data, to, value: providerValue } = await this.setTransactionConfig(false, options?.useCacheData || false, receiverAddress);
const bridgeData = proxy_cross_chain_evm_trade_1.ProxyCrossChainEvmTrade.getBridgeData(options, {
walletAddress: this.walletAddress,
fromTokenAmount: this.from,
toTokenAmount: this.to,
srcChainTrade: this.onChainTrade,
providerAddress: this.providerAddress,
type: `native:${this.type}`,
fromAddress: this.walletAddress
});
const swapData = this.onChainTrade &&
(await proxy_cross_chain_evm_trade_1.ProxyCrossChainEvmTrade.getSwapData(options, {
walletAddress: this.walletAddress,
contractAddress: rubic_proxy_contract_address_1.rubicProxyContractAddress[this.from.blockchain].router,
fromTokenAmount: this.from,
toTokenAmount: this.onChainTrade.to,
onChainEncodeFn: this.onChainTrade.encode.bind(this.onChainTrade)
}));
const providerData = this.isErc677
? this.getProviderDataForErc677(this.from, this.to, receiverAddress)
: await proxy_cross_chain_evm_trade_1.ProxyCrossChainEvmTrade.getGenericProviderData(to, data, this.fromBlockchain, to, '0');
const methodArguments = swapData
? [bridgeData, swapData, providerData]
: [bridgeData, providerData];
const value = this.getSwapValue(providerValue);
const transactionConfiguration = evm_web3_pure_1.EvmWeb3Pure.encodeMethodCall(rubic_proxy_contract_address_1.rubicProxyContractAddress[this.from.blockchain].router, evm_common_cross_chain_abi_1.evmCommonCrossChainAbi, this.methodName, methodArguments, value);
const sendingToken = this.from.isNative ? [] : [this.from.address];
const sendingAmount = this.from.isNative ? [] : [this.from.stringWeiAmount];
return {
contractAddress: rubic_proxy_contract_address_1.rubicProxyContractAddress[this.from.blockchain].gateway,
contractAbi: gateway_rubic_cross_chain_abi_1.gatewayRubicCrossChainAbi,
methodName: 'startViaRubic',
methodArguments: [sendingToken, sendingAmount, transactionConfiguration.data],
value
};
}
getTradeAmountRatio(fromUsd) {
return fromUsd.dividedBy(this.to.tokenAmount);
}
getTradeInfo() {
return {
estimatedGas: this.estimatedGas,
feeInfo: this.feeInfo,
priceImpact: this.priceImpact ?? null,
slippage: this.slippage * 100,
routePath: this.routePath
};
}
async getTransactionConfigAndAmount(receiverAddress) {
const toToken = this.to;
const fromWithoutFee = (0, get_from_without_fee_1.getFromWithoutFee)(this.from, this.feeInfo.rubicProxy?.platformFee?.percent);
const fromToken = this.onChainTrade ? this.onChainTrade.to : fromWithoutFee;
const sourceBridgeManager = bridge_manager_1.BridgeManager.createBridge(fromToken, toToken);
const amount = this.to.stringWeiAmount;
if (fromToken.isNative) {
return {
config: sourceBridgeManager.getDataForNativeSwap(receiverAddress, fromToken.stringWeiAmount),
amount
};
}
return {
config: sourceBridgeManager.getDataForTokenSwap(receiverAddress, fromToken.stringWeiAmount, this.isErc677, fromToken.address),
amount
};
}
getProviderDataForErc677(fromToken, toToken, receiverAddress) {
const sourceBridgeManager = bridge_manager_1.BridgeManager.createBridge(fromToken, toToken);
return [sourceBridgeManager.sourceBridgeAddress, receiverAddress];
}
}
exports.PulseChainCrossChainTrade = PulseChainCrossChainTrade;
//# sourceMappingURL=pulse-chain-cross-chain-trade.js.map