Skip to content

Commit

Permalink
Adding solana standard support (#504)
Browse files Browse the repository at this point in the history
  • Loading branch information
y3fers0n committed Feb 21, 2024
1 parent 7034fdc commit 2bfd36a
Show file tree
Hide file tree
Showing 27 changed files with 9,164 additions and 34 deletions.
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.

0 comments on commit 2bfd36a

Please sign in to comment.