@andreas-timm/create-contract-template
Version:
Contract (EVM) development and maintain system template.
15 lines (12 loc) • 335 B
text/typescript
import { binding, given } from 'cucumber-tsflow'
import '@nomicfoundation/hardhat-viem'
import { Workspace } from '@libs/workspace'
([Workspace])
export class Test {
constructor(private workspace: Workspace) {}
('test')
async test() {
await this.workspace.init()
console.log('test')
}
}