Web3 Ethereum npm integration

Would this help at all?

/* * * * * * * * * * * * * * * * * * * * * * *

  • Code for the inner site to post a message *
                                            • */
                                              import wixWindow from ‘wix-window’;

// …

wixWindow.postMessage(dataObj);

/* * * * * * * * * * * * * * * * * * * * * * * * *

  • Code for the outer site to receive a message *

  • $w(“#myHtmlComponent”).onMessage( (event, $x) => {
  • let message = event.data;
  • } );
    */