Security News
Opengrep Emerges as Open Source Alternative Amid Semgrep Licensing Controversy
Opengrep forks Semgrep to preserve open source SAST in response to controversial licensing changes.
@portkey/did-ui-react
Advanced tools
npm install "@portkey/did-ui-react"
yarn add "@portkey/did-ui-react"
import { SignIn , DIDWalletInfo} from '@portkey/did-ui-react';
import { useState, useEffect, useCallback } from 'react';
import "@portkey/did-ui-react/dist/assets/index.css";
const App = () => {
const ref = useRef<ISignIn>();
const onFinish = useCallback((didWallet: DIDWalletInfo) => {
console.log('didWallet:', didWallet);
}, []);
return (
<PortkeyProvider networkType={'TESTNET'}>
<button
onClick={() => {
ref.current?.setOpen(true);
}}>
Sign In
</button>
<SignIn ref={ref} onFinish={onFinish} />
</PortkeyProvider>
);
};
If you use it on applications that don't require cross-domain, like Chrome extensions,
please configure your provider address using ConfigProvider.setGlobalConfig
:
import { ConfigProvider } from '@portkey/did-ui-react';
ConfigProvider.setGlobalConfig({
requestDefaults: {
baseURL: 'http://localhost:3000',
},
graphQLUrl: 'http://localhost:3000/graphQL',
});
If you need to customize persistent storage, the default storage is localStorage
:
export interface IStorageSuite {
getItem: (key: string) => Promise<any>;
setItem: (key: string, value: string) => Promise<any>;
removeItem: (key: string) => Promise<any>;
}
ConfigProvider.setGlobalConfig({
storageMethod: new IStorageSuite()
})
You can also use the next-example
in the current project. next-example
yarn next-example dev
or
You can also use the example
in the current project. example
yarn example dev
@portkey/did-ui-react
is written in TypeScript with complete definitions.
You can submit any ideas as pull requests or as GitHub issues. let's build a better antd together.
FAQs
Unknown package
The npm package @portkey/did-ui-react receives a total of 788 weekly downloads. As such, @portkey/did-ui-react popularity was classified as not popular.
We found that @portkey/did-ui-react demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 8 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Opengrep forks Semgrep to preserve open source SAST in response to controversial licensing changes.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.