Skip to main content

Class: MockBridgeProvider

Implementsโ€‹

Constructorsโ€‹

constructorโ€‹

โ€ข new MockBridgeProvider(): MockBridgeProvider

Returnsโ€‹

MockBridgeProvider

Propertiesโ€‹

infoโ€‹

โ€ข info: BridgeProviderInfo

Implementation ofโ€‹

BridgeProvider.info

Defined inโ€‹

external/cow-sdk/src/bridging/providers/mock/MockBridgeProvider.ts:71

Methodsโ€‹

decodeBridgeHookโ€‹

โ–ธ decodeBridgeHook(_hook): Promise<BridgeDeposit>

Decode a bridge hook into a bridge deposit information.

This method is used to recover the information about the limit order placed into the bridge locking contract. This allows to load an order from the orderbook and decode the bridging hook and understand what was the minimum buy amount the user signed to receive in the destination chain.

Parametersโ€‹

NameTypeDescription
_hookBridgeHookThe bridge hook

Returnsโ€‹

Promise<BridgeDeposit>

Implementation ofโ€‹

BridgeProvider.decodeBridgeHook

Defined inโ€‹

external/cow-sdk/src/bridging/providers/mock/MockBridgeProvider.ts:136


getBridgingIdโ€‹

โ–ธ getBridgingId(_orderUid, _settlementTx): Promise<string>

Get the identifier of the bridging transaction from the settlement transaction.

Parametersโ€‹

NameTypeDescription
_orderUidstringThe unique identifier of the order
_settlementTxstringThe settlement transaction in which the bridging post-hook was executed

Returnsโ€‹

Promise<string>

Implementation ofโ€‹

BridgeProvider.getBridgingId

Defined inโ€‹

external/cow-sdk/src/bridging/providers/mock/MockBridgeProvider.ts:158


getBuyTokensโ€‹

โ–ธ getBuyTokens(targetChainId): Promise<TokenInfo[]>

Get supported tokens for a chain

Parametersโ€‹

NameType
targetChainIdTargetChainId

Returnsโ€‹

Promise<TokenInfo[]>

Implementation ofโ€‹

BridgeProvider.getBuyTokens

Defined inโ€‹

external/cow-sdk/src/bridging/providers/mock/MockBridgeProvider.ts:80


getCancelBridgingTxโ€‹

โ–ธ getCancelBridgingTx(_bridgingId): Promise<EvmCall>

Parametersโ€‹

NameType
_bridgingIdstring

Returnsโ€‹

Promise<EvmCall>

Implementation ofโ€‹

BridgeProvider.getCancelBridgingTx

Defined inโ€‹

external/cow-sdk/src/bridging/providers/mock/MockBridgeProvider.ts:173


getExplorerUrlโ€‹

โ–ธ getExplorerUrl(bridgingId): string

Get the explorer url for a bridging id.

Parametersโ€‹

NameTypeDescription
bridgingIdstringThe bridging id

Returnsโ€‹

string

Implementation ofโ€‹

BridgeProvider.getExplorerUrl

Defined inโ€‹

external/cow-sdk/src/bridging/providers/mock/MockBridgeProvider.ts:162


getGasLimitEstimationForHookโ€‹

โ–ธ getGasLimitEstimationForHook(_request): number

Returns the estimated gas cost for executing the bridge hook.

This method helps calculate the final amount of tokens the user will receive more accurately. The estimation is done without the amount parameter to break a circular dependency:

  1. Hook gas costs affect the final amount
  2. The final amount could affect hook gas costs

By estimating gas costs independently, we can resolve this dependency cycle.

Parametersโ€‹

NameType
_requestQuoteBridgeRequest

Returnsโ€‹

number

Implementation ofโ€‹

BridgeProvider.getGasLimitEstimationForHook

Defined inโ€‹

external/cow-sdk/src/bridging/providers/mock/MockBridgeProvider.ts:118


getIntermediateTokensโ€‹

