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

feat: tx builder #534

Open
wants to merge 7 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
5 changes: 1 addition & 4 deletions .github/actions/build/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Build
description: Build
runs:
using: "composite"
steps:
steps:
- uses: actions/setup-node@9ced9a43a244f3ac94f13bfd896db8c8f30da67a # v3.0.0
with:
node-version-file: '.nvmrc'
Expand All @@ -15,9 +15,6 @@ runs:
- name: lint
shell: sh
run: yarn lint
- name: cover
shell: sh
run: yarn cover
- name: build
shell: sh
run: yarn build
36 changes: 12 additions & 24 deletions packages/contract-helpers/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,40 +1,32 @@
# Change Log

All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
All notable changes to this project will be documented in this file. See
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# 1.16.0 (2023-04-17)


### Features

* update borrow methods SDK ([#527](https://github.com/aave/aave-utilities/issues/527)) ([da31b83](https://github.com/aave/aave-utilities/commit/da31b836dd7a85da0dbfe664b67612b1f261c7a7))




- update borrow methods SDK
([#527](https://github.com/aave/aave-utilities/issues/527))
([da31b83](https://github.com/aave/aave-utilities/commit/da31b836dd7a85da0dbfe664b67612b1f261c7a7))

# 1.15.0 (2023-04-12)


### Features

* add Scroll Alpha chainId ([#528](https://github.com/aave/aave-utilities/issues/528)) ([3418c70](https://github.com/aave/aave-utilities/commit/3418c7087796397ed535fc7a3522445fb44f94c5))




- add Scroll Alpha chainId
([#528](https://github.com/aave/aave-utilities/issues/528))
([3418c70](https://github.com/aave/aave-utilities/commit/3418c7087796397ed535fc7a3522445fb44f94c5))

# 1.14.0 (2023-04-05)


### Features

* tx bundle refactor ([#514](https://github.com/aave/aave-utilities/issues/514)) ([fc5c937](https://github.com/aave/aave-utilities/commit/fc5c9378b48a14a31df9fdbe435095a3e81390a2)), closes [#524](https://github.com/aave/aave-utilities/issues/524) [#504](https://github.com/aave/aave-utilities/issues/504)




- tx bundle refactor ([#514](https://github.com/aave/aave-utilities/issues/514))
([fc5c937](https://github.com/aave/aave-utilities/commit/fc5c9378b48a14a31df9fdbe435095a3e81390a2)),
closes [#524](https://github.com/aave/aave-utilities/issues/524)
[#504](https://github.com/aave/aave-utilities/issues/504)

# Change Log

Expand All @@ -45,10 +37,6 @@ All notable changes to this project will be documented in this file. See

**Note:** Version bump only for package @aave/contract-helpers





## 1.13.6 (2023-03-03)

**Note:** Version bump only for package @aave/contract-helpers
Expand Down
1 change: 1 addition & 0 deletions packages/contract-helpers/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ export * from './synthetix-contract';
export * from './baseDebtToken-contract';
export * from './v3-migration-contract';
export * from './erc20-2612';
export * from './tx-builder';

// commons
export * from './commons/types';
Expand Down
Loading