const { selector } = require("starknet"); // ------------------------------------------------- EDIT HERE ------------------------------------------------------------ const data = { // Number of contracts being called numberOfContractsToCall: "1", // Contracts to call address contractAddress: "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", // Function name to invoke entrypoint: "transfer", // Function call arguments (raw, serialized). Below example data: recipient_address, amount, amount calldata: [ "0x5b8a53ea75b7bf0a881fe99de9f52eab6c0b995578ae8dbd3c533458b347dc6", "50000", "0", ], }; // -------------------------------------------------------------------------------------------------------------------------- function printCalldataForWalnut(data) { const contractCalldata = data.calldata.map((numStr) => "0x" + Number(numStr).toString(16)); // Generate the complete calldata array in the required format const calldata = [ "0x" + data.numberOfContractsToCall, // Number of contracts involved (in hex format) data.contractAddress, // Contract address to interact with selector.getSelectorFromName(data.entrypoint), // Function selector derived from entrypoint name "0x" + contractCalldata.length.toString(16), // Length of calldata in hex ...contractCalldata, // Serialized calldata arguments ]; console.log(calldata.join("\n")); } printCalldataForWalnut(data);
Write, Run & Share NodeJS code online using OneCompiler's NodeJS online compiler for free. It's one of the robust, feature-rich online compilers for NodeJS language,running on the latest LTS version NodeJS 16.14.2. Getting started with the OneCompiler's NodeJS editor is easy and fast. The editor shows sample boilerplate code when you choose language as NodeJS and start coding. You can provide the dependencies in package.json
.
Node.js is a free and open-source server environment. Node.js is very popular in recent times and a large number of companies like Microsoft, Paypal, Uber, Yahoo, General Electric and many others are using Node.js.
Google chrome's javascript engine V8
and is pretty fast.Asynchronous
, event-driven
and works on single-thread model
thus eliminating the dis-advantages of multi-thread model.Express is one of the most popular web application framework in the NodeJS echosystem.
let moment = require('moment');
console.log(moment().format('MMMM Do YYYY, h:mm:ss a'));
const _ = require("lodash");
let colors = ['blue', 'green', 'yellow', 'red'];
let firstElement = _.first(colors);
let lastElement = _.last(colors);
console.log(`First element: ${firstElement}`);
console.log(`Last element: ${lastElement}`);
Following are the libraries supported by OneCompiler's NodeJS compiler.