CosmJS v0
ParaAminoSigner.signAmino
Signs an Amino Cosmos StdSignDoc with the selected Para wallet.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Signs an Amino Cosmos StdSignDoc with the selected Para wallet.
import type { Para as ParaServer } from '@getpara/server-sdk';
import { createParaAminoSigner } from '@getpara/cosmjs-v0-integration';
import type { StdSignDoc } from '@cosmjs/amino';
declare const para: ParaServer; // An authenticated Para Server client with a loaded Cosmos wallet.
const signer = createParaAminoSigner({ para, prefix: 'cosmos' });
declare const signDoc: StdSignDoc;
const response = await signer.signAmino(signer.address, signDoc);