Tss lib for react-native ** only for react-native **
npm install --save @toruslabs/react-native-tss-lib-bridge
-
Install required peer dependency
react-native-tss-lib/package.json
Line 87 in 4cf2863
-
configure metro.config https://github.com/inokawa/react-native-react-bridge#1-fix-metroconfigjs-to-use-babeltransformer-from-this-library
import { Bridge } from "@toruslabs/react-native-tss-lib-bridge";
import * as TssLibRN from "@toruslabs/react-native-tss-lib-bridge";
import {
Web3AuthMPCCoreKit,
} from '@web3auth/mpc-core-kit';
class ReactStorage implements IAsyncStorage {
async getItem(key: string): Promise<string | null> {
return EncryptedStorage.getItem(key);
}
async setItem(key: string, value: string): Promise<void> {
return EncryptedStorage.setItem(key, value);
}
}
const coreKitInstancelocal = new Web3AuthMPCCoreKit({
web3AuthClientId: 'torus-key-test',
web3AuthNetwork: WEB3AUTH_NETWORK.DEVNET,
uxMode: 'react-native',
asyncStorageKey: new ReactStorage(),
tssLib: TssLibRN,
});
// ...
<View>
<Bridge />
...
<View>
See the contributing guide to learn how to contribute to the repository and the development workflow.
MIT
Made with create-react-native-library