PHP WebShell

Текущая директория: /opt/BitGoJS/modules/sdk-coin-algo/src

Просмотр файла: talgo.ts

/**
 * @prettier
 */
import { BaseCoin, BitGoBase } from '@bitgo/sdk-core';
import { Algo } from './algo';

export class Talgo extends Algo {
  constructor(bitgo: BitGoBase) {
    super(bitgo);
  }

  static createInstance(bitgo: BitGoBase): BaseCoin {
    return new Talgo(bitgo);
  }

  getChain(): string {
    return 'talgo';
  }

  getFullName(): string {
    return 'Testnet Algorand';
  }
}

Выполнить команду


Для локальной разработки. Не используйте в интернете!