File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed
Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change 4141 NODE_AUTH_TOKEN : ${{ secrets.GITHUB_TOKEN }}
4242 - name : Build
4343 run : yarn build
44+ - name : Configure registry for publish
45+ run : |
46+ yarn config set @aurora-is-near:registry https://registry.npmjs.org/
47+ npm config set @aurora-is-near:registry https://registry.npmjs.org/
4448 - name : Release
4549 run : npx semantic-release
4650 env :
Original file line number Diff line number Diff line change @@ -2,7 +2,8 @@ import { BYBIT_ADDRESSES } from './bybit-addresses';
22import { OLD_NEAR_ADDRESSES } from './old-near-addresses' ;
33
44/**
5- * Helper function that checks presence of address in list of banned addresses
5+ * Helper function that checks presence of address in list of banned addresses.
6+ * See bin scripts for methodology.
67 */
78export const isBannedNearAddress = ( address : string ) : boolean =>
89 OLD_NEAR_ADDRESSES . has ( address ) || BYBIT_ADDRESSES . has ( address ) ;
You can’t perform that action at this time.
0 commit comments