@pioneer-platform/pioneer-caip 9.2.6 → 9.2.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/data.js +2 -0
- package/package.json +1 -1
package/lib/data.js
CHANGED
@@ -226,12 +226,14 @@ var tokenToCaip = function (token) {
|
|
226
226
|
}
|
227
227
|
else {
|
228
228
|
type = 'native';
|
229
|
+
ticker = symbol;
|
229
230
|
}
|
230
231
|
var caip = thorchainToCaip(chain, symbol, ticker, type);
|
231
232
|
token.networkId = exports.ChainToNetworkId[chain];
|
232
233
|
token.caip = caip;
|
233
234
|
token.symbol = symbol;
|
234
235
|
token.ticker = ticker;
|
236
|
+
token.type = type;
|
235
237
|
// Get pubkey for chain
|
236
238
|
return token;
|
237
239
|
}
|