![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
@dojoengine/create-burner
Advanced tools
dojo: Useful hooks and functions to create a Starknet burner wallet
Note: Starknet Burner Accounts are currently in pre-alpha. Expect breaking changes frequently.
Warning: You should provide your users with warning explaning that these Accounts are not secure and should not be used for storing large amounts of funds. The keypair is stored in local storage and can be exploited by malicious actors.
Easily manage, create, and interact with burner accounts on Starknets using this library.
You can install create-burner
using yarn, pnpm, or npm:
yarn add @dojoengine/create-burner starknet
After installation, you can easily integrate it into your React app:
import { useBurner } from "@dojoengine/create-burner";
const YourComponent = () => {
const { get, list, select, create, account } = useBurner(options);
// Rest of your component
};
For non-React apps, initialize and manage burners using the BurnerManager
class:
import { BurnerManager } from "@dojoengine/create-burner";
const manager = new BurnerManager(options);
manager.init();
const activeAccount = manager.getActiveAccount();
useBurner: A React hook that provides functionalities like creating burners, selecting them, and more.
get(address: string)
: Get a burner account based on its address.list()
: List all burners.select(address: string)
: Set a burner as the active account.create()
: Create a new burner.account
: The active burner account.isDeploying
: A boolean that indicates whether a burner is being deployed.listConnectors()
: List all available connectors that can be used with Starknet React.BurnerManager: A class for vanilla JS that offers methods to manage burner accounts.
init()
: Initializes the manager.getActiveAccount()
: Retrieves the active burner account.get(address: string)
: Get a burner account based on its address.list()
: List all burners.select(address: string)
: Set a burner as the active account.create()
: Create a new burner.account
: The active burner account.isDeploying
: A boolean that indicates whether a burner is being deployed.git checkout -b feature/my-new-feature
).git commit -am 'Add some feature'
).git push origin feature/my-new-feature
).This project is licensed under the MIT License.
FAQs
dojo: Useful hooks and functions to create a Starknet burner wallet
The npm package @dojoengine/create-burner receives a total of 268 weekly downloads. As such, @dojoengine/create-burner popularity was classified as not popular.
We found that @dojoengine/create-burner demonstrated a healthy version release cadence and project activity because the last version was released less than 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
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.