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

Adding Solana standard support #504

Merged
merged 1 commit into from
Feb 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
31 changes: 15 additions & 16 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,30 +2,29 @@ name: Node CI

on:
push:
branches: [ master ]
branches: [master]
pull_request:
branches: [ master ]
branches: [master]

jobs:
build:

runs-on: ubuntu-latest

strategy:
matrix:
node-version: [14.x, 16.x]
node-version: [16.x]

steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}

- name: npm install, build, and test
run: |
npm install web3
npm install
npm run build
npm test
working-directory: src
- name: npm install, build, and test
run: |
npm install web3
npm install
npm run build
npm test
working-directory: src
1 change: 1 addition & 0 deletions adapter/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
lib
7 changes: 7 additions & 0 deletions adapter/.prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"printWidth": 120,
"trailingComma": "es5",
"tabWidth": 4,
"semi": true,
"singleQuote": true
}
19 changes: 19 additions & 0 deletions adapter/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# @solana/wallet-standard-ghost

## 0.1.0

### Minor Changes

- f10d202: Add `solana:signIn` (Sign In With Solana) feature

### Patch Changes

- Updated dependencies [f10d202]
- @solana/wallet-standard-features@1.1.0

## 0.0.0

### Patch Changes

- Updated dependencies [ba56499]
- @solana/wallet-standard-features@1.0.0
Empty file added adapter/README.md
Empty file.