Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Stable test -> master #316

Open
wants to merge 40 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
16a7025
refactor: remove param from getProviders function
Luisfc68 Jun 24, 2024
0e430c1
fix: fix incorrect assertions
Luisfc68 Jun 24, 2024
1406e7c
docs: add getProvider to Readme
Luisfc68 Jun 24, 2024
36ce61e
Merge pull request #232 from rsksmart/feature/GBI-1961
Luisfc68 Jun 27, 2024
abb65de
test: update btc lib version and add test to validate new features
Luisfc68 Jun 27, 2024
65d47b7
Merge pull request #233 from rsksmart/feature/GBI-1911
Luisfc68 Jul 1, 2024
8310fc3
fix: update bridge interface
Luisfc68 Jul 22, 2024
9391832
Merge pull request #234 from rsksmart/feature/GBI-1906
Luisfc68 Jul 23, 2024
a207cb6
Merge branch 'QA-Test' into flyover-2.1
Luisfc68 Aug 12, 2024
37866b1
chore: upgrade btc lib version
Luisfc68 Aug 12, 2024
385b2c1
1.3.0
Luisfc68 Aug 12, 2024
9a98c60
chore: add npm login in pipeline
Luisfc68 Aug 12, 2024
cd7fb89
Merge pull request #243 from rsksmart/flyover-2.1
Luisfc68 Aug 13, 2024
0649a80
chore: 1.3.0 dev deployment
Luisfc68 Aug 13, 2024
31378bb
chore: add read permission to slither action
Luisfc68 Aug 15, 2024
bd99e5a
Merge pull request #246 from rsksmart/dev-deploy
Luisfc68 Aug 15, 2024
c73612f
test: add script to register pegin and tests for mainnet real cases
Luisfc68 Sep 27, 2024
b53191e
test: add extra assertion to refund pegin test
Luisfc68 Oct 2, 2024
ae40798
fix: pay gasFee on refundPegout
Luisfc68 Oct 7, 2024
43764e7
feat: add refund pegout script
Luisfc68 Oct 31, 2024
a680ffa
Merge pull request #256 from rsksmart/bugfix/GBI-2171
Luisfc68 Nov 4, 2024
5b02f5a
Merge branch 'QA-Test' into pegin-refunds
Luisfc68 Nov 13, 2024
74f3165
Merge pull request #247 from rsksmart/pegin-refunds
Luisfc68 Nov 13, 2024
afbd70f
chore: update solidity btc helper to v0.2.1 public version
Luisfc68 Nov 13, 2024
b1f8216
Merge pull request #268 from rsksmart/btc-lib-update
Luisfc68 Nov 14, 2024
7ee7952
Merge branch 'Stable-Test' into QA-Test
Luisfc68 Nov 14, 2024
f1c483d
Merge pull request #270 from rsksmart/qa-test-sync
Luisfc68 Nov 14, 2024
0c9a1f8
chore: add dev deployment info
Luisfc68 Nov 14, 2024
1d59632
Merge pull request #271 from rsksmart/dev-deploy
Luisfc68 Nov 14, 2024
b07faf1
Merge pull request #276 from rsksmart/master
Luisfc68 Dec 2, 2024
cbd2365
Merge branch 'QA-Test' into pegout-fix-sync
Luisfc68 Dec 2, 2024
ad2d540
fix: restore old dev deployment info
Luisfc68 Dec 2, 2024
65ee763
chore: add dev deployment info
Luisfc68 Dec 2, 2024
5cb4899
Merge pull request #277 from rsksmart/pegout-fix-sync
Luisfc68 Dec 5, 2024
d434bc6
chore: add testnet deploy info
Luisfc68 Dec 10, 2024
f12d028
Merge pull request #279 from rsksmart/testnet-update
Luisfc68 Dec 11, 2024
ec2bf1a
Merge pull request #281 from rsksmart/QA-Test
Luisfc68 Dec 11, 2024
45ffbe6
chore: add mainnet deploy info
Luisfc68 Jan 22, 2025
1721450
Merge pull request #314 from rsksmart/mainnet-deploy
Luisfc68 Jan 31, 2025
f5ca977
Merge branch 'master' into Stable-Test
Luisfc68 Jan 31, 2025
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
3 changes: 3 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,9 @@ jobs:
- name: Install truffle
run: npm install -g truffle

- name: NPM Login
run: npm config set //npm.pkg.github.com/:_authToken ${{ secrets.GITHUB_TOKEN }}

- name: Install dependencies
run: npm ci
# - name: Lint source and tests
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/slither.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ jobs:
runs-on: ubuntu-latest
permissions:
security-events: write
packages: read
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2

Expand All @@ -17,6 +18,9 @@ jobs:
with:
node-version: '19.6.0'

- name: NPM Login
run: npm config set //npm.pkg.github.com/:_authToken ${{ secrets.GITHUB_TOKEN }}

- name: Install dependencies
run: npm ci

Expand Down
Loading