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: Initial sdk integration #251

Merged
merged 16 commits into from
Aug 27, 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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/lint-build-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: Lint, Build & Test

on:
push:
branches: [main]
branches: [ main-v2 ]
pull_request:
branches: [main]
branches: [ main-v2 ]

concurrency:
group: ${{ github.head_ref || github.ref_name }}-build-test-scan
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: E2E Tests

on:
push:
branches: [main]
branches: [ main-v2 ]
pull_request:
branches: [main]
branches: [ main-v2 ]

concurrency:
group: ${{ github.head_ref || github.ref_name }}-e2e-test
Expand Down
12 changes: 11 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,14 @@ yarn-error.log*
.vscode
.parcel-cache

.reports
.reports

packages/**/dist
packages/**/.turbo
packages/**/node_modules
apps/**/dist
apps/**/.turbo
apps/**/node_modules
docs/**/dist

coverageUnit
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v18.20.0
v20.11.0
1 change: 1 addition & 0 deletions packages/dapp-kit-react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
"@vechain/dapp-kit": "*",
"@vechain/dapp-kit-ui": "*",
"@vechain/sdk-core": "1.0.0-beta.24",
"@vechain/sdk-network": "1.0.0-beta.29",
"valtio": "1.11.2"
},
"devDependencies": {
Expand Down
1 change: 1 addition & 0 deletions packages/dapp-kit/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
"@vechain/connex-framework": "2.1.0",
"@vechain/connex-types": "^2.1.0",
"@vechain/sdk-core": "1.0.0-beta.24",
"@vechain/sdk-network": "1.0.0-beta.29",
"@walletconnect/modal": "2.6.2",
"@walletconnect/sign-client": "2.10.2",
"@walletconnect/utils": "2.10.2",
Expand Down
4 changes: 0 additions & 4 deletions packages/dapp-kit/src/dapp-kit.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,6 @@ import type { DAppKitOptions } from './types';
const cache: Record<string, DriverNoVendor | undefined> = {};

/**
* START: TEMPORARY COMMENT
* For hashing we will improve SDK conversion and encoding later
* END: TEMPORARY COMMENT
*
* Create a new Thor driver
*
* @param node - The node URL
Expand Down
Loading
Loading