ar.io LogoAr.io Documentation
Turbo SDKSigners

Ethereum

EthereumSigner

const signer = new EthereumSigner(privateKey);
const turbo = TurboFactory.authenticated({ signer });

Ethereum Private Key

const turbo = TurboFactory.authenticated({
  privateKey: ethHexadecimalPrivateKey,
  token: 'ethereum',
});

POL (MATIC) Private Key

const turbo = TurboFactory.authenticated({
  privateKey: ethHexadecimalPrivateKey,
  token: 'pol',
});

How is this guide?