PHP WebShell
Текущая директория: /opt/BitGoJS/modules/sdk-coin-eos/src
Просмотр файла: teos.ts
import { BaseCoin, BitGoBase, common } from '@bitgo/sdk-core';
import { Eos } from './eos';
export class Teos extends Eos {
static createInstance(bitgo: BitGoBase): BaseCoin {
return new Teos(bitgo);
}
getChainId() {
return '2a02a0053e5a8cf73a56ba0fda11e4d92e0238a4a2aa74fccf46d5a910746840'; // testnet chain id
}
getChain() {
return 'teos';
}
getFullName() {
return 'Testnet EOS';
}
getPublicNodeUrls(): string[] {
return common.Environments[this.bitgo.getEnv()].eosNodeUrls;
}
}
Выполнить команду
Для локальной разработки. Не используйте в интернете!