Skip to content

Commit

Permalink
Merge pull request keep-starknet-strange#13 from keep-starknet-strang…
Browse files Browse the repository at this point in the history
…e/revert-12-revert-11-main

Revert "Revert "Hacker House Paris""
  • Loading branch information
apoorvsadana authored Aug 4, 2023
2 parents 63ade6b + 9c5aeb8 commit 97cd3d5
Show file tree
Hide file tree
Showing 37 changed files with 4,926 additions and 191 deletions.
3 changes: 1 addition & 2 deletions .erb/scripts/notarize.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
const { notarize } = require('@electron/notarize');
const { build } = require('../../package.json');

exports.default = async function notarizeMacos(context) {
const { electronPlatformName, appOutDir } = context;
Expand All @@ -16,7 +15,7 @@ exports.default = async function notarizeMacos(context) {

await notarize({
appPath: `${appOutDir}/${appName}.app`,
keychainProfile: "kss",
keychainProfile: 'kss',
tool: 'notarytool',
});
};
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,5 @@ npm-debug.log.*
*.css.d.ts
*.sass.d.ts
*.scss.d.ts

.env
Binary file added assets/twitter.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
339 changes: 339 additions & 0 deletions config/abi/erc20.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,339 @@
[
{
"name": "Uint256",
"size": 2,
"type": "struct",
"members": [
{
"name": "low",
"type": "felt",
"offset": 0
},
{
"name": "high",
"type": "felt",
"offset": 1
}
]
},
{
"data": [
{
"name": "from_",
"type": "felt"
},
{
"name": "to",
"type": "felt"
},
{
"name": "value",
"type": "Uint256"
}
],
"keys": [],
"name": "Transfer",
"type": "event"
},
{
"data": [
{
"name": "owner",
"type": "felt"
},
{
"name": "spender",
"type": "felt"
},
{
"name": "value",
"type": "Uint256"
}
],
"keys": [],
"name": "Approval",
"type": "event"
},
{
"name": "name",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "name",
"type": "felt"
}
],
"stateMutability": "view"
},
{
"name": "symbol",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "symbol",
"type": "felt"
}
],
"stateMutability": "view"
},
{
"name": "totalSupply",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "totalSupply",
"type": "Uint256"
}
],
"stateMutability": "view"
},
{
"name": "decimals",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "decimals",
"type": "felt"
}
],
"stateMutability": "view"
},
{
"name": "balanceOf",
"type": "function",
"inputs": [
{
"name": "account",
"type": "felt"
}
],
"outputs": [
{
"name": "balance",
"type": "Uint256"
}
],
"stateMutability": "view"
},
{
"name": "allowance",
"type": "function",
"inputs": [
{
"name": "owner",
"type": "felt"
},
{
"name": "spender",
"type": "felt"
}
],
"outputs": [
{
"name": "remaining",
"type": "Uint256"
}
],
"stateMutability": "view"
},
{
"name": "permittedMinter",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "minter",
"type": "felt"
}
],
"stateMutability": "view"
},
{
"name": "initialized",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "res",
"type": "felt"
}
],
"stateMutability": "view"
},
{
"name": "get_version",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "version",
"type": "felt"
}
],
"stateMutability": "view"
},
{
"name": "get_identity",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "identity",
"type": "felt"
}
],
"stateMutability": "view"
},
{
"name": "initialize",
"type": "function",
"inputs": [
{"name": "init_vector_len",
"type": "felt"
},
{
"name": "init_vector",
"type": "felt*"
}
],
"outputs": []
},
{
"name": "transfer",
"type": "function",
"inputs": [
{
"name": "recipient",
"type": "felt"
},
{
"name": "amount",
"type": "Uint256"
}
],
"outputs": [
{
"name": "success",
"type": "felt"
}
]
},
{
"name": "transferFrom",
"type": "function",
"inputs": [
{
"name": "sender",
"type": "felt"
},
{
"name": "recipient",
"type": "felt"
},
{
"name": "amount",
"type": "Uint256"
}
],
"outputs": [
{
"name": "success",
"type": "felt"
}
]
},
{
"name": "approve",
"type": "function",
"inputs": [
{
"name": "spender",
"type": "felt"
},
{
"name": "amount",
"type": "Uint256"
}
],
"outputs": [
{
"name": "success",
"type": "felt"
}
]
},
{
"name": "increaseAllowance",
"type": "function",
"inputs": [
{
"name": "spender",
"type": "felt"
},
{
"name": "added_value",
"type": "Uint256"
}
],
"outputs": [
{
"name": "success",
"type": "felt"
}
]
},
{
"name": "decreaseAllowance",
"type": "function",
"inputs": [
{
"name": "spender",
"type": "felt"
},
{
"name": "subtracted_value",
"type": "Uint256"
}
],
"outputs": [
{
"name": "success",
"type": "felt"
}
]
},
{
"name": "permissionedMint",
"type": "function",
"inputs": [
{
"name": "recipient",
"type": "felt"
},
{
"name": "amount",
"type": "Uint256"
}
],
"outputs": []
},
{
"name": "permissionedBurn",
"type": "function",
"inputs": [
{
"name": "account",
"type": "felt"
},
{
"name": "amount",
"type": "Uint256"
}
],
"outputs": []
}
]
Loading

0 comments on commit 97cd3d5

Please sign in to comment.