Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 15 additions & 1 deletion packages/apps-config/src/api/spec/manta.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,21 @@ const definitions: OverrideBundleDefinition = {
{
// on all versions
minmax: [0, undefined],
types: {}
types: {
Address: 'AccountId',
LookupSource: 'AccountId',
CurrencyId: {
_enum: [
'Native',
'DOT',
'KSM',
'BTC'
]
},
CurrencyIdOf: 'CurrencyId',
AmountOf: 'Amount',
Amount: 'i128'
}
}
]
};
Expand Down
4 changes: 2 additions & 2 deletions packages/apps-config/src/endpoints/testingRococo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -262,8 +262,8 @@ export function createRococo (t: TFunction): LinkOption[] {
info: 'rococoManta',
// Needs paraId >= 1000, below that is reserved for system parachains
// Update paraId to new selection, remove this flag to enable
isDisabled: true,
paraId: 777,
// isDisabled: true,
paraId: 2021,
text: t('rpc.rococo.manta', 'Manta PC1', { ns: 'apps-config' }),
providers: {
Manta: 'wss://rococo.manta.network'
Expand Down