Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master' into feat/relayer
Browse files Browse the repository at this point in the history
  • Loading branch information
gregdhill committed Jan 31, 2025
2 parents 65965db + 9217101 commit 4733092
Show file tree
Hide file tree
Showing 65 changed files with 3,286 additions and 511 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/contracts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@ jobs:
- name: Install deps
run: forge install
- name: Run forge tests
run: forge test -vvv --deny-warnings
# Currently forked tests are disabled to increase reliability of CI builds
run: |
forge test --no-match-contract Forked -vvv --deny-warnings
bindings:
name: Bindings
Expand Down
7 changes: 0 additions & 7 deletions docs/docs/contracts/contract_references.md

This file was deleted.

14 changes: 0 additions & 14 deletions docs/docs/contracts/src/src/SystemState.sol/library.SystemState.md

This file was deleted.

164 changes: 0 additions & 164 deletions docs/docs/contracts/src/src/bridge/BitcoinTx.sol/library.BitcoinTx.md

This file was deleted.

This file was deleted.

27 changes: 0 additions & 27 deletions docs/docs/contracts/src/src/bridge/IRelay.sol/interface.IRelay.md

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# StrategySlippageArgs
[Git Source](https://github.com/bob-collective/bob/blob/master/src/gateway/CommonStructs.sol)


```solidity
struct StrategySlippageArgs {
uint256 amountOutMin;
}
```

Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# IStrategyWithSlippageArgs
[Git Source](https://github.com/bob-collective/bob/blob/master/src/gateway/IStrategy.sol)

**Inherits:**
[IStrategy](../../gateway/IStrategy.sol/interface.IStrategy.md)


## Functions
### handleGatewayMessageWithSlippageArgs


```solidity
function handleGatewayMessageWithSlippageArgs(
IERC20 tokenSent,
uint256 amountIn,
address recipient,
StrategySlippageArgs memory args
) public virtual;
```

### handleGatewayMessage


```solidity
function handleGatewayMessage(IERC20 tokenSent, uint256 amountIn, address recipient, bytes memory message) external;
```

Loading

0 comments on commit 4733092

Please sign in to comment.