Skip to content

Commit 01276b8

Browse files
committed
chore: merging conflicts when rebasing from main
1 parent 554de77 commit 01276b8

File tree

5 files changed

+7
-15
lines changed

5 files changed

+7
-15
lines changed

.github/workflows/ci-deep.yml

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -76,15 +76,7 @@ jobs:
7676

7777
notify-on-failure:
7878
if: failure()
79-
needs:
80-
[
81-
"lint",
82-
"build",
83-
"test-unit",
84-
"test-integration",
85-
"test-invariant",
86-
"test-fork",
87-
]
79+
needs: ["check", "build", "test-unit", "test-integration", "test-invariant", "test-fork"]
8880
runs-on: "ubuntu-latest"
8981
steps:
9082
- name: "Send Slack notification"

.github/workflows/ci-multibuild.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ jobs:
1616
uses: "oven-sh/setup-bun@v2"
1717
with:
1818
bun-version: "latest"
19+
1920
- name: "Install the Node.js dependencies"
2021
run: "bun install --frozen-lockfile"
2122

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,8 +92,8 @@ populate it with the appropriate environment values. You need to provide your mn
9292
To make CI work in your pull request, ensure that the necessary environment variables are configured in your forked
9393
repository's secrets. Please add the following variable in your GitHub Secrets:
9494

95-
- `API_KEY_INFURA`: sign up on [Infura](https://infura.io/)
96-
- `MAINNET_RPC_URL`: sign up on [Alchemy](https://alchemy.com/)
95+
- MAINNET_RPC_URL
96+
- ROUTEMESH_API_KEY
9797

9898
## Integration with VSCode
9999

scripts/solidity/Init.s.sol

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ import { ISablierLockup } from "../../src/interfaces/ISablierLockup.sol";
1010
import { Lockup } from "../../src/types/Lockup.sol";
1111
import { LockupDynamic } from "../../src/types/LockupDynamic.sol";
1212
import { LockupLinear } from "../../src/types/LockupLinear.sol";
13+
import { LockupTranched } from "../../src/types/LockupTranched.sol";
1314

1415
interface IERC20Mint {
1516
function mint(address beneficiary, uint256 value) external;
@@ -100,12 +101,11 @@ contract Init is BaseScript {
100101
Lockup.CreateWithDurations({
101102
sender: sender,
102103
recipient: recipient,
103-
totalAmount: 2.5e18,
104+
depositAmount: 2.5e18,
104105
token: token,
105106
cancelable: true,
106107
transferable: true,
107-
shape: "Two Tranches",
108-
broker: Broker(address(0), ud60x18(0))
108+
shape: "Two Tranches"
109109
}),
110110
tranches
111111
);

scripts/solidity/LockupNFTDescriptorAddresses.sol

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ abstract contract LockupNFTDescriptorAddresses {
3434
if (chainId == ChainId.SONIC) return 0x955dC7A2170782344FA9Ac11De0C0C42C05De2Fc;
3535
if (chainId == ChainId.SOPHON) return 0xAc2E42b520364940c90Ce164412Ca9BA212d014B;
3636
if (chainId == ChainId.SUPERSEED) return 0xa4576b58Ec760A8282D081dc94F3dc716DFc61e9;
37-
// if (chainId == ChainId.TANGLE) return 0x92FC05e49c27884d554D98a5C01Ff0894a9DC29a;
3837
if (chainId == ChainId.UNICHAIN) return 0xa5F12D63E18a28C9BE27B6f3d91ce693320067ba;
3938
if (chainId == ChainId.XDC) return 0x4c1311a9d88BFb7023148aB04F7321C2E91c29bf;
4039
if (chainId == ChainId.ZKSYNC) return 0x955dC7A2170782344FA9Ac11De0C0C42C05De2Fc;

0 commit comments

Comments
 (0)