Otto Wallets

Developer Resources

Integrate Otto Wallet with just a few lines of code

Our comprehensive SDK provides everything you need to integrate crypto functionality into your application. Built for developers, by developers, with enterprise-grade security and scalability.

Supported languages:
import fs from "fs";
import path from "path";
import { OttoWalletSDK, BasePath } from "otto-wallet-sdk";

// Leia sua chave privada RSA (pem)
const secretKey = fs.readFileSync(path.resolve(__dirname, "private_key.pem"), "utf8");

const apiKey = "sua-api-key-aqui";

const ottoWallets = new OttoWalletSDK({
  secretKey,
  apiKey,
  basePath: BasePath.US,
});