ethers-rs/examples/ethers-wasm/index.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
132 B
JavaScript
Raw Normal View History

const ethers = import("./pkg");
ethers
.then(m => {
m.deploy().catch(console.error);
})
.catch(console.error);