Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feat/ambire login sdk #4

Open
wants to merge 25 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
efd6b26
Add sdk and try to implement ambire module for web3-onboard
cmihaylov Jan 2, 2023
e5c76c1
Fix ambire wallet provider account/login methods. Refactor wallet fil…
cmihaylov Jan 3, 2023
1377441
Add logic for ambire provider personal_sign
cmihaylov Jan 3, 2023
82985fb
Add handleSignMessage function for common logic. Add eth_sign method.
cmihaylov Jan 4, 2023
db9d180
Add eth_signTypedData and eth_signTypedData_4 methods
cmihaylov Jan 4, 2023
49bb4dd
Update sdk script
cmihaylov Jan 6, 2023
39b5d76
Add handling for already-logged-in, register and reject action.
cmihaylov Jan 6, 2023
5543882
Update sdk script: pass dapp name on login
cmihaylov Jan 9, 2023
1dd5d2f
Update ambire sdk script
cmihaylov Jan 11, 2023
3d0eb48
Update logic to match latest changes in sdk package.
cmihaylov Jan 17, 2023
3c11cb2
Refactor wallet module to take SDK params as input
cmihaylov Jan 18, 2023
0f9bf9c
Add eth_sendTransaction method
cmihaylov Jan 18, 2023
4f0eadb
Fix ambire logo
cmihaylov Jan 19, 2023
3bbd947
Fix onTxSent and onMsgSigned
cmihaylov Jan 19, 2023
7de291d
Add ambire-wallet-sdk as dependency and wallet module from there. Rem…
cmihaylov Jan 20, 2023
bd3d8ec
Add gh-pages workflow for login-sdk
cmihaylov Jan 23, 2023
f33a0d0
Fix wallet url. Revert commented out code
cmihaylov Jan 23, 2023
9ecda49
Fix public path for css and js files
cmihaylov Jan 23, 2023
f4baf4f
Add homepage to package.json
cmihaylov Jan 24, 2023
5b09f75
Update PUBLIC_URL and REACT_APP_SUBFOLDER_PATH
cmihaylov Jan 24, 2023
ec81c0e
Change sdk package dependency. Update logic for loading AmbireWalletM…
cmihaylov Sep 28, 2023
52fa2d1
Merge main and resolve conflicts
cmihaylov Sep 28, 2023
d5ddb77
delete: unused conflicting css file
PetromirDev Sep 29, 2023
49e7f44
Remove old sdk local stuff
cmihaylov Sep 29, 2023
2874e38
Update @ambire/login-sdk-web3-onboard package to latest version
cmihaylov Dec 5, 2023
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
4 changes: 2 additions & 2 deletions .env.production
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
REACT_APP_SUBFOLDER_PATH=
PUBLIC_URL=https://sigtool.ambire.com
REACT_APP_SUBFOLDER_PATH=/login-sdk
PUBLIC_URL=https://sigtool.ambire.com/login-sdk
26 changes: 26 additions & 0 deletions .github/workflows/pages-login-sdk.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Build and Deploy
on:
push:
branches:
- feat/ambire-login-sdk
permissions:
contents: write
jobs:
build-and-deploy:
concurrency: ci-${{ github.ref }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Install and Build staging
run: npm ci --legacy-peer-deps && npm run build

- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
personal_token: ${{ secrets.ACCESS_TOKEN }}
publish_dir: ./build
publish_branch: gh-pages
destination_dir: ./login-sdk
cname: sigtool.ambire.com
Loading
Loading