Skip to content

Commit

Permalink
Add missing licenses.
Browse files Browse the repository at this point in the history
  • Loading branch information
xf00f committed Nov 1, 2018
1 parent 1559adc commit 92c174f
Show file tree
Hide file tree
Showing 8 changed files with 136 additions and 0 deletions.
17 changes: 17 additions & 0 deletions src/ens/config.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
/*
This file is part of web3x.
web3x is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
web3x is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with web3x. If not, see <http://www.gnu.org/licenses/>.
*/

export const config = {
addresses: {
main: '0x314159265dD8dbb310642f98f50C066173C1259b',
Expand Down
17 changes: 17 additions & 0 deletions src/ens/ens.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
/*
This file is part of web3x.
web3x is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
web3x is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with web3x. If not, see <http://www.gnu.org/licenses/>.
*/

import { config } from './config';
import { Registry } from './registry';
import { Eth } from '../eth';
Expand Down
17 changes: 17 additions & 0 deletions src/ens/index.ts
Original file line number Diff line number Diff line change
@@ -1 +1,18 @@
/*
This file is part of web3x.
web3x is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
web3x is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with web3x. If not, see <http://www.gnu.org/licenses/>.
*/

export * from './ens';
17 changes: 17 additions & 0 deletions src/ens/registry/abi/registry.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
/*
This file is part of web3x.
web3x is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
web3x is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with web3x. If not, see <http://www.gnu.org/licenses/>.
*/

import { Address } from '../../../types';
import { ContractAbi } from '../../../contract';

Expand Down
17 changes: 17 additions & 0 deletions src/ens/registry/abi/resolver.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
/*
This file is part of web3x.
web3x is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
web3x is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with web3x. If not, see <http://www.gnu.org/licenses/>.
*/

import { ContractAbi } from '../../../contract';
import { Address } from '../../../types';

Expand Down
17 changes: 17 additions & 0 deletions src/ens/registry/index.ts
Original file line number Diff line number Diff line change
@@ -1 +1,18 @@
/*
This file is part of web3x.
web3x is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
web3x is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with web3x. If not, see <http://www.gnu.org/licenses/>.
*/

export * from './registry';
17 changes: 17 additions & 0 deletions src/ens/registry/namehash.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
/*
This file is part of web3x.
web3x is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
web3x is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with web3x. If not, see <http://www.gnu.org/licenses/>.
*/

import uts46 from 'idna-uts46-hx';
import { sha3 } from '../../utils';

Expand Down
17 changes: 17 additions & 0 deletions src/ens/registry/registry.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
/*
This file is part of web3x.
web3x is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
web3x is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with web3x. If not, see <http://www.gnu.org/licenses/>.
*/

import { ENS } from '../ens';
import { Contract } from '../../contract';
import { namehash } from './namehash';
Expand Down

0 comments on commit 92c174f

Please sign in to comment.