sushi 6.4.3 → 6.4.4
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.
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import type { EvmChainId } from '
|
|
2
|
-
import type { EvmAddress } from '
|
|
3
|
-
import type { SvmChainId } from '
|
|
4
|
-
import type { SvmAddress } from '
|
|
1
|
+
import type { EvmChainId } from '../../evm/chain/chains.js';
|
|
2
|
+
import type { EvmAddress } from '../../evm/currency/token.js';
|
|
3
|
+
import type { SvmChainId } from '../../svm/chain/chains.js';
|
|
4
|
+
import type { SvmAddress } from '../../svm/currency/token.js';
|
|
5
5
|
import type { ChainId } from '../chain/chains.js';
|
|
6
6
|
export type AddressFor<TChainId extends ChainId> = TChainId extends EvmChainId ? EvmAddress : TChainId extends SvmChainId ? SvmAddress : never;
|
|
7
7
|
//# sourceMappingURL=address.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"address.d.ts","sourceRoot":"","sources":["../../../generic/types/address.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"address.d.ts","sourceRoot":"","sources":["../../../generic/types/address.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,2BAA2B,CAAA;AAC3D,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,6BAA6B,CAAA;AAC7D,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,2BAA2B,CAAA;AAC3D,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,6BAA6B,CAAA;AAC7D,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,oBAAoB,CAAA;AAEjD,MAAM,MAAM,UAAU,CAAC,QAAQ,SAAS,OAAO,IAAI,QAAQ,SAAS,UAAU,GAC1E,UAAU,GACV,QAAQ,SAAS,UAAU,GACzB,UAAU,GACV,KAAK,CAAA"}
|
package/generic/types/address.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import type { EvmChainId } from '
|
|
2
|
-
import type { EvmAddress } from '
|
|
3
|
-
import type { SvmChainId } from '
|
|
4
|
-
import type { SvmAddress } from '
|
|
1
|
+
import type { EvmChainId } from '../../evm/chain/chains.js'
|
|
2
|
+
import type { EvmAddress } from '../../evm/currency/token.js'
|
|
3
|
+
import type { SvmChainId } from '../../svm/chain/chains.js'
|
|
4
|
+
import type { SvmAddress } from '../../svm/currency/token.js'
|
|
5
5
|
import type { ChainId } from '../chain/chains.js'
|
|
6
6
|
|
|
7
7
|
export type AddressFor<TChainId extends ChainId> = TChainId extends EvmChainId
|