@sodax/sdk 2.0.0-rc.2 → 2.0.0-rc.3
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.
- package/ai-exported/AGENTS.md +1 -1
- package/ai-exported/integration/architecture.md +22 -8
- package/ai-exported/integration/quickstart.md +1 -1
- package/ai-exported/integration/recipes/initialize-sodax.md +25 -0
- package/ai-exported/migration/README.md +2 -2
- package/ai-exported/migration/breaking-changes/architecture.md +3 -1
- package/ai-exported/migration/breaking-changes/type-system.md +20 -0
- package/ai-exported/migration/checklist.md +9 -3
- package/ai-exported/migration/features/bridge.md +9 -6
- package/ai-exported/migration/recipes.md +68 -6
- package/ai-exported/migration/reference/deleted-exports.md +4 -3
- package/ai-exported/migration/reference/sodax-config.md +112 -19
- package/dist/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -2
package/dist/index.mjs
CHANGED
|
@@ -3869,7 +3869,7 @@ function isValidWalletProviderForChainKey(chainKey, walletProvider) {
|
|
|
3869
3869
|
}
|
|
3870
3870
|
|
|
3871
3871
|
// ../types/dist/index.js
|
|
3872
|
-
var CONFIG_VERSION =
|
|
3872
|
+
var CONFIG_VERSION = 201;
|
|
3873
3873
|
function isEvmSpokeChainConfig(value) {
|
|
3874
3874
|
return typeof value === "object" && value !== null && value.chain.type === "EVM" && value.chain.key !== HUB_CHAIN_KEY;
|
|
3875
3875
|
}
|