โ–ธ getIntermediateTokens(ยซdestructuredยป): Promise<string[]>

Get intermediate tokens given a quote request.

An intermediate token, is a token in the source chain, that could be used to bridge the tokens to the destination chain. This method returns a sorted list of tokens, they are sorted by priority, so first tokens are more likely to be more liquid.

Parametersโ€‹

NameTypeDescription
ยซdestructuredยปQuoteBridgeRequestThe quote request

Returnsโ€‹

Promise<string[]>

Implementation ofโ€‹

BridgeProvider.getIntermediateTokens

Defined inโ€‹

external/cow-sdk/src/bridging/providers/mock/MockBridgeProvider.ts:84


getNetworksโ€‹

โ–ธ getNetworks(): Promise<ChainInfo[]>

Get basic supported chains

Returnsโ€‹

Promise<ChainInfo[]>

Implementation ofโ€‹

BridgeProvider.getNetworks

Defined inโ€‹

external/cow-sdk/src/bridging/providers/mock/MockBridgeProvider.ts:76


getQuoteโ€‹

โ–ธ getQuote(_request): Promise<BridgeQuoteResult>

Get a quote for a bridge request.

Parametersโ€‹

NameTypeDescription
_requestQuoteBridgeRequestThe quote request

Returnsโ€‹

Promise<BridgeQuoteResult>

Implementation ofโ€‹

BridgeProvider.getQuote

Defined inโ€‹

external/cow-sdk/src/bridging/providers/mock/MockBridgeProvider.ts:88


getRefundBridgingTxโ€‹

โ–ธ getRefundBridgingTx(_bridgingId): Promise<EvmCall>

Parametersโ€‹

NameType
_bridgingIdstring

Returnsโ€‹

Promise<EvmCall>

Implementation ofโ€‹

BridgeProvider.getRefundBridgingTx

Defined inโ€‹

external/cow-sdk/src/bridging/providers/mock/MockBridgeProvider.ts:176


getSignedHookโ€‹

โ–ธ getSignedHook(_chainId, _unsignedCall, _signer): Promise<BridgeHook>

Get a pre-authorized hook for initiating a bridge.

The hook contains the ethereum call that the trampoline contract will need to execute during the settlement to initate the bridge.

Typically, this hook will:

  • Get the balance of cow-shed account
  • Ensure the approval for the bridge lock contract is set
  • Deposit into the bridge contract

This hook will include the pre-authorization (signature) of the owner of the cow-shed account (the trader).

Parametersโ€‹

NameType
_chainIdSupportedChainId
_unsignedCallEvmCall
_signerSigner

Returnsโ€‹

Promise<BridgeHook>

Implementation ofโ€‹

BridgeProvider.getSignedHook

Defined inโ€‹

external/cow-sdk/src/bridging/providers/mock/MockBridgeProvider.ts:125


getStatusโ€‹

โ–ธ getStatus(_bridgingId): Promise<BridgeStatusResult>

Get the status of a bridging transaction.

Parametersโ€‹

NameTypeDescription
_bridgingIdstringThe bridging id

Returnsโ€‹

Promise<BridgeStatusResult>

Implementation ofโ€‹

BridgeProvider.getStatus

Defined inโ€‹

external/cow-sdk/src/bridging/providers/mock/MockBridgeProvider.ts:166


getUnsignedBridgeCallโ€‹

โ–ธ getUnsignedBridgeCall(_request, _quote): Promise<EvmCall>

Get an unsigned bridge call for a quote.

The transaction details should be executed in the context of cow-shed account.

Parametersโ€‹

NameTypeDescription
_requestQuoteBridgeRequestThe quote request
_quoteBridgeQuoteResultThe quote

Returnsโ€‹

Promise<EvmCall>

The unsigned transaction details that cow-shed needs to sign

Implementation ofโ€‹

BridgeProvider.getUnsignedBridgeCall

Defined inโ€‹

external/cow-sdk/src/bridging/providers/mock/MockBridgeProvider.ts:122