The Web3 SDK for Payment, NFT, and more.
sdk package is in package/vx
- package/vx3: The core package of vx3
- apps/web
- apps/server
- No Connection Required of API
- NO Saas Fee
- Multi Chain Supported
- Easy to Use
- Simple API
- Payment
- GameFi
- NFT
Node.js v16 or later
npm v8 or later
Metamask or other Web3 Wallet
https://dash.varius.technology/create/project
npx vx3 auth signinLink Project
npx vx3 linknpx vx3 create <project-name>npx vx3 server --debugPort Number
npx vx3 server --debug --port <port-number>npx vx3 serve -p "../vx.config.json"- for javascript
import { vx } from "vx3";
vx.send({
to: "0x1234...abcd",
amount: "0.01",
currency: "ETH",
from: "0x5678...efgh", // optional
sendSignature: true, // optional
});- for React
import { vx } from "vx3";
export default function App() {
const handleSend = async () => {
try {
const txHash = await vx.send({
to: "0x1234...abcd",
amount: "0.01",
currency: "ETH",
from: "0x5678...efgh", // optional
sendSignature: true, // optional
});
console.log("Transaction Hash:", txHash);
} catch (error) {
console.error("Error sending transaction:", error);
}
};
return (
<div>
<button onClick={handleSend}>Send ETH</button>
</div>
);
}Apache-2.0 License
Nknight AMAMIYA (@nk4dev)