Skip to content
Merged
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
309e95e
chore: update bug report and feature request tags (#4137)
Sam-Newman May 5, 2025
ab5fa63
chore: version packages (#4229)
github-actions[bot] May 5, 2025
3f2a4e9
fix: balance not updating after send (#4301)
tomiir May 5, 2025
9b72a99
chore: enable demo e2e tests (#4246)
enesozturk May 5, 2025
5524f44
fix: try/catch getSupportedNetworks (#4303)
tomiir May 6, 2025
eabe93f
chore: disable request permissions btn when permissions capability is…
KannuSingh May 6, 2025
bfcd320
fix: remove mobile wallets without a mobile_link from the all wallets…
tomiir May 6, 2025
e0c48d6
fix: don't override account state on previous chain when switching ne…
svenvoskamp May 7, 2025
0cb2341
chore/upgrade wc 2.20.2 (#4312)
enesozturk May 7, 2025
be47fdd
feat: appkit codemod (#4314)
enesozturk May 7, 2025
8ff8958
chore: update open pay interface (#4316)
lukaisailovic May 7, 2025
7bd646d
fix: CI blink (#4307)
tomiir May 8, 2025
e7cbe0c
fix: auth wagmi provider (#4315)
ganchoradkov May 8, 2025
c8ba1bd
fix: do not subscribe in wagmi contructor and do it in construct (#4264)
tomiir May 8, 2025
a997eec
feat: multi wallet controllers and storage (#3955)
enesozturk May 8, 2025
7b8a64a
fix: wait for magic to initialize (#4317)
ganchoradkov May 8, 2025
84f09ba
chore: upgrade all dependencies (#4313)
enesozturk May 9, 2025
5afc810
fix: expose `fetchBalance` method (#3598)
svenvoskamp May 9, 2025
8612461
chore: pay analytics events (#4320)
lukaisailovic May 9, 2025
a855530
chore: improve social login latency (#4107)
svenvoskamp May 9, 2025
209deb1
Merge branch 'reown-com:main' into circleci-project-setup
Dargon789 May 9, 2025
d8c18a5
Merge branch 'reown-com:main' into circleci-project-setup
Dargon789 May 18, 2025
22f1f27
Merge branch 'reown-com:main' into circleci-project-setup
Dargon789 May 22, 2025
a13d97c
Merge branch 'reown-com:main' into circleci-project-setup
Dargon789 May 27, 2025
008c34a
Add .circleci/config.yml
Dargon789 May 27, 2025
71a2779
Add .circleci/config.yml
Dargon789 May 28, 2025
e2743f4
Updated config.yml
Dargon789 May 28, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Use the latest 2.1 version of CircleCI pipeline process engine.
# See: https://circleci.com/docs/configuration-reference
version: 2.1

# Orbs are reusable packages of CircleCI configuration that you may share across projects, enabling you to create encapsulated, parameterized commands, jobs, and executors that can be used across multiple projects.
# See: https://circleci.com/docs/orb-intro/
orbs:
aws-cli: circleci/aws-cli@2.0.3

# Orchestrate jobs using workflows
# See: https://circleci.com/docs/workflows/ & https://circleci.com/docs/configuration-reference/#workflows
jobs:
example-job:
docker:
# replace with your preferred image
- image: cimg/base:stable
steps:
- aws-cli/setup
workflows:
example-workflow:
jobs:
- example-job