@@ -132,6 +132,7 @@ export class ChainDefinition<
132132 */
133133export type ChainIndices =
134134 | 'EOS'
135+ | 'Vaulta'
135136 | 'FIO'
136137 | 'FIOTestnet'
137138 | 'Jungle4'
@@ -153,6 +154,7 @@ export type ChainIndices =
153154 */
154155export const ChainNames : Record < ChainIndices , string > = {
155156 EOS : 'EOS' ,
157+ Vaulta : 'Vaulta Network' ,
156158 FIO : 'FIO' ,
157159 FIOTestnet : 'FIO (Testnet)' ,
158160 Jungle4 : 'Jungle 4 (Testnet)' ,
@@ -206,6 +208,14 @@ export namespace Chains {
206208 systemTokenContract : 'eosio.token' ,
207209 } )
208210
211+ export const Vaulta = ChainDefinition . from ( {
212+ id : 'aca376f206b8fc25a6ed44dbdc66547c36c6c33e3a119ffbeaef943642f0e906' ,
213+ url : 'https://eos.greymass.io' ,
214+ coinType : 194 ,
215+ systemTokenSymbol : '4,A' ,
216+ systemTokenContract : 'eosio.token' ,
217+ } )
218+
209219 export const FIO = ChainDefinition . from ( {
210220 id : '21dcae42c0182200e93f954a074011f9048a7624c6fe81d3c9541a614a88bd1c' ,
211221 url : 'https://fio.greymass.com' ,
@@ -327,7 +337,8 @@ export namespace Chains {
327337 * A list of chain IDs and their ChainIndices for reference lookups
328338 */
329339export const chainIdsToIndices : Map < Checksum256Type , ChainIndices > = new Map ( [
330- [ 'aca376f206b8fc25a6ed44dbdc66547c36c6c33e3a119ffbeaef943642f0e906' , 'EOS' ] ,
340+ [ 'aca376f206b8fc25a6ed44dbdc66547c36c6c33e3a119ffbeaef943642f0e906' , 'EOS' ] , // Once Vaulta has taken over EOS, we should be able to remove this line
341+ [ '_aca376f206b8fc25a6ed44dbdc66547c36c6c33e3a119ffbeaef943642f0e906' , 'Vaulta' ] , // and remove the _ here
331342 [ '21dcae42c0182200e93f954a074011f9048a7624c6fe81d3c9541a614a88bd1c' , 'FIO' ] ,
332343 [ 'b20901380af44ef59c5918439a1f9a41d83669020319a80574b804a5f95cbd7e' , 'FIOTestnet' ] ,
333344 [ '73e4385a2708e6d7048834fbc1079f2fabb17b3c125b146af438971e90716c4d' , 'Jungle4' ] ,
@@ -351,6 +362,10 @@ export const chainLogos: Map<Checksum256Type, LogoType> = new Map([
351362 'aca376f206b8fc25a6ed44dbdc66547c36c6c33e3a119ffbeaef943642f0e906' ,
352363 'https://assets.wharfkit.com/chain/eos.png' ,
353364 ] ,
365+ [
366+ '_aca376f206b8fc25a6ed44dbdc66547c36c6c33e3a119ffbeaef943642f0e906' ,
367+ 'https://assets.wharfkit.com/chain/vaulta.svg' ,
368+ ] ,
354369 [
355370 '21dcae42c0182200e93f954a074011f9048a7624c6fe81d3c9541a614a88bd1c' ,
356371 'https://assets.wharfkit.com/chain/fio.png' ,
0 commit comments