diff --git a/VERSION b/VERSION index 165a77659..935c2875e 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.3.0-beta.7 \ No newline at end of file +0.3.0-beta.8 \ No newline at end of file diff --git a/connect/package.json b/connect/package.json index fa51870b5..da476a0e7 100644 --- a/connect/package.json +++ b/connect/package.json @@ -1,6 +1,6 @@ { "name": "@wormhole-foundation/connect-sdk", - "version": "0.3.0-beta.7", + "version": "0.3.0-beta.8", "repository": { "type": "git", "url": "git+https://github.com/wormhole-foundation/connect-sdk.git" @@ -45,7 +45,7 @@ }, "dependencies": { "axios": "^1.4.0", - "@wormhole-foundation/sdk-base": "^0.3.0-beta.7", - "@wormhole-foundation/sdk-definitions": "^0.3.0-beta.7" + "@wormhole-foundation/sdk-base": "^0.3.0-beta.8", + "@wormhole-foundation/sdk-definitions": "^0.3.0-beta.8" } } \ No newline at end of file diff --git a/core/base/package.json b/core/base/package.json index fc24231af..a39c8d719 100644 --- a/core/base/package.json +++ b/core/base/package.json @@ -1,6 +1,6 @@ { "name": "@wormhole-foundation/sdk-base", - "version": "0.3.0-beta.7", + "version": "0.3.0-beta.8", "repository": { "type": "git", "url": "git+https://github.com/wormhole-foundation/connect-sdk.git" diff --git a/core/definitions/package.json b/core/definitions/package.json index 8004e10f0..54ce055f9 100644 --- a/core/definitions/package.json +++ b/core/definitions/package.json @@ -1,6 +1,6 @@ { "name": "@wormhole-foundation/sdk-definitions", - "version": "0.3.0-beta.7", + "version": "0.3.0-beta.8", "repository": { "type": "git", "url": "git+https://github.com/wormhole-foundation/connect-sdk.git" @@ -30,6 +30,6 @@ }, "dependencies": { "@noble/hashes": "^1.3.1", - "@wormhole-foundation/sdk-base": "^0.3.0-beta.7" + "@wormhole-foundation/sdk-base": "^0.3.0-beta.8" } } \ No newline at end of file diff --git a/examples/package.json b/examples/package.json index e0cc350b6..8876e9e1d 100644 --- a/examples/package.json +++ b/examples/package.json @@ -1,6 +1,6 @@ { "name": "@wormhole-foundation/connect-sdk-examples", - "version": "0.3.0-beta.7", + "version": "0.3.0-beta.8", "repository": { "type": "git", "url": "git+https://github.com/wormhole-foundation/connect-sdk.git" @@ -35,7 +35,6 @@ "scripts": { "wrapped": "tsx src/createWrapped.ts", "tb": "tsx src/tokenBridge.ts", - "mtb": "cd ../platforms/algorand/protocols/tokenBridge && npm run rebuild && cd - && tsx src/multiTokenBridge.ts", "cctp": "tsx src/cctp.ts", "demo": "tsx src/index.ts", "cosmos": "tsx src/cosmos.ts", @@ -53,18 +52,18 @@ "algosdk": "^2.7.0" }, "dependencies": { - "@wormhole-foundation/connect-sdk": "^0.3.0-beta.7", - "@wormhole-foundation/connect-sdk-solana": "^0.3.0-beta.7", - "@wormhole-foundation/connect-sdk-evm": "^0.3.0-beta.7", - "@wormhole-foundation/connect-sdk-cosmwasm": "^0.3.0-beta.7", - "@wormhole-foundation/connect-sdk-evm-core": "^0.3.0-beta.7", - "@wormhole-foundation/connect-sdk-solana-core": "^0.3.0-beta.7", - "@wormhole-foundation/connect-sdk-cosmwasm-core": "^0.3.0-beta.7", - "@wormhole-foundation/connect-sdk-evm-tokenbridge": "^0.3.0-beta.7", - "@wormhole-foundation/connect-sdk-solana-tokenbridge": "^0.3.0-beta.7", - "@wormhole-foundation/connect-sdk-cosmwasm-tokenbridge": "^0.3.0-beta.7", - "@wormhole-foundation/connect-sdk-evm-cctp": "^0.3.0-beta.7", - "@wormhole-foundation/connect-sdk-solana-cctp": "^0.3.0-beta.7", - "@wormhole-foundation/connect-sdk-cosmwasm-ibc": "^0.3.0-beta.7" + "@wormhole-foundation/connect-sdk": "^0.3.0-beta.8", + "@wormhole-foundation/connect-sdk-solana": "^0.3.0-beta.8", + "@wormhole-foundation/connect-sdk-evm": "^0.3.0-beta.8", + "@wormhole-foundation/connect-sdk-cosmwasm": "^0.3.0-beta.8", + "@wormhole-foundation/connect-sdk-evm-core": "^0.3.0-beta.8", + "@wormhole-foundation/connect-sdk-solana-core": "^0.3.0-beta.8", + "@wormhole-foundation/connect-sdk-cosmwasm-core": "^0.3.0-beta.8", + "@wormhole-foundation/connect-sdk-evm-tokenbridge": "^0.3.0-beta.8", + "@wormhole-foundation/connect-sdk-solana-tokenbridge": "^0.3.0-beta.8", + "@wormhole-foundation/connect-sdk-cosmwasm-tokenbridge": "^0.3.0-beta.8", + "@wormhole-foundation/connect-sdk-evm-cctp": "^0.3.0-beta.8", + "@wormhole-foundation/connect-sdk-solana-cctp": "^0.3.0-beta.8", + "@wormhole-foundation/connect-sdk-cosmwasm-ibc": "^0.3.0-beta.8" } -} +} \ No newline at end of file diff --git a/examples/src/helpers/helpers.ts b/examples/src/helpers/helpers.ts index abf68641b..ac6e9435d 100644 --- a/examples/src/helpers/helpers.ts +++ b/examples/src/helpers/helpers.ts @@ -1,7 +1,8 @@ import { - Network, ChainAddress, ChainContext, + DEFAULT_TASK_TIMEOUT, + Network, Platform, PlatformToChains, Signer, @@ -11,18 +12,13 @@ import { Wormhole, api, tasks, - DEFAULT_TASK_TIMEOUT, - Chain, - TokenId, - TransferReceipt, } from "@wormhole-foundation/connect-sdk"; // Importing from src so we dont have to rebuild to see debug stuff in signer +import { getAlgorandSigner } from "@wormhole-foundation/connect-sdk-algorand/src/testing"; +import { getCosmwasmSigner } from "@wormhole-foundation/connect-sdk-cosmwasm/src/testing"; import { getEvmSigner } from "@wormhole-foundation/connect-sdk-evm/src/testing"; import { getSolanaSigner } from "@wormhole-foundation/connect-sdk-solana/src/testing"; -import { getCosmwasmSigner } from "@wormhole-foundation/connect-sdk-cosmwasm/src/testing"; -import { getAlgorandSigner } from "@wormhole-foundation/connect-sdk-algorand/src/testing"; -import { TokenTransferProtocol } from "@wormhole-foundation/connect-sdk"; // read in from `.env` require("dotenv").config(); @@ -38,19 +34,6 @@ function getEnv(key: string): string { return val; } -export interface BridgingInputs { - fromChain: Chain; - asset: TokenId | "native"; - quantity: string; - toChain: Chain; - roundTrip?: boolean; - recoverTxId?: string | undefined; -} - -export interface BridgingResult extends BridgingInputs { - result: TransferReceipt; -} - export interface TransferStuff< N extends Network, P extends Platform, diff --git a/examples/src/multiTokenBridge.ts b/examples/src/multiTokenBridge.ts index 6b92febba..7a2ff3340 100644 --- a/examples/src/multiTokenBridge.ts +++ b/examples/src/multiTokenBridge.ts @@ -4,11 +4,13 @@ import { Platform, TokenId, TokenTransfer, + TokenTransferProtocol, + TransferReceipt, Wormhole, isTokenId, normalizeAmount, } from "@wormhole-foundation/connect-sdk"; -import { BridgingInputs, BridgingResult, TransferStuff, getStuff, waitLog } from "./helpers"; +import { TransferStuff, getStuff, waitLog } from "./helpers"; import { inspect } from "util"; // Import the platform specific packages @@ -21,6 +23,19 @@ import "@wormhole-foundation/connect-sdk-evm-tokenbridge"; import "@wormhole-foundation/connect-sdk-solana-tokenbridge"; import "@wormhole-foundation/connect-sdk-algorand-tokenbridge"; +interface BridgingInputs { + fromChain: Chain; + asset: TokenId | "native"; + quantity: string; + toChain: Chain; + roundTrip?: boolean; + recoverTxId?: string | undefined; +} + +interface BridgingResult extends BridgingInputs { + result: TransferReceipt; +} + (async function multipleBridges() { const scenarios: BridgingInputs[] = [ // Example input set showing all parameters with recoverTxId as optional diff --git a/package-lock.json b/package-lock.json index 4009dda4c..6caf43da0 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "connect-sdk", - "version": "0.3.0-beta.7", + "version": "0.3.0-beta.8", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "connect-sdk", - "version": "0.3.0-beta.7", + "version": "0.3.0-beta.8", "license": "Apache-2.0", "workspaces": [ "core/base", @@ -49,11 +49,11 @@ }, "connect": { "name": "@wormhole-foundation/connect-sdk", - "version": "0.3.0-beta.7", + "version": "0.3.0-beta.8", "license": "Apache-2.0", "dependencies": { - "@wormhole-foundation/sdk-base": "^0.3.0-beta.7", - "@wormhole-foundation/sdk-definitions": "^0.3.0-beta.7", + "@wormhole-foundation/sdk-base": "^0.3.0-beta.8", + "@wormhole-foundation/sdk-definitions": "^0.3.0-beta.8", "axios": "^1.4.0" }, "engines": { @@ -62,7 +62,7 @@ }, "core/base": { "name": "@wormhole-foundation/sdk-base", - "version": "0.3.0-beta.7", + "version": "0.3.0-beta.8", "license": "Apache-2.0", "dependencies": { "@scure/base": "^1.1.3" @@ -70,33 +70,33 @@ }, "core/definitions": { "name": "@wormhole-foundation/sdk-definitions", - "version": "0.3.0-beta.7", + "version": "0.3.0-beta.8", "dependencies": { "@noble/hashes": "^1.3.1", - "@wormhole-foundation/sdk-base": "^0.3.0-beta.7" + "@wormhole-foundation/sdk-base": "^0.3.0-beta.8" } }, "examples": { "name": "@wormhole-foundation/connect-sdk-examples", - "version": "0.3.0-beta.7", + "version": "0.3.0-beta.8", "license": "Apache-2.0", "dependencies": { - "@wormhole-foundation/connect-sdk": "^0.3.0-beta.7", - "@wormhole-foundation/connect-sdk-cosmwasm": "^0.3.0-beta.7", - "@wormhole-foundation/connect-sdk-cosmwasm-core": "^0.3.0-beta.7", - "@wormhole-foundation/connect-sdk-cosmwasm-ibc": "^0.3.0-beta.7", - "@wormhole-foundation/connect-sdk-cosmwasm-tokenbridge": "^0.3.0-beta.7", - "@wormhole-foundation/connect-sdk-evm": "^0.3.0-beta.7", - "@wormhole-foundation/connect-sdk-evm-cctp": "^0.3.0-beta.7", - "@wormhole-foundation/connect-sdk-evm-core": "^0.3.0-beta.7", - "@wormhole-foundation/connect-sdk-evm-tokenbridge": "^0.3.0-beta.7", - "@wormhole-foundation/connect-sdk-solana": "^0.3.0-beta.7", - "@wormhole-foundation/connect-sdk-solana-cctp": "^0.3.0-beta.7", - "@wormhole-foundation/connect-sdk-solana-core": "^0.3.0-beta.7", - "@wormhole-foundation/connect-sdk-solana-tokenbridge": "^0.3.0-beta.7", - "algosdk": "^2.7.0" + "@wormhole-foundation/connect-sdk": "^0.3.0-beta.8", + "@wormhole-foundation/connect-sdk-cosmwasm": "^0.3.0-beta.8", + "@wormhole-foundation/connect-sdk-cosmwasm-core": "^0.3.0-beta.8", + "@wormhole-foundation/connect-sdk-cosmwasm-ibc": "^0.3.0-beta.8", + "@wormhole-foundation/connect-sdk-cosmwasm-tokenbridge": "^0.3.0-beta.8", + "@wormhole-foundation/connect-sdk-evm": "^0.3.0-beta.8", + "@wormhole-foundation/connect-sdk-evm-cctp": "^0.3.0-beta.8", + "@wormhole-foundation/connect-sdk-evm-core": "^0.3.0-beta.8", + "@wormhole-foundation/connect-sdk-evm-tokenbridge": "^0.3.0-beta.8", + "@wormhole-foundation/connect-sdk-solana": "^0.3.0-beta.8", + "@wormhole-foundation/connect-sdk-solana-cctp": "^0.3.0-beta.8", + "@wormhole-foundation/connect-sdk-solana-core": "^0.3.0-beta.8", + "@wormhole-foundation/connect-sdk-solana-tokenbridge": "^0.3.0-beta.8" }, "devDependencies": { + "algosdk": "^2.7.0", "dotenv": "^16.3.1", "tsx": "^4.7.0" }, @@ -104,24 +104,6 @@ "node": ">=16" } }, - "examples/node_modules/@wormhole-foundation/connect-sdk-solana-cctp": { - "version": "0.3.0-beta.7", - "resolved": "https://registry.npmjs.org/@wormhole-foundation/connect-sdk-solana-cctp/-/connect-sdk-solana-cctp-0.3.0-beta.7.tgz", - "integrity": "sha512-yquewL1QQrVxH1laNLL4YWpPwykbs5v9fZMKxeOK1aeA/TFQxQwSx4fHMTzSXPmC+eDV+VFsvRvJJ1pC1o4XXQ==", - "dependencies": { - "@coral-xyz/borsh": "0.2.6", - "@project-serum/anchor": "0.25.0", - "@project-serum/borsh": "0.2.5", - "@solana/spl-token": "0.3.5", - "@solana/web3.js": "1.66.2", - "@wormhole-foundation/connect-sdk": "^0.3.0-beta.7", - "@wormhole-foundation/connect-sdk-solana": "^0.3.0-beta.7", - "@wormhole-foundation/connect-sdk-solana-core": "^0.3.0-beta.7" - }, - "engines": { - "node": ">=16" - } - }, "node_modules/@adraffy/ens-normalize": { "version": "1.10.0", "license": "MIT" @@ -9449,10 +9431,10 @@ }, "platforms/algorand": { "name": "@wormhole-foundation/connect-sdk-algorand", - "version": "0.3.0-beta.7", + "version": "0.3.0-beta.8", "license": "Apache-2.0", "dependencies": { - "@wormhole-foundation/connect-sdk": "^0.3.0-beta.7", + "@wormhole-foundation/connect-sdk": "^0.3.0-beta.8", "algosdk": "2.7.0" }, "engines": { @@ -9461,11 +9443,11 @@ }, "platforms/algorand/protocols/core": { "name": "@wormhole-foundation/connect-sdk-algorand-core", - "version": "0.3.0-beta.7", + "version": "0.3.0-beta.8", "license": "Apache-2.0", "dependencies": { - "@wormhole-foundation/connect-sdk": "^0.3.0-beta.7", - "@wormhole-foundation/connect-sdk-algorand": "^0.3.0-beta.7" + "@wormhole-foundation/connect-sdk": "^0.3.0-beta.8", + "@wormhole-foundation/connect-sdk-algorand": "^0.3.0-beta.8" }, "engines": { "node": ">=16" @@ -9473,12 +9455,12 @@ }, "platforms/algorand/protocols/tokenBridge": { "name": "@wormhole-foundation/connect-sdk-algorand-tokenbridge", - "version": "0.3.0-beta.7", + "version": "0.3.0-beta.8", "license": "Apache-2.0", "dependencies": { - "@wormhole-foundation/connect-sdk": "^0.3.0-beta.7", - "@wormhole-foundation/connect-sdk-algorand": "^0.3.0-beta.7", - "@wormhole-foundation/connect-sdk-algorand-core": "^0.3.0-beta.7" + "@wormhole-foundation/connect-sdk": "^0.3.0-beta.8", + "@wormhole-foundation/connect-sdk-algorand": "^0.3.0-beta.8", + "@wormhole-foundation/connect-sdk-algorand-core": "^0.3.0-beta.8" }, "engines": { "node": ">=16" @@ -9486,7 +9468,7 @@ }, "platforms/cosmwasm": { "name": "@wormhole-foundation/connect-sdk-cosmwasm", - "version": "0.3.0-beta.7", + "version": "0.3.0-beta.8", "license": "Apache-2.0", "dependencies": { "@cosmjs/cosmwasm-stargate": "^0.32.0", @@ -9494,7 +9476,7 @@ "@cosmjs/stargate": "^0.32.0", "@cosmjs/tendermint-rpc": "^0.32.0", "@injectivelabs/sdk-ts": "^1.14.4", - "@wormhole-foundation/connect-sdk": "^0.3.0-beta.7", + "@wormhole-foundation/connect-sdk": "^0.3.0-beta.8", "cosmjs-types": "^0.9.0" }, "engines": { @@ -9503,13 +9485,13 @@ }, "platforms/cosmwasm/protocols/core": { "name": "@wormhole-foundation/connect-sdk-cosmwasm-core", - "version": "0.3.0-beta.7", + "version": "0.3.0-beta.8", "license": "Apache-2.0", "dependencies": { "@cosmjs/cosmwasm-stargate": "^0.32.0", "@cosmjs/stargate": "^0.32.0", - "@wormhole-foundation/connect-sdk": "^0.3.0-beta.7", - "@wormhole-foundation/connect-sdk-cosmwasm": "^0.3.0-beta.7", + "@wormhole-foundation/connect-sdk": "^0.3.0-beta.8", + "@wormhole-foundation/connect-sdk-cosmwasm": "^0.3.0-beta.8", "cosmjs-types": "^0.9.0" }, "engines": { @@ -9518,14 +9500,14 @@ }, "platforms/cosmwasm/protocols/ibc": { "name": "@wormhole-foundation/connect-sdk-cosmwasm-ibc", - "version": "0.3.0-beta.7", + "version": "0.3.0-beta.8", "license": "Apache-2.0", "dependencies": { "@cosmjs/cosmwasm-stargate": "^0.32.0", "@cosmjs/stargate": "^0.32.0", - "@wormhole-foundation/connect-sdk": "^0.3.0-beta.7", - "@wormhole-foundation/connect-sdk-cosmwasm": "^0.3.0-beta.7", - "@wormhole-foundation/connect-sdk-cosmwasm-core": "^0.3.0-beta.7", + "@wormhole-foundation/connect-sdk": "^0.3.0-beta.8", + "@wormhole-foundation/connect-sdk-cosmwasm": "^0.3.0-beta.8", + "@wormhole-foundation/connect-sdk-cosmwasm-core": "^0.3.0-beta.8", "cosmjs-types": "^0.9.0" }, "engines": { @@ -9534,13 +9516,13 @@ }, "platforms/cosmwasm/protocols/tokenBridge": { "name": "@wormhole-foundation/connect-sdk-cosmwasm-tokenbridge", - "version": "0.3.0-beta.7", + "version": "0.3.0-beta.8", "license": "Apache-2.0", "dependencies": { "@cosmjs/cosmwasm-stargate": "^0.32.0", "@cosmjs/stargate": "^0.32.0", - "@wormhole-foundation/connect-sdk": "^0.3.0-beta.7", - "@wormhole-foundation/connect-sdk-cosmwasm": "^0.3.0-beta.7", + "@wormhole-foundation/connect-sdk": "^0.3.0-beta.8", + "@wormhole-foundation/connect-sdk-cosmwasm": "^0.3.0-beta.8", "cosmjs-types": "^0.9.0" }, "engines": { @@ -9549,11 +9531,11 @@ }, "platforms/evm": { "name": "@wormhole-foundation/connect-sdk-evm", - "version": "0.3.0-beta.7", + "version": "0.3.0-beta.8", "license": "Apache-2.0", "dependencies": { "@typechain/ethers-v6": "^0.4.0", - "@wormhole-foundation/connect-sdk": "^0.3.0-beta.7", + "@wormhole-foundation/connect-sdk": "^0.3.0-beta.8", "ethers": "^6.5.1", "typechain": "^8.2.0" }, @@ -9617,12 +9599,12 @@ }, "platforms/evm/protocols/cctp": { "name": "@wormhole-foundation/connect-sdk-evm-cctp", - "version": "0.3.0-beta.7", + "version": "0.3.0-beta.8", "license": "Apache-2.0", "dependencies": { "@typechain/ethers-v6": "^0.4.0", - "@wormhole-foundation/connect-sdk": "^0.3.0-beta.7", - "@wormhole-foundation/connect-sdk-evm": "^0.3.0-beta.7", + "@wormhole-foundation/connect-sdk": "^0.3.0-beta.8", + "@wormhole-foundation/connect-sdk-evm": "^0.3.0-beta.8", "ethers": "^6.5.1", "typechain": "^8.2.0" }, @@ -9632,12 +9614,12 @@ }, "platforms/evm/protocols/core": { "name": "@wormhole-foundation/connect-sdk-evm-core", - "version": "0.3.0-beta.7", + "version": "0.3.0-beta.8", "license": "Apache-2.0", "dependencies": { "@typechain/ethers-v6": "^0.4.0", - "@wormhole-foundation/connect-sdk": "^0.3.0-beta.7", - "@wormhole-foundation/connect-sdk-evm": "^0.3.0-beta.7", + "@wormhole-foundation/connect-sdk": "^0.3.0-beta.8", + "@wormhole-foundation/connect-sdk-evm": "^0.3.0-beta.8", "ethers": "^6.5.1", "typechain": "^8.2.0" }, @@ -9647,13 +9629,13 @@ }, "platforms/evm/protocols/tokenBridge": { "name": "@wormhole-foundation/connect-sdk-evm-tokenbridge", - "version": "0.3.0-beta.7", + "version": "0.3.0-beta.8", "license": "Apache-2.0", "dependencies": { "@typechain/ethers-v6": "^0.4.0", - "@wormhole-foundation/connect-sdk": "^0.3.0-beta.7", - "@wormhole-foundation/connect-sdk-evm": "^0.3.0-beta.7", - "@wormhole-foundation/connect-sdk-evm-core": "^0.3.0-beta.7", + "@wormhole-foundation/connect-sdk": "^0.3.0-beta.8", + "@wormhole-foundation/connect-sdk-evm": "^0.3.0-beta.8", + "@wormhole-foundation/connect-sdk-evm-core": "^0.3.0-beta.8", "ethers": "^6.5.1", "typechain": "^8.2.0" }, @@ -9663,7 +9645,7 @@ }, "platforms/solana": { "name": "@wormhole-foundation/connect-sdk-solana", - "version": "0.3.0-beta.7", + "version": "0.3.0-beta.8", "license": "Apache-2.0", "dependencies": { "@coral-xyz/borsh": "0.2.6", @@ -9671,7 +9653,7 @@ "@project-serum/borsh": "0.2.5", "@solana/spl-token": "0.3.5", "@solana/web3.js": "1.66.2", - "@wormhole-foundation/connect-sdk": "^0.3.0-beta.7", + "@wormhole-foundation/connect-sdk": "^0.3.0-beta.8", "lodash": "^4.17.21" }, "devDependencies": { @@ -9683,7 +9665,7 @@ }, "platforms/solana/protocols/cctp": { "name": "@wormhole-foundation/connect-sdk-solana-cctp", - "version": "0.3.0-beta.6", + "version": "0.3.0-beta.8", "license": "Apache-2.0", "dependencies": { "@coral-xyz/borsh": "0.2.6", @@ -9691,9 +9673,9 @@ "@project-serum/borsh": "0.2.5", "@solana/spl-token": "0.3.5", "@solana/web3.js": "1.66.2", - "@wormhole-foundation/connect-sdk": "^0.3.0-beta.6", - "@wormhole-foundation/connect-sdk-solana": "^0.3.0-beta.6", - "@wormhole-foundation/connect-sdk-solana-core": "^0.3.0-beta.6" + "@wormhole-foundation/connect-sdk": "^0.3.0-beta.8", + "@wormhole-foundation/connect-sdk-solana": "^0.3.0-beta.8", + "@wormhole-foundation/connect-sdk-solana-core": "^0.3.0-beta.8" }, "devDependencies": { "nock": "^13.3.3" @@ -9704,7 +9686,7 @@ }, "platforms/solana/protocols/core": { "name": "@wormhole-foundation/connect-sdk-solana-core", - "version": "0.3.0-beta.7", + "version": "0.3.0-beta.8", "license": "Apache-2.0", "dependencies": { "@coral-xyz/borsh": "0.2.6", @@ -9712,8 +9694,8 @@ "@project-serum/borsh": "0.2.5", "@solana/spl-token": "0.3.5", "@solana/web3.js": "1.66.2", - "@wormhole-foundation/connect-sdk": "^0.3.0-beta.7", - "@wormhole-foundation/connect-sdk-solana": "^0.3.0-beta.7", + "@wormhole-foundation/connect-sdk": "^0.3.0-beta.8", + "@wormhole-foundation/connect-sdk-solana": "^0.3.0-beta.8", "lodash": "^4.17.21" }, "devDependencies": { @@ -9726,7 +9708,7 @@ }, "platforms/solana/protocols/tokenBridge": { "name": "@wormhole-foundation/connect-sdk-solana-tokenbridge", - "version": "0.3.0-beta.7", + "version": "0.3.0-beta.8", "license": "Apache-2.0", "dependencies": { "@coral-xyz/borsh": "0.2.6", @@ -9734,9 +9716,9 @@ "@project-serum/borsh": "0.2.5", "@solana/spl-token": "0.3.5", "@solana/web3.js": "1.66.2", - "@wormhole-foundation/connect-sdk": "^0.3.0-beta.7", - "@wormhole-foundation/connect-sdk-solana": "^0.3.0-beta.7", - "@wormhole-foundation/connect-sdk-solana-core": "^0.3.0-beta.7", + "@wormhole-foundation/connect-sdk": "^0.3.0-beta.8", + "@wormhole-foundation/connect-sdk-solana": "^0.3.0-beta.8", + "@wormhole-foundation/connect-sdk-solana-core": "^0.3.0-beta.8", "lodash": "^4.17.21" }, "devDependencies": { diff --git a/package.json b/package.json index 582011288..be23d9173 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "connect-sdk", - "version": "0.3.0-beta.7", + "version": "0.3.0-beta.8", "license": "Apache-2.0", "directories": { "test": "__tests__" diff --git a/platforms/algorand/package.json b/platforms/algorand/package.json index c22dbdab6..633115244 100644 --- a/platforms/algorand/package.json +++ b/platforms/algorand/package.json @@ -1,6 +1,6 @@ { "name": "@wormhole-foundation/connect-sdk-algorand", - "version": "0.3.0-beta.7", + "version": "0.3.0-beta.8", "repository": { "type": "git", "url": "git+https://github.com/wormhole-foundation/connect-sdk.git" @@ -43,7 +43,7 @@ "test": "jest --config ./jest.config.ts" }, "dependencies": { - "@wormhole-foundation/connect-sdk": "^0.3.0-beta.7", + "@wormhole-foundation/connect-sdk": "^0.3.0-beta.8", "algosdk": "2.7.0" } } \ No newline at end of file diff --git a/platforms/algorand/protocols/core/package.json b/platforms/algorand/protocols/core/package.json index e702fbeb0..08d5b60e6 100644 --- a/platforms/algorand/protocols/core/package.json +++ b/platforms/algorand/protocols/core/package.json @@ -1,6 +1,6 @@ { "name": "@wormhole-foundation/connect-sdk-algorand-core", - "version": "0.3.0-beta.7", + "version": "0.3.0-beta.8", "repository": { "type": "git", "url": "git+https://github.com/wormhole-foundation/connect-sdk.git" @@ -42,7 +42,7 @@ "prettier": "prettier --write ./src" }, "dependencies": { - "@wormhole-foundation/connect-sdk": "^0.3.0-beta.7", - "@wormhole-foundation/connect-sdk-algorand": "^0.3.0-beta.7" + "@wormhole-foundation/connect-sdk": "^0.3.0-beta.8", + "@wormhole-foundation/connect-sdk-algorand": "^0.3.0-beta.8" } } \ No newline at end of file diff --git a/platforms/algorand/protocols/tokenBridge/package.json b/platforms/algorand/protocols/tokenBridge/package.json index d3cb886e2..05085e107 100644 --- a/platforms/algorand/protocols/tokenBridge/package.json +++ b/platforms/algorand/protocols/tokenBridge/package.json @@ -1,6 +1,6 @@ { "name": "@wormhole-foundation/connect-sdk-algorand-tokenbridge", - "version": "0.3.0-beta.7", + "version": "0.3.0-beta.8", "repository": { "type": "git", "url": "git+https://github.com/wormhole-foundation/connect-sdk.git" @@ -42,8 +42,8 @@ "prettier": "prettier --write ./src" }, "dependencies": { - "@wormhole-foundation/connect-sdk": "^0.3.0-beta.7", - "@wormhole-foundation/connect-sdk-algorand": "^0.3.0-beta.7", - "@wormhole-foundation/connect-sdk-algorand-core": "^0.3.0-beta.7" + "@wormhole-foundation/connect-sdk": "^0.3.0-beta.8", + "@wormhole-foundation/connect-sdk-algorand": "^0.3.0-beta.8", + "@wormhole-foundation/connect-sdk-algorand-core": "^0.3.0-beta.8" } } \ No newline at end of file diff --git a/platforms/cosmwasm/package.json b/platforms/cosmwasm/package.json index c7d2d6624..fc25ec490 100644 --- a/platforms/cosmwasm/package.json +++ b/platforms/cosmwasm/package.json @@ -1,6 +1,6 @@ { "name": "@wormhole-foundation/connect-sdk-cosmwasm", - "version": "0.3.0-beta.7", + "version": "0.3.0-beta.8", "repository": { "type": "git", "url": "git+https://github.com/wormhole-foundation/connect-sdk.git" @@ -50,7 +50,7 @@ "test": "jest --config ./jest.config.ts" }, "dependencies": { - "@wormhole-foundation/connect-sdk": "^0.3.0-beta.7", + "@wormhole-foundation/connect-sdk": "^0.3.0-beta.8", "@cosmjs/cosmwasm-stargate": "^0.32.0", "@cosmjs/proto-signing": "^0.32.0", "@cosmjs/stargate": "^0.32.0", diff --git a/platforms/cosmwasm/protocols/core/package.json b/platforms/cosmwasm/protocols/core/package.json index 1e80f38d3..edac69a4d 100644 --- a/platforms/cosmwasm/protocols/core/package.json +++ b/platforms/cosmwasm/protocols/core/package.json @@ -1,6 +1,6 @@ { "name": "@wormhole-foundation/connect-sdk-cosmwasm-core", - "version": "0.3.0-beta.7", + "version": "0.3.0-beta.8", "repository": { "type": "git", "url": "git+https://github.com/wormhole-foundation/connect-sdk.git" @@ -49,8 +49,8 @@ "prettier": "prettier --write ./src" }, "dependencies": { - "@wormhole-foundation/connect-sdk": "^0.3.0-beta.7", - "@wormhole-foundation/connect-sdk-cosmwasm": "^0.3.0-beta.7", + "@wormhole-foundation/connect-sdk": "^0.3.0-beta.8", + "@wormhole-foundation/connect-sdk-cosmwasm": "^0.3.0-beta.8", "@cosmjs/cosmwasm-stargate": "^0.32.0", "@cosmjs/stargate": "^0.32.0", "cosmjs-types": "^0.9.0" diff --git a/platforms/cosmwasm/protocols/ibc/package.json b/platforms/cosmwasm/protocols/ibc/package.json index a19a8a6e9..65547a2a0 100644 --- a/platforms/cosmwasm/protocols/ibc/package.json +++ b/platforms/cosmwasm/protocols/ibc/package.json @@ -1,6 +1,6 @@ { "name": "@wormhole-foundation/connect-sdk-cosmwasm-ibc", - "version": "0.3.0-beta.7", + "version": "0.3.0-beta.8", "repository": { "type": "git", "url": "git+https://github.com/wormhole-foundation/connect-sdk.git" @@ -52,8 +52,8 @@ "@cosmjs/cosmwasm-stargate": "^0.32.0", "@cosmjs/stargate": "^0.32.0", "cosmjs-types": "^0.9.0", - "@wormhole-foundation/connect-sdk": "^0.3.0-beta.7", - "@wormhole-foundation/connect-sdk-cosmwasm": "^0.3.0-beta.7", - "@wormhole-foundation/connect-sdk-cosmwasm-core": "^0.3.0-beta.7" + "@wormhole-foundation/connect-sdk": "^0.3.0-beta.8", + "@wormhole-foundation/connect-sdk-cosmwasm": "^0.3.0-beta.8", + "@wormhole-foundation/connect-sdk-cosmwasm-core": "^0.3.0-beta.8" } } \ No newline at end of file diff --git a/platforms/cosmwasm/protocols/tokenBridge/package.json b/platforms/cosmwasm/protocols/tokenBridge/package.json index ca9de738d..6c36a1cfa 100644 --- a/platforms/cosmwasm/protocols/tokenBridge/package.json +++ b/platforms/cosmwasm/protocols/tokenBridge/package.json @@ -1,6 +1,6 @@ { "name": "@wormhole-foundation/connect-sdk-cosmwasm-tokenbridge", - "version": "0.3.0-beta.7", + "version": "0.3.0-beta.8", "repository": { "type": "git", "url": "git+https://github.com/wormhole-foundation/connect-sdk.git" @@ -52,7 +52,7 @@ "@cosmjs/cosmwasm-stargate": "^0.32.0", "@cosmjs/stargate": "^0.32.0", "cosmjs-types": "^0.9.0", - "@wormhole-foundation/connect-sdk": "^0.3.0-beta.7", - "@wormhole-foundation/connect-sdk-cosmwasm": "^0.3.0-beta.7" + "@wormhole-foundation/connect-sdk": "^0.3.0-beta.8", + "@wormhole-foundation/connect-sdk-cosmwasm": "^0.3.0-beta.8" } } \ No newline at end of file diff --git a/platforms/evm/package.json b/platforms/evm/package.json index 329703da7..4e912dc30 100644 --- a/platforms/evm/package.json +++ b/platforms/evm/package.json @@ -1,6 +1,6 @@ { "name": "@wormhole-foundation/connect-sdk-evm", - "version": "0.3.0-beta.7", + "version": "0.3.0-beta.8", "repository": { "type": "git", "url": "git+https://github.com/wormhole-foundation/connect-sdk.git" @@ -53,7 +53,7 @@ "nock": "13.3.8" }, "dependencies": { - "@wormhole-foundation/connect-sdk": "^0.3.0-beta.7", + "@wormhole-foundation/connect-sdk": "^0.3.0-beta.8", "typechain": "^8.2.0", "ethers": "^6.5.1", "@typechain/ethers-v6": "^0.4.0" diff --git a/platforms/evm/protocols/cctp/package.json b/platforms/evm/protocols/cctp/package.json index e34160a95..1e7c26302 100644 --- a/platforms/evm/protocols/cctp/package.json +++ b/platforms/evm/protocols/cctp/package.json @@ -1,6 +1,6 @@ { "name": "@wormhole-foundation/connect-sdk-evm-cctp", - "version": "0.3.0-beta.7", + "version": "0.3.0-beta.8", "repository": { "type": "git", "url": "git+https://github.com/wormhole-foundation/connect-sdk.git" @@ -49,8 +49,8 @@ "prettier": "prettier --write ./src" }, "dependencies": { - "@wormhole-foundation/connect-sdk": "^0.3.0-beta.7", - "@wormhole-foundation/connect-sdk-evm": "^0.3.0-beta.7", + "@wormhole-foundation/connect-sdk": "^0.3.0-beta.8", + "@wormhole-foundation/connect-sdk-evm": "^0.3.0-beta.8", "typechain": "^8.2.0", "ethers": "^6.5.1", "@typechain/ethers-v6": "^0.4.0" diff --git a/platforms/evm/protocols/core/package.json b/platforms/evm/protocols/core/package.json index fb38e224f..2ccfcf7c2 100644 --- a/platforms/evm/protocols/core/package.json +++ b/platforms/evm/protocols/core/package.json @@ -1,6 +1,6 @@ { "name": "@wormhole-foundation/connect-sdk-evm-core", - "version": "0.3.0-beta.7", + "version": "0.3.0-beta.8", "repository": { "type": "git", "url": "git+https://github.com/wormhole-foundation/connect-sdk.git" @@ -49,8 +49,8 @@ "prettier": "prettier --write ./src" }, "dependencies": { - "@wormhole-foundation/connect-sdk": "^0.3.0-beta.7", - "@wormhole-foundation/connect-sdk-evm": "^0.3.0-beta.7", + "@wormhole-foundation/connect-sdk": "^0.3.0-beta.8", + "@wormhole-foundation/connect-sdk-evm": "^0.3.0-beta.8", "typechain": "^8.2.0", "ethers": "^6.5.1", "@typechain/ethers-v6": "^0.4.0" diff --git a/platforms/evm/protocols/tokenBridge/package.json b/platforms/evm/protocols/tokenBridge/package.json index 43dd4c4f4..be5d28d1e 100644 --- a/platforms/evm/protocols/tokenBridge/package.json +++ b/platforms/evm/protocols/tokenBridge/package.json @@ -1,6 +1,6 @@ { "name": "@wormhole-foundation/connect-sdk-evm-tokenbridge", - "version": "0.3.0-beta.7", + "version": "0.3.0-beta.8", "repository": { "type": "git", "url": "git+https://github.com/wormhole-foundation/connect-sdk.git" @@ -49,9 +49,9 @@ "prettier": "prettier --write ./src" }, "dependencies": { - "@wormhole-foundation/connect-sdk": "^0.3.0-beta.7", - "@wormhole-foundation/connect-sdk-evm": "^0.3.0-beta.7", - "@wormhole-foundation/connect-sdk-evm-core": "^0.3.0-beta.7", + "@wormhole-foundation/connect-sdk": "^0.3.0-beta.8", + "@wormhole-foundation/connect-sdk-evm": "^0.3.0-beta.8", + "@wormhole-foundation/connect-sdk-evm-core": "^0.3.0-beta.8", "typechain": "^8.2.0", "ethers": "^6.5.1", "@typechain/ethers-v6": "^0.4.0" diff --git a/platforms/solana/package.json b/platforms/solana/package.json index f4ed81c5a..8b423de28 100644 --- a/platforms/solana/package.json +++ b/platforms/solana/package.json @@ -1,6 +1,6 @@ { "name": "@wormhole-foundation/connect-sdk-solana", - "version": "0.3.0-beta.7", + "version": "0.3.0-beta.8", "repository": { "type": "git", "url": "git+https://github.com/wormhole-foundation/connect-sdk.git" @@ -46,7 +46,7 @@ "nock": "^13.3.3" }, "dependencies": { - "@wormhole-foundation/connect-sdk": "^0.3.0-beta.7", + "@wormhole-foundation/connect-sdk": "^0.3.0-beta.8", "@coral-xyz/borsh": "0.2.6", "@project-serum/anchor": "0.25.0", "@project-serum/borsh": "0.2.5", diff --git a/platforms/solana/protocols/cctp/package.json b/platforms/solana/protocols/cctp/package.json index c863e21a1..a435debac 100644 --- a/platforms/solana/protocols/cctp/package.json +++ b/platforms/solana/protocols/cctp/package.json @@ -1,6 +1,6 @@ { "name": "@wormhole-foundation/connect-sdk-solana-cctp", - "version": "0.3.0-beta.7", + "version": "0.3.0-beta.8", "repository": { "type": "git", "url": "git+https://github.com/wormhole-foundation/connect-sdk.git" @@ -47,9 +47,9 @@ "nock": "^13.3.3" }, "dependencies": { - "@wormhole-foundation/connect-sdk": "^0.3.0-beta.7", - "@wormhole-foundation/connect-sdk-solana": "^0.3.0-beta.7", - "@wormhole-foundation/connect-sdk-solana-core": "^0.3.0-beta.7", + "@wormhole-foundation/connect-sdk": "^0.3.0-beta.8", + "@wormhole-foundation/connect-sdk-solana": "^0.3.0-beta.8", + "@wormhole-foundation/connect-sdk-solana-core": "^0.3.0-beta.8", "@coral-xyz/borsh": "0.2.6", "@project-serum/anchor": "0.25.0", "@project-serum/borsh": "0.2.5", diff --git a/platforms/solana/protocols/core/package.json b/platforms/solana/protocols/core/package.json index 14463fb5f..f3fbc2d73 100644 --- a/platforms/solana/protocols/core/package.json +++ b/platforms/solana/protocols/core/package.json @@ -1,6 +1,6 @@ { "name": "@wormhole-foundation/connect-sdk-solana-core", - "version": "0.3.0-beta.7", + "version": "0.3.0-beta.8", "repository": { "type": "git", "url": "git+https://github.com/wormhole-foundation/connect-sdk.git" @@ -46,8 +46,8 @@ "nock": "^13.3.3" }, "dependencies": { - "@wormhole-foundation/connect-sdk": "^0.3.0-beta.7", - "@wormhole-foundation/connect-sdk-solana": "^0.3.0-beta.7", + "@wormhole-foundation/connect-sdk": "^0.3.0-beta.8", + "@wormhole-foundation/connect-sdk-solana": "^0.3.0-beta.8", "@coral-xyz/borsh": "0.2.6", "@project-serum/anchor": "0.25.0", "@project-serum/borsh": "0.2.5", diff --git a/platforms/solana/protocols/tokenBridge/package.json b/platforms/solana/protocols/tokenBridge/package.json index 20277982e..8f3f4f72f 100644 --- a/platforms/solana/protocols/tokenBridge/package.json +++ b/platforms/solana/protocols/tokenBridge/package.json @@ -1,6 +1,6 @@ { "name": "@wormhole-foundation/connect-sdk-solana-tokenbridge", - "version": "0.3.0-beta.7", + "version": "0.3.0-beta.8", "repository": { "type": "git", "url": "git+https://github.com/wormhole-foundation/connect-sdk.git" @@ -45,9 +45,9 @@ "nock": "^13.3.3" }, "dependencies": { - "@wormhole-foundation/connect-sdk": "^0.3.0-beta.7", - "@wormhole-foundation/connect-sdk-solana": "^0.3.0-beta.7", - "@wormhole-foundation/connect-sdk-solana-core": "^0.3.0-beta.7", + "@wormhole-foundation/connect-sdk": "^0.3.0-beta.8", + "@wormhole-foundation/connect-sdk-solana": "^0.3.0-beta.8", + "@wormhole-foundation/connect-sdk-solana-core": "^0.3.0-beta.8", "@coral-xyz/borsh": "0.2.6", "@project-serum/anchor": "0.25.0", "@project-serum/borsh": "0.2.5",