@reservoir0x/relay-sdk
Version:
Relay is the Fastest and Cheapest Way to Bridge and Transact Across Chains.
10 lines • 413 B
JavaScript
import { configureViemChain } from './chain.js';
import { axios } from './axios.js';
export const fetchChainConfigs = async (baseApiUrl) => {
const response = await axios.get(`${baseApiUrl}/chains`);
if (response.data && response.data.chains) {
return response.data.chains.map((chain) => configureViemChain(chain));
}
throw 'No Chain Data';
};
//# sourceMappingURL=fetchChainConfigs.js.map