
Security News
Scaling Socket from Zero to 10,000+ Organizations
Socket CEO Feross Aboukhadijeh shares lessons from scaling a developer security startup to 10,000+ organizations in this founder interview.
@cityofzion/neon-dappkit
Advanced tools
Neon-DappKit is the easiest way to build a dApp on Neo3.
Made with ❤ by COZ.IO
Neon-DappKit is the easiest way to build a dApp on Neo3. Suitable to connect Web Applications, Off-chain JS Servers and React-Native Apps to the Neo3 Blockchain.
WalletConnectSDK uses Neon-DappKit Types, so you can easily swap between Neon-DappKit implementation and WalletConnectSDK on the fly and reuse code, check the guide.
npm i @cityofzion/neon-dappkit
In the vite.config.ts file you must change the global value like this:
import {defineConfig} from 'vite'
export default defineConfig({
//your config here
define: {
global: 'globalThis',
process: {
version: 'globalThis'
}
//...
},
})
Neon-Dappkit has 4 main components:
Check out some examples in examples folder
import { NeonInvoker, NeonParser, TypeChecker } from '@CityOfZion/neon-dappkit'
const invoker = await NeonInvoker.init({
rpcAddress: NeonInvoker.TESTNET,
})
const testInvokeResult = await invoker.testInvoke({
invocations: [
{
scriptHash: '0x309b6b2e0538fe4095ecc48e81bb4735388432b5',
operation: 'getMetaData',
args: [
{
type: 'Hash160',
value: '0xef4073a0f2b305a38ec4050e4d3d28bc40ea63f5'
}
]
}
],
})
console.log(`Invocation state returned: ${testInvokeResult.state}`)
console.log(`Estimated GAS consumed on involke: ${testInvokeResult.gasconsumed} GAS`) // Using testInvoke ensures zero GAS consumption, unlike invokeFunction.
console.log(`Dapp method returned a map: ${TypeChecker.isStackTypeMap(testInvokeResult.stack[0])}`)
console.log(`Dapp method data returned: ${JSON.stringify(NeonParser.parseRpcResponse(testInvokeResult.stack[0]), null, 2)}`)
FAQs
Unknown package
The npm package @cityofzion/neon-dappkit receives a total of 71 weekly downloads. As such, @cityofzion/neon-dappkit popularity was classified as not popular.
We found that @cityofzion/neon-dappkit demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 6 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
Socket CEO Feross Aboukhadijeh shares lessons from scaling a developer security startup to 10,000+ organizations in this founder interview.

Research
Socket Threat Research maps a rare inside look at OtterCookie’s npm-Vercel-GitHub chain, adding 197 malicious packages and evidence of North Korean operators.

Research
Socket researchers identified a malicious Chrome extension that manipulates Raydium swaps to inject an undisclosed SOL transfer, quietly routing fees to an attacker wallet.