How do I upload a file to Akord through my node application?

import { Akord, Auth } from "@akord/akord-js";

const { wallet } = await Auth.signIn("my email", "my password");
const akord = await Akord.init(wallet);

const { stackId } = await akord.stack.create(vaultId, "path to my file");

Last updated