Skip to content

Commit

Permalink
[Fix] Wallet provider (#20)
Browse files Browse the repository at this point in the history
* fix wallet provider

* replace ganache with hardhat, run local node for test
  • Loading branch information
BrettCleary authored May 3, 2024
1 parent 1b0cdbe commit 749fa81
Show file tree
Hide file tree
Showing 7 changed files with 2,004 additions and 774 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
pkg_manager: 'npm'
install: 'npm install'
name: 'test'
command_one: 'npm run test'
command_one: 'npm run startLocalHardhat & npm run test'
command_one_name: 'Run Tests'
checkout_recursive: false
secrets:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ $ npm install -g @hyperplay/cli
$ hyperplay COMMAND
running command...
$ hyperplay (--version)
@hyperplay/cli/2.11.0 win32-x64 node-v20.8.0
@hyperplay/cli/2.11.4 win32-x64 node-v20.8.0
$ hyperplay --help [COMMAND]
USAGE
$ hyperplay COMMAND
Expand Down
7 changes: 7 additions & 0 deletions hardhat.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import { HardhatUserConfig } from "hardhat/config";

const config: HardhatUserConfig = {
solidity: "0.8.24",
};

export default config;
Loading

0 comments on commit 749fa81

Please sign in to comment.