
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
@rbxts/atomic-binding
Advanced tools
The credit for the original source code goes to Roblox.
The contents of this file were taken from Roblox-provided AtomicBinding
ModuleScript located under the RbxCharacterSounds
LocalScript, which itself is located in the StarterPlayerScript
service.
Note that there is autocomplete support for alias values. You should use slash (/) to see the possible paths.
type Character = Model & {
Humanoid: Humanoid & {
Animator: Animator;
};
HumanoidRootPart: BasePart;
};
// Notice how we first invoke an empty function.
const bindingFromBase = createAtomicBinding<Character>()({
animator: "Humanoid/Animator",
humanoid: "Humanoid",
rootPart: "HumanoidRootPart",
}, ({ root, animator, humanoid, rootPart }) => {
// do something with "Animator"
// do something with "Humanoid"
// do something with "HumanoidRootPart"
return () => {
// Disconnect all "instances" related connections
};
});
const manifest = createManifest<Character>({
animator: "Humanoid/Animator",
humanoid: "Humanoid",
rootPart: "HumanoidRootPart",
})
const binding = createAtomicBinding(manifest, ({ root, animator, humanoid, rootPart }) => {
// do something with "Animator"
// do something with "Humanoid"
// do something with "HumanoidRootPart"
return () => {
// Disconnect all "instances" related connections
};
})
const character = {} as Character
// some CharacterAdded event handler
binding.bindRoot(character);
// some CharacterRemoving event handler
binding.unbindRoot(character);
binding.destroy();
The "getInstanceFromPath" function is quite helpful when we just want to ensure that the instance exists at the provided path.
type SomeModel = Model & {
Particles: Folder & {
Particle1: ParticleEmitter;
Particle2: ParticleEmitter;
}
}
const someModel = {} as SomeModel
const particle = getInstanceFromPath(someModel, "Particles/Particle1")
if (!particle) {
return
}
The waitForInstanceFromPath
function does the same as the getInstanceFromPath
function, but instead utilizes WaitForChild
method of the Instance. This means that the return type will never be undefined
.
FAQs
Types for AtomicBinding module
The npm package @rbxts/atomic-binding receives a total of 38 weekly downloads. As such, @rbxts/atomic-binding popularity was classified as not popular.
We found that @rbxts/atomic-binding 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.
Research
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.