Skip to content

Commit

Permalink
Merge pull request #171 from UniqueNetwork/develop
Browse files Browse the repository at this point in the history
Release 3.1.0
  • Loading branch information
ashkuc authored Jun 20, 2024
2 parents 9699474 + db90824 commit 05d5e08
Show file tree
Hide file tree
Showing 32 changed files with 10,407 additions and 9,331 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-and-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
uses: UniqueNetwork/unique-marketplace-backend/.github/workflows/build-docker-image.yml@master
secrets: inherit
with:
tag: unique-marketplace-backend
tag: ${{ github.event.inputs.tag }}
dockerfile: ./Dockerfile
is_latest: ${{ github.event.inputs.is_latest }}

Expand Down
1 change: 0 additions & 1 deletion .husky/.gitignore

This file was deleted.

19 changes: 0 additions & 19 deletions .husky/commit-msg

This file was deleted.

4 changes: 0 additions & 4 deletions .husky/pre-commit

This file was deleted.

23 changes: 23 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "ts-node",
"type": "node",
"request": "launch",
"args": ["${relativeFile}"],
"runtimeArgs": ["-r", "ts-node/register"],
"cwd": "${workspaceRoot}",
"protocol": "inspector",
"internalConsoleOptions": "openOnSessionStart"
},
{
"name": "Hardhat individual test",
"type": "node",
"request": "launch",
"console": "integratedTerminal",
"runtimeExecutable": "yarn",
"runtimeArgs": ["testhh", "${file}"]
}
]
}
7 changes: 6 additions & 1 deletion hardhat.config.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import { HardhatUserConfig, task } from 'hardhat/config';
import '@nomicfoundation/hardhat-toolbox';
import { HardhatUserConfig, task } from 'hardhat/config';
import { loadConfig } from './packages/contracts/scripts';
import { buildVersion } from './packages/contracts/tasks';
import testConfig from './packages/contracts/test/utils/testConfig';

const appConfig = loadConfig();

Expand All @@ -24,6 +25,10 @@ const config: HardhatUserConfig = {
url: appConfig.opal.rpcUrl,
accounts: appConfig.accounts,
},
test: {
url: testConfig.ethRpcUrl,
accounts: testConfig.ethPrivateKeys,
}
},
mocha: {
timeout: 100000000,
Expand Down
Loading

0 comments on commit 05d5e08

Please sign in to comment.