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

Feature/typescript xrpl.js #42

Merged
merged 26 commits into from
Aug 7, 2023
Merged
Show file tree
Hide file tree
Changes from 22 commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
a1a8e61
initial commit adding xrpl.js and switching to typescript.
ckniffen Jul 14, 2023
c00ac91
Use tickets and type configuration
ckniffen Jul 15, 2023
7707f8f
add info route
jonathanlei Jul 17, 2023
4db4225
revamp client, accounts with ticket retry logic
jonathanlei Jul 18, 2023
8e22535
status.ts + small fixes
jonathanlei Jul 18, 2023
dc2950d
update routes + logging
jonathanlei Jul 19, 2023
3136fb2
delete old file, and small changes
jonathanlei Jul 19, 2023
4f5598f
fix client.ts according to comments
jonathanlei Jul 25, 2023
23e42a2
cleaning up client.ts
jonathanlei Jul 25, 2023
ab8d153
checking for existing ticketquene
jonathanlei Jul 25, 2023
e8efcad
check existing ticket count
jonathanlei Jul 25, 2023
de1ba50
add ticketqueue promise
jonathanlei Jul 25, 2023
2cddc5e
clean up
jonathanlei Jul 25, 2023
a3979aa
add txCount tracking and resolve ticketqueue issue
jonathanlei Jul 25, 2023
b4cf88a
convert wallet to Account
jonathanlei Jul 26, 2023
68fa50f
refactor connect method, and rename functions
jonathanlei Jul 27, 2023
a2db94d
add destination tag
jonathanlei Jul 27, 2023
0234f67
better error handling
jonathanlei Jul 27, 2023
fdd1c2c
refactors
jonathanlei Jul 28, 2023
fa56b70
nit
jonathanlei Jul 28, 2023
42d61fa
Update src/routes/accounts.ts
jonathanlei Jul 31, 2023
dbfaec0
changes from PR comments
jonathanlei Jul 31, 2023
abfe6aa
fundWallets using both address and secrets
jonathanlei Aug 1, 2023
789ffd0
get rid of extra logic
jonathanlei Aug 1, 2023
6eb68d0
config optional interface refactor
jonathanlei Aug 2, 2023
f01425a
update contributing.md and standalone node
jonathanlei Aug 3, 2023
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
14 changes: 6 additions & 8 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -23,22 +23,16 @@ coverage
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# Bower dependency directory (https://bower.io/)
bower_components

# node-waf configuration
.lock-wscript

# Compiled binary addons (https://nodejs.org/api/addons.html)
build/Release
# Ignore dist folder, built from tsc
dist

# Dependency directories
node_modules/
jspm_packages/

# TypeScript v1 declaration files
typings/

# Optional npm cache directory
.npm

Expand Down Expand Up @@ -71,3 +65,7 @@ typings/

# Serverless directories
.serverless

# Ignore IntelliJ files
.idea
*.iml
Loading