algorand: {
    Address: typeof AlgorandAddress;
    ChainContext: typeof AlgorandChain;
    Platform: typeof AlgorandPlatform;
    Signer: typeof AlgorandSigner;
    getSigner: ((rpc, mnemonic) => Promise<Signer>);
    protocols: {
        core: Promise<{
            AlgorandWormholeCore: any;
            BITS_PER_BYTE: any;
            BITS_PER_KEY: any;
            MAX_BITS: any;
            MAX_BYTES: any;
            MAX_BYTES_PER_KEY: any;
            MAX_KEYS: any;
            SEED_AMT: any;
            StorageLogicSig: any;
            varint: any;
            default: any;
        }>;
        tokenbridge: Promise<{
            AlgorandTokenBridge: any;
            TransferMethodSelector: any;
            default: any;
        }>;
    };
} = ...

Platform and protocol definitions for Algorand

Type declaration

  • Address: typeof AlgorandAddress
  • ChainContext: typeof AlgorandChain
  • Platform: typeof AlgorandPlatform
  • Signer: typeof AlgorandSigner
  • getSigner: ((rpc, mnemonic) => Promise<Signer>)
      • (rpc, mnemonic): Promise<Signer>
      • Parameters

        • rpc: default
        • mnemonic: string

        Returns Promise<Signer>

  • protocols: {
        core: Promise<{
            AlgorandWormholeCore: any;
            BITS_PER_BYTE: any;
            BITS_PER_KEY: any;
            MAX_BITS: any;
            MAX_BYTES: any;
            MAX_BYTES_PER_KEY: any;
            MAX_KEYS: any;
            SEED_AMT: any;
            StorageLogicSig: any;
            varint: any;
            default: any;
        }>;
        tokenbridge: Promise<{
            AlgorandTokenBridge: any;
            TransferMethodSelector: any;
            default: any;
        }>;
    }
    • core: Promise<{
          AlgorandWormholeCore: any;
          BITS_PER_BYTE: any;
          BITS_PER_KEY: any;
          MAX_BITS: any;
          MAX_BYTES: any;
          MAX_BYTES_PER_KEY: any;
          MAX_KEYS: any;
          SEED_AMT: any;
          StorageLogicSig: any;
          varint: any;
          default: any;
      }>
    • tokenbridge: Promise<{
          AlgorandTokenBridge: any;
          TransferMethodSelector: any;
          default: any;
      }>

Generated using TypeDoc