import { getInjectiveAddress, getEthereumAddress } from '@injectivelabs/sdk-ts'
const injectiveAddress = 'inj1...'
const ethereumAddress = '0x..'
console.log('Injective address from Ethereum address => ', getInjectiveAddress(ethereumAddress))
console.log('Ethereum address from Injective address => ', getEthereumAddress(injectiveAddress))
由于 Injective 使用的派生路径不同于默认的 Cosmos 派生路径,因此你需要账户的 publicKey 才能将 Cosmos publicAddress 转换为 Injective 地址。
import { config } from "dotenv";
import { ChainRestAuthApi, PublicKey } from "@injectivelabs/sdk-ts";
config();
(async () => {
const chainApi = new ChainRestAuthApi(
"https://rest.cosmos.directory/cosmoshub"
);
const cosmosAddress = "cosmos1..";
const account = await chainApi.fetchCosmosAccount(cosmosAddress);
if (!account.pub_key?.key) {
console.log("No public key found");
return;
}
console.log(
"injectiveAddress",
PublicKey.fromBase64(account.pub_key.key || "")
.toAddress()
.toBech32()
);
})();