File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 55# - Lerna only uses tar for PACKING
66GHSA-8qq5-rm4j-mr97
77
8+ # Excluded because:
9+ # - Same tar v6 dependency issue as above
10+ # - Affects only dev dependencies (lerna, yeoman-generator)
11+ # - Not exploitable in our build context
12+ GHSA-r6q2-hw4h-h46w
13+
Original file line number Diff line number Diff line change @@ -975,16 +975,28 @@ class InjectiveTestnet extends Testnet implements AccountNetwork {
975975 explorerUrl = 'https://testnet.explorer.injective.network/transaction/' ;
976976}
977977
978- class Kava extends Mainnet implements AccountNetwork {
978+ class Kava extends Mainnet implements CosmosNetwork {
979979 name = 'Kava' ;
980980 family = CoinFamily . KAVA ;
981- explorerUrl = 'https://www.mintscan.io/kava/transactions/' ;
981+ explorerUrl = 'https://www.mintscan.io/kava/tx/' ;
982+ addressPrefix = 'kava' ;
983+ validatorPrefix = 'kavavaloper' ;
984+ denom = 'ukava' ;
985+ gasAmount = '5000' ;
986+ gasLimit = 200000 ;
987+ validDenoms = [ 'kava' , 'ukava' ] ;
982988}
983989
984- class KavaTestnet extends Testnet implements AccountNetwork {
990+ class KavaTestnet extends Testnet implements CosmosNetwork {
985991 name = 'KavaTestnet' ;
986992 family = CoinFamily . KAVA ;
987- explorerUrl = 'https://testnet.mintscan.io/kava-testnet/txs/' ;
993+ explorerUrl = 'https://testnet.mintscan.io/kava-testnet/tx/' ;
994+ addressPrefix = 'kava' ;
995+ validatorPrefix = 'kavavaloper' ;
996+ denom = 'ukava' ;
997+ gasAmount = '5000' ;
998+ gasLimit = 200000 ;
999+ validDenoms = [ 'kava' , 'ukava' ] ;
9881000}
9891001
9901002class Ton extends Mainnet implements AccountNetwork {
You can’t perform that action at this time.
0 commit comments