Skip to content

Commit

Permalink
Remove deprecated packages (#373)
Browse files Browse the repository at this point in the history
* remove gateway package and go-starknet

* remove not used imports

* remove deprecated account files

* remove plugins package

* fix errors on contracts package
  • Loading branch information
cicr99 committed Oct 3, 2023
1 parent 042eb1e commit d1f60d5
Show file tree
Hide file tree
Showing 77 changed files with 235 additions and 57,585 deletions.
13 changes: 2 additions & 11 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,19 +30,10 @@ jobs:
run: ./.bin/devnet.sh

- name: Test contracts deployment and execute
run: cd contracts && go test -env devnet -v -run "^(TestGateway|TestRPC)" .
run: cd contracts && go test -env devnet -v -run "^(TestRPC)" .

- name: Test Accounts (starknet.go) on devnet
run: go test -timeout 600s -v -env devnet -run "^(TestGateway|TestRPC|TestGeneral)" .
run: go test -timeout 600s -v -env devnet -run "^(TestRPC|TestGeneral)" .
env:
TESTNET_ACCOUNT_PRIVATE_KEY: ${{ secrets.TESTNET_ACCOUNT_PRIVATE_KEY }}
INTEGRATION_BASE: "http://localhost:5050/rpc"

- name: Test sessionkey on devnet
run: cd plugins/xsessions && ./sessionkey.sh

- name: Test Gateway with testnet
run: cd gateway && go test -v -env testnet .

- name: Test Gateway with devnet
run: cd gateway && go test -v -env devnet .
4 changes: 0 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,6 @@ rpc*/.env.testnet

tmp/

gateway/contracts/*_class.json
!gateway/contracts/account_class.json
gateway/contracts/*_compiled.json

examples/**/*.json
examples/**/*.sum

Expand Down
Loading

0 comments on commit d1f60d5

Please sign in to comment.