Skip to content

Commit

Permalink
chore: Add endpoint setup task
Browse files Browse the repository at this point in the history
  • Loading branch information
janjakubnanista committed Dec 12, 2023
1 parent 96f8454 commit 64999fe
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions packages/ua-utils-evm-hardhat-test/tasks/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import { task } from 'hardhat/config'
import { setupDefaultEndpoint } from '../test/__utils__/endpoint'

/**
* If you want to expose the networks locally
* and deploy your own endpoints, this task will do just that
*
* See the root README.md section for info about how to expose networks locally
*/
task('lz:test:endpoint:wire', 'Wire the test endpoint', async () => {
await setupDefaultEndpoint()
})

0 comments on commit 64999fe

Please sign in to comment.