Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
5511e48
1.9.17
Shubhaankar-Sharma Apr 9, 2024
0c4734c
Update packages/0xsequence/CHANGELOG.md
Dargon789 Dec 30, 2025
3bc5847
Update packages/account/CHANGELOG.md
Dargon789 Dec 30, 2025
0df7033
Update packages/auth/CHANGELOG.md
Dargon789 Dec 30, 2025
0b26f87
Update packages/multicall/CHANGELOG.md
Dargon789 Dec 30, 2025
8317485
Update packages/provider/CHANGELOG.md
Dargon789 Dec 30, 2025
163a7a8
Update packages/wallet/CHANGELOG.md
Dargon789 Dec 30, 2025
a5851fd
1.9.19
Dargon789 Jan 7, 2026
a91cb89
Update packages/waas/src/networks.ts
Dargon789 Jan 7, 2026
9398a23
Squashed commit of the following:
Dargon789 Jan 7, 2026
17aef1e
Merge branch '0xsequence-1.9.19' of https://github.com/Dargon789/sequ…
Dargon789 Jan 7, 2026
e14fef4
Potential fix for code scanning alert no. 82: Workflow does not conta…
Dargon789 Jan 7, 2026
8ddefd9
Potential fix for code scanning alert no. 73: Workflow does not conta…
Dargon789 Jan 7, 2026
c1fb76d
Potential fix for code scanning alert no. 83: Workflow does not conta…
Dargon789 Jan 7, 2026
52cc3c6
Potential fix for code scanning alert no. 108: Incomplete regular exp…
Dargon789 Jan 7, 2026
2c156b6
Potential fix for code scanning alert no. 92: Insecure randomness
Dargon789 Jan 7, 2026
b700236
Merge branch 'master' into 0xsequence-1.9.19
Dargon789 Jan 7, 2026
7a49258
Update CHANGELOG.md (#182)
Dargon789 Jan 7, 2026
3ec984e
Update CHANGELOG.md (#183)
Dargon789 Jan 7, 2026
0bbd8e2
Merge branch 'master' into 0xsequence-1.9.19
Dargon789 Jan 9, 2026
5c92549
Update CHANGELOG.md
Dargon789 Jan 19, 2026
f63d732
Update publish-dists.yml
Dargon789 Jan 19, 2026
3032655
Delete wagmi-project/.circleci directory (#246)
Dargon789 Jan 28, 2026
dfbeaec
Update config.json
Dargon789 Jan 28, 2026
debda48
Merge branch 'master' into 0xsequence-1.9.19
Dargon789 Jan 29, 2026
4b4c28a
update package
Dargon789 Jan 29, 2026
7bd57f7
Potential fix for code scanning alert no. 108: Incomplete regular exp…
Dargon789 Jan 29, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .changeset/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"fixed": [],
"linked": [],
"access": "restricted",
"baseBranch": "master",
"baseBranch": "main",
"updateInternalDependencies": "patch",
"ignore": []
}
3 changes: 0 additions & 3 deletions .github/workflows/Publish-Dists.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
name: Publish Dists for Packages

permissions:
contents: write

on:
workflow_dispatch:
push:
Expand All @@ -11,84 +8,84 @@

jobs:
build-and-push:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0

- uses: ./.github/actions/install-dependencies

- name: Build package
run: pnpm run build

- name: Prepare dist branch
run: |
PACKAGES=("services/guard" "services/identity-instrument" "services/relayer" "wallet/core" "wallet/primitives" "wallet/wdk" "wallet/dapp-client")

for PACKAGE in "${PACKAGES[@]}"; do
BRANCH="dists/$PACKAGE"
PKG_DIR="packages/$PACKAGE"

echo "📦 Publishing $PACKAGE to $BRANCH"

mkdir -p "/tmp/$PACKAGE"
cp -r "$PKG_DIR"/. "/tmp/$PACKAGE" || true

cd /tmp/$PACKAGE
git init
git checkout -b $BRANCH

git config user.name "github-actions"
git config user.email "actions@github.com"

echo "🔧 Rewriting workspace: deps in package.json..."
node -e '
const fs = require("fs");
const path = require("path");
const pkgPath = path.resolve("package.json");
const pkg = JSON.parse(fs.readFileSync(pkgPath, "utf8"));
const repo = "github:0xsequence/sequence.js";

const versions = {
"@0xsequence/guard": `${repo}#dists/services/guard`,
"@0xsequence/identity-instrument": `${repo}#dists/services/identity-instrument`,
"@0xsequence/relayer": `${repo}#dists/services/relayer`,
"@0xsequence/wallet-core": `${repo}#dists/wallet/core`,
"@0xsequence/wallet-primitives": `${repo}#dists/wallet/primitives`,
"@0xsequence/wallet-wdk": `${repo}#dists/wallet/wdk`,
};

const rewrite = (deps = {}) => {
for (const k in deps) {
if (deps[k].startsWith("workspace:")) {
const version = versions[k];

if (!version) {
console.warn(`No version found for ${k}, skipping...`);
continue;
}

deps[k] = version;
console.log(`→ ${k} → ${deps[k]}`);
}
}
};

['dependencies', 'devDependencies', 'peerDependencies', 'optionalDependencies'].forEach((field) => {
if (pkg[field]) {
rewrite(pkg[field]);
}
});
fs.writeFileSync(pkgPath, JSON.stringify(pkg, null, 2));
'

git add .
git commit -m "Build: publish $PACKAGE dist"

git remote add origin https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}.git
git push -f origin HEAD:$BRANCH

cd -
done

Check warning

Code scanning / CodeQL

Workflow does not contain permissions Medium

Actions job or workflow does not limit the permissions of the GITHUB_TOKEN. Consider setting an explicit permissions block, using the following as a minimal starting point: {contents: read}
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
},
"dependencies": {
"@nomiclabs/hardhat-etherscan": "^2.1.6",
"@openzeppelin/contracts": "^5.1.0",
"@openzeppelin/contracts": "^5.0.0",
"@thehubbleproject/bls": "^0.5.1",
"@typechain/hardhat": "^2.3.0",
"@types/debug": "^4.1.12",
Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -115,8 +115,7 @@ async function runCertora(spec, contract, files, options = []) {
stream.end();

// write results in markdown format
const certoraOutputUrl = (await output).match(/https:\/\/prover\.certora\.com\/output\/\S*/)?.[0];
writeEntry(spec, contract, code || signal, certoraOutputUrl);
writeEntry(spec, contract, code || signal, (await output).match(/https:\/\/prover\.certora\.com\/output\/\S*/)?.[0]);

// write all details
console.error(`+ certoraRun ${args.join(' ')}\n` + (await output));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,16 +66,16 @@
"chai": "^4.2.0",
"eslint": "^9.0.0",
"eslint-config-prettier": "^9.0.0",
"ethers": "^6.16.0",
"ethers": "^6.7.1",
"globals": "^15.3.0",
"glob": "^11.1.0",
"glob": "^11.0.0",
"graphlib": "^2.1.8",
"hardhat": "^2.22.2",
"hardhat-exposed": "^0.3.15",
"hardhat-gas-reporter": "^2.3.0",
"hardhat-gas-reporter": "^2.0.0",
"hardhat-ignore-warnings": "^0.2.11",
"lodash.startcase": "^4.4.0",
"micromatch": "^4.0.8",
"micromatch": "^4.0.2",
"p-limit": "^3.1.0",
"prettier": "^3.0.0",
"prettier-plugin-solidity": "^1.1.0",
Expand All @@ -84,9 +84,9 @@
"solhint": "^5.0.0",
"solhint-plugin-openzeppelin": "file:scripts/solhint-custom",
"solidity-ast": "^0.4.50",
"solidity-coverage": "^0.8.17",
"solidity-coverage": "^0.8.5",
"solidity-docgen": "^0.6.0-beta.29",
"undici": "^7.18.2",
"undici": "^6.11.1",
"yargs": "^17.0.0"
}
}
2 changes: 1 addition & 1 deletion packages/multicall/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"ethers": "^5.7.2",
"ganache": "^7.5.0",
"json-rpc-engine": "^6.1.0",
"web3": "^4.16.0",
"web3": "^1.8.1",
"web3-provider-engine": "^16.0.4"
},
"files": [
Expand Down
2 changes: 1 addition & 1 deletion packages/tests/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"ethers": "^5.7.2",
"web3": "^4.16.0"
"web3": "^1.8.1"
},
"files": [
"src",
Expand Down
2 changes: 1 addition & 1 deletion packages/wallet/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"@0xsequence/wallet-contracts": "^2.0.0",
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"ethers": "^5.7.2",
"web3": "^4.16.0"
"web3": "^1.8.1"
},
"files": [
"src",
Expand Down
2 changes: 1 addition & 1 deletion packages/wallet/primitives-cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"@types/node": "^22.15.29",
"@types/yargs": "^17.0.33",
"concurrently": "^8.2.2",
"esbuild": "^0.26.0",
"esbuild": "^0.25.5",
"nodemon": "^3.1.10",
"typescript": "^5.8.3"
},
Expand Down
Loading
Loading