Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Package removals #26

Merged
merged 2 commits into from
Feb 26, 2025
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
Original file line number Diff line number Diff line change
Expand Up @@ -160,8 +160,8 @@ const TransferModalBody = (

const destChain = useMemo(() => {
return {
symbol: destChainInfo.chainName.toUpperCase(),
name: destChainInfo.prettyName,
symbol: destChainInfo?.chainName.toUpperCase(),
name: destChainInfo?.prettyName,
address: destAddress ?? '',
imgSrc: chains.find(c => c.chainName === destChainName)?.logoURIs?.png
};
Expand Down
6 changes: 3 additions & 3 deletions examples/ibc-asset-list/components/common/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { dependencies } from '@/config';

const stacks = ['Interchain Kit', 'Next.js'];

const osmojs = dependencies[0];
const interchainjs = dependencies[0];

export function Header() {
const { theme, setTheme } = useTheme();
Expand Down Expand Up @@ -55,14 +55,14 @@ export function Header() {
{' + '}

<Link
href={osmojs.name}
href={interchainjs.name}
target="_blank"
rel="noreferrer"
attributes={{
fontSize: { mobile: '$4xl', tablet: '$8xl', desktop: '$8xl' },
}}
>
{osmojs.name}
{interchainjs.name}
</Link>
</Text>
</Text>
Expand Down
4 changes: 1 addition & 3 deletions examples/ibc-asset-list/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
"@chain-registry/assets": "^1.70.32",
"@chain-registry/types": "^0.50.13",
"@chain-registry/v2": "^1.71.132",
"@cosmjs/stargate": "^0.32.3",
"@emotion/react": "11.10.6",
"@emotion/styled": "11.10.6",
"@interchain-kit/core": "0.2.205",
Expand All @@ -41,7 +40,6 @@
"interchain-react": "1.7.3",
"match-sorter": "^6.3.3",
"next": "^13",
"osmo-query": "16.5.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-icons": "^4.12.0"
Expand All @@ -57,4 +55,4 @@
"typescript": "^5.1.6"
},
"packageManager": "[email protected]"
}
}
8 changes: 2 additions & 6 deletions examples/injective-vue/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,6 @@
"dependencies": {
"@chain-registry/v2": "^1.71.44",
"@chain-registry/v2-types": "^0.53.20",
"@cosmjs/amino": "^0.32.4",
"@cosmjs/stargate": "^0.32.4",
"@interchain-kit/core": "0.0.1-beta.39",
"@interchain-kit/keplr-extension": "0.0.1-beta.39",
"@interchain-kit/leap-extension": "0.0.1-beta.39",
Expand All @@ -23,7 +21,6 @@
"@interchainjs/vue": "1.8.1",
"@tanstack/vue-query": "5.62.7",
"bignumber.js": "9.1.0",
"osmojs": "^16.15.0",
"vue": "^3.5.13",
"vue-router": "^4.5.0"
},
Expand All @@ -33,6 +30,5 @@
"typescript": "~5.6.2",
"vite": "^6.0.0",
"vue-tsc": "^2.1.10"
},
"packageManager": "[email protected]"
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import { Link, Text, Box, Container, Button, Icon } from '@interchain-ui/vue';
import { dependencies } from '@/config/asset-list/features'
const stacks = ['Interchain Kit', 'Vue'];
const osmojs = dependencies[0];
const interchainjs = dependencies[0];

</script>

Expand All @@ -26,10 +26,10 @@ const osmojs = dependencies[0];
<Text as="span" :fontSize="{ mobile: '$4xl', tablet: '$8xl', desktop: '$8xl' }" color="$primary500">
{{ stacks.join(' + ') }}
<!-- {{ ' + ' }}
<Link :href="osmojs.name" target="_blank" rel="noreferrer" :attributes="{
<Link :href="interchainjs.name" target="_blank" rel="noreferrer" :attributes="{
fontSize: { mobile: '$4xl', tablet: '$8xl', desktop: '$8xl' },
}">
{{ osmojs.name }}
{{ interchainjs.name }}
</Link> -->
</Text>
</Text>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,13 @@ import BigNumber from 'bignumber.js'
import { useChainUtils } from '../../composables/common/useChainUtils';
import { IProps } from './row-transfer-modal.vue';
import AssetWithdrawTokens from './asset-withdraw-tokens.vue';
import { coins, StdFee } from '@cosmjs/amino';
import { ibc, cosmos } from 'osmojs';
import { StdFee } from '@interchainjs/cosmos-types/types';
import { useStargateClient } from '../../composables/common/useStargateClient';

const {
transfer
} = ibc.applications.transfer.v1.MessageComposer.withTypeUrl
import { MsgTransfer } from 'interchainjs/ibc/applications/transfer/v1/tx';

interface IBodyProps extends IProps {
inputValue: string
}
}

const props = defineProps<IBodyProps>()
const emits = defineEmits<{
Expand Down Expand Up @@ -53,8 +49,8 @@ const availableAmount = computed(() => {
if (!isDeposit.value) return transferToken.value.available ?? 0
console.log('transferInfo.token', props.transferInfo.token)
return new BigNumber(
convRawToDispAmount(props.transferInfo.token.symbol, balance.value?.amount || '0')
).toNumber();
convRawToDispAmount(props.transferInfo.token.symbol, balance.value?.amount || '0')
).toNumber();
})

const dollarValue = computed(() => {
Expand All @@ -67,10 +63,10 @@ const dollarValue = computed(() => {
const sourceChain = computed(() => {
const logo_URIs = getChainLogo(sourceChainName.value)
return {
name: sourceChainInfo.value.prettyName,
address: sourceAddress.value ?? '',
imgSrc: logo_URIs?.png || logo_URIs?.svg || '',
};
name: sourceChainInfo.value.prettyName,
address: sourceAddress.value ?? '',
imgSrc: logo_URIs?.png || logo_URIs?.svg || '',
};
})

const destChain = computed(() => {
Expand All @@ -83,18 +79,21 @@ const destChain = computed(() => {
};
})

const handleSubmitTransfer = async() => {
const handleSubmitTransfer = async () => {
if (!sourceAddress.value || !destAddress.value) return;
const transferAmount = new BigNumber(props.inputValue)
.shiftedBy(getExponentByDenom(symbolToDenom(transferToken.value.symbol)))
.toString();
const { sourcePort, sourceChannel } = getIbcInfo(
const { sourcePort, sourceChannel } = getIbcInfo(
sourceChainName.value,
destChainName.value
);

const fee: StdFee = {
amount: coins('1000', transferToken.value.denom ?? ''),
amount: [{
denom: transferToken.value.denom ?? '',
amount: '1000'
}],
gas: '250000',
};

Expand All @@ -112,16 +111,19 @@ const handleSubmitTransfer = async() => {

let res = await sourceStargazeClient.value.signAndBroadcast(
sourceAddress.value,
[transfer({
sourcePort,
[{
typeUrl: MsgTransfer.typeUrl,
value: MsgTransfer.fromPartial({
sourcePort,
sourceChannel,
token,
sender: sourceAddress.value,
receiver: destAddress.value,
token,
// @ts-ignore
timeoutHeight: undefined,
timeoutTimestamp: BigInt(timeoutInNanos),
})],
memo: '',
}),
}],
fee
)
console.log('res>>', res)
Expand All @@ -132,13 +134,8 @@ const handleSubmitTransfer = async() => {
</script>

<template>
<AssetWithdrawTokens
:fromImgSrc="sourceChain.imgSrc"
:fromAddress="sourceChain.address"
:toImgSrc="destChain.imgSrc"
:toAddress="destChain.address"
@onTransfer="handleSubmitTransfer"
/>
<AssetWithdrawTokens :fromImgSrc="sourceChain.imgSrc" :fromAddress="sourceChain.address" :toImgSrc="destChain.imgSrc"
:toAddress="destChain.address" @onTransfer="handleSubmitTransfer" />
</template>

<style scoped></style>
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { useWalletManager } from '@interchain-kit/vue'
import { useAssets } from './useAssets'
import { Asset } from '@chain-registry/types';
import { ibc } from 'chain-registry'
import { Coin } from 'osmojs/cosmos/base/v1beta1/coin';
import { Coin } from '@interchainjs/cosmos-types/types';
import BigNumber from 'bignumber.js'
import { CoinDenom, CoinSymbol, Exponent, PriceHash } from '../../utils/asset-list/types';

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Ref, computed, ref, watch } from 'vue'
import { ExtensionWallet } from '@interchain-kit/core'
import { useChain, useWalletManager } from '@interchain-kit/vue'
import { SigningStargateClient } from '@cosmjs/stargate'
import { SigningClient as SigningStargateClient } from '@interchainjs/cosmos/signing-client';

export const useStargateClient = (chainName: Ref<string>) => {
const { rpcEndpoint, chain } = useChain(chainName)
Expand Down
3 changes: 1 addition & 2 deletions examples/stake-tokens/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@
"chain-registry": "^1.69.32",
"fast-fuzzy": "1.12.0",
"interchain-kit": "0.0.1-beta.62",
"interchain-query": "1.10.1",
"match-sorter": "^6.3.3",
"next": "^13",
"react": "18.3.1",
Expand All @@ -45,4 +44,4 @@
"typescript": "^5.5.4"
},
"packageManager": "[email protected]"
}
}
3 changes: 1 addition & 2 deletions examples/vote-proposal/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@
"fast-fuzzy": "1.12.0",
"framer-motion": "9.0.7",
"interchain-kit": "0.0.1-beta.62",
"interchain-query": "1.10.1",
"match-sorter": "^6.3.3",
"next": "^13",
"react": "^18.2.0",
Expand All @@ -51,4 +50,4 @@
"typescript": "^5.1.6"
},
"packageManager": "[email protected]"
}
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,5 +41,5 @@
"type": "git",
"url": "https://github.com/hyperweb-io/create-interchain-app"
},
"packageManager": "yarn@4.1.0"
"packageManager": "yarn@1.22.22+sha1.ac34549e6aa8e7ead463a7407e1c7390f61a6610"
}
Loading
Loading