![38% of CISOs Fear Theyβre Not Moving Fast Enough on AI](https://cdn.sanity.io/images/cgdhsj6q/production/faa0bc28df98f791e11263f8239b34207f84b86f-1024x1024.webp?w=400&fit=max&auto=format)
Security News
38% of CISOs Fear Theyβre Not Moving Fast Enough on AI
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
@notifi-network/notifi-frontend-client
Advanced tools
@notifi/notifi-frontend-client
In this README, we'll cover the simple use case of one user authenticating through an Aptos wallet and creating an alert.
npm i @notifi-network/notifi-frontend-client
Load the Notifi Frontend Client SDK into your component.
const { newAptosClient, newAptosConfig } = require('@notifi-network/notifi-frontend-client');
Instantiate and configure the Notifi Client for your dApp and environment. If your user has not connected their wallet, they will need to do so in order to instantiate the client.
const accountAddress = <The wallet's public account address>;
const walletPublicKey = <The wallet's public key>;
const tenantId = <Tenant ID received through the Notifi Config Tool>;
const blockchainEnv = "Development";
const config = newAptosConfig({
address: accountAddress, // string
publicKey: walletPublicKey, // string
}, tenantId, blockchainEnv);
const client = newAptosClient(config);
For a user to opt-in for notifications, they will need to provide their signature. This signature will then be used to authorize the user's connected wallet address with Notifi and create the account with Notifi.
Using the wallet adapter of your choice, prompt the user to sign and use the signed message in the logIn()
hook.
const logIn = async () => {
const loginResult = await client.logIn({
walletBlockchain: 'APTOS',
signMessage: async (message, timestamp) => {
const { result } = await signMessage({
address: true,
message,
nonce: `${timestamp}`,
});
console.log('signedMessage', result);
return result.signature;
},
});
// client should be authenticated now
console.log('loginResult', loginResult);
return loginResult;
};
Once your user enters their contact information and options for their first alert, use the ensureTargetGroup()
to create a "target group" of their contact information and a "source group" of their desired alert options.
In order to create a target group, ensureTargetGroup()
must pass in least one email address, phone number, telegramId, or webhook url. Dapp admins can update pass in a webhook url to receive all of the notifications instead of a user email address, phone number, or telegramId.
In order to create a source group, ensureSourceGroup()
must pass in metadata of the alert options returned in the Rendering Alert Options section.
After creating a target group and source group, use the ensureAlert()
to create the first alert.
This example shows how to create a Broadcast message alert.
// First create a source group
const sourceGroup = await client.ensureSourceGroup({
name: 'Default Source Group',
sourceParams: [
{
type: 'BROADCAST',
name: 'Marketing Broadcast Source',
blockchainAddress: 'notifi__newFeature'
}
]
});
const source = sourceGroup.sources?.find(it => it?.blockchainAddress === 'notifi__newFeature');
const filter = source?.applicableFilters?.find(it => it?.filterType === 'BROADCAST_MESSAGES');
if (filter === undefined) {
throw new Error('Unable to find required filter');
}
// Second create a target group
const targetGroup = await client.ensureTargetGroup({
name: 'Default Target Group',
webhook: {
url: 'Notifi Platform', // For BROWSER_PUSH_NOTIFI, url is unused
format: 'BROWSER_PUSH_NOTIFI',
headers: [],
},
})
// Finally create the alert
const alert = await client.ensureAlert({
name: 'User broadcast alerts',
sourceGroupId: sourceGroup.id,
targetGroupId: targetGroup.id,
filterId: filter.id,
});
return alert;
}
If a user wants to update their alert by changing the email address notifications are sent to, or to add a phone number for SMS notifications, you can still use ensureAlert()
to update.
You'll want to pass in the name
of the existing alert to make the update to that alert entity. You can use getAlerts()
to find the alert entity.
const handleUpdateAlert = async () => {
try {
const alerts = await getAlerts();
const response = await ensureAlert({
name = alerts[0].name,
sourceGroupId,
targetGroupId,
filterId,
filterOptions,
groupName = 'default'
});
return response;
} catch (e) {
if (e instanceof GqlError) {
// handle the Notifi GqlError
}
}
}
To delete an alert, use deleteAlert()
, which simply [takes the id
of the alert] to be deleted. In our use case where the user only has 1 alert in their account:
const handleDeleteAlert = async () => {
try {
const alerts = await getAlert();
const response = await deleteAlert({
alertId: alerts?.[0]?.id,
});
return response;
} catch (e) {
if (e instanceof GqlError) {
// handle the Notifi GqlError
}
}
}
To get notification history, use the getNotificationHistory()
const getNotificationHistory = async (first?: number, after?: string) => {
// Fetch `first` items after the `after` cursor (leave undefined for first page)
const { nodes , pageInfo } = await client.getNotificationHistory({
first,
after,
});
nodes.forEach(item => {
if (item.detail?.__typename === 'BroadcastMessageEventDetails') {
console.log('I have a broadcast message', item.detail?.subject, item.detail?.message);
}
});
console.log('pageInfo', pageInfo.hasNextPage, pageInfo.endCursor);
return {
nodes,
pageInfo
}
}
FAQs
The frontend client for Notifi
The npm package @notifi-network/notifi-frontend-client receives a total of 401 weekly downloads. As such, @notifi-network/notifi-frontend-client popularity was classified as not popular.
We found that @notifi-network/notifi-frontend-client 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
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.
Security News
Company News
Socket is joining TC54 to help develop standards for software supply chain security, contributing to the evolution of SBOMs, CycloneDX, and Package URL specifications.