├── .gitattributes ├── .gitignore ├── README.md ├── index.d.ts ├── index.js ├── interface.ts ├── package.json ├── patches ├── @ethersproject+hdnode+5.7.0.patch ├── @ethersproject+json-wallets+5.7.0.patch ├── @ethersproject+wallet+5.7.0.patch ├── react-native-scrypt+1.2.1.patch └── react-native-web3-wallet+1.2.6.patch └── tea.yaml /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heroims/react-native-web3-wallet/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heroims/react-native-web3-wallet/HEAD/README.md -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heroims/react-native-web3-wallet/HEAD/index.d.ts -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heroims/react-native-web3-wallet/HEAD/index.js -------------------------------------------------------------------------------- /interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heroims/react-native-web3-wallet/HEAD/interface.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heroims/react-native-web3-wallet/HEAD/package.json -------------------------------------------------------------------------------- /patches/@ethersproject+hdnode+5.7.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heroims/react-native-web3-wallet/HEAD/patches/@ethersproject+hdnode+5.7.0.patch -------------------------------------------------------------------------------- /patches/@ethersproject+json-wallets+5.7.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heroims/react-native-web3-wallet/HEAD/patches/@ethersproject+json-wallets+5.7.0.patch -------------------------------------------------------------------------------- /patches/@ethersproject+wallet+5.7.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heroims/react-native-web3-wallet/HEAD/patches/@ethersproject+wallet+5.7.0.patch -------------------------------------------------------------------------------- /patches/react-native-scrypt+1.2.1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heroims/react-native-web3-wallet/HEAD/patches/react-native-scrypt+1.2.1.patch -------------------------------------------------------------------------------- /patches/react-native-web3-wallet+1.2.6.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heroims/react-native-web3-wallet/HEAD/patches/react-native-web3-wallet+1.2.6.patch -------------------------------------------------------------------------------- /tea.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heroims/react-native-web3-wallet/HEAD/tea.yaml --------------------------------------------------------------------------------