how to use crypto,web3 module in Expo SDK v32

I want to develop SDKVersion32 instead of SDKVersion30.

I understand that expo-random, expo-crypto is currently under development.

I refer to the link for web3 use, but it only works on SDKVersion30

but SDKVersion32 has an error. How do I configure to use crypto,web3?

global.js:

global.Buffer = require('buffer').Buffer;
global.process = require('process');

if (typeof btoa === 'undefined') {
  global.btoa = function(str) {
    return new Buffer(str, 'binary').toString('base64');
  };
}

if (typeof atob === 'undefined') {
  global.atob = function(b64Encoded) {
    return new Buffer(b64Encoded, 'base64').toString('binary');
  };
}

rn-cli.config.js:

const extraNodeModules = require('node-libs-browser');
module.exports = {
 extraNodeModules, 
};

package.json

 "babel-cli": "6.26.0",
 "babel-preset-es2015": "6.24.1",
...
 "dependencies": {
    "web3": "1.0.0-beta.34",
    "node-libs-browser": "2.1.0",
{

Also Please give us a lot of feedback if you know how to use sha3 256 without disconnecting expo.

Hey @taeeh,

You will have to wait til the release of SDK33 to make use of these modules.

Cheers,
Adam

So you can’t use web3 as SDK32 until it’s released?

This topic was automatically closed 15 days after the last reply. New replies are no longer allowed.