-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
59 changed files
with
1,330 additions
and
394 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
name: Trigger production deployment | ||
|
||
on: | ||
push: | ||
tags: | ||
- 'v[0-9]+.[0-9]+.[0-9]+' | ||
|
||
defaults: | ||
run: | ||
shell: bash | ||
|
||
jobs: | ||
tag-image: | ||
runs-on: ubuntu-latest | ||
env: | ||
IMAGE_URL: europe-west1-docker.pkg.dev/angle-artifacts/angle-docker-registry/merkl-app | ||
steps: | ||
- uses: 'google-github-actions/auth@v0' | ||
with: | ||
credentials_json: '${{ secrets.GCLOUD_SECRET_ARTIFACTS }}' | ||
- name: Login to Docker | ||
run: gcloud auth configure-docker europe-west1-docker.pkg.dev | ||
- name: Pull and tag image | ||
run: | | ||
export SHORT_SHA=${GITHUB_SHA:0:7} | ||
export VERSION=${GITHUB_REF#refs/tags/} | ||
docker pull $IMAGE_URL:$SHORT_SHA | ||
docker tag $IMAGE_URL:$SHORT_SHA $IMAGE_URL:$VERSION | ||
docker push $IMAGE_URL:$VERSION | ||
trigger-production-deployment: | ||
runs-on: ubuntu-latest | ||
needs: tag-image | ||
steps: | ||
- name: Install dependencies | ||
run: | | ||
sudo snap install yq | ||
- name: Clone deployments repo | ||
uses: actions/checkout@v3 | ||
with: | ||
repository: AngleProtocol/deployments | ||
token: ${{ secrets.ACCESS_TOKEN }} | ||
path: deployments | ||
- name: Modify config.production.yaml and push to deployments | ||
run: | | ||
cd deployments | ||
export VERSION=${GITHUB_REF#refs/tags/} | ||
yq -i '.merkl-app.version = strenv(VERSION)' ./config.production.yaml | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "BaptistG" | ||
git add ./config.production.yaml | ||
git commit -m "Update config.production.yaml with merkl-app version $VERSION" | ||
git push |
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,68 @@ | ||
name: Build image and trigger staging deployment | ||
|
||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: | ||
- main | ||
|
||
defaults: | ||
run: | ||
shell: bash | ||
|
||
jobs: | ||
build-image: | ||
runs-on: ubuntu-latest | ||
env: | ||
IMAGE_URL: europe-west1-docker.pkg.dev/angle-artifacts/angle-docker-registry/merkl-app | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
submodules: recursive | ||
token: '${{ secrets.ACCESS_TOKEN }}' | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: 18 | ||
- uses: 'google-github-actions/auth@v0' | ||
with: | ||
credentials_json: '${{ secrets.GCLOUD_SECRET_ARTIFACTS }}' | ||
- name: Login to Docker | ||
run: gcloud auth configure-docker europe-west1-docker.pkg.dev | ||
- name: Build image | ||
run: | | ||
export SHORT_SHA=${GITHUB_SHA:0:7} | ||
docker pull $IMAGE_URL:latest || true | ||
docker build --cache-from $IMAGE_URL:latest --tag $IMAGE_URL:$SHORT_SHA --tag $IMAGE_URL:latest . | ||
- name: Push image | ||
run: | | ||
export SHORT_SHA=${GITHUB_SHA:0:7} | ||
docker push $IMAGE_URL:$SHORT_SHA | ||
trigger-staging-deployment: | ||
runs-on: ubuntu-latest | ||
needs: build-image | ||
steps: | ||
- name: Install dependencies | ||
run: | | ||
sudo snap install yq | ||
- name: Clone deployments repo | ||
uses: actions/checkout@v3 | ||
with: | ||
repository: AngleProtocol/deployments | ||
token: ${{ secrets.ACCESS_TOKEN }} | ||
path: deployments | ||
- name: Modify config.staging.yaml and push to deployments | ||
run: | | ||
cd deployments | ||
export SHORT_SHA=${GITHUB_SHA:0:7} | ||
yq -i '.merkl-app.version = strenv(SHORT_SHA)' ./config.staging.yaml | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "BaptistG" | ||
git add ./config.staging.yaml | ||
git commit -m "Update config.staging.yaml with merkl-app version $SHORT_SHA" | ||
git push |
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,4 @@ | ||
{ | ||
"recommendations": [], | ||
"unwantedRecommendations": [] | ||
} |
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,18 @@ | ||
{ | ||
"editor.codeActionsOnSave": { | ||
"source.organizeImports.biome": "explicit" | ||
}, | ||
"editor.defaultFormatter": "biomejs.biome", | ||
"[typescript]": { | ||
"editor.defaultFormatter": "biomejs.biome" | ||
}, | ||
"[javascript]": { | ||
"editor.defaultFormatter": "biomejs.biome" | ||
}, | ||
"editor.formatOnSave": true, | ||
"editor.formatOnType": false, | ||
"editor.foldingImportsByDefault": true, | ||
"editor.foldingHighlight": true, | ||
"editor.foldingStrategy": "auto", | ||
"files.eol": "\n" | ||
} |
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
Submodule dappkit
updated
14 files
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
import { api } from "../index.server"; | ||
import { fetchWithLogs } from "../utils"; | ||
|
||
export abstract class ClaimsService { | ||
static async #fetch<R, T extends { data: R; status: number; response: Response }>( | ||
call: () => Promise<T>, | ||
resource = "Claims", | ||
): Promise<NonNullable<T["data"]>> { | ||
const { data, status } = await fetchWithLogs(call); | ||
|
||
if (status === 404) throw new Response(`${resource} not found`, { status }); | ||
if (status === 500) throw new Response(`${resource} unavailable`, { status }); | ||
if (data == null) throw new Response(`${resource} unavailable`, { status }); | ||
return data; | ||
} | ||
|
||
static async getForUser(address: string) { | ||
return await ClaimsService.#fetch(async () => api.v4.claims({ address }).get()); | ||
} | ||
} |
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,56 @@ | ||
import { api as clientApi } from "src/api/index.client"; | ||
import { fetchWithLogs } from "../utils"; | ||
|
||
export abstract class InteractionService { | ||
static async #fetch<R, T extends { data: R; status: number; response: Response }>( | ||
call: () => Promise<T>, | ||
resource = "Chain", | ||
): Promise<NonNullable<T["data"]>> { | ||
const { data, status } = await fetchWithLogs(call); | ||
|
||
if (status === 404) throw new Response(`${resource} not found`, { status }); | ||
if (status === 500) throw new Response(`${resource} unavailable`, { status }); | ||
if (data == null) throw new Response(`${resource} unavailable`, { status }); | ||
return data; | ||
} | ||
|
||
/** | ||
* Client side | ||
* @param chainId | ||
* @param protocolId | ||
* @param identifier | ||
*/ | ||
static async getTarget(chainId: number, protocolId: string, identifier: string) { | ||
const targets = await InteractionService.#fetch(() => | ||
clientApi.v4.interaction.targets.get({ | ||
query: { chainId, protocolId, identifier }, | ||
}), | ||
); | ||
|
||
//TODO: opportunity/:id/target instead of taking the first result and expecting unique | ||
return targets?.[0]; | ||
} | ||
|
||
/** | ||
* Client side | ||
*/ | ||
static async getTransaction(payload: Parameters<typeof clientApi.v4.interaction.transaction.get>[0]["query"]) { | ||
const transaction = await InteractionService.#fetch(() => | ||
clientApi.v4.interaction.transaction.get({ | ||
query: payload, | ||
}), | ||
); | ||
|
||
return transaction; | ||
} | ||
|
||
static async getBalances(chainId: number, address: string) { | ||
const tokens = await InteractionService.#fetch(() => | ||
clientApi.v4.tokens.balances.get({ | ||
query: { chainId: chainId, userAddress: address }, | ||
}), | ||
); | ||
|
||
return tokens; | ||
} | ||
} |
Oops, something went wrong.