Skip to content

Commit 92bc4c3

Browse files
authored
Merge pull request #249 from interlay/tom/support-runtime-upgrade
chore: updates
2 parents cff9e4a + 408f451 commit 92bc4c3

3 files changed

Lines changed: 10 additions & 9 deletions

File tree

README.md

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -29,21 +29,14 @@ All channels support transfers in both directions.
2929
| bifrost | VKSM |
3030
| heiko | KBTC KINT |
3131
| karura | KBTC KINT LKSM |
32-
| kusama | KSM |
33-
| kusama asset hub | USDT |
32+
| kusama asset hub | USDT, KSM |
3433

3534
#### Polkadot:
3635

3736
| channel | tokens |
3837
| ------------------ | ------ |
3938
| polkadot asset hub | DOT |
4039

41-
#### Kusama:
42-
43-
| channel | tokens |
44-
| ---------------- | ------ |
45-
| kusama asset hub | KSM |
46-
4740
## Usage
4841

4942
Example: [src/bridge.spec.ts](src/bridge.spec.ts)

src/adapters/interlay.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -208,6 +208,14 @@ export const kintsugiRoutersConfig: Omit<CrossChainRouterConfigs, "from">[] = [
208208
weightLimit: DEST_WEIGHT,
209209
},
210210
},
211+
{
212+
to: "statemine",
213+
token: "KSM",
214+
xcm: {
215+
fee: { token: "KSM", amount: "1000000000" },
216+
weightLimit: DEST_WEIGHT,
217+
},
218+
},
211219
{
212220
to: "statemine",
213221
token: "USDT",

src/adapters/polkadot.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ const polkadotTokensConfig: Record<string, Record<string, BasicToken>> = {
6161
polkadot: {
6262
DOT: { name: "DOT", symbol: "DOT", decimals: 10, ed: "10000000000" },
6363
},
64-
kusama: {
64+
kintsugi: {
6565
KSM: { name: "KSM", symbol: "KSM", decimals: 12, ed: "333333333" },
6666
},
6767
};

0 commit comments

Comments
 (0)