Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/development' into amt_preferen…
Browse files Browse the repository at this point in the history
…ce_fixes
  • Loading branch information
lollerfirst committed Jul 25, 2024
2 parents b858878 + 79cefe5 commit 13dfedd
Show file tree
Hide file tree
Showing 20 changed files with 2,189 additions and 1,540 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/format.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Format Check

on: [push]

jobs:
tests:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [18.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/

steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install dependencies
run: npm install
- name: Check format
run: npm run check-format
2 changes: 1 addition & 1 deletion .github/workflows/version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ permissions:
id-token: write
on:
release:
types: [published]
types: [released]
jobs:
build:
runs-on: ubuntu-latest
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,8 @@ const tokens = await wallet.mintTokens(64, mintQuote.quote);

Contributions are very welcome.

If you want to contribute, please open an Issue or a PR.
If you open a PR, please do so from the `development` branch as the base branch.
If you want to contribute, please open an Issue or a PR.
If you open a PR, please do so from the `development` branch as the base branch.

### Version

Expand All @@ -80,17 +80,17 @@ If you open a PR, please do so from the `development` branch as the base branch.
| | * `hotfix`
| |
| * `staging`
| |\
| |\
| |\ \
| | | * `bugfix`
| | |
| | * `development`
| | |\
| | * `development`
| | |\
| | | * `feature1`
| | | |
| | |/
| | *
| | |\
| | |\
| | | * `feature2`
| | |/
| |/
Expand Down
4 changes: 2 additions & 2 deletions migration-1.0.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ To reduce complexity, simplify error handling and to prepare for token V4, this

Utility functions now have an `options` object for optional parameters, instead of passing them directly

**`requestMint(amount: number)` --> `mintQuote(amount: number)`**
**`requestMint(amount: number)` --> `createMintQuote(amount: number)`**
Now returns the following:

```typescript
Expand All @@ -51,7 +51,7 @@ where `request` is the invoice to be paid, and `quote` is the identifier used to

---

**`getMeltQuote(invoice: string)`** is now used to get fee estimation and conversion quotes instead of `getFee()` and returns:
**`createMeltQuote(invoice: string)`** is now used to get fee estimation and conversion quotes instead of `getFee()` and returns:

```typescript
type MeltQuoteResponse = {
Expand Down
Loading

0 comments on commit 13dfedd

Please sign in to comment.