Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: dev-protocol/dev-kit-js
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v5.10.1
Choose a base ref
...
head repository: dev-protocol/dev-kit-js
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v5.10.2
Choose a head ref
  • 15 commits
  • 3 files changed
  • 3 contributors

Commits on Jan 12, 2022

  1. Copy the full SHA
    58aeef0 View commit details

Commits on Jan 14, 2022

  1. Copy the full SHA
    f8f27a5 View commit details

Commits on Jan 15, 2022

  1. Copy the full SHA
    aafdda9 View commit details

Commits on Jan 16, 2022

  1. Copy the full SHA
    f9068a2 View commit details
  2. Copy the full SHA
    dd33e75 View commit details
  3. Copy the full SHA
    61f4565 View commit details

Commits on Jan 17, 2022

  1. Copy the full SHA
    b50d8b3 View commit details

Commits on Jan 18, 2022

  1. Copy the full SHA
    9707937 View commit details

Commits on Jan 19, 2022

  1. Copy the full SHA
    f8ef497 View commit details
  2. Copy the full SHA
    93fec68 View commit details

Commits on Jan 20, 2022

  1. adds static market addresses

    stuartwk committed Jan 20, 2022
    Copy the full SHA
    9b3f8ac View commit details
  2. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    a0b2e0d View commit details
  3. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    37f1fde View commit details
  4. Merge pull request #740 from dev-protocol/static-market-addresses

    adds static market addresses
    Akira-Taniguchi authored Jan 20, 2022

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    21a261f View commit details
  5. 5.10.2

    Akira-Taniguchi committed Jan 20, 2022
    Copy the full SHA
    9f2fe20 View commit details
Showing with 144 additions and 128 deletions.
  1. +26 −0 lib/marketAddresses.ts
  2. +11 −11 package.json
  3. +107 −117 yarn.lock
26 changes: 26 additions & 0 deletions lib/marketAddresses.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
export const marketAddresses = {
eth: {
main: {
github: '0x34A7AdC94C4D41C3e3469F98033B372cB2fAf318',
},
ropsten: {
github: '0x1A45BA7BB4a5A4a01Eb5330C9F2fd8af47C16eBe',
},
},
arbitrum: {
one: {
github: '0x84b9e407e2Ee76A641b45d007bBFd9e60a13FF7d',
},
rinkeby: {
github: '0xeb85170bce4ea8a9ca0fb5b6620ab74ef111a50c',
},
},
polygon: {
mainnet: {
github: '0xa7d0A25Cb2378c935FF94863C8614367b9e85Ed8',
},
mumbai: {
github: '0x0000000000000000000000000000000000000000',
},
},
} as const
22 changes: 11 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@devprotocol/dev-kit",
"version": "5.10.1",
"version": "5.10.2",
"description": "Dev Kit for JavaScript",
"author": "abyssparanoia",
"license": "Apache-2.0",
@@ -38,29 +38,29 @@
"prepare": "husky install"
},
"devDependencies": {
"@babel/preset-env": "7.16.8",
"@babel/preset-env": "7.16.10",
"@rollup/plugin-babel": "5.3.0",
"@rollup/plugin-multi-entry": "4.1.0",
"@rollup/plugin-node-resolve": "13.1.3",
"@typescript-eslint/eslint-plugin": "5.9.1",
"@typescript-eslint/parser": "5.9.1",
"eslint": "8.6.0",
"@typescript-eslint/eslint-plugin": "5.10.0",
"@typescript-eslint/parser": "5.10.0",
"eslint": "8.7.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-functional": "4.1.1",
"@types/jest": "27.4.0",
"@types/ramda": "0.27.62",
"eslint-plugin-jest": "25.3.4",
"@types/ramda": "0.27.64",
"eslint-plugin-jest": "25.7.0",
"ethers": "5.5.3",
"husky": "7.0.4",
"jest": "27.4.7",
"lint-staged": "12.1.7",
"lint-staged": "12.2.1",
"npm-run-all": "4.1.5",
"pre-commit": "1.2.2",
"prettier": "2.5.1",
"rimraf": "3.0.2",
"rollup": "2.63.0",
"rollup": "2.64.0",
"rollup-plugin-dts": "4.1.0",
"ts-jest": "27.1.2",
"ts-jest": "27.1.3",
"typescript": "4.5.4"
},
"lint-staged": {
@@ -92,7 +92,7 @@
"bent": "^7.3.12",
"bignumber.js": "9.0.2",
"js-base64": "^3.7.2",
"ramda": "^0.27.0"
"ramda": "^0.28.0"
},
"peerDependencies": {
"ethers": "^5.0.0"
Loading