I am trying to send money via live net using ILP.
The final goal is to use moneyd and ilp-spsp to deposit to the my ILP Pointer ($coil.xrptipbot.com/xxxxxx) for receipt of XrpTipBot.
and
We set up according to
https://github.com/interedgerjs/moneyd
and have confirmed that it works, but we have not successfully sent money.
Did you know how to succeed?
Should I build an ILP Connector myself?
Or is it still impossible?
The execution result of “DEBUG = * moneyd xrp: start” is as follows.
starting moneyd
2019-08-01T07:46:55.753Z connector:route-broadcaster info generated random routing secret.
2019-08-01T07:46:55.766Z connector:accounts info add account. accountId=parent
2019-08-01T07:46:55.770Z connector:accounts info add account. accountId=local
2019-08-01T07:46:55.845Z connector:admin-api info listen called
2019-08-01T07:46:55.849Z connector:rate-limit-middleware:trace debug created token bucket for account. accountId=parent refillPeriod=60000 refillCount=10000 capacity=10000
2019-08-01T07:46:55.850Z connector:balance-middleware info initializing balance for account. accountId=parent minimumBalance=-Infinity maximumBalance=20000000
2019-08-01T07:46:55.852Z connector:/home/ec2-user/.nvm/versions/node/v10.16.1/lib/node_modules/moneyd-uplink-xrp/node_modules/ilp-plugin-xrp-asym-client/index.js[parent]:trace debug registering data handler
2019-08-01T07:46:55.852Z connector:/home/ec2-user/.nvm/versions/node/v10.16.1/lib/node_modules/moneyd-uplink-xrp/node_modules/ilp-plugin-xrp-asym-client/index.js[parent]:trace debug registering money handler
2019-08-01T07:46:55.853Z connector:rate-limit-middleware:trace debug created token bucket for account. accountId=local refillPeriod=60000 refillCount=10000 capacity=10000
2019-08-01T07:46:55.853Z connector:balance-middleware info initializing balance for account. accountId=local minimumBalance=-Infinity maximumBalance=Infinity
2019-08-01T07:46:55.854Z connector:ilp-plugin-mini-accounts[local]:trace debug registering data handler
2019-08-01T07:46:55.855Z connector:ilp-plugin-mini-accounts[local]:trace debug registering money handler
2019-08-01T07:46:55.855Z connector:accounts:trace debug connecting to parent. accountId=parent
ilp-ws-reconnect:debug websocket disconnected with Error: Unexpected server response: 404; reconnect in 0} +0ms
ilp-ws-reconnect:debug websocket disconnected with Error: Unexpected server response: 404; reconnect in 100} +210ms
ilp-ws-reconnect:debug websocket disconnected with Error: Unexpected server response: 404; reconnect in 500} +297ms
ilp-ws-reconnect:debug websocket disconnected with Error: Unexpected server response: 404; reconnect in 1000} +692ms
and the contents of .moneyd.json is as follows.
{
“version”: 1,
“uplinks”: {
“xrp”: {
“relation”: “parent”,
“plugin”: “/home/ec2-user/.nvm/versions/node/v10.16.1/lib/node_modules/moneyd-uplink-xrp/node_modules/ilp-plugin-xrp-asym-client/index.js”,
“assetCode”: “XRP”,
“assetScale”: 9,
“balance”: {
“minimum”: “-Infinity”,
“maximum”: “20000000”,
“settleThreshold”: “5000000”,
“settleTo”: “10000000”
},
“sendRoutes”: false,
“receiveRoutes”: false,
“options”: {
“currencyScale”: 9,
“server”: “btp+wss://xxxxx: xxxxx@strata-ilsp.com/xrp”,
“secret”: “sXXXXX”,
“address”: “rXXXXX”,
“xrpServer”: “wss://s1.ripple.com”
}
}
}
}
Thank you.