Compare commits

...

1 Commits

Author SHA1 Message Date
lixp eb4af28428 1. accept bech32 format address when encoding address 4 years ago
  1. 4
      packages/harmony-contract/src/abi/abiCoder.ts
  2. 2
      packages/harmony-contract/src/methods/method.ts
  3. 6
      packages/harmony-crypto/src/keyTool.ts

@ -197,8 +197,8 @@ const paramTypeArray = new RegExp(/^(.*)\[([0-9]*)\]$/);
export const defaultCoerceFunc: CoerceFunc = (type: string, value: any): any => { export const defaultCoerceFunc: CoerceFunc = (type: string, value: any): any => {
const match = type.match(paramTypeNumber); const match = type.match(paramTypeNumber);
if (match && parseInt(match[2], 10) <= 48) { if (match && parseInt(match[2], 10) <= 48) {
// return value.toNumber(); return value.toNumber();
return value.toString('hex'); //return value.toString('hex');
} }
return value; return value;
}; };

@ -75,7 +75,7 @@ export class ContractMethod {
} }
async call(options: any, blockNumber: any = 'latest') { async call(options: any, blockNumber: any = 'latest') {
try { try {
options = { ...this.contract.options, ...options }; options = { ...this.contract.options, data: this.encodeABI(), ...options };
const shardID = const shardID =
options !== undefined && options.shardID !== undefined options !== undefined && options.shardID !== undefined
? options.shardID ? options.shardID

@ -9,7 +9,8 @@ import * as errors from './errors';
import { keccak256 } from './keccak256'; import { keccak256 } from './keccak256';
import { randomBytes } from './random'; import { randomBytes } from './random';
import { isPrivateKey, strip0x, isAddress } from '@harmony-js/utils'; import { isPrivateKey, strip0x, isAddress, isBech32Address } from '@harmony-js/utils';
import { fromBech32 } from './bech32';
import { encode } from './rlp'; import { encode } from './rlp';
const secp256k1 = elliptic.ec('secp256k1'); const secp256k1 = elliptic.ec('secp256k1');
@ -81,6 +82,9 @@ export const getAddressFromPublicKey = (publicKey: string): string => {
* @return {string} checksumed address * @return {string} checksumed address
*/ */
export const toChecksumAddress = (address: string): string => { export const toChecksumAddress = (address: string): string => {
if (typeof address === 'string' && isBech32Address(address)) {
address = fromBech32(address);
}
if (typeof address !== 'string' || !address.match(/^0x[0-9A-Fa-f]{40}$/)) { if (typeof address !== 'string' || !address.match(/^0x[0-9A-Fa-f]{40}$/)) {
errors.throwError('invalid address', errors.INVALID_ARGUMENT, { errors.throwError('invalid address', errors.INVALID_ARGUMENT, {
arg: 'address', arg: 'address',

Loading…
Cancel
Save