Skip to content

Commit 800e6ff

Browse files
Merge pull request #385 from informalsystems/main
Merge main branch into release/v3.x-new to prepare for v3.6.7 release
2 parents 44d4a6f + 8d15c9c commit 800e6ff

File tree

187 files changed

+25454
-1725
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

187 files changed

+25454
-1725
lines changed
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
- Add the concept of adapters that can be plugged on Inflow vaults contracts to automate specific operations. It introduces two adapters: Mars adapter that can automatically deposit/withdraw to/from Mars lending facility, and IBC adapter that can be triggered to IBC-send tokens to allowed chains and recipients. ([\#355](https://github.com/informalsystems/hydro/pull/355))
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
- Add a Forwarder contract that allows bridging of USDC tokens from EVM-compatible blockchains to Neutron. ([\#359](https://github.com/informalsystems/hydro/pull/359))
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
- Add the skip swap adapter that can be triggered to request token swaps on local or remote chains via IBC + PFM + Hooks, using Skip swap contracts. ([\#361](https://github.com/informalsystems/hydro/pull/361))
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
- Add `ControlCenterPoolInfo` query to the Inflow vault contract that returns the pool info from the Control Center contract. ([\#363](https://github.com/informalsystems/hydro/pull/363))
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
- Clean-up validators info from the LSM token info provider store in case of validator unbonding. ([\#370](https://github.com/informalsystems/hydro/pull/370))
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
- Added `AllAvailableConversionFunds` query that returns all conversion fund denoms with their amounts and base token equivalents for a given round, with pagination support via `start_after` and `limit` parameters
2+
([\#374](https://github.com/informalsystems/hydro/pull/374))

.changelog/v3.6.7/summary.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Date: January 23rd, 2025
Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
name: Claude Code Review
2+
3+
on:
4+
pull_request:
5+
types: [opened, ready_for_review]
6+
7+
jobs:
8+
claude-review:
9+
runs-on: ubuntu-latest
10+
permissions:
11+
contents: read
12+
pull-requests: read
13+
issues: read
14+
id-token: write
15+
16+
steps:
17+
- name: Checkout repository
18+
uses: actions/checkout@v4
19+
with:
20+
fetch-depth: 1
21+
22+
- name: Run Claude Code Review
23+
id: claude-review
24+
uses: anthropics/claude-code-action@v1
25+
with:
26+
claude_code_oauth_token: ${{ secrets.CLAUDE_CODE_OAUTH_TOKEN }}
27+
prompt: |
28+
REPO: ${{ github.repository }}
29+
PR NUMBER: ${{ github.event.pull_request.number }}
30+
31+
Please review this pull request and provide feedback on:
32+
- Code quality and best practices
33+
- Potential bugs or issues
34+
- Performance considerations
35+
- Security concerns
36+
- Test coverage
37+
38+
Use the repository's CLAUDE.md for guidance on style and conventions. Be constructive and helpful in your feedback.
39+
Do not give a star-rating to evaluate performance. Avoid "celebratory" emojis (rockets, partyhats, etc) and
40+
use Emojis only where they help in styling e.g. a green checkbox, red cross to designate things that are working/not working.
41+
42+
Use `gh pr comment` with your Bash tool to leave your review as a comment on the PR.
43+
44+
# See https://github.com/anthropics/claude-code-action/blob/main/docs/usage.md
45+
# or https://code.claude.com/docs/en/cli-reference for available options
46+
claude_args: '--allowed-tools "Bash(gh issue view:*),Bash(gh search:*),Bash(gh issue list:*),Bash(gh pr comment:*),Bash(gh pr diff:*),Bash(gh pr view:*),Bash(gh pr list:*)"'
47+

.github/workflows/claude.yml

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
name: Claude Code
2+
3+
on:
4+
issue_comment:
5+
types: [created]
6+
pull_request_review_comment:
7+
types: [created]
8+
issues:
9+
types: [opened, assigned]
10+
pull_request_review:
11+
types: [submitted]
12+
13+
jobs:
14+
claude:
15+
if: |
16+
(github.event_name == 'issue_comment' && contains(github.event.comment.body, '@claude')) ||
17+
(github.event_name == 'pull_request_review_comment' && contains(github.event.comment.body, '@claude')) ||
18+
(github.event_name == 'pull_request_review' && contains(github.event.review.body, '@claude')) ||
19+
(github.event_name == 'issues' && (contains(github.event.issue.body, '@claude') || contains(github.event.issue.title, '@claude')))
20+
runs-on: ubuntu-latest
21+
permissions:
22+
contents: read
23+
pull-requests: read
24+
issues: read
25+
id-token: write
26+
actions: read # Required for Claude to read CI results on PRs
27+
steps:
28+
- name: Checkout repository
29+
uses: actions/checkout@v4
30+
with:
31+
fetch-depth: 1
32+
33+
- name: Run Claude Code
34+
id: claude
35+
uses: anthropics/claude-code-action@v1
36+
with:
37+
claude_code_oauth_token: ${{ secrets.CLAUDE_CODE_OAUTH_TOKEN }}
38+
39+
# This is an optional setting that allows Claude to read CI results on PRs
40+
additional_permissions: |
41+
actions: read
42+
43+
# Optional: Give a custom prompt to Claude. If this is not specified, Claude will perform the instructions specified in the comment that tagged it.
44+
# prompt: 'Update the pull request description to include a summary of changes.'
45+
46+
# Optional: Add claude_args to customize behavior and configuration
47+
# See https://github.com/anthropics/claude-code-action/blob/main/docs/usage.md
48+
# or https://code.claude.com/docs/en/cli-reference for available options
49+
# claude_args: '--allowed-tools Bash(gh pr:*)'
50+

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@ tools/build/*
2929
# log files from deployments
3030
*_res.json
3131
*_tx.json
32+
scripts/*.json
33+
scripts/skip-adapter/*.json
3234

3335
.seed
3436

@@ -37,4 +39,3 @@ node_modules/
3739

3840
contracts/liquid-collateral/package.json
3941
contracts/liquid-collateral/package-lock.json
40-

0 commit comments

Comments
 (0)