Skip to content

Commit

Permalink
add package file back to evm dir with scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
barnjamin committed May 13, 2024
1 parent f2104f7 commit 08732d1
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions evm/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
{
"name": "@xlabs.xyz/swap-layer",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"startLocalBaseSepolia": "anvil --fork-url https://sepolia.base.org --port 8546",
"startLocalArbitrumSepolia": "anvil --fork-url https://public.stackup.sh/api/v1/node/arbitrum-sepolia --port 8547",
"startLocalFuji": "anvil --fork-url https://api.avax-test.network/ext/bc/C/rpc --port 8548",
"deployLocalTestnet": "ENV=localTestnet sh ./ts-scripts/shell/deploySwapLayer.sh",
"configureLocalTestnet": "ENV=localTestnet sh ./ts-scripts/shell/configureSwapLayer.sh",
"updateFeesLocalTestnet": "ENV=localTestnet sh ./ts-scripts/shell/updateFeesSwapLayer.sh",
"runAllLocalTestnet": "ENV=localTestnet sh ./ts-scripts/shell/fullDeployAndConfigure.sh",
"runAllTestnet": "ENV=testnet sh ./ts-scripts/shell/fullDeployAndConfigure.sh",
"testRegularSendTestnet": "ENV=testnet sh ./ts-scripts/shell/testRegularSend.sh",
"testRegularSendLocal": "ENV=localTestnet sh ./ts-scripts/shell/testRegularSend.sh",
"testFastSendTestnet": "ENV=testnet sh ./ts-scripts/shell/testFastSend.sh",
"deployTestnet": "ENV=testnet sh ./ts-scripts/shell/deploySwapLayer.sh",
"configureTestnet": "ENV=testnet sh ./ts-scripts/shell/configureSwapLayer.sh",
"spy:testnet": "docker run --platform=linux/amd64 -p 7073:7073 --entrypoint /guardiand ghcr.io/wormhole-foundation/guardiand:latest spy --nodeKey /node.key --spyRPC \"[::]:7073\" --network /wormhole/testnet/2/1 --bootstrap /dns4/wormhole-testnet-v2-bootstrap.certus.one/udp/8999/quic/p2p/12D3KooWAkB9ynDur1Jtoa97LBUp8RXdhzS5uHgAfdTquJbrbN7i",
"spy:mainnet": "docker run --platform=linux/amd64 -p 7073:7073 --entrypoint /guardiand ghcr.io/wormhole-foundation/guardiand:latest spy --nodeKey /node.key --spyRPC \"[::]:7073\" --network /wormhole/mainnet/2 --bootstrap /dns4/wormhole-mainnet-v2-bootstrap.certus.one/udp/8999/quic/p2p/12D3KooWQp644DK27fd3d4Km3jr7gHiuJJ5ZGmy8hH4py7fP4FP7,/dns4/wormhole-v2-mainnet-bootstrap.xlabs.xyz/udp/8999/quic/p2p/12D3KooWNQ9tVrcb64tw6bNs2CaNrUGPM7yRrKvBBheQ5yCyPHKC",
"build": "make build && npx typechain --target=ethers-v5 --out-dir=./ethers-contracts `find ./out/ -name \"*.json\"` --show-stack-traces"
},
"author": "",
"license": "ISC",
"dependencies": {
"@certusone/wormhole-sdk": "^0.10.3",
"@openzeppelin/contracts": "^4.9.3",
"@typechain/ethers-v5": "^11.1.1",
"@wormhole-foundation/connect-sdk": "^0.4.0-beta.0",
"@wormhole-foundation/connect-sdk-evm": "^0.4.0-beta.0",
"@wormhole-foundation/relayer-engine": "github:wormhole-foundation/relayer-engine#e3c510048ef8c900769461040440b689a18d9e0d",
"@xlabs/wh-swap-layer-ts-sdk": "file:ts-sdk",
"dotenv": "^16.3.1",
"ts-node": "^10.9.1",
"tsx": "^4.7.0",
"typechain": "^8.1.1",
"typescript": "^5.2.2"
}
}

0 comments on commit 08732d1

Please sign in to comment.