-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into acrossv3-hotfix
- Loading branch information
Showing
28 changed files
with
1,741 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -123,6 +123,7 @@ jobs: | |
echo "Current version: $CURRENT_VERSION" | ||
VERSION_FRAGMENT="" | ||
BETA="" | ||
# Determine the type of version bump | ||
if [[ "$BRANCH_NAME" == "main" ]]; then | ||
|
@@ -151,10 +152,9 @@ jobs: | |
PATCH=$((PATCH + 1)) | ||
elif [[ "$VERSION_FRAGMENT" == "beta" ]]; then | ||
PATCH=$((PATCH + 1)) | ||
NEW_VERSION="${MAJOR}.${MINOR}.${PATCH}-beta" | ||
else | ||
NEW_VERSION="${MAJOR}.${MINOR}.${PATCH}" | ||
BETA="-beta" | ||
fi | ||
NEW_VERSION="${MAJOR}.${MINOR}.${PATCH}${BETA}" | ||
echo "New version: $NEW_VERSION" | ||
echo "NEW_VERSION=$NEW_VERSION" >> $GITHUB_ENV | ||
|
@@ -169,7 +169,7 @@ jobs: | |
run: | | ||
cd lifi-contract-types | ||
TMP=$(mktemp) | ||
jq --arg new_ver "$NEW_VERSION" '.version=$new_ver' package.json > "$TMP" && mv "$TMP" package.json | ||
jq --arg version "$NEW_VERSION" '.version=$version' package.json > "$TMP" && mv "$TMP" package.json | ||
git config user.name github-actions | ||
git config user.email [email protected] | ||
echo "Updating version from $LATEST_TAG to $NEW_VERSION" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -44,3 +44,4 @@ test/logs | |
script/config.sh | ||
script/playground.sh | ||
test/solidity/TestPlayground.t.sol | ||
.aider* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
{ | ||
"mainnet": { | ||
"relayReceiver": "0xa5f565650890fba1824ee0f21ebbbf660a179934", | ||
"relaySolver": "0xf70da97812CB96acDF810712Aa562db8dfA3dbEF" | ||
}, | ||
"optimism": { | ||
"relayReceiver": "0xa5f565650890fba1824ee0f21ebbbf660a179934", | ||
"relaySolver": "0xf70da97812CB96acDF810712Aa562db8dfA3dbEF" | ||
}, | ||
"polygon": { | ||
"relayReceiver": "0xa5f565650890fba1824ee0f21ebbbf660a179934", | ||
"relaySolver": "0xf70da97812CB96acDF810712Aa562db8dfA3dbEF" | ||
}, | ||
"boba": { | ||
"relayReceiver": "0xa06e1351e2fd2d45b5d35633ca7ecf328684a109", | ||
"relaySolver": "0xf70da97812CB96acDF810712Aa562db8dfA3dbEF" | ||
}, | ||
"arbitrum": { | ||
"relayReceiver": "0xa5f565650890fba1824ee0f21ebbbf660a179934", | ||
"relaySolver": "0xf70da97812CB96acDF810712Aa562db8dfA3dbEF" | ||
}, | ||
"avalanche": { | ||
"relayReceiver": "0xa5f565650890fba1824ee0f21ebbbf660a179934", | ||
"relaySolver": "0xf70da97812CB96acDF810712Aa562db8dfA3dbEF" | ||
}, | ||
"blast": { | ||
"relayReceiver": "0xa5f565650890fba1824ee0f21ebbbf660a179934", | ||
"relaySolver": "0xf70da97812CB96acDF810712Aa562db8dfA3dbEF" | ||
}, | ||
"mode": { | ||
"relayReceiver": "0xa5f565650890fba1824ee0f21ebbbf660a179934", | ||
"relaySolver": "0xf70da97812CB96acDF810712Aa562db8dfA3dbEF" | ||
}, | ||
"linea": { | ||
"relayReceiver": "0x00000000aa467eba42a3d604b3d74d63b2b6c6cb", | ||
"relaySolver": "0xf70da97812CB96acDF810712Aa562db8dfA3dbEF" | ||
}, | ||
"taiko": { | ||
"relayReceiver": "0xa5f565650890fba1824ee0f21ebbbf660a179934", | ||
"relaySolver": "0xf70da97812CB96acDF810712Aa562db8dfA3dbEF" | ||
}, | ||
"scroll": { | ||
"relayReceiver": "0xa5f565650890fba1824ee0f21ebbbf660a179934", | ||
"relaySolver": "0xf70da97812CB96acDF810712Aa562db8dfA3dbEF" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.