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(2662)!: 2phase incoming and outgoing payments #2671

Merged
merged 27 commits into from
May 15, 2024
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
ed0ff8f
feat(2662): 2phase incoming and outgoing payments
koekiebox Apr 22, 2024
c701587
feat(2662): 2phase incoming and outgoing payments test cases, bruno a…
koekiebox Apr 23, 2024
a7f4573
Merge branch 'refs/heads/main' into issues/2662-two-phase
koekiebox Apr 29, 2024
a36cf27
feat(2662): add command to remove images after tear down.
koekiebox Apr 29, 2024
dcb7192
Merge branch 'refs/heads/main' into issues/2662-two-phase
koekiebox May 1, 2024
40ca768
feat(2662): introduce the timeout as optional argument for withdraws.
koekiebox May 1, 2024
0fe676d
feat(2662): fix test cases.
koekiebox May 1, 2024
6d78472
feat(2662): fix front-end issues wgt timeout.
koekiebox May 2, 2024
4801a8c
feat(2662): bruno updates.
koekiebox May 3, 2024
6f12ee8
Merge branch 'refs/heads/main' into issues/2662-two-phase
koekiebox May 6, 2024
e892eb7
feat(2662): doc updates.
koekiebox May 6, 2024
96a4f81
feat(2662): doc updates.
koekiebox May 6, 2024
ffb1c3a
feat(2662): liq test case updates.
koekiebox May 6, 2024
e77d216
Merge branch 'refs/heads/main' into issues/2662-two-phase
koekiebox May 11, 2024
d290417
feat(2662): review updates.
koekiebox May 11, 2024
7b15748
feat(2662): frontend updates.
koekiebox May 11, 2024
d663cc8
feat(2662): bruno updates.
koekiebox May 13, 2024
33b5321
feat(2662): make use of config from config.server.ts.
koekiebox May 14, 2024
fc75108
Merge branch 'refs/heads/main' into issues/2662-two-phase
koekiebox May 14, 2024
4fbb211
feat(2662-2671): review comments.
koekiebox May 14, 2024
3b4b16c
feat(2662/2671): address review feedback.
koekiebox May 14, 2024
6bfaa65
feat(2662/2671): remove variable timeoutOnePhase
koekiebox May 14, 2024
0cb4d3a
Merge branch 'refs/heads/main' into issues/2662-two-phase
koekiebox May 15, 2024
cd92203
feat(2662/2671): document updates.
koekiebox May 15, 2024
c42f811
feat(2662/2671): final doc updates.
koekiebox May 15, 2024
e9e5dac
feat(2662/2671): more dollar fixes.
koekiebox May 15, 2024
0173ad6
feat(2662/2671): more dollar fixes.
koekiebox May 15, 2024
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
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ body:graphql:vars {
"id": "02ac56f7-ae5d-4abb-8306-17bf2327b43c",
"walletAddressId": "{{walletAddressId}}",
"idempotencyKey":"{{idempotencyKey}}",
"timeout": {{withdrawalTimeout}}
"timeoutSeconds": {{withdrawalTimeout}}
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ body:graphql:vars {
"assetId": "{{assetId}}",
"amount": "100",
"idempotencyKey":"{{idempotencyKey}}",
"timeout": {{withdrawalTimeout}}
"timeoutSeconds": {{withdrawalTimeout}}
}
}

Expand Down
koekiebox marked this conversation as resolved.
Show resolved Hide resolved
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ body:graphql:vars {
"input": {
"incomingPaymentId": "{{incomingPaymentId}}",
"idempotencyKey": "{{idempotencyKey}}",
"timeout": {{withdrawalTimeout}}
"timeoutSeconds": {{withdrawalTimeout}}
}
}
}
Expand Down
koekiebox marked this conversation as resolved.
Show resolved Hide resolved
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ body:graphql:vars {
"input": {
"outgoingPaymentId": "{{outgoingPaymentId}}",
"idempotencyKey": "{{idempotencyKey}}",
"timeout": {{withdrawalTimeout}}
"timeoutSeconds": {{withdrawalTimeout}}
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ body:graphql:vars {
"peerId": "{{peerId}}",
"amount": "100",
"idempotencyKey":"{{idempotencyKey}}",
"timeout": {{withdrawalTimeout}}
"timeoutSeconds": {{withdrawalTimeout}}
}
}

Expand Down
8 changes: 8 additions & 0 deletions bruno/collections/Rafiki/environments/Local Playground.bru
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,13 @@ vars {
apiSignatureVersion: 1
apiSignatureSecret: iyIgCprjb9uL8wFckR+pLEkJWMB7FJhgkvqhTQR/964=
assetId: USD
gfranklinWalletAddress: https://cloud-nine-wallet-backend/accounts/gfranklin
bhamchestWalletAddress: https://cloud-nine-wallet-backend/accounts/bhamchest
wbdcWalletAddress: https://cloud-nine-wallet-backend/accounts/wbdc
pfryWalletAddress: https://happy-life-bank-backend/accounts/pfry
planexWalletAddress: https://happy-life-bank-backend/accounts/planex
asmithWalletAddress: https://happy-life-bank-backend/accounts/asmith
larsWalletAddress: https://happy-life-bank-backend/accounts/lars
davidWalletAddress: https://happy-life-bank-backend/accounts/david
withdrawalTimeout: 60
}
20 changes: 10 additions & 10 deletions localenv/mock-account-servicing-entity/generated/graphql.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 10 additions & 10 deletions packages/backend/src/graphql/generated/graphql.schema.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 10 additions & 10 deletions packages/backend/src/graphql/generated/graphql.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading