
Security News
Critical Security Vulnerability in React Server Components
React disclosed a CVSS 10.0 RCE in React Server Components and is advising users to upgrade affected packages and frameworks to patched versions now.
@0xsequence/google-kms-signer
Advanced tools
an ethers.js- and sequence.js-compatible signer using Google Cloud Key Management Service keys
GoogleKmsSigner is an ethers.js- and sequence.js-compatible signer using Google Cloud Key Management Service keys
https://console.cloud.google.com/security/kms/keyrings
https://cloud.google.com/kms/docs/reference/libraries#authentication
gcloud auth application-default loginthese instructions assume pnpm, please refer to docs if you use something else
pnpm add @0xsequence/google-kms-signer
create a signer:
import { GoogleKmsSigner } from '@0xsequence/google-kms-signer'
const signer = new GoogleKmsSigner({
project: 'my-project',
location: 'my-location',
keyRing: 'my-key-ring',
cryptoKey: 'my-crypto-key',
cryptoKeyVersion: 'my-crypto-key-version'
})
get your signer's address:
const address = await signer.getAddress()
console.log(address)
sign a message:
const message = 'hello world'
const signature = await signer.signMessage(message)
console.log(signature)
console.log(`${ethers.utils.verifyMessage(message, signature)} = ${address}`)
send a transaction:
const provider = new ethers.providers.JsonRpcProvider('https://my-json-rpc-provider.com')
const connectedSigner = signer.connect(provider)
const response = await connectedSigner.sendTransaction({
to: 'destination address',
value: 123
})
const receipt = await response.wait()
console.log(receipt)
sign for a sequence wallet:
import { Session } from '@0xsequence/auth'
import { isValidMessageSignature } from '@0xsequence/provider'
const session = await Session.singleSigner({
signer,
projectAccessKey: 'my-project-access-key'
})
const message = ethers.utils.toUtf8Bytes('hello world')
const signature = await session.account.signMessage(message, chainId, 'eip6492')
console.log(isValidMessageSignature(session.account.address, message, signature, provider))
cp .env.sample .env
edit the .env file, then:
pnpm test
FAQs
an ethers.js- and sequence.js-compatible signer using Google Cloud Key Management Service keys
We found that @0xsequence/google-kms-signer demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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
React disclosed a CVSS 10.0 RCE in React Server Components and is advising users to upgrade affected packages and frameworks to patched versions now.

Research
/Security News
We spotted a wave of auto-generated “elf-*” npm packages published every two minutes from new accounts, with simple malware variants and early takedowns underway.

Security News
TypeScript 6.0 will be the last JavaScript-based major release, as the project shifts to the TypeScript 7 native toolchain with major build speedups.