Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
splinterlands-hive-keychain
Advanced tools
Small library to use Hive Keychain with Typescript
Small library to use Hive Keychain with Typescript
import {Keychain} from 'splinterlands-hive-keychain'
const main = async () => {
const keychain = new Keychain(window)
/**
* Initially keychain.status is 'none'
* You can either run the function below manually (make sure extension has be loaded within the website, could take a second or so)
* Or it will be run when you run keychain.call, keychain.requestSignBuffer, etc.
*
* Explanation:
* none => not installed
* installed => installed but not enabled
* enabled => ready to go
*/
await keychain.initialize()
const result = await keychain.requestSignBuffer({
// account: 'therealwolf', // optional - if not set, user can choose
role: 'Posting',
message: 'Super secret message',
title: 'Please sign this message so we can authenticate your account',
})
if (result.status === 'cancel') {
console.log(
'User cancelled the request. You can ignore this and just start over.',
)
return
} else if (result.status === 'error') {
console.log('There was an error')
if (result.keychainStatus === 'none') {
console.log(`User has not installed Keychain or hasn't used it before.`)
} else if (result.keychainStatus === 'installed') {
console.log(
`User has installed Keychain and used it before, but it seems to be disabled for this website. Remind user to enable again.`,
)
} else {
console.log(`Message: ${result.message}`, result.data)
}
return
} else {
console.log('Success!', result.data)
}
const result2 = await keychain.requestTransfer({
to: 'splinterlands',
amount: 5.12,
asset: 'HIVE',
memo: 'test',
enforce: false,
})
console.log(result2)
}
main()
FAQs
Small library to use Hive Keychain with Typescript
We found that splinterlands-hive-keychain demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.