smoldot 1.0.5 → 1.0.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -119,8 +119,8 @@ const client = smoldot.startWithBytecode({
119
119
 
120
120
  // `worker.ts`
121
121
 
122
- import * as smoldot from '@substrate/smoldot-light/worker';
123
- import { compileBytecode } from '@substrate/smoldot-light/bytecode';
122
+ import * as smoldot from 'smoldot/worker';
123
+ import { compileBytecode } from 'smoldot/bytecode';
124
124
 
125
125
  compileBytecode().then((bytecode) => postMessage(bytecode))
126
126
  onmessage = (msg) => smoldot.run(msg.data);