7 lines
131 B
JavaScript
7 lines
131 B
JavaScript
|
const ethers = import('./pkg');
|
||
|
|
||
|
ethers
|
||
|
.then(m => {
|
||
|
m.deploy().catch(console.error);
|
||
|
})
|
||
|
.catch(console.error);
|