-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
21777c3
commit 6c2fc45
Showing
4 changed files
with
292 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,32 @@ | ||
# coinbase-moneymoney | ||
|
||
Fetches balances from Coinbase API and returns them as securities | ||
|
||
## Extension Setup | ||
|
||
You can get a signed version of this extension from | ||
|
||
* the `dist` directory in this repository | ||
|
||
Once downloaded, move `Coinbase.lua` to your MoneyMoney Extensions folder. | ||
|
||
**Note:** This extension requires MoneyMoney Version 2.2.18 (288) or newer. | ||
|
||
## Account Setup | ||
|
||
### Coinbase | ||
|
||
1. Log in to your Coinbase account | ||
2. Go to Settings → API | ||
3. Click "New API Key" | ||
4. Under "Accounts", enable checkboxes for accounts you want to use | ||
5. Under "API v2 Permissions", check "wallet:user:read" and "wallet:accounts:read" (the others aren’t needed) | ||
5. Click "Create" | ||
|
||
### MoneyMoney | ||
|
||
Add a new account (type "Coinbase Account") and use your Coinbase API key as username and your Coinbase API secret as password. | ||
|
||
## Screenshots | ||
|
||
![MoneyMoney screenshot with Coinbase balances](screen.png) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,132 @@ | ||
-- Inofficial Coinbase Extension (www.coinbase.com) for MoneyMoney | ||
-- Fetches balances from Coinbase API and returns them as securities | ||
-- | ||
-- Username: Coinbase API Key | ||
-- Password: Coinbase API Secret | ||
-- | ||
-- Copyright (c) 2017 Nico Lindemann | ||
-- | ||
-- Permission is hereby granted, free of charge, to any person obtaining a copy | ||
-- of this software and associated documentation files (the "Software"), to deal | ||
-- in the Software without restriction, including without limitation the rights | ||
-- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
-- copies of the Software, and to permit persons to whom the Software is | ||
-- furnished to do so, subject to the following conditions: | ||
-- | ||
-- The above copyright notice and this permission notice shall be included in all | ||
-- copies or substantial portions of the Software. | ||
-- | ||
-- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
-- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
-- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
-- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
-- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
-- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
-- SOFTWARE. | ||
|
||
WebBanking { | ||
version = 1.0, | ||
url = "https://api.coinbase.com", | ||
description = "Fetch balances from Coinbase API and list them as securities", | ||
services = { "Coinbase Account" }, | ||
} | ||
|
||
local apiKey | ||
local apiSecret | ||
local currency | ||
local balances | ||
local prices | ||
local apiUrlVersion = "v2" | ||
local apiHeaderVersion = "2017-06-01" | ||
local market = "Coinbase" | ||
local accountNumber = "Main" | ||
|
||
function SupportsBank (protocol, bankCode) | ||
return protocol == ProtocolWebBanking and bankCode == "Coinbase Account" | ||
end | ||
|
||
function InitializeSession (protocol, bankCode, username, username2, password, username3) | ||
apiKey = username | ||
apiSecret = password | ||
currency = queryPrivate("user")["native_currency"] | ||
end | ||
|
||
function ListAccounts (knownAccounts) | ||
local account = { | ||
name = market, | ||
accountNumber = accountNumber, | ||
currency = currency, | ||
portfolio = true, | ||
type = "AccountTypePortfolio" | ||
} | ||
|
||
return {account} | ||
end | ||
|
||
function RefreshAccount (account, since) | ||
local s = {} | ||
balances = queryPrivate("accounts") | ||
|
||
for key, value in pairs(balances) do | ||
prices = queryPublic("exchange-rates", "?currency=" .. value["currency"]["code"]) | ||
if value["type"] == "fiat" then | ||
s[#s+1] = { | ||
name = value["currency"]["name"], | ||
market = market, | ||
currency = currency, | ||
amount = value["balance"]["amount"] | ||
} | ||
else | ||
s[#s+1] = { | ||
name = value["currency"]["name"], | ||
market = market, | ||
currency = nil, | ||
quantity = value["balance"]["amount"], | ||
amount = value["native_balance"]["amount"], | ||
price = prices["rates"][value["native_balance"]["currency"]] | ||
} | ||
end | ||
end | ||
|
||
return {securities = s} | ||
end | ||
|
||
function EndSession () | ||
end | ||
|
||
function bin2hex(s) | ||
return (s:gsub(".", function (byte) | ||
return string.format("%02x", string.byte(byte)) | ||
end)) | ||
end | ||
|
||
function queryPrivate(method) | ||
local path = string.format("/%s/%s", apiUrlVersion, method) | ||
local timestamp = string.format("%d", MM.time()) | ||
local apiSign = MM.hmac256(apiSecret, timestamp .. "GET" .. path) | ||
local headers = {} | ||
|
||
headers["CB-ACCESS-KEY"] = apiKey | ||
headers["CB-ACCESS-TIMESTAMP"] = timestamp | ||
headers["CB-ACCESS-SIGN"] = bin2hex(apiSign) | ||
headers["CB-VERSION"] = apiHeaderVersion | ||
|
||
connection = Connection() | ||
content = connection:request("GET", url .. path, nil, nil, headers) | ||
|
||
json = JSON(content) | ||
|
||
return json:dictionary()["data"] | ||
end | ||
|
||
function queryPublic(method, query) | ||
local path = string.format("/%s/%s", apiUrlVersion, method) | ||
|
||
connection = Connection() | ||
content = connection:request("GET", url .. path .. query) | ||
json = JSON(content) | ||
|
||
return json:dictionary()["data"] | ||
end | ||
|
||
-- SIGNATURE: MC0CFE507YtkwJEDqGKys/xFvJ6cynPdAhUAk1YBn6D4ZeVHX1G1t+T5nWBlJUs= |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,130 @@ | ||
-- Inofficial Coinbase Extension (www.coinbase.com) for MoneyMoney | ||
-- Fetches balances from Coinbase API and returns them as securities | ||
-- | ||
-- Username: Coinbase API Key | ||
-- Password: Coinbase API Secret | ||
-- | ||
-- Copyright (c) 2017 Nico Lindemann | ||
-- | ||
-- Permission is hereby granted, free of charge, to any person obtaining a copy | ||
-- of this software and associated documentation files (the "Software"), to deal | ||
-- in the Software without restriction, including without limitation the rights | ||
-- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
-- copies of the Software, and to permit persons to whom the Software is | ||
-- furnished to do so, subject to the following conditions: | ||
-- | ||
-- The above copyright notice and this permission notice shall be included in all | ||
-- copies or substantial portions of the Software. | ||
-- | ||
-- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
-- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
-- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
-- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
-- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
-- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
-- SOFTWARE. | ||
|
||
WebBanking { | ||
version = 1.0, | ||
url = "https://api.coinbase.com", | ||
description = "Fetch balances from Coinbase API and list them as securities", | ||
services = { "Coinbase Account" }, | ||
} | ||
|
||
local apiKey | ||
local apiSecret | ||
local currency | ||
local balances | ||
local prices | ||
local apiUrlVersion = "v2" | ||
local apiHeaderVersion = "2017-06-01" | ||
local market = "Coinbase" | ||
local accountNumber = "Main" | ||
|
||
function SupportsBank (protocol, bankCode) | ||
return protocol == ProtocolWebBanking and bankCode == "Coinbase Account" | ||
end | ||
|
||
function InitializeSession (protocol, bankCode, username, username2, password, username3) | ||
apiKey = username | ||
apiSecret = password | ||
currency = queryPrivate("user")["native_currency"] | ||
end | ||
|
||
function ListAccounts (knownAccounts) | ||
local account = { | ||
name = market, | ||
accountNumber = accountNumber, | ||
currency = currency, | ||
portfolio = true, | ||
type = "AccountTypePortfolio" | ||
} | ||
|
||
return {account} | ||
end | ||
|
||
function RefreshAccount (account, since) | ||
local s = {} | ||
balances = queryPrivate("accounts") | ||
|
||
for key, value in pairs(balances) do | ||
prices = queryPublic("exchange-rates", "?currency=" .. value["currency"]["code"]) | ||
if value["type"] == "fiat" then | ||
s[#s+1] = { | ||
name = value["currency"]["name"], | ||
market = market, | ||
currency = currency, | ||
amount = value["balance"]["amount"] | ||
} | ||
else | ||
s[#s+1] = { | ||
name = value["currency"]["name"], | ||
market = market, | ||
currency = nil, | ||
quantity = value["balance"]["amount"], | ||
amount = value["native_balance"]["amount"], | ||
price = prices["rates"][value["native_balance"]["currency"]] | ||
} | ||
end | ||
end | ||
|
||
return {securities = s} | ||
end | ||
|
||
function EndSession () | ||
end | ||
|
||
function bin2hex(s) | ||
return (s:gsub(".", function (byte) | ||
return string.format("%02x", string.byte(byte)) | ||
end)) | ||
end | ||
|
||
function queryPrivate(method) | ||
local path = string.format("/%s/%s", apiUrlVersion, method) | ||
local timestamp = string.format("%d", MM.time()) | ||
local apiSign = MM.hmac256(apiSecret, timestamp .. "GET" .. path) | ||
local headers = {} | ||
|
||
headers["CB-ACCESS-KEY"] = apiKey | ||
headers["CB-ACCESS-TIMESTAMP"] = timestamp | ||
headers["CB-ACCESS-SIGN"] = bin2hex(apiSign) | ||
headers["CB-VERSION"] = apiHeaderVersion | ||
|
||
connection = Connection() | ||
content = connection:request("GET", url .. path, nil, nil, headers) | ||
|
||
json = JSON(content) | ||
|
||
return json:dictionary()["data"] | ||
end | ||
|
||
function queryPublic(method, query) | ||
local path = string.format("/%s/%s", apiUrlVersion, method) | ||
|
||
connection = Connection() | ||
content = connection:request("GET", url .. path .. query) | ||
json = JSON(content) | ||
|
||
return json:dictionary()["data"] | ||
end |