Skip to content

Commit

Permalink
feat: Initial sdk integration (#251)
Browse files Browse the repository at this point in the history
* feat: add core

* feat: new dependencies

* feat: address utils

* feat: certificate

* feat: version 12 of beta

* feat: implement sdk core in certificate-wallet.ts and wallet-manager.ts

* feat: version 12 of sdk core

* 266 use sdk instead of thor devkit (#267)

* feat: working tests

* feat: remove thor-devkit

* fix: e2e tests

* fix: tests

* Refactor inputs (#268)

* fix: refactor inputs

* fix: improve inputs

* Sonar integration (#254)

* Create sonar-scan.yml

* Create sonar-project.properties

* remove test branch from workflow

---------

Co-authored-by: Fabio Rigamonti <[email protected]>

* fix: adapt to main v2

* feat: add sdk network

* fix: remove temporary comment

* fix: node version

---------

Co-authored-by: Davide Carpini <[email protected]>
Co-authored-by: Fabio Rigamonti <[email protected]>
Co-authored-by: WaqarAhmedVC <[email protected]>
  • Loading branch information
4 people authored Aug 27, 2024
1 parent 7d5ac85 commit d57b66f
Show file tree
Hide file tree
Showing 9 changed files with 862 additions and 5,506 deletions.
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

0 comments on commit d57b66f

Please sign in to comment